b623437535ecb28c3c7b9d46807510ae138fae4a
[idzebra-moved-to-github.git] / index / retrieve.c
1 /* $Id: retrieve.c,v 1.29 2005-04-14 12:02:58 adam Exp $
2    Copyright (C) 1995-2005
3    Index Data ApS
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23 #include <stdio.h>
24 #include <assert.h>
25
26 #include <fcntl.h>
27 #ifdef WIN32
28 #include <io.h>
29 #include <process.h>
30 #else
31 #include <unistd.h>
32 #endif
33
34 #include "index.h"
35 #include <direntz.h>
36
37 int zebra_record_ext_read (void *fh, char *buf, size_t count)
38 {
39     struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
40     return read (fc->fd, buf, count);
41 }
42
43 off_t zebra_record_ext_seek (void *fh, off_t offset)
44 {
45     struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
46     return lseek (fc->fd, offset + fc->record_offset, SEEK_SET);
47 }
48
49 off_t zebra_record_ext_tell (void *fh)
50 {
51     struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
52     return lseek (fc->fd, 0, SEEK_CUR) - fc->record_offset;
53 }
54
55 off_t zebra_record_int_seek (void *fh, off_t offset)
56 {
57     struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
58     return (off_t) (fc->record_int_pos = offset);
59 }
60
61 off_t zebra_record_int_tell (void *fh)
62 {
63     struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
64     return (off_t) fc->record_int_pos;
65 }
66
67 int zebra_record_int_read (void *fh, char *buf, size_t count)
68 {
69     struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
70     int l = fc->record_int_len - fc->record_int_pos;
71     if (l <= 0)
72         return 0;
73     l = (l < (int) count) ? l : (int) count;
74     memcpy (buf, fc->record_int_buf + fc->record_int_pos, l);
75     fc->record_int_pos += l;
76     return l;
77 }
78
79 void zebra_record_int_end (void *fh, off_t off)
80 {
81     struct zebra_fetch_control *fc = (struct zebra_fetch_control *) fh;
82     fc->offset_end = off;
83 }
84
85 int zebra_record_fetch (ZebraHandle zh, SYSNO sysno, int score, ODR stream,
86                         oid_value input_format, Z_RecordComposition *comp,
87                         oid_value *output_format, char **rec_bufp,
88                         int *rec_lenp, char **basenamep,
89                         char **addinfo)
90 {
91     Record rec;
92     char *fname, *file_type, *basename;
93     RecType rt;
94     struct recRetrieveCtrl retrieveCtrl;
95     struct zebra_fetch_control fc;
96     RecordAttr *recordAttr;
97     void *clientData;
98     int raw_mode = 0;
99
100     *basenamep = 0;
101     *addinfo = 0;
102     if (comp && comp->which == Z_RecordComp_simple &&
103         comp->u.simple->which == Z_ElementSetNames_generic && 
104         !strcmp (comp->u.simple->u.generic, "_sysno_"))
105     {
106         char rec_str[60];
107         sprintf(rec_str, ZINT_FORMAT, sysno);
108         *output_format = VAL_SUTRS;
109         *rec_lenp = strlen(rec_str);
110         *rec_bufp = odr_strdup(stream, rec_str);
111         return 0;
112     }
113     rec = rec_get (zh->reg->records, sysno);
114     if (!rec)
115     {
116         yaz_log (YLOG_DEBUG, "rec_get fail on sysno=" ZINT_FORMAT, sysno);
117         *basenamep = 0;
118         return 14;
119     }
120     recordAttr = rec_init_attr (zh->reg->zei, rec);
121
122     file_type = rec->info[recInfo_fileType];
123     fname = rec->info[recInfo_filename];
124     basename = rec->info[recInfo_databaseName];
125     *basenamep = (char *) odr_malloc (stream, strlen(basename)+1);
126     strcpy (*basenamep, basename);
127
128     if (comp && comp->which == Z_RecordComp_simple &&
129         comp->u.simple->which == Z_ElementSetNames_generic && 
130         !strcmp (comp->u.simple->u.generic, "R"))
131     {
132         raw_mode = 1;
133     }
134     if (!(rt = recType_byName (zh->reg->recTypes, zh->res,
135                                file_type, &clientData)))
136     {
137         yaz_log (YLOG_WARN, "Retrieve: Cannot handle type %s",  file_type);
138         return 14;
139     }
140     yaz_log (YLOG_DEBUG, "retrieve localno=" ZINT_FORMAT " score=%d", sysno,score);
141     retrieveCtrl.fh = &fc;
142     fc.fd = -1;
143     retrieveCtrl.fname = fname;
144     if (rec->size[recInfo_storeData] > 0)
145     {
146         retrieveCtrl.readf = zebra_record_int_read;
147         retrieveCtrl.seekf = zebra_record_int_seek;
148         retrieveCtrl.tellf = zebra_record_int_tell;
149         fc.record_int_len = rec->size[recInfo_storeData];
150         fc.record_int_buf = rec->info[recInfo_storeData];
151         fc.record_int_pos = 0;
152         yaz_log (YLOG_DEBUG, "Internal retrieve. %d bytes", fc.record_int_len);
153         if (raw_mode)
154         {
155             *output_format = VAL_SUTRS;
156             *rec_lenp = rec->size[recInfo_storeData];
157             *rec_bufp = (char *) odr_malloc(stream, *rec_lenp);
158             memcpy(*rec_bufp, rec->info[recInfo_storeData], *rec_lenp);
159             rec_rm (&rec);
160             return 0;
161         }
162     }
163     else
164     {
165         char full_rep[1024];
166
167         if (zh->path_reg && !yaz_is_abspath (fname))
168         {
169             strcpy (full_rep, zh->path_reg);
170             strcat (full_rep, "/");
171             strcat (full_rep, fname);
172         }
173         else
174             strcpy (full_rep, fname);
175
176         if ((fc.fd = open (full_rep, O_BINARY|O_RDONLY)) == -1)
177         {
178             yaz_log (YLOG_WARN|YLOG_ERRNO, "Retrieve fail; missing file: %s",
179                   full_rep);
180             rec_rm (&rec);
181             return 14;
182         }
183         fc.record_offset = recordAttr->recordOffset;
184
185         retrieveCtrl.readf = zebra_record_ext_read;
186         retrieveCtrl.seekf = zebra_record_ext_seek;
187         retrieveCtrl.tellf = zebra_record_ext_tell;
188
189         zebra_record_ext_seek (retrieveCtrl.fh, 0);
190         if (raw_mode)
191         {
192             *output_format = VAL_SUTRS;
193             *rec_lenp = recordAttr->recordSize;
194             *rec_bufp = (char *) odr_malloc(stream, *rec_lenp);
195             zebra_record_ext_read(&fc, *rec_bufp, *rec_lenp);
196             rec_rm (&rec);
197             close (fc.fd);
198             return 0;
199         }
200     }
201     retrieveCtrl.localno = sysno;
202     retrieveCtrl.score = score;
203     retrieveCtrl.recordSize = recordAttr->recordSize;
204     retrieveCtrl.odr = stream;
205     retrieveCtrl.input_format = retrieveCtrl.output_format = input_format;
206     retrieveCtrl.comp = comp;
207     retrieveCtrl.encoding = zh->record_encoding;
208     retrieveCtrl.diagnostic = 0;
209     retrieveCtrl.addinfo = 0;
210     retrieveCtrl.dh = zh->reg->dh;
211     retrieveCtrl.res = zh->res;
212     retrieveCtrl.rec_buf = 0;
213     retrieveCtrl.rec_len = -1;
214     
215     (*rt->retrieve)(clientData, &retrieveCtrl);
216     *output_format = retrieveCtrl.output_format;
217     *rec_bufp = (char *) retrieveCtrl.rec_buf;
218     *rec_lenp = retrieveCtrl.rec_len;
219     if (fc.fd != -1)
220         close (fc.fd);
221     rec_rm (&rec);
222
223     *addinfo = retrieveCtrl.addinfo;
224     return retrieveCtrl.diagnostic;
225 }