X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fextract.c;h=23ba68ed36e7729582b91b64a46a2cb8bb7ed3ac;hb=e80772c51b80b8e5c9c3cfb037c988308a4014b9;hp=abe3c88d6eeeaa1007f6b53bb256817a82c82d38;hpb=f3e73ab63fbc960d863d9c14bab3b9e79c400ffa;p=idzebra-moved-to-github.git diff --git a/index/extract.c b/index/extract.c index abe3c88..23ba68e 100644 --- a/index/extract.c +++ b/index/extract.c @@ -4,7 +4,53 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: extract.c,v $ - * Revision 1.24 1995-11-15 19:13:08 adam + * Revision 1.36 1995-11-30 08:34:29 adam + * Started work on commit facility. + * Changed a few malloc/free to xmalloc/xfree. + * + * Revision 1.35 1995/11/28 14:26:21 adam + * Bug fix: recordId with constant wasn't right. + * Bug fix: recordId dictionary entry wasn't deleted when needed. + * + * Revision 1.34 1995/11/28 09:09:38 adam + * Zebra config renamed. + * Use setting 'recordId' to identify record now. + * Bug fix in recindex.c: rec_release_blocks was invokeded even + * though the blocks were already released. + * File traversal properly deletes records when needed. + * + * Revision 1.33 1995/11/27 09:56:20 adam + * Record info elements better enumerated. Internal store of records. + * + * Revision 1.32 1995/11/25 10:24:05 adam + * More record fields - they are enumerated now. + * New options: flagStoreData flagStoreKey. + * + * Revision 1.31 1995/11/24 11:31:35 adam + * Commands add & del read filenames from stdin if source directory is + * empty. + * Match criteria supports 'constant' strings. + * + * Revision 1.30 1995/11/22 17:19:16 adam + * Record management uses the bfile system. + * + * Revision 1.29 1995/11/21 15:01:14 adam + * New general match criteria implemented. + * New feature: document groups. + * + * Revision 1.28 1995/11/21 09:20:30 adam + * Yet more work on record match. + * + * Revision 1.27 1995/11/20 16:59:45 adam + * New update method: the 'old' keys are saved for each records. + * + * Revision 1.26 1995/11/20 11:56:24 adam + * Work on new traversal. + * + * 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 @@ -91,64 +137,42 @@ #include #include "index.h" -#define RECORD_BASE 1 - -#if RECORD_BASE #include "recindex.h" -#endif - -static Dict file_idx; +static Dict matchDict; -#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; -static char *key_databaseName; static char **key_buf; static size_t ptr_top; static size_t ptr_i; -static size_t kused; +static size_t key_buf_used; static int key_file_no; +static int records_inserted = 0; +static int records_updated = 0; +static int records_deleted = 0; + +#define MATCH_DICT "match" + void key_open (int mem) { -#if !RECORD_BASE - void *file_key; -#endif if (mem < 50000) mem = 50000; key_buf = xmalloc (mem); ptr_top = mem/sizeof(char*); ptr_i = 0; - kused = 0; + + key_buf_used = 0; key_file_no = 0; - if (!(file_idx = dict_open (FNAME_FILE_DICT, 40, 1))) + if (!(matchDict = dict_open (MATCH_DICT, 20, 1))) { - logf (LOG_FATAL, "dict_open fail of %s", "fileidx"); + logf (LOG_FATAL, "dict_open fail of %s", MATCH_DICT); 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)); - else - sysno_next = 1; - if ((sys_idx_fd = open (FNAME_SYS_IDX, O_RDWR|O_CREAT, 0666)) == -1) - { - logf (LOG_FATAL|LOG_ERRNO, "open %s", FNAME_SYS_IDX); - exit (1); - } -#endif } struct encode_info { @@ -255,20 +279,19 @@ void key_flush (void) } logf (LOG_LOG, "finished section %d", key_file_no); ptr_i = 0; - kused = 0; + key_buf_used = 0; } 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); + dict_close (matchDict); + + logf (LOG_LOG, "Records inserted %6d", records_inserted); + logf (LOG_LOG, "Records updated %6d", records_updated); + logf (LOG_LOG, "Records deleted %6d", records_deleted); return key_file_no; } @@ -279,36 +302,149 @@ static void wordInit (RecWord *p) p->which = Word_String; } -static void wordAdd (const RecWord *p) +struct recKeys { + int buf_used; + int buf_max; + char *buf; +} reckeys; + +static void addRecordKey (const RecWord *p) { - struct it_key key; + char *dst; + char attrSet; + short attrUse; size_t i; - if (kused + 1024 > (ptr_top-ptr_i)*sizeof(char*)) - key_flush (); - ++ptr_i; - key_buf[ptr_top-ptr_i] = (char*)key_buf + kused; - kused += index_word_prefix ((char*)key_buf + kused, - p->attrSet, p->attrUse, - key_databaseName); + if (reckeys.buf_used+1024 > reckeys.buf_max) + { + char *b; + + b = xmalloc (reckeys.buf_max += 65000); + if (reckeys.buf_used > 0) + memcpy (b, reckeys.buf, reckeys.buf_used); + xfree (reckeys.buf); + reckeys.buf = b; + } + dst = reckeys.buf + reckeys.buf_used; switch (p->which) { case Word_String: + attrSet = p->attrSet; + memcpy (dst, &attrSet, sizeof(attrSet)); + dst += sizeof(attrSet); + + attrUse = p->attrUse; + memcpy (dst, &attrUse, sizeof(attrUse)); + dst += sizeof(attrUse); + for (i = 0; p->u.string[i]; i++) - ((char*)key_buf) [kused++] = index_char_cvt (p->u.string[i]); - ((char*)key_buf) [kused++] = '\0'; + *dst++ = p->u.string[i]; + *dst++ = '\0'; + + memcpy (dst, &p->seqno, sizeof(p->seqno)); + dst += sizeof(p->seqno); + break; default: - return ; + return; } - ((char*) key_buf)[kused++] = ((key_cmd == 'a') ? 1 : 0); - key.sysno = key_sysno; - key.seqno = p->seqno; - memcpy ((char*)key_buf + kused, &key, sizeof(key)); - kused += sizeof(key); + reckeys.buf_used = dst - reckeys.buf; } -static void wordAddAny (const RecWord *p) +static void flushRecordKeys (SYSNO sysno, int cmd, struct recKeys *reckeys, + const char *databaseName) +{ + int off = 0; + while (off < reckeys->buf_used) + { + const char *src = reckeys->buf + off; + char attrSet; + short attrUse; + struct it_key key; + + memcpy (&attrSet, src, sizeof(attrSet)); + src += sizeof(attrSet); + + memcpy (&attrUse, src, sizeof(attrUse)); + src += sizeof(attrUse); + + if (key_buf_used + 1024 > (ptr_top-ptr_i)*sizeof(char*)) + key_flush (); + ++ptr_i; + key_buf[ptr_top-ptr_i] = (char*)key_buf + key_buf_used; + key_buf_used += index_word_prefix ((char*)key_buf + key_buf_used, + attrSet, attrUse, databaseName); + while (*src) + ((char*)key_buf) [key_buf_used++] = index_char_cvt (*src++); + src++; + ((char*)key_buf) [key_buf_used++] = '\0'; + + ((char*) key_buf)[key_buf_used++] = cmd; + + memcpy (&key.seqno, src, sizeof(key.seqno)); + src += sizeof(key.seqno); + key.sysno = sysno; + memcpy ((char*)key_buf + key_buf_used, &key, sizeof(key)); + key_buf_used += sizeof(key); + off = src - reckeys->buf; + } + assert (off == reckeys->buf_used); +} + +static const char **searchRecordKey (struct recKeys *reckeys, + int attrSetS, int attrUseS) +{ + static const char *ws[32]; + int off = 0; + int startSeq = -1; + int i; + + for (i = 0; i<32; i++) + ws[i] = NULL; + + while (off < reckeys->buf_used) + { + const char *src = reckeys->buf + off; + char attrSet; + short attrUse; + int seqno; + const char *wstart; + + memcpy (&attrSet, src, sizeof(attrSet)); + src += sizeof(attrSet); + + memcpy (&attrUse, src, sizeof(attrUse)); + src += sizeof(attrUse); + + wstart = src; + while (*src++) + ; + + memcpy (&seqno, src, sizeof(seqno)); + src += sizeof(seqno); + +#if 0 + logf (LOG_LOG, "(%d,%d) %d %s", attrSet, attrUse, seqno, wstart); +#endif + if (attrUseS == attrUse && attrSetS == attrSet) + { + int woff; + + + if (startSeq == -1) + startSeq = seqno; + woff = seqno - startSeq; + if (woff >= 0 && woff < 31) + ws[woff] = wstart; + } + + off = src - reckeys->buf; + } + assert (off == reckeys->buf_used); + return ws; +} + +static void addRecordKeyAny (const RecWord *p) { if (p->attrSet != 1 || p->attrUse != 1016) { @@ -317,28 +453,30 @@ static void wordAddAny (const RecWord *p) memcpy (&w, p, sizeof(w)); w.attrSet = 1; w.attrUse = 1016; - wordAdd (&w); + addRecordKey (&w); } - wordAdd (p); + addRecordKey (p); } +#define FILE_READ_BUFSIZE 4096 -#define FILE_READ_BUF 1 -#if FILE_READ_BUF static char *file_buf; static int file_offset; static int file_bufsize; +static int file_noread; static void file_read_start (int fd) { file_offset = 0; - file_buf = xmalloc (4096); - file_bufsize = read (fd, file_buf, 4096); + file_buf = xmalloc (FILE_READ_BUFSIZE); + file_bufsize = read (fd, file_buf, FILE_READ_BUFSIZE); + file_noread = 0; } static void file_read_stop (int fd) { xfree (file_buf); + file_buf = NULL; } static int file_read (int fd, char *buf, size_t count) @@ -360,9 +498,10 @@ static int file_read (int fd, char *buf, size_t count) } file_bufsize = 0; file_offset = 0; + file_noread += r; return r; } - file_bufsize = r = read (fd, file_buf, 4096); + file_bufsize = r = read (fd, file_buf, FILE_READ_BUFSIZE); if (r == -1) { logf (LOG_FATAL|LOG_ERRNO, "read"); @@ -372,38 +511,364 @@ static int file_read (int fd, char *buf, size_t count) { file_offset = r; memcpy (buf + l, file_buf, r); + file_noread += (l+r); return l + r; } else { file_offset = count; memcpy (buf + l, file_buf, count - l); + file_noread += count; return count; } } memcpy (buf, file_buf + file_offset, count); file_offset += count; + file_noread += count; return count; } -#else -static int file_read (int fd, char *buf, size_t count) + +static int atois (const char **s) { - return read (fd, buf, count); + int val = 0, c; + while ( (c=**s) >= '0' && c <= '9') + { + val = val*10 + c - '0'; + ++(*s); + } + return val; } -#endif -void file_extract (int cmd, const char *fname, const char *kname, - char *databaseName) + +static char *fileMatchStr (struct recKeys *reckeys, struct recordGroup *rGroup, + const char *fname, + const char *spec) +{ + static char dstBuf[2048]; + char *dst = dstBuf; + const char *s = spec; + static const char **w; + int i; + + while (1) + { + while (*s == ' ' || *s == '\t') + s++; + if (!*s) + break; + if (*s == '(') + { + char matchFlag[32]; + int attrSet, attrUse; + int first = 1; + + s++; + attrSet = atois (&s); + if (*s != ',') + { + logf (LOG_WARN, "Missing , in match criteria %s in group %s", + spec, rGroup->groupName ? rGroup->groupName : "none"); + return NULL; + } + s++; + attrUse = atois (&s); + w = searchRecordKey (reckeys, attrSet, attrUse); + assert (w); + + if (*s == ')') + { + for (i = 0; i<32; i++) + matchFlag[i] = 1; + } + else + { + logf (LOG_WARN, "Missing ) in match criteria %s in group %s", + spec, rGroup->groupName ? rGroup->groupName : "none"); + return NULL; + } + s++; + + for (i = 0; i<32; i++) + if (matchFlag[i] && w[i]) + { + if (first) + { + *dst++ = ' '; + first = 0; + } + strcpy (dst, w[i]); + dst += strlen(w[i]); + } + if (first) + { + logf (LOG_WARN, "Record in file %s didn't contain match" + " fields in (%d,%d)", fname, attrSet, attrUse); + return NULL; + } + } + else if (*s == '$') + { + int spec_len; + char special[64]; + const char *spec_src = NULL; + const char *s1 = ++s; + while (*s1 && *s1 != ' ' && *s1 != '\t') + s1++; + + spec_len = s1 - s; + if (spec_len > 63) + spec_len = 63; + memcpy (special, s, spec_len); + special[spec_len] = '\0'; + s = s1; + + if (!strcmp (special, "group")) + spec_src = rGroup->groupName; + else if (!strcmp (special, "database")) + spec_src = rGroup->databaseName; + else if (!strcmp (special, "filename")) + spec_src = fname; + else if (!strcmp (special, "type")) + spec_src = rGroup->recordType; + else + spec_src = NULL; + if (spec_src) + { + strcpy (dst, spec_src); + dst += strlen (spec_src); + } + } + else if (*s == '\"' || *s == '\'') + { + int stopMarker = *s++; + char tmpString[64]; + int i = 0; + + while (*s && *s != stopMarker) + { + if (i < 63) + tmpString[i++] = *s++; + } + if (*s) + s++; + tmpString[i] = '\0'; + strcpy (dst, tmpString); + dst += strlen (tmpString); + } + else + { + logf (LOG_WARN, "Syntax error in match criteria %s in group %s", + spec, rGroup->groupName ? rGroup->groupName : "none"); + return NULL; + } + *dst++ = 1; + } + if (dst == dstBuf) + { + logf (LOG_WARN, "No match criteria for record %s in group %s", + fname, rGroup->groupName ? rGroup->groupName : "none"); + return NULL; + } + return dstBuf; +} + +static int recordExtract (SYSNO *sysno, const char *fname, + struct recordGroup *rGroup, int deleteFlag, + int fd, + RecType recType) +{ + struct recExtractCtrl extractCtrl; + int r; + char *matchStr; + SYSNO sysnotmp; + Record rec; + + if (fd != -1) + { + extractCtrl.fd = fd; + /* extract keys */ + extractCtrl.subType = ""; + extractCtrl.init = wordInit; + extractCtrl.add = addRecordKeyAny; + + reckeys.buf_used = 0; + extractCtrl.readf = file_read; + r = (*recType->extract)(&extractCtrl); + + if (r) + { + logf (LOG_WARN, "Couldn't extract file %s, code %d", fname, r); + return 0; + } + } + + /* perform match if sysno not known and if match criteria is specified */ + + matchStr = NULL; + if (!sysno) + { + sysnotmp = 0; + sysno = &sysnotmp; + if (rGroup->recordId && *rGroup->recordId) + { + char *rinfo; + + matchStr = fileMatchStr (&reckeys, rGroup, fname, + rGroup->recordId); + if (matchStr) + { + rinfo = dict_lookup (matchDict, matchStr); + if (rinfo) + memcpy (sysno, rinfo+1, sizeof(*sysno)); + } + else + { + logf (LOG_WARN, "Record not inserted"); + return 0; + } + } + } + + /* new record ? */ + if (! *sysno) + { + if (deleteFlag) + { + logf (LOG_LOG, "? %s", fname); + return 1; + } + logf (LOG_LOG, "add %s %s", rGroup->recordType, fname); + rec = rec_new (records); + *sysno = rec->sysno; + + if (matchStr) + { + dict_insert (matchDict, matchStr, sizeof(*sysno), sysno); + } + flushRecordKeys (*sysno, 1, &reckeys, rGroup->databaseName); + + records_inserted++; + } + else + { + struct recKeys delkeys; + + rec = rec_get (records, *sysno); + + delkeys.buf_used = rec->size[recInfo_delKeys]; + delkeys.buf = rec->info[recInfo_delKeys]; + flushRecordKeys (*sysno, 0, &delkeys, rec->info[recInfo_databaseName]); + if (deleteFlag) + { + if (!delkeys.buf_used) + { + logf (LOG_WARN, "cannot delete %s - no delete keys", fname); + } + else + { + SYSNO sysnoz = 0; + logf (LOG_LOG, "delete %s %s", rGroup->recordType, fname); + records_deleted++; + if (matchStr) + dict_insert (matchDict, matchStr, sizeof(sysnoz), &sysnoz); + rec_del (records, &rec); + } + return 1; + } + else + { + if (!delkeys.buf_used) + { + logf (LOG_WARN, "cannot update %s - no delete keys", + fname); + } + else + { + logf (LOG_LOG, "update %s %s", rGroup->recordType, + fname); + flushRecordKeys (*sysno, 1, &reckeys, rGroup->databaseName); + records_updated++; + } + } + } + xfree (rec->info[recInfo_fileType]); + rec->info[recInfo_fileType] = + rec_strdup (rGroup->recordType, &rec->size[recInfo_fileType]); + + xfree (rec->info[recInfo_filename]); + rec->info[recInfo_filename] = + rec_strdup (fname, &rec->size[recInfo_filename]); + + xfree (rec->info[recInfo_delKeys]); + if (reckeys.buf_used > 0 && rGroup->flagStoreKeys == 1) + { + rec->info[recInfo_delKeys] = xmalloc (reckeys.buf_used); + rec->size[recInfo_delKeys] = reckeys.buf_used; + memcpy (rec->info[recInfo_delKeys], reckeys.buf, + rec->size[recInfo_delKeys]); + } + else + { + rec->info[recInfo_delKeys] = NULL; + rec->size[recInfo_delKeys] = 0; + } + + xfree (rec->info[recInfo_storeData]); + if (rGroup->flagStoreData == 1) + { + rec->size[recInfo_storeData] = file_noread; + rec->info[recInfo_storeData] = xmalloc (file_noread); + if (file_noread < FILE_READ_BUFSIZE) + memcpy (rec->info[recInfo_storeData], file_buf, file_noread); + else + { + if (lseek (fd, 0L, SEEK_SET) < 0) + { + logf (LOG_ERRNO|LOG_FATAL, "seek to 0 in %s", fname); + exit (1); + } + if (read (fd, rec->info[recInfo_storeData], file_noread) + < file_noread) + { + logf (LOG_ERRNO|LOG_FATAL, "read %d bytes of %s", + file_noread, fname); + exit (1); + } + } + } + else + { + rec->info[recInfo_storeData] = NULL; + rec->size[recInfo_storeData] = 0; + } + xfree (rec->info[recInfo_databaseName]); + rec->info[recInfo_databaseName] = + rec_strdup (rGroup->databaseName, &rec->size[recInfo_databaseName]); + + rec_put (records, &rec); + return 1; +} + +int fileExtract (SYSNO *sysno, const char *fname, + const struct recordGroup *rGroupP, int deleteFlag) { - int i, r; + int i, fd; + char gprefix[128]; char ext[128]; - SYSNO sysno; char ext_res[128]; - const char *file_type; - void *file_info; - struct recExtractCtrl extractCtrl; - RecType rt; + RecType recType; + struct recordGroup rGroupM; + struct recordGroup *rGroup = &rGroupM; + + memcpy (rGroup, rGroupP, sizeof(*rGroupP)); + + if (!rGroup->groupName || !*rGroup->groupName) + *gprefix = '\0'; + else + sprintf (gprefix, "%s.", rGroup->groupName); - key_databaseName = databaseName; + logf (LOG_DEBUG, "fileExtract %s", fname); + + /* determine file extension */ for (i = strlen(fname); --i >= 0; ) if (fname[i] == '/') { @@ -415,53 +880,97 @@ void file_extract (int cmd, const char *fname, const char *kname, strcpy (ext, fname+i+1); break; } - sprintf (ext_res, "fileExtension.%s", ext); - if (!(file_type = res_get (common_resource, ext_res))) - return; - if (!(rt = recType_byName (file_type))) - return; - logf (LOG_DEBUG, "%c %s k=%s", cmd, fname, 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); -#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 + /* determine file type - depending on extension */ + if (!rGroup->recordType) + { + sprintf (ext_res, "%srecordType.%s", gprefix, ext); + if (!(rGroup->recordType = res_get (common_resource, ext_res))) + { + sprintf (ext_res, "%srecordType", gprefix); + if (!(rGroup->recordType = res_get (common_resource, ext_res))) + { + logf (LOG_LOG, "? %s", fname); + return 0; + } + } + } + if (!rGroup->recordType) + { + logf (LOG_LOG, "? record %s", fname); + return 0; + } + if (!(recType = recType_byName (rGroup->recordType))) + { + logf (LOG_WARN, "No such record type: %s", rGroup->recordType); + return 0; } - else - memcpy (&sysno, (char*) file_info+1, sizeof(sysno)); - if ((extractCtrl.fd = open (fname, O_RDONLY)) == -1) + /* determine match criteria */ + if (!rGroup->recordId) { - logf (LOG_WARN|LOG_ERRNO, "open %s", fname); - return; + sprintf (ext_res, "%srecordId.%s", gprefix, ext); + rGroup->recordId = res_get (common_resource, ext_res); } - extractCtrl.subType = ""; - extractCtrl.init = wordInit; - extractCtrl.add = wordAddAny; -#if FILE_READ_BUF - file_read_start (extractCtrl.fd); -#endif - extractCtrl.readf = file_read; - key_sysno = sysno; - key_cmd = cmd; - r = (*rt->extract)(&extractCtrl); -#if FILE_READ_BUF - file_read_stop (extractCtrl.fd); -#endif - close (extractCtrl.fd); - if (r) - logf (LOG_WARN, "Couldn't extract file %s, code %d", fname, r); + + /* determine database name */ + if (!rGroup->databaseName) + { + sprintf (ext_res, "%sdatabase.%s", gprefix, ext); + if (!(rGroup->databaseName = res_get (common_resource, ext_res))) + { + sprintf (ext_res, "%sdatabase", gprefix); + rGroup->databaseName = res_get (common_resource, ext_res); + } + } + if (!rGroup->databaseName) + rGroup->databaseName = "Default"; + + if (rGroup->flagStoreData == -1) + { + const char *sval; + sprintf (ext_res, "%sstoreData.%s", gprefix, ext); + if (!(sval = res_get (common_resource, ext_res))) + { + sprintf (ext_res, "%sstoreData", gprefix); + sval = res_get (common_resource, ext_res); + } + if (sval) + rGroup->flagStoreData = atoi (sval); + } + if (rGroup->flagStoreData == -1) + rGroup->flagStoreData = 0; + + if (rGroup->flagStoreKeys == -1) + { + const char *sval; + + sprintf (ext_res, "%sstoreKeys.%s", gprefix, ext); + if (!(sval = res_get (common_resource, ext_res))) + { + sprintf (ext_res, "%sstoreKeys", gprefix); + sval = res_get (common_resource, ext_res); + } + if (sval) + rGroup->flagStoreKeys = atoi (sval); + } + if (rGroup->flagStoreKeys == -1) + rGroup->flagStoreKeys = 0; + + if (sysno && deleteFlag) + fd = -1; + else + { + if ((fd = open (fname, O_RDONLY)) == -1) + { + logf (LOG_WARN|LOG_ERRNO, "open %s", fname); + return 0; + } + } + file_read_start (fd); + recordExtract (sysno, fname, rGroup, deleteFlag, fd, recType); + file_read_stop (fd); + if (fd != -1) + close (fd); + return 1; } +