From: Adam Dickmeiss Date: Wed, 21 Aug 1996 13:32:49 +0000 (+0000) Subject: Implemented saveFile method and extended loadFile method to work with it. X-Git-Tag: IRTCL.1.4~92 X-Git-Url: http://lists.indexdata.com/cgi-bin?a=commitdiff_plain;h=13d9f750171f21457dd31c119737ef4a8080b04d;p=ir-tcl-moved-to-github.git Implemented saveFile method and extended loadFile method to work with it. --- diff --git a/CHANGELOG b/CHANGELOG index 5e70764..aca2800 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -$Id: CHANGELOG,v 1.26 1996-08-09 15:33:05 adam Exp $ +$Id: CHANGELOG,v 1.27 1996-08-21 13:32:49 adam Exp $ 06/19/95 Release of ir-tcl-1.0b ------------------------------------------------------ @@ -102,4 +102,9 @@ $Id: CHANGELOG,v 1.26 1996-08-09 15:33:05 adam Exp $ asynchronous I/O works much better on Windows now. 08/09/96 Borland C 5 makefile supplied with IrTcl. - + +08/21/95 New method, saveFile, that saves DB of records to a file. + +08/21/96 loadFile method changed to use load records previously saved + with saveFile. + diff --git a/explain.c b/explain.c index 8227d70..6befc11 100644 --- a/explain.c +++ b/explain.c @@ -5,7 +5,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: explain.c,v $ - * Revision 1.2 1996-08-20 09:27:48 adam + * Revision 1.3 1996-08-21 13:32:50 adam + * Implemented saveFile method and extended loadFile method to work with it. + * + * Revision 1.2 1996/08/20 09:27:48 adam * More work on explain. * Renamed tkinit.c to tkmain.c. The tcl shell uses the Tcl 7.5 interface * for socket i/o instead of the handcrafted one (for Tcl 7.3 and Tcl7.4). @@ -177,7 +180,10 @@ static int ir_match_start (const char *name, void *p, IrExpArg *iea, int argi) { if (!p) + { + Tcl_AppendResult (iea->interp, name, " ", NULL); return 0; + } if (argi < iea->argc) { if (strcmp (name, iea->argv[argi])) @@ -211,7 +217,7 @@ static int ir_null (IrExpArg *iea, { if (!ir_match_start (name, p, iea, ++argi)) return TCL_OK; - Tcl_AppendResult (iea->interp, "{} ", NULL); + Tcl_AppendResult (iea->interp, "1 ", NULL); return ir_match_end (name, iea, argi); } diff --git a/ir-tcl.c b/ir-tcl.c index 2db9f28..78aacca 100644 --- a/ir-tcl.c +++ b/ir-tcl.c @@ -5,7 +5,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: ir-tcl.c,v $ - * Revision 1.93 1996-08-16 15:07:45 adam + * Revision 1.94 1996-08-21 13:32:53 adam + * Implemented saveFile method and extended loadFile method to work with it. + * + * Revision 1.93 1996/08/16 15:07:45 adam * First work on Explain. * * Revision 1.92 1996/08/09 15:33:07 adam @@ -2633,47 +2636,165 @@ static int do_present (void *o, Tcl_Interp *interp, int argc, char **argv) return ir_tcl_send_APDU (interp, p, apdu, "present", *argv); } +#define IR_TCL_RECORD_ENCODING_ISO2709 1 +#define IR_TCL_RECORD_ENCODING_RAW 2 + +typedef struct { + int encoding; + int syntax; + int size; +} IrTcl_FileRecordHead; + /* * do_loadFile: Load result set from file */ - static int do_loadFile (void *o, Tcl_Interp *interp, int argc, char **argv) { IrTcl_SetObj *setobj = o; FILE *inf; size_t size; - int no = 1; + int offset; + int start = 1; + int number = 30000; char *buf; - + if (argc <= 0) return TCL_OK; - if (argc != 3) + if (argc < 3) { interp->result = "wrong # args"; return TCL_ERROR; } + if (argc > 3) + start = atoi (argv[3]); + if (argc > 4) + number = atoi (argv[4]); + offset = start; + inf = fopen (argv[2], "r"); if (!inf) { Tcl_AppendResult (interp, "Cannot open ", argv[2], NULL); return TCL_ERROR; } - while ((buf = ir_tcl_fread_marc (inf, &size))) + while (offset < (start+number)) { + IrTcl_FileRecordHead head; IrTcl_RecordList *rl; - rl = new_IR_record (setobj, no, Z_NamePlusRecord_databaseRecord, "F"); - rl->u.dbrec.type = VAL_USMARC; - rl->u.dbrec.buf = buf; - rl->u.dbrec.size = size; - no++; + if (fread (&head, sizeof(head), 1, inf) < 1) + break; + rl = new_IR_record (setobj, offset, + Z_NamePlusRecord_databaseRecord, + (argc > 5) ? argv[5] : NULL); + rl->u.dbrec.type = head.syntax; + if (head.encoding == IR_TCL_RECORD_ENCODING_ISO2709) + { + if (!(buf = ir_tcl_fread_marc (inf, &size))) + break; + rl->u.dbrec.buf = buf; + rl->u.dbrec.size = size; + if (size != head.size) + { + Tcl_AppendResult (interp, "Bad ISO2709 encoding in file", + argv[2], NULL); + fclose (inf); + return TCL_ERROR; + } + } + else if (head.encoding == IR_TCL_RECORD_ENCODING_RAW) + { + rl->u.dbrec.size = head.size; + rl->u.dbrec.buf = ir_tcl_malloc (head.size + 1); + if (fread (rl->u.dbrec.buf, rl->u.dbrec.size, 1, inf) < 1) + { + Tcl_AppendResult (interp, "Bad RAW encoding in file", + argv[2], NULL); + fclose (inf); + return TCL_ERROR; + } + rl->u.dbrec.buf[rl->u.dbrec.size] = '\0'; + } + else + { + rl->u.dbrec.buf = NULL; + rl->u.dbrec.size = 0; + Tcl_AppendResult (interp, "Bad encoding in file", argv[2], NULL); + fclose (inf); + return TCL_ERROR; + } + offset++; } - setobj->numberOfRecordsReturned = no-1; + setobj->numberOfRecordsReturned = offset - start; fclose (inf); return TCL_OK; } +/* + * do_saveFile: Save result set on file + */ +static int do_saveFile (void *o, Tcl_Interp *interp, + int argc, char **argv) +{ + IrTcl_SetObj *setobj = o; + FILE *outf; + int offset; + int start = 1; + int number = 30000; + IrTcl_RecordList *rl; + + if (argc <= 0) + return TCL_OK; + if (argc < 3) + { + interp->result = "wrong # args"; + return TCL_ERROR; + } + if (argc > 3) + start = atoi (argv[3]); + if (argc > 4) + number = atoi (argv[4]); + offset = start; + + outf = fopen (argv[2], "w"); + if (!outf) + { + Tcl_AppendResult (interp, "Cannot open ", argv[2], NULL); + return TCL_ERROR; + } + while (offset < (start+number) && (rl = find_IR_record (setobj, offset))) + { + if (rl->which == Z_NamePlusRecord_databaseRecord && + rl->u.dbrec.buf && rl->u.dbrec.size) + { + IrTcl_FileRecordHead head; + + head.encoding = IR_TCL_RECORD_ENCODING_RAW; + head.syntax = rl->u.dbrec.type; + head.size = rl->u.dbrec.size; + if (fwrite (&head, sizeof(head), 1, outf) < 1) + { + Tcl_AppendResult (interp, "Cannot write ", argv[2], NULL); + return TCL_ERROR; + } + if (fwrite (rl->u.dbrec.buf, rl->u.dbrec.size, 1, outf) < 1) + { + Tcl_AppendResult (interp, "Cannot write ", argv[2], NULL); + return TCL_ERROR; + } + } + offset++; + } + if (fclose (outf)) + { + Tcl_AppendResult (interp, "Cannot write ", argv[2], NULL); + return TCL_ERROR; + } + return TCL_OK; +} + + static IrTcl_Method ir_set_method_tab[] = { { "search", do_search, NULL}, { "searchResponse", do_searchResponse, NULL}, @@ -2695,6 +2816,7 @@ static IrTcl_Method ir_set_method_tab[] = { { "diag", do_diag, NULL}, { "responseStatus", do_responseStatus, NULL}, { "loadFile", do_loadFile, NULL}, + { "saveFile", do_saveFile, NULL}, { NULL, NULL} };