1 /* $Id: rstemp.c,v 1.35 2003-03-31 21:53:40 adam Exp $
2 Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003
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
31 #include <sys/types.h>
37 static void *r_create(RSET ct, const struct rset_control *sel, void *parms);
38 static RSFD r_open (RSET ct, int flag);
39 static void r_close (RSFD rfd);
40 static void r_delete (RSET ct);
41 static void r_rewind (RSFD rfd);
42 static int r_count (RSET ct);
43 static int r_read (RSFD rfd, void *buf, int *term_index);
44 static int r_write (RSFD rfd, const void *buf);
46 static const struct rset_control control =
59 const struct rset_control *rset_kind_temp = &control;
61 struct rset_temp_info {
64 size_t key_size; /* key size */
65 char *buf_mem; /* window buffer */
66 size_t buf_size; /* size of window */
67 size_t pos_end; /* last position in set */
68 size_t pos_buf; /* position of first byte in window */
69 size_t pos_border; /* position of last byte+1 in window */
70 int dirty; /* window is dirty */
71 int hits; /* no of hits */
73 int (*cmp)(const void *p1, const void *p2);
74 struct rset_temp_rfd *rfd_list;
77 struct rset_temp_rfd {
78 struct rset_temp_info *info;
79 struct rset_temp_rfd *next;
82 size_t pos_cur; /* current position in set */
85 static void *r_create(RSET ct, const struct rset_control *sel, void *parms)
87 rset_temp_parms *temp_parms = (rset_temp_parms *) parms;
88 struct rset_temp_info *info;
90 info = (struct rset_temp_info *) xmalloc (sizeof(struct rset_temp_info));
93 info->key_size = temp_parms->key_size;
94 info->buf_size = 4096;
95 info->buf_mem = (char *) xmalloc (info->buf_size);
100 info->cmp = temp_parms->cmp;
101 info->rfd_list = NULL;
103 if (!temp_parms->temp_path)
104 info->temp_path = NULL;
107 info->temp_path = (char *) xmalloc (strlen(temp_parms->temp_path)+1);
108 strcpy (info->temp_path, temp_parms->temp_path);
110 ct->no_rset_terms = 1;
111 ct->rset_terms = (RSET_TERM *) xmalloc (sizeof(*ct->rset_terms));
112 ct->rset_terms[0] = temp_parms->rset_term;
117 static RSFD r_open (RSET ct, int flag)
119 struct rset_temp_info *info = (struct rset_temp_info *) ct->buf;
120 struct rset_temp_rfd *rfd;
122 if (info->fd == -1 && info->fname)
124 if (flag & RSETF_WRITE)
125 info->fd = open (info->fname, O_BINARY|O_RDWR|O_CREAT, 0666);
127 info->fd = open (info->fname, O_BINARY|O_RDONLY);
130 logf (LOG_FATAL|LOG_ERRNO, "open %s", info->fname);
134 rfd = (struct rset_temp_rfd *) xmalloc (sizeof(*rfd));
135 rfd->next = info->rfd_list;
136 info->rfd_list = rfd;
140 rfd->countp = &ct->rset_terms[0]->count;
142 rfd->buf = xmalloc (info->key_size);
148 flush current window to file if file is assocated with set
150 static void r_flush (RSFD rfd, int mk)
152 struct rset_temp_info *info = ((struct rset_temp_rfd*) rfd)->info;
154 if (!info->fname && mk)
160 sprintf (template, "%s/zrsXXXXXX", info->temp_path);
162 sprintf (template, "zrsXXXXXX");
164 info->fd = mkstemp (template);
168 logf (LOG_FATAL|LOG_ERRNO, "mkstemp %s", template);
171 info->fname = (char *) xmalloc (strlen(template)+1);
172 strcpy (info->fname, template);
174 char *s = (char*) tempnam (info->temp_path, "zrs");
175 info->fname = (char *) xmalloc (strlen(s)+1);
176 strcpy (info->fname, s);
178 logf (LOG_DEBUG, "creating tempfile %s", info->fname);
179 info->fd = open (info->fname, O_BINARY|O_RDWR|O_CREAT, 0666);
182 logf (LOG_FATAL|LOG_ERRNO, "open %s", info->fname);
187 if (info->fname && info->fd != -1 && info->dirty)
192 if (lseek (info->fd, info->pos_buf, SEEK_SET) == -1)
194 logf (LOG_FATAL|LOG_ERRNO, "lseek %s", info->fname);
197 count = info->buf_size;
198 if (count > info->pos_end - info->pos_buf)
199 count = info->pos_end - info->pos_buf;
200 if ((r = write (info->fd, info->buf_mem, count)) < (int) count)
203 logf (LOG_FATAL|LOG_ERRNO, "read %s", info->fname);
205 logf (LOG_FATAL, "write of %ld but got %ld",
206 (long) count, (long) r);
213 static void r_close (RSFD rfd)
215 struct rset_temp_info *info = ((struct rset_temp_rfd*)rfd)->info;
216 struct rset_temp_rfd **rfdp;
218 for (rfdp = &info->rfd_list; *rfdp; rfdp = &(*rfdp)->next)
222 xfree ((*rfdp)->buf);
224 *rfdp = (*rfdp)->next;
227 if (!info->rfd_list && info->fname && info->fd != -1)
234 logf (LOG_FATAL, "r_close but no rfd match!");
238 static void r_delete (RSET ct)
240 struct rset_temp_info *info = (struct rset_temp_info*) ct->buf;
243 unlink (info->fname);
244 xfree (info->buf_mem);
245 logf (LOG_DEBUG, "r_delete: set size %ld", (long) info->pos_end);
248 logf (LOG_DEBUG, "r_delete: unlink %s", info->fname);
249 unlink (info->fname);
253 xfree (info->temp_path);
254 rset_term_destroy (ct->rset_terms[0]);
255 xfree (ct->rset_terms);
260 read from file to window if file is assocated with set -
263 static void r_reread (RSFD rfd)
265 struct rset_temp_info *info = ((struct rset_temp_rfd*)rfd)->info;
272 info->pos_border = ((struct rset_temp_rfd *)rfd)->pos_cur +
274 if (info->pos_border > info->pos_end)
275 info->pos_border = info->pos_end;
276 count = info->pos_border - info->pos_buf;
279 if (lseek (info->fd, info->pos_buf, SEEK_SET) == -1)
281 logf (LOG_FATAL|LOG_ERRNO, "lseek %s", info->fname);
284 if ((r = read (info->fd, info->buf_mem, count)) < (int) count)
287 logf (LOG_FATAL|LOG_ERRNO, "read %s", info->fname);
289 logf (LOG_FATAL, "read of %ld but got %ld",
290 (long) count, (long) r);
296 info->pos_border = info->pos_end;
299 static void r_rewind (RSFD rfd)
301 struct rset_temp_info *info = ((struct rset_temp_rfd*)rfd)->info;
304 ((struct rset_temp_rfd *)rfd)->pos_cur = 0;
309 static int r_count (RSET ct)
311 struct rset_temp_info *info = (struct rset_temp_info *) ct->buf;
313 return info->pos_end / info->key_size;
316 static int r_read (RSFD rfd, void *buf, int *term_index)
318 struct rset_temp_rfd *mrfd = (struct rset_temp_rfd*) rfd;
319 struct rset_temp_info *info = mrfd->info;
321 size_t nc = mrfd->pos_cur + info->key_size;
323 if (mrfd->pos_cur < info->pos_buf || nc > info->pos_border)
325 if (nc > info->pos_end)
328 info->pos_buf = mrfd->pos_cur;
331 memcpy (buf, info->buf_mem + (mrfd->pos_cur - info->pos_buf),
336 if (*mrfd->countp == 0 || (*info->cmp)(buf, mrfd->buf) > 1)
338 memcpy (mrfd->buf, buf, mrfd->info->key_size);
344 static int r_write (RSFD rfd, const void *buf)
346 struct rset_temp_rfd *mrfd = (struct rset_temp_rfd*) rfd;
347 struct rset_temp_info *info = mrfd->info;
349 size_t nc = mrfd->pos_cur + info->key_size;
351 if (nc > info->pos_buf + info->buf_size)
354 info->pos_buf = mrfd->pos_cur;
355 if (info->pos_buf < info->pos_end)
359 memcpy (info->buf_mem + (mrfd->pos_cur - info->pos_buf), buf,
362 if (nc > info->pos_end)
363 info->pos_border = info->pos_end = nc;