Towards GPL
[idzebra-moved-to-github.git] / rset / rsnull.c
1 /* $Id: rsnull.c,v 1.15 2002-08-02 19:26:57 adam Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
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
25 #include <stdio.h>
26 #include <rsnull.h>
27 #include <zebrautl.h>
28
29 static void *r_create(RSET ct, const struct rset_control *sel, void *parms);
30 static RSFD r_open (RSET ct, int flag);
31 static void r_close (RSFD rfd);
32 static void r_delete (RSET ct);
33 static void r_rewind (RSFD rfd);
34 static int r_count (RSET ct);
35 static int r_read (RSFD rfd, void *buf, int *term_index);
36 static int r_write (RSFD rfd, const void *buf);
37
38 static const struct rset_control control = 
39 {
40     "null",
41     r_create,
42     r_open,
43     r_close,
44     r_delete,
45     r_rewind,
46     r_count,
47     r_read,
48     r_write,
49 };
50
51 const struct rset_control *rset_kind_null = &control;
52
53 static void *r_create(RSET ct, const struct rset_control *sel, void *parms)
54 {
55     rset_null_parms *null_parms = (rset_null_parms *) parms;
56
57     ct->no_rset_terms = 1;
58     ct->rset_terms = (RSET_TERM *) xmalloc (sizeof(*ct->rset_terms));
59     if (parms && null_parms->rset_term)
60         ct->rset_terms[0] = null_parms->rset_term;
61     else
62         ct->rset_terms[0] = rset_term_create ("term", -1, "rank-0",
63                                               0);
64     ct->rset_terms[0]->nn = 0;
65
66     return NULL;
67 }
68
69 static RSFD r_open (RSET ct, int flag)
70 {
71     if (flag & RSETF_WRITE)
72     {
73         logf (LOG_FATAL, "NULL set type is read-only");
74         return NULL;
75     }
76     return "";
77 }
78
79 static void r_close (RSFD rfd)
80 {
81 }
82
83 static void r_delete (RSET ct)
84 {
85     rset_term_destroy (ct->rset_terms[0]);
86     xfree (ct->rset_terms);
87 }
88
89 static void r_rewind (RSFD rfd)
90 {
91     logf (LOG_DEBUG, "rsnull_rewind");
92 }
93
94 static int r_count (RSET ct)
95 {
96     return 0;
97 }
98
99 static int r_read (RSFD rfd, void *buf, int *term_index)
100 {
101     *term_index = -1;
102     return 0;
103 }
104
105 static int r_write (RSFD rfd, const void *buf)
106 {
107     logf (LOG_FATAL, "NULL set type is read-only");
108     return -1;
109 }
110