Files
pit/src/table.c

346 lines
9.1 KiB
C

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include "pit.h"
#define TABLE_INCREMENT 10
/*
** Initialize the table by alloocating necessary memory chunks.
*/
PTable pit_table_initialize(ulong record_size, ulong flags) {
PTable pt;
pt = calloc(1, sizeof(Table));
pt->flags = flags;
pt->record_size = record_size;
pt->number_of_slots = TABLE_INCREMENT;
pt->number_of_records = 0;
pt->auto_increment = 0;
pt->current = 0;
pt->slots = calloc(TABLE_INCREMENT, pt->record_size);
pt->index = calloc(TABLE_INCREMENT, sizeof(uchar *));
return pt;
}
/*
** Return the address of next avaiable slot within pt->slots chunk.
*/
static uchar *table_available_slot(PTable pt) {
return pt->slots + pt->number_of_records * pt->record_size;
}
/*
** Return the address of last stored record.
*/
static uchar *table_last_record(PTable pt) {
if (pt->number_of_records == 0) {
return pt->slots;
} else {
return table_available_slot(pt) - pt->record_size;
}
}
/*
** Return the address of next available pointer within pt->index chunk.
*/
static uchar **table_available_index(PTable pt) {
return pt->index + pt->auto_increment;
}
/*
** Return the address of last pointer within pt->index chunk.
*/
static uchar **table_last_index(PTable pt) {
if (pt->auto_increment == 0) {
return pt->index;
} else {
return table_last_index(pt) - sizeof(char *);
}
}
/*
** Extend the table involves three steps. First, we reallocate pt->slots
** chunk adding TABLE_INCREMENT empty slots. Then we add the same number
** of empty indices to the the pt->index chunk. Finally, we adjust
** existing indices to make them point to reallocated record slots.
*/
static PTable table_extend(PTable pt) {
register ulong i;
register uchar **pi;
pt->number_of_slots += TABLE_INCREMENT;
/*
** Re-allocate the records and set newly added memory chunk to 0.
*/
pt->slots = realloc(pt->slots, pt->number_of_slots * pt->record_size);
memset(table_available_slot(pt), 0, TABLE_INCREMENT * pt->record_size);
/*
** Re-allocate the index and set newly added memory chunk to 0.
*/
pt->index = realloc(pt->index, pt->number_of_slots * sizeof(char *));
memset(table_available_index(pt), 0, TABLE_INCREMENT * sizeof(char *));
/*
** Reassign index entries to point to the re-allocatted records.
*/
for (i = 0, pi = pt->index; i < pt->auto_increment; i++, pi++) {
if (*pi != NULL) {
*pi = pt->slots + i * pt->record_size;
}
}
return pt;
}
/*
** Find a record by id and return its address.
*/
uchar *pit_table_find(PTable pt, ulong id) {
// TODO: retrn NULL (or raise?) if table doesn't have id.
if (pt->number_of_records == 0 || id <= 0 || id > pt->auto_increment) {
return NULL;
} else {
return *(pt->index + id - 1);
}
}
/*
** Delete a record by its ID. Return the address of deleted record or NULL
** if the record was not found.
*/
uchar *pit_table_delete(PTable pt, ulong id) {
// TODO: retrn NULL (or raise?) if table doesn't have id.
register uchar *pr = (uchar *)pit_table_find(pt, id);
if (pr) {
register ulong i;
register uchar **pi;
register uchar *last = table_last_record(pt);
/*
** Overwrite current record by shifting over remaining records
*/
if (pr != last) {
memmove(pr, pr + pt->record_size, last - pr);
}
/*
** Set the slot occupied by the last record to zero.
*/
memset(last, 0, pt->record_size);
/*
** Set current record pointer to NULL, then update the rest of
** the index to point to the shifted records.
*/
pi = pt->index + id - 1;
*pi++ = NULL;
for (i = id; i < pt->auto_increment; i++) {
*pi++ -= pt->record_size;
}
pt->number_of_records--;
}
return pr;
}
/*
** Insert a record and return its address. The table gets extended
** as necessary.
*/
uchar *pit_table_insert(PTable pt, uchar *record) {
register uchar **pi;
register time_t now;
if (pt->number_of_records >= pt->number_of_slots) {
pt = table_extend(pt);
}
pi = table_available_index(pt);
*pi = table_available_slot(pt);
memmove(table_available_slot(pt), record, pt->record_size);
pt->number_of_records++;
pt->auto_increment++;
/*
** Update record id if the table has primary key. The id must be the first
** record field of type "unsigned long".
*/
if (pt->flags & TABLE_HAS_ID) {
*(ulong *)*pi = pt->auto_increment;
}
/*
** Update created_at and/or updated_at which must be last one or two record
** fields of type "time_t".
*/
if (pt->flags & TABLE_HAS_CREATED_AT || pt->flags & TABLE_HAS_UPDATED_AT) {
now = time(NULL);
*(time_t *)(*pi + pt->record_size - sizeof(time_t)) = now;
}
if (pt->flags & TABLE_HAS_CREATED_AT && pt->flags & TABLE_HAS_UPDATED_AT) {
*(time_t *)(*pi + pt->record_size - sizeof(time_t) * 2) = now;
}
return *pi;
}
/*
** Find current record.
*/
uchar *pit_table_current(PTable pt) {
return pit_table_find(pt, pt->current);
}
/*
** Set current record as indicated by the id, then find and return it.
*/
uchar *pit_table_mark(PTable pt, ulong id) {
return pit_table_find(pt, pt->current = id);
}
/*
** Release pt->slots and pt->index memory chunks, then free the table itself.
*/
PTable pit_table_free(PTable pt) {
if (pt) {
if (pt->index) {
free(pt->index);
}
if (pt->slots) {
free(pt->slots);
}
free(pt);
}
return NULL;
}
/*
** Save the contents of the table to file. The file handle should be
** open with for writing.
*/
int pit_table_save(FILE *file, PTable pt) {
register int written = 0;
/*
** Save table header data: flags, record_size, number_of_slots,
** number_of_records, and auto_increment, current.
*/
written += fwrite(pt, sizeof(ulong), 6, file);
/*
** Save the records. Note that we save the actual (not allocated) data.
*/
written += fwrite(pt->slots, pt->record_size, pt->number_of_records, file);
return written;
}
/*
** Load the contents of the table from file. The file handle should be
** open with for reading.
*/
PTable pit_table_load(FILE *file) {
PTable pt;
register int read = 0;
register ulong i;
uchar *pr, **pi;
pt = calloc(1, sizeof(Table));
/*
** First read the header.
*/
read += fread(pt, sizeof(ulong), 6, file);
/*
** Now allocate slots and index based on the original number of slots.
*/
/*** printf("Allocating %lu slots\n", pt->number_of_slots); ***/
pt->slots = pr = calloc(pt->number_of_slots, pt->record_size);
pt->index = pi = calloc(pt->number_of_slots, sizeof(uchar *));
/*
** Now read the records into the slots and rebuild the index.
*/
read += fread(pt->slots, pt->record_size, pt->number_of_records, file);
for(i = 1; i <= pt->number_of_slots; i++, pi++) {
// TODO: if table doesn't have id || has id && id matches...
if ((ulong)*pr == i) {
*pi = pr;
pr += pt->record_size;
}
}
return pt;
}
/* #define TEST */
#if defined(TEST)
typedef struct {
ulong id;
ulong value;
char name[30];
time_t created_at;
time_t updated_at;
} Record;
void dump(Record *prec) {
if (prec) {
printf("(%08lX) id: %08lu, value: %lu, created_at: %lu, updated_at: %lu\n",
(ulong)prec, prec->id, prec->value, prec->created_at, prec->updated_at);
} else {
printf("(NULL)\n");
}
}
void dump_all(PTable pt) {
int i;
Record *prec;
for(i = 1; i <= pt->number_of_slots; i++) {
prec = (Record *)pit_table_find(pt, i);
if (prec) {
dump(prec);
} else {
printf("%d not found\n", i);
}
}
}
int main() {
PTable pt;
Record rec, *prec;
ulong i, total = 3;
pt = pit_table_initialize(sizeof(Record), TABLE_HAS_ID | TABLE_HAS_TIMESTAMPS);
for(i = 0; i < total; i++) {
rec.id = 0;
rec.value = 0x11223344 + i + 1;
strcpy(rec.name, "test");
rec.created_at = rec.updated_at = (time_t)0;
prec = (Record *)pit_table_insert(pt, (uchar *)&rec);
dump(prec);
}
prec = (Record *)pit_table_find(pt, total - 1);
pit_table_mark(pt, prec->id);
printf("current: %lu\n", pt->current);
// for (i = 20; i < total; i++) {
// printf("Deleting %lu\n", i + 1);
// prec = (Record *)pit_table_delete(pt, i + 1);
// }
printf("Deleting %lu\n", 1L);
prec = (Record *)pit_table_delete(pt, 1);
printf("current: %lu\n", pt->current);
dump_all(pt);
FILE *file = fopen("/tmp/.pit", "w");
pit_table_save(file, pt);
fclose(file);
file = fopen("/tmp/.pit", "r");
pt = pit_table_load(file);
dump_all(pt);
printf("current: %lu\n", pt->current);
fclose(file);
pit_table_free(pt);
printf("OK\n");
return 0;
}
#endif