Remove the obsolete rset public control variables. WS updates.
[idzebra-moved-to-github.git] / rset / rsnull.c
1 /* $Id: rsnull.c,v 1.33 2005-04-26 10:09:38 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
25 #include <stdio.h>
26 #include <assert.h>
27 #include <idzebra/util.h>
28 #include <rset.h>
29
30
31 static RSFD r_open (RSET ct, int flag);
32 static void r_close (RSFD rfd);
33 static void r_delete (RSET ct);
34 static void r_pos (RSFD rfd, double *current, double *total);
35 static int r_read (RSFD rfd, void *buf, TERMID *term);
36 static int r_write (RSFD rfd, const void *buf);
37
38 static const struct rset_control control = 
39 {
40     "null",
41     r_delete,
42     rset_get_no_terms,
43     r_open,
44     r_close,
45     rset_default_forward,
46     r_pos,
47     r_read,
48     r_write,
49 };
50
51 RSET rsnull_create(NMEM nmem, const struct key_control *kcontrol )
52 {
53     RSET rnew=rset_create_base(&control, nmem, kcontrol,0,0);
54     rnew->priv=NULL;
55     return rnew;
56 }
57
58 static RSFD r_open (RSET ct, int flag)
59 {
60     RSFD rfd;
61     if (flag & RSETF_WRITE)
62     {
63         yaz_log (YLOG_FATAL, "NULL set type is read-only");
64         return NULL;
65     }
66     rfd=rfd_create_base(ct);
67     rfd->priv=NULL; 
68     return rfd;
69 }
70
71 static void r_close (RSFD rfd)
72 {
73     rfd_delete_base(rfd);
74 }
75
76 static void r_delete (RSET ct)
77 {
78 }
79
80
81 static void r_pos (RSFD rfd, double *current, double *total)
82 {
83     assert(rfd);
84     assert(current);
85     assert(total);
86     *total=0;
87     *current=0;
88 }
89
90 static int r_read (RSFD rfd, void *buf, TERMID *term)
91 {
92     if (term)
93         *term=0; /* NULL */
94     return 0;
95 }
96
97 static int r_write (RSFD rfd, const void *buf)
98 {
99     yaz_log (YLOG_FATAL, "NULL set type is read-only");
100     return -1;
101 }
102