X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=isamc%2Fisamc.c;h=656cae0f46eb8214ae5ac900065959bcd007a1d3;hb=16153aaaa1fcb0881ff7e3056bd9c991fcf57c29;hp=34595c3c0fc6171f5afa2562f968e06299910a08;hpb=3d65c1cdc034161b511510acda8777afdb41cf56;p=idzebra-moved-to-github.git diff --git a/isamc/isamc.c b/isamc/isamc.c index 34595c3..656cae0 100644 --- a/isamc/isamc.c +++ b/isamc/isamc.c @@ -4,7 +4,16 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: isamc.c,v $ - * Revision 1.3 1996-11-01 08:59:14 adam + * Revision 1.5 1996-11-04 14:08:57 adam + * Optimized free block usage. + * + * Revision 1.4 1996/11/01 13:36:46 adam + * New element, max_blocks_mem, that control how many blocks of max size + * to store in memory during isc_merge. + * Function isc_merge now ignores delete/update of identical keys and + * the proper blocks are then non-dirty and not written in flush_blocks. + * + * Revision 1.3 1996/11/01 08:59:14 adam * First version of isc_merge that supports update/delete. * * Revision 1.2 1996/10/29 16:44:56 adam @@ -17,9 +26,8 @@ /* * TODO: - * small/empty blocks aren't handled in isc_merge. - * delete/update optimization of same key. - * implementation of isc_numkeys + * Reduction to lower categories in isc_merge + * Implementation of isc_numkeys */ #include #include @@ -29,6 +37,9 @@ #include #include "isamc-p.h" +static void release_fc (ISAMC is, int cat); +static void init_fc (ISAMC is, int cat); + ISAMC_M isc_getmethod (void) { static struct ISAMC_filecat_s def_cat[] = { @@ -49,6 +60,8 @@ ISAMC_M isc_getmethod (void) m->debug = 0; + m->max_blocks_mem = 10; + return m; } @@ -57,7 +70,7 @@ ISAMC isc_open (const char *name, int writeflag, ISAMC_M method) { ISAMC is; ISAMC_filecat filecat; - int i; + int i, j; int max_buf_size = 0; is = xmalloc (sizeof(*is)); @@ -83,13 +96,18 @@ ISAMC isc_open (const char *name, int writeflag, ISAMC_M method) is->max_cat = --i; /* max_buf_size is the larget buffer to be used during merge */ max_buf_size = (1 + max_buf_size / filecat[i].bsize) * filecat[i].bsize; + if (max_buf_size < (1+is->method->max_blocks_mem) * filecat[i].bsize) + max_buf_size = (1+is->method->max_blocks_mem) * filecat[i].bsize; if (is->method->debug) logf (LOG_LOG, "isc: max_buf_size %d", max_buf_size); assert (is->no_files > 0); is->files = xmalloc (sizeof(*is->files)*is->no_files); if (writeflag) + { is->merge_buf = xmalloc (max_buf_size+128); + memset (is->merge_buf, 0, max_buf_size+128); + } else is->merge_buf = NULL; for (i = 0; ino_files; i++) @@ -112,6 +130,8 @@ ISAMC isc_open (const char *name, int writeflag, ISAMC_M method) is->files[i].no_allocated = 0; is->files[i].no_released = 0; is->files[i].no_remap = 0; + + init_fc (is, i); } return is; } @@ -124,6 +144,7 @@ int isc_close (ISAMC is) logf (LOG_LOG, "isc: writes reads skipped alloc released remap"); for (i = 0; ino_files; i++) { + release_fc (is, i); assert (is->files[i].bf); if (is->files[i].head_is_dirty) bf_write (is->files[i].bf, 0, 0, sizeof(ISAMC_head), @@ -136,6 +157,7 @@ int isc_close (ISAMC is) is->files[i].no_allocated, is->files[i].no_released, is->files[i].no_remap); + xfree (is->files[i].fc_list); bf_close (is->files[i].bf); } xfree (is->files); @@ -172,7 +194,7 @@ int isc_write_dblock (ISAMC is, int cat, int pos, char *src, return isc_write_block (is, cat, pos, src - sizeof(int)*2); } -int isc_alloc_block (ISAMC is, int cat) +static int alloc_block (ISAMC is, int cat) { int block; char buf[sizeof(int)]; @@ -186,12 +208,31 @@ int isc_alloc_block (ISAMC is, int cat) } else block = (is->files[cat].head.lastblock)++; - if (is->method->debug > 2) + return block; +} + +int isc_alloc_block (ISAMC is, int cat) +{ + int block = 0; + + if (is->files[cat].fc_list) + { + int j, nb; + for (j = 0; j < is->files[cat].fc_max; j++) + if ((nb = is->files[cat].fc_list[j]) && (!block || nb < block)) + { + is->files[cat].fc_list[j] = 0; + break; + } + } + if (!block) + block = alloc_block (is, cat); + if (is->method->debug > 3) logf (LOG_LOG, "isc: alloc_block in cat %d: %d", cat, block); return block; } -void isc_release_block (ISAMC is, int cat, int pos) +static void release_block (ISAMC is, int cat, int pos) { char buf[sizeof(int)]; @@ -200,8 +241,45 @@ void isc_release_block (ISAMC is, int cat, int pos) memcpy (buf, &is->files[cat].head.freelist, sizeof(int)); is->files[cat].head.freelist = pos; bf_write (is->files[cat].bf, pos, 0, sizeof(int), buf); - if (is->method->debug > 2) +} + +void isc_release_block (ISAMC is, int cat, int pos) +{ + if (is->method->debug > 3) logf (LOG_LOG, "isc: release_block in cat %d: %d", cat, pos); + if (is->files[cat].fc_list) + { + int b, j; + for (j = 0; jfiles[cat].fc_max; j++) + if (!is->files[cat].fc_list[j]) + { + is->files[cat].fc_list[j] = pos; + return; + } + } + release_block (is, cat, pos); +} + +static void init_fc (ISAMC is, int cat) +{ + int j = 100; + + is->files[cat].fc_max = j; + is->files[cat].fc_list = xmalloc (sizeof(*is->files[0].fc_list) * j); + while (--j >= 0) + is->files[cat].fc_list[j] = 0; +} + +static void release_fc (ISAMC is, int cat) +{ + int b, j = is->files[cat].fc_max; + + while (--j >= 0) + if ((b = is->files[cat].fc_list[j])) + { + release_block (is, cat, b); + is->files[cat].fc_list[j] = 0; + } } void isc_pp_close (ISAMC_PP pp)