optimize for C source code
[idzebra-moved-to-github.git] / recctrl / rectext.c
1 /* $Id: rectext.c,v 1.29 2005-06-23 06:45:47 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
24 #include <stdio.h>
25 #include <assert.h>
26 #include <ctype.h>
27
28 #include <idzebra/util.h>
29 #include <idzebra/recctrl.h>
30
31 struct filter_info {
32     char *sep;
33 };
34
35 static void *filter_init (Res res, RecType recType)
36 {
37     struct filter_info *tinfo = (struct filter_info *) xmalloc(sizeof(*tinfo));
38     tinfo->sep = 0;
39     return tinfo;
40 }
41
42 static void filter_config(void *clientData, Res res, const char *args)
43 {
44     struct filter_info *tinfo = (struct filter_info*) clientData;
45     xfree(tinfo->sep);
46     tinfo->sep = 0;
47     if (args && *args)
48         tinfo->sep = xstrdup(args);
49 }
50
51 static void filter_destroy (void *clientData)
52 {
53     struct filter_info *tinfo = clientData;
54     xfree (tinfo->sep);
55     xfree (tinfo);
56 }
57
58 struct buf_info {
59     struct recExtractCtrl *p;
60     char *buf;
61     int offset;
62     int max;
63 };
64
65 static struct buf_info *buf_open (struct recExtractCtrl *p)
66 {
67     struct buf_info *fi = (struct buf_info *) xmalloc (sizeof(*fi));
68
69     fi->p = p;
70     fi->buf = (char *) xmalloc (4096);
71     fi->offset = 1;
72     fi->max = 1;
73     return fi;
74 }
75
76 static int buf_getchar (struct filter_info *tinfo, struct buf_info *fi, char *dst)
77 {
78     if (fi->offset >= fi->max)
79     {
80         if (fi->max <= 0)
81             return 0;
82         fi->max = (*fi->p->readf)(fi->p->fh, fi->buf, 4096);
83         fi->offset = 0;
84         if (fi->max <= 0)
85             return 0;
86     }
87     *dst = fi->buf[(fi->offset)++];
88     if (tinfo->sep && *dst == *tinfo->sep)
89     {
90         off_t off = (*fi->p->tellf)(fi->p->fh);
91         (*fi->p->endf)(fi->p->fh, off - (fi->max - fi->offset));
92         return 0;
93     }
94     return 1;
95 }
96
97 static void buf_close (struct buf_info *fi)
98 {
99     xfree (fi->buf);
100     xfree (fi);
101 }
102
103 static int filter_extract (void *clientData, struct recExtractCtrl *p)
104 {
105     struct filter_info *tinfo = clientData;
106     char w[512];
107     RecWord recWord;
108     int r;
109     struct buf_info *fi = buf_open (p);
110     int no_read = 0;
111
112 #if 0
113     yaz_log(YLOG_LOG, "filter_extract off=%ld",
114             (long) (*fi->p->tellf)(fi->p->fh));
115 #endif
116     (*p->init)(p, &recWord);
117     do
118     {
119         int i = 0;
120             
121         r = buf_getchar (tinfo, fi, w);
122         while (r > 0 && i < 511 && w[i] != '\n' && w[i] != '\r')
123         {
124             i++;
125             r = buf_getchar (tinfo, fi, w + i); 
126         }
127         if (i)
128         {
129             no_read += i;
130             recWord.term_buf = w;
131             recWord.term_len = i;
132             (*p->tokenAdd)(&recWord);
133         }
134     } while (r > 0);
135     buf_close (fi);
136     if (no_read == 0)
137         return RECCTRL_EXTRACT_EOF;
138     return RECCTRL_EXTRACT_OK;
139 }
140
141 static int filter_retrieve (void *clientData, struct recRetrieveCtrl *p)
142 {
143     int r, filter_ptr = 0;
144     static char *filter_buf = NULL;
145     static int filter_size = 0;
146     int make_header = 1;
147     int make_body = 1;
148     const char *elementSetName = NULL;
149     int no_lines = 0;
150
151     if (p->comp && p->comp->which == Z_RecordComp_simple &&
152         p->comp->u.simple->which == Z_ElementSetNames_generic)
153         elementSetName = p->comp->u.simple->u.generic;
154
155     if (elementSetName)
156     {
157         /* don't make header for the R(aw) element set name */
158         if (!strcmp(elementSetName, "R"))
159         {
160             make_header = 0;
161             make_body = 1;
162         }
163         /* only make header for the H(eader) element set name */
164         else if (!strcmp(elementSetName, "H"))
165         {
166             make_header = 1;
167             make_body = 0;
168         }
169     }
170     while (1)
171     {
172         if (filter_ptr + 4096 >= filter_size)
173         {
174             char *nb;
175
176             filter_size = 2*filter_size + 8192;
177             nb = (char *) xmalloc (filter_size);
178             if (filter_buf)
179             {
180                 memcpy (nb, filter_buf, filter_ptr);
181                 xfree (filter_buf);
182             }
183             filter_buf = nb;
184         }
185         if (make_header && filter_ptr == 0)
186         {
187             if (p->score >= 0)
188             {
189                 sprintf (filter_buf, "Rank: %d\n", p->score);
190                 filter_ptr = strlen(filter_buf);
191             }
192             sprintf (filter_buf + filter_ptr, "Local Number: " ZINT_FORMAT "\n",
193                      p->localno);
194             filter_ptr = strlen(filter_buf);
195             if (p->fname)
196             {
197                 sprintf (filter_buf + filter_ptr, "Filename: %s\n", p->fname);
198                 filter_ptr = strlen(filter_buf);
199             }
200             strcpy(filter_buf+filter_ptr++, "\n");
201         }
202         if (!make_body)
203             break;
204         r = (*p->readf)(p->fh, filter_buf + filter_ptr, 4096);
205         if (r <= 0)
206             break;
207         filter_ptr += r;
208     }
209     filter_buf[filter_ptr] = '\0';
210     if (elementSetName)
211     {
212         if (!strcmp (elementSetName, "B"))
213             no_lines = 4;
214         if (!strcmp (elementSetName, "M"))
215             no_lines = 20;
216     }
217     if (no_lines)
218     {
219         char *p = filter_buf;
220         int i = 0;
221
222         while (++i <= no_lines && (p = strchr (p, '\n')))
223             p++;
224         if (p)
225         {
226             p[1] = '\0';
227             filter_ptr = p-filter_buf;
228         }
229     }
230     p->output_format = VAL_SUTRS;
231     p->rec_buf = filter_buf;
232     p->rec_len = filter_ptr; 
233     return 0;
234 }
235
236 static struct recType filter_type = {
237     0,
238     "text",
239     filter_init,
240     filter_config,
241     filter_destroy,
242     filter_extract,
243     filter_retrieve
244 };
245
246 RecType
247 #ifdef IDZEBRA_STATIC_TEXT
248 idzebra_filter_text
249 #else
250 idzebra_filter
251 #endif
252
253 [] = {
254     &filter_type,
255     0,
256 };