X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=index%2Fextract.c;h=7b12e39676ab35e855a6aff41bccbc1f35aa8ca7;hb=0d1685e5db9bf74ff80a4b483754532a73fcbb74;hp=fffe509489e6e46157eae204c390178c82e43785;hpb=6617321a09d4d5bf442feaea2d7f1347acd82e3c;p=idzebra-moved-to-github.git diff --git a/index/extract.c b/index/extract.c index fffe509..7b12e39 100644 --- a/index/extract.c +++ b/index/extract.c @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: extract.c,v $ - * Revision 1.23 1995-10-27 14:00:10 adam + * Revision 1.25 1995-11-16 15:34:54 adam + * Uses new record management system in both indexer and server. + * + * Revision 1.24 1995/11/15 19:13:08 adam + * Work on record management. + * + * Revision 1.23 1995/10/27 14:00:10 adam * Implemented detection of database availability. * * Revision 1.22 1995/10/17 18:02:07 adam @@ -88,9 +94,19 @@ #include #include "index.h" +#if RECORD_BASE +#include "recindex.h" +#endif + static Dict file_idx; -static SYSNO sysno_next; + + +#if RECORD_BASE +static Records records = NULL; +#else static int sys_idx_fd = -1; +static SYSNO sysno_next; +#endif static int key_cmd; static int key_sysno; @@ -103,8 +119,9 @@ static int key_file_no; void key_open (int mem) { +#if !RECORD_BASE void *file_key; - +#endif if (mem < 50000) mem = 50000; key_buf = xmalloc (mem); @@ -118,6 +135,10 @@ void key_open (int mem) logf (LOG_FATAL, "dict_open fail of %s", "fileidx"); exit (1); } +#if RECORD_BASE + assert (!records); + records = rec_open (1); +#else file_key = dict_lookup (file_idx, "."); if (file_key) memcpy (&sysno_next, (char*)file_key+1, sizeof(sysno_next)); @@ -128,6 +149,7 @@ void key_open (int mem) logf (LOG_FATAL|LOG_ERRNO, "open %s", FNAME_SYS_IDX); exit (1); } +#endif } struct encode_info { @@ -241,8 +263,12 @@ int key_close (void) { key_flush (); xfree (key_buf); +#if RECORD_BASE + rec_close (&records); +#else close (sys_idx_fd); dict_insert (file_idx, ".", sizeof(sysno_next), &sysno_next); +#endif dict_close (file_idx); return key_file_no; } @@ -399,11 +425,22 @@ void file_extract (int cmd, const char *fname, const char *kname, file_info = dict_lookup (file_idx, kname); if (!file_info) { +#if RECORD_BASE + Record rec = rec_new (records); + + sysno = rec->sysno; + dict_insert (file_idx, kname, sizeof(sysno), &sysno); + rec->info[0] = rec_strdup (file_type); + rec->info[1] = rec_strdup (kname); + rec_put (records, rec); + rec_rm (rec); +#else sysno = sysno_next++; dict_insert (file_idx, kname, sizeof(sysno), &sysno); lseek (sys_idx_fd, sysno * SYS_IDX_ENTRY_LEN, SEEK_SET); write (sys_idx_fd, file_type, strlen (file_type)+1); write (sys_idx_fd, kname, strlen(kname)+1); +#endif } else memcpy (&sysno, (char*) file_info+1, sizeof(sysno));