Declarations for the rset_forward function. No actual code yet
[idzebra-moved-to-github.git] / rset / rsnull.c
1 /* $Id: rsnull.c,v 1.16 2004-01-16 15:27:35 heikki 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     rset_default_forward,
47     r_count,
48     r_read,
49     r_write,
50 };
51
52 const struct rset_control *rset_kind_null = &control;
53
54 static void *r_create(RSET ct, const struct rset_control *sel, void *parms)
55 {
56     rset_null_parms *null_parms = (rset_null_parms *) parms;
57
58     ct->no_rset_terms = 1;
59     ct->rset_terms = (RSET_TERM *) xmalloc (sizeof(*ct->rset_terms));
60     if (parms && null_parms->rset_term)
61         ct->rset_terms[0] = null_parms->rset_term;
62     else
63         ct->rset_terms[0] = rset_term_create ("term", -1, "rank-0",
64                                               0);
65     ct->rset_terms[0]->nn = 0;
66
67     return NULL;
68 }
69
70 static RSFD r_open (RSET ct, int flag)
71 {
72     if (flag & RSETF_WRITE)
73     {
74         logf (LOG_FATAL, "NULL set type is read-only");
75         return NULL;
76     }
77     return "";
78 }
79
80 static void r_close (RSFD rfd)
81 {
82 }
83
84 static void r_delete (RSET ct)
85 {
86     rset_term_destroy (ct->rset_terms[0]);
87     xfree (ct->rset_terms);
88 }
89
90 static void r_rewind (RSFD rfd)
91 {
92     logf (LOG_DEBUG, "rsnull_rewind");
93 }
94
95 static int r_count (RSET ct)
96 {
97     return 0;
98 }
99
100 static int r_read (RSFD rfd, void *buf, int *term_index)
101 {
102     *term_index = -1;
103     return 0;
104 }
105
106 static int r_write (RSFD rfd, const void *buf)
107 {
108     logf (LOG_FATAL, "NULL set type is read-only");
109     return -1;
110 }
111