Bump year. Change Aps->ApS
[idzebra-moved-to-github.git] / index / retrieve.c
1 /* $Id: retrieve.c,v 1.28 2005-01-15 19:38:26 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     *addinfo = 0;
101     rec = rec_get (zh->reg->records, sysno);
102     if (!rec)
103     {
104         yaz_log (YLOG_DEBUG, "rec_get fail on sysno=" ZINT_FORMAT, sysno);
105         *basenamep = 0;
106         return 14;
107     }
108     recordAttr = rec_init_attr (zh->reg->zei, rec);
109
110     file_type = rec->info[recInfo_fileType];
111     fname = rec->info[recInfo_filename];
112     basename = rec->info[recInfo_databaseName];
113     *basenamep = (char *) odr_malloc (stream, strlen(basename)+1);
114     strcpy (*basenamep, basename);
115
116     if (comp && comp->which == Z_RecordComp_simple &&
117         comp->u.simple->which == Z_ElementSetNames_generic)
118     {
119         if (!strcmp (comp->u.simple->u.generic, "R"))
120             raw_mode = 1;
121     }
122     if (!(rt = recType_byName (zh->reg->recTypes, zh->res,
123                                file_type, &clientData)))
124     {
125         yaz_log (YLOG_WARN, "Retrieve: Cannot handle type %s",  file_type);
126         return 14;
127     }
128     yaz_log (YLOG_DEBUG, "retrieve localno=" ZINT_FORMAT " score=%d", sysno,score);
129     retrieveCtrl.fh = &fc;
130     fc.fd = -1;
131     retrieveCtrl.fname = fname;
132     if (rec->size[recInfo_storeData] > 0)
133     {
134         retrieveCtrl.readf = zebra_record_int_read;
135         retrieveCtrl.seekf = zebra_record_int_seek;
136         retrieveCtrl.tellf = zebra_record_int_tell;
137         fc.record_int_len = rec->size[recInfo_storeData];
138         fc.record_int_buf = rec->info[recInfo_storeData];
139         fc.record_int_pos = 0;
140         yaz_log (YLOG_DEBUG, "Internal retrieve. %d bytes", fc.record_int_len);
141         if (raw_mode)
142         {
143             *output_format = VAL_SUTRS;
144             *rec_lenp = rec->size[recInfo_storeData];
145             *rec_bufp = (char *) odr_malloc(stream, *rec_lenp);
146             memcpy(*rec_bufp, rec->info[recInfo_storeData], *rec_lenp);
147             rec_rm (&rec);
148             return 0;
149         }
150     }
151     else
152     {
153         char full_rep[1024];
154
155         if (zh->path_reg && !yaz_is_abspath (fname))
156         {
157             strcpy (full_rep, zh->path_reg);
158             strcat (full_rep, "/");
159             strcat (full_rep, fname);
160         }
161         else
162             strcpy (full_rep, fname);
163
164         if ((fc.fd = open (full_rep, O_BINARY|O_RDONLY)) == -1)
165         {
166             yaz_log (YLOG_WARN|YLOG_ERRNO, "Retrieve fail; missing file: %s",
167                   full_rep);
168             rec_rm (&rec);
169             return 14;
170         }
171         fc.record_offset = recordAttr->recordOffset;
172
173         retrieveCtrl.readf = zebra_record_ext_read;
174         retrieveCtrl.seekf = zebra_record_ext_seek;
175         retrieveCtrl.tellf = zebra_record_ext_tell;
176
177         zebra_record_ext_seek (retrieveCtrl.fh, 0);
178         if (raw_mode)
179         {
180             *output_format = VAL_SUTRS;
181             *rec_lenp = recordAttr->recordSize;
182             *rec_bufp = (char *) odr_malloc(stream, *rec_lenp);
183             zebra_record_ext_read(&fc, *rec_bufp, *rec_lenp);
184             rec_rm (&rec);
185             close (fc.fd);
186             return 0;
187         }
188     }
189     retrieveCtrl.localno = sysno;
190     retrieveCtrl.score = score;
191     retrieveCtrl.recordSize = recordAttr->recordSize;
192     retrieveCtrl.odr = stream;
193     retrieveCtrl.input_format = retrieveCtrl.output_format = input_format;
194     retrieveCtrl.comp = comp;
195     retrieveCtrl.encoding = zh->record_encoding;
196     retrieveCtrl.diagnostic = 0;
197     retrieveCtrl.addinfo = 0;
198     retrieveCtrl.dh = zh->reg->dh;
199     retrieveCtrl.res = zh->res;
200     retrieveCtrl.rec_buf = 0;
201     retrieveCtrl.rec_len = -1;
202     
203     (*rt->retrieve)(clientData, &retrieveCtrl);
204     *output_format = retrieveCtrl.output_format;
205     *rec_bufp = (char *) retrieveCtrl.rec_buf;
206     *rec_lenp = retrieveCtrl.rec_len;
207     if (fc.fd != -1)
208         close (fc.fd);
209     rec_rm (&rec);
210
211     *addinfo = retrieveCtrl.addinfo;
212     return retrieveCtrl.diagnostic;
213 }