2 * Copyright (C) 1995-1999, Index Data
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.17 2002-05-03 13:49:04 adam
10 * Revision 1.16 2002/04/04 20:50:37 adam
11 * Multi register works with record paths and data1 profile path
13 * Revision 1.15 2002/04/04 14:14:13 adam
14 * Multiple registers (alpha early)
16 * Revision 1.14 2001/01/22 11:41:41 adam
17 * Added support for raw retrieval (element set name "R").
19 * Revision 1.13 2000/03/20 19:08:36 adam
20 * Added remote record import using Z39.50 extended services and Segment
23 * Revision 1.12 2000/03/15 15:00:30 adam
24 * First work on threaded version.
26 * Revision 1.11 1999/10/29 10:00:00 adam
27 * Fixed minor bug where database name wasn't set in zebra_record_fetch.
29 * Revision 1.10 1999/05/26 07:49:13 adam
32 * Revision 1.9 1999/05/20 12:57:18 adam
33 * Implemented TCL filter. Updated recctrl system.
35 * Revision 1.8 1999/03/09 16:27:49 adam
36 * More work on SDRKit integration.
38 * Revision 1.7 1999/03/02 16:15:43 quinn
39 * Added "tagsysno" and "tagrank" directives to zebra.cfg.
41 * Revision 1.6 1999/02/18 15:01:25 adam
44 * Revision 1.5 1999/02/17 11:29:56 adam
45 * Fixed in record_fetch. Minor updates to API.
47 * Revision 1.4 1999/02/02 14:51:07 adam
48 * Updated WIN32 code specific sections. Changed header.
50 * Revision 1.3 1998/10/28 10:54:40 adam
53 * Revision 1.2 1998/10/16 08:14:33 adam
54 * Updated record control system.
56 * Revision 1.1 1998/03/05 08:45:13 adam
57 * New result set model and modular ranking system. Moved towards
58 * descent server API. System information stored as "SGML" records.
76 int zebra_record_ext_read (void *fh, char *buf, size_t count)
78 struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
79 return read (fc->fd, buf, count);
82 off_t zebra_record_ext_seek (void *fh, off_t offset)
84 struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
85 return lseek (fc->fd, offset + fc->record_offset, SEEK_SET);
88 off_t zebra_record_ext_tell (void *fh)
90 struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
91 return lseek (fc->fd, 0, SEEK_CUR) - fc->record_offset;
94 off_t zebra_record_int_seek (void *fh, off_t offset)
96 struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
97 return (off_t) (fc->record_int_pos = offset);
100 off_t zebra_record_int_tell (void *fh)
102 struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
103 return (off_t) fc->record_int_pos;
106 int zebra_record_int_read (void *fh, char *buf, size_t count)
108 struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
109 int l = fc->record_int_len - fc->record_int_pos;
112 l = (l < (int) count) ? l : count;
113 memcpy (buf, fc->record_int_buf + fc->record_int_pos, l);
114 fc->record_int_pos += l;
118 void zebra_record_int_end (void *fh, off_t off)
120 struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
121 fc->offset_end = off;
124 int zebra_record_fetch (ZebraHandle zh, int sysno, int score, ODR stream,
125 oid_value input_format, Z_RecordComposition *comp,
126 oid_value *output_format, char **rec_bufp,
127 int *rec_lenp, char **basenamep)
130 char *fname, *file_type, *basename;
132 struct recRetrieveCtrl retrieveCtrl;
134 struct zebra_fetch_control fc;
135 RecordAttr *recordAttr;
138 rec = rec_get (zh->reg->records, sysno);
141 logf (LOG_DEBUG, "rec_get fail on sysno=%d", sysno);
145 recordAttr = rec_init_attr (zh->reg->zei, rec);
147 file_type = rec->info[recInfo_fileType];
148 fname = rec->info[recInfo_filename];
149 basename = rec->info[recInfo_databaseName];
150 *basenamep = (char *) odr_malloc (stream, strlen(basename)+1);
151 strcpy (*basenamep, basename);
153 if (comp && comp->which == Z_RecordComp_simple &&
154 comp->u.simple->which == Z_ElementSetNames_generic)
156 if (!strcmp (comp->u.simple->u.generic, "R"))
159 if (!(rt = recType_byName (zh->reg->recTypes,
160 file_type, subType, &clientData)))
162 logf (LOG_WARN, "Retrieve: Cannot handle type %s", file_type);
165 logf (LOG_DEBUG, "retrieve localno=%d score=%d", sysno, score);
166 retrieveCtrl.fh = &fc;
168 if (rec->size[recInfo_storeData] > 0)
170 retrieveCtrl.readf = zebra_record_int_read;
171 retrieveCtrl.seekf = zebra_record_int_seek;
172 retrieveCtrl.tellf = zebra_record_int_tell;
173 fc.record_int_len = rec->size[recInfo_storeData];
174 fc.record_int_buf = rec->info[recInfo_storeData];
175 fc.record_int_pos = 0;
176 logf (LOG_DEBUG, "Internal retrieve. %d bytes", fc.record_int_len);
182 if (zh->path_reg && !yaz_is_abspath (fname))
184 strcpy (full_rep, zh->path_reg);
185 strcat (full_rep, "/");
186 strcat (full_rep, fname);
189 strcpy (full_rep, fname);
192 if ((fc.fd = open (full_rep, O_BINARY|O_RDONLY)) == -1)
194 logf (LOG_WARN|LOG_ERRNO, "Retrieve fail; missing file: %s",
199 fc.record_offset = recordAttr->recordOffset;
201 retrieveCtrl.readf = zebra_record_ext_read;
202 retrieveCtrl.seekf = zebra_record_ext_seek;
203 retrieveCtrl.tellf = zebra_record_ext_tell;
205 zebra_record_ext_seek (retrieveCtrl.fh, 0);
207 retrieveCtrl.subType = subType;
208 retrieveCtrl.localno = sysno;
209 retrieveCtrl.score = score;
210 retrieveCtrl.recordSize = recordAttr->recordSize;
211 retrieveCtrl.odr = stream;
212 retrieveCtrl.input_format = retrieveCtrl.output_format = input_format;
213 retrieveCtrl.comp = comp;
214 retrieveCtrl.diagnostic = 0;
215 retrieveCtrl.dh = zh->reg->dh;
216 retrieveCtrl.res = zh->res;
217 retrieveCtrl.rec_buf = 0;
218 retrieveCtrl.rec_len = -1;
220 (*rt->retrieve)(clientData, &retrieveCtrl);
221 *output_format = retrieveCtrl.output_format;
222 *rec_bufp = (char *) retrieveCtrl.rec_buf;
223 *rec_lenp = retrieveCtrl.rec_len;
228 return retrieveCtrl.diagnostic;