Using the new ylog.h everywhere, and fixing what that breaks!
[idzebra-moved-to-github.git] / index / retrieve.c
1 /* $Id: retrieve.c,v 1.26 2004-11-19 10:27:03 heikki Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
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 {
90     Record rec;
91     char *fname, *file_type, *basename;
92     RecType rt;
93     struct recRetrieveCtrl retrieveCtrl;
94     struct zebra_fetch_control fc;
95     RecordAttr *recordAttr;
96     void *clientData;
97     int raw_mode = 0;
98
99     rec = rec_get (zh->reg->records, sysno);
100     if (!rec)
101     {
102         yaz_log (YLOG_DEBUG, "rec_get fail on sysno=" ZINT_FORMAT, sysno);
103         *basenamep = 0;
104         return 14;
105     }
106     recordAttr = rec_init_attr (zh->reg->zei, rec);
107
108     file_type = rec->info[recInfo_fileType];
109     fname = rec->info[recInfo_filename];
110     basename = rec->info[recInfo_databaseName];
111     *basenamep = (char *) odr_malloc (stream, strlen(basename)+1);
112     strcpy (*basenamep, basename);
113
114     if (comp && comp->which == Z_RecordComp_simple &&
115         comp->u.simple->which == Z_ElementSetNames_generic)
116     {
117         if (!strcmp (comp->u.simple->u.generic, "R"))
118             raw_mode = 1;
119     }
120     if (!(rt = recType_byName (zh->reg->recTypes, zh->res,
121                                file_type, &clientData)))
122     {
123         yaz_log (YLOG_WARN, "Retrieve: Cannot handle type %s",  file_type);
124         return 14;
125     }
126     yaz_log (YLOG_DEBUG, "retrieve localno=" ZINT_FORMAT " score=%d", sysno,score);
127     retrieveCtrl.fh = &fc;
128     fc.fd = -1;
129     retrieveCtrl.fname = fname;
130     if (rec->size[recInfo_storeData] > 0)
131     {
132         retrieveCtrl.readf = zebra_record_int_read;
133         retrieveCtrl.seekf = zebra_record_int_seek;
134         retrieveCtrl.tellf = zebra_record_int_tell;
135         fc.record_int_len = rec->size[recInfo_storeData];
136         fc.record_int_buf = rec->info[recInfo_storeData];
137         fc.record_int_pos = 0;
138         yaz_log (YLOG_DEBUG, "Internal retrieve. %d bytes", fc.record_int_len);
139         if (raw_mode)
140         {
141             *output_format = VAL_SUTRS;
142             *rec_lenp = rec->size[recInfo_storeData];
143             *rec_bufp = (char *) odr_malloc(stream, *rec_lenp);
144             memcpy(*rec_bufp, rec->info[recInfo_storeData], *rec_lenp);
145             rec_rm (&rec);
146             return 0;
147         }
148     }
149     else
150     {
151         char full_rep[1024];
152
153         if (zh->path_reg && !yaz_is_abspath (fname))
154         {
155             strcpy (full_rep, zh->path_reg);
156             strcat (full_rep, "/");
157             strcat (full_rep, fname);
158         }
159         else
160             strcpy (full_rep, fname);
161
162         if ((fc.fd = open (full_rep, O_BINARY|O_RDONLY)) == -1)
163         {
164             yaz_log (YLOG_WARN|YLOG_ERRNO, "Retrieve fail; missing file: %s",
165                   full_rep);
166             rec_rm (&rec);
167             return 14;
168         }
169         fc.record_offset = recordAttr->recordOffset;
170
171         retrieveCtrl.readf = zebra_record_ext_read;
172         retrieveCtrl.seekf = zebra_record_ext_seek;
173         retrieveCtrl.tellf = zebra_record_ext_tell;
174
175         zebra_record_ext_seek (retrieveCtrl.fh, 0);
176         if (raw_mode)
177         {
178             *output_format = VAL_SUTRS;
179             *rec_lenp = recordAttr->recordSize;
180             *rec_bufp = (char *) odr_malloc(stream, *rec_lenp);
181             zebra_record_ext_read(&fc, *rec_bufp, *rec_lenp);
182             rec_rm (&rec);
183             close (fc.fd);
184             return 0;
185         }
186     }
187     retrieveCtrl.localno = sysno;
188     retrieveCtrl.score = score;
189     retrieveCtrl.recordSize = recordAttr->recordSize;
190     retrieveCtrl.odr = stream;
191     retrieveCtrl.input_format = retrieveCtrl.output_format = input_format;
192     retrieveCtrl.comp = comp;
193     retrieveCtrl.encoding = zh->record_encoding;
194     retrieveCtrl.diagnostic = 0;
195     retrieveCtrl.dh = zh->reg->dh;
196     retrieveCtrl.res = zh->res;
197     retrieveCtrl.rec_buf = 0;
198     retrieveCtrl.rec_len = -1;
199     
200     (*rt->retrieve)(clientData, &retrieveCtrl);
201     *output_format = retrieveCtrl.output_format;
202     *rec_bufp = (char *) retrieveCtrl.rec_buf;
203     *rec_lenp = retrieveCtrl.rec_len;
204     if (fc.fd != -1)
205         close (fc.fd);
206     rec_rm (&rec);
207
208     return retrieveCtrl.diagnostic;
209 }