1 /* $Id: rectext.c,v 1.31 2006-05-10 08:13:30 adam Exp $
2 Copyright (C) 1995-2005
5 This file is part of the Zebra server.
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
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
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
28 #include <idzebra/util.h>
29 #include <idzebra/recctrl.h>
35 static void *filter_init (Res res, RecType recType)
37 struct filter_info *tinfo = (struct filter_info *) xmalloc(sizeof(*tinfo));
42 static ZEBRA_RES filter_config(void *clientData, Res res, const char *args)
44 struct filter_info *tinfo = (struct filter_info*) clientData;
48 tinfo->sep = xstrdup(args);
52 static void filter_destroy (void *clientData)
54 struct filter_info *tinfo = clientData;
60 struct recExtractCtrl *p;
66 static struct buf_info *buf_open (struct recExtractCtrl *p)
68 struct buf_info *fi = (struct buf_info *) xmalloc (sizeof(*fi));
71 fi->buf = (char *) xmalloc (4096);
77 static int buf_getchar (struct filter_info *tinfo, struct buf_info *fi, char *dst)
79 if (fi->offset >= fi->max)
83 fi->max = (*fi->p->readf)(fi->p->fh, fi->buf, 4096);
88 *dst = fi->buf[(fi->offset)++];
89 if (tinfo->sep && *dst == *tinfo->sep)
91 off_t off = (*fi->p->tellf)(fi->p->fh);
92 (*fi->p->endf)(fi->p->fh, off - (fi->max - fi->offset));
98 static void buf_close (struct buf_info *fi)
104 static int filter_extract (void *clientData, struct recExtractCtrl *p)
106 struct filter_info *tinfo = clientData;
110 struct buf_info *fi = buf_open (p);
114 yaz_log(YLOG_LOG, "filter_extract off=%ld",
115 (long) (*fi->p->tellf)(fi->p->fh));
117 (*p->init)(p, &recWord);
122 r = buf_getchar (tinfo, fi, w);
123 while (r > 0 && i < 511 && w[i] != '\n' && w[i] != '\r')
126 r = buf_getchar (tinfo, fi, w + i);
131 recWord.term_buf = w;
132 recWord.term_len = i;
133 (*p->tokenAdd)(&recWord);
138 return RECCTRL_EXTRACT_EOF;
139 return RECCTRL_EXTRACT_OK;
142 static int filter_retrieve (void *clientData, struct recRetrieveCtrl *p)
144 int r, filter_ptr = 0;
145 static char *filter_buf = NULL;
146 static int filter_size = 0;
149 const char *elementSetName = NULL;
152 if (p->comp && p->comp->which == Z_RecordComp_simple &&
153 p->comp->u.simple->which == Z_ElementSetNames_generic)
154 elementSetName = p->comp->u.simple->u.generic;
158 /* don't make header for the R(aw) element set name */
159 if (!strcmp(elementSetName, "R"))
164 /* only make header for the H(eader) element set name */
165 else if (!strcmp(elementSetName, "H"))
173 if (filter_ptr + 4096 >= filter_size)
177 filter_size = 2*filter_size + 8192;
178 nb = (char *) xmalloc (filter_size);
181 memcpy (nb, filter_buf, filter_ptr);
186 if (make_header && filter_ptr == 0)
190 sprintf (filter_buf, "Rank: %d\n", p->score);
191 filter_ptr = strlen(filter_buf);
193 sprintf (filter_buf + filter_ptr, "Local Number: " ZINT_FORMAT "\n",
195 filter_ptr = strlen(filter_buf);
198 sprintf (filter_buf + filter_ptr, "Filename: %s\n", p->fname);
199 filter_ptr = strlen(filter_buf);
201 strcpy(filter_buf+filter_ptr++, "\n");
205 r = (*p->readf)(p->fh, filter_buf + filter_ptr, 4096);
210 filter_buf[filter_ptr] = '\0';
213 if (!strcmp (elementSetName, "B"))
215 if (!strcmp (elementSetName, "M"))
220 char *p = filter_buf;
223 while (++i <= no_lines && (p = strchr (p, '\n')))
228 filter_ptr = p-filter_buf;
231 p->output_format = VAL_SUTRS;
232 p->rec_buf = filter_buf;
233 p->rec_len = filter_ptr;
237 static struct recType filter_type = {
248 #ifdef IDZEBRA_STATIC_TEXT
261 * indent-tabs-mode: nil
263 * vim: shiftwidth=4 tabstop=8 expandtab