Read-only sets uses common no write handler
[idzebra-moved-to-github.git] / rset / rsnull.c
1 /* This file is part of the Zebra server.
2    Copyright (C) 2004-2013 Index Data
3
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 #if HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23 #include <stdio.h>
24 #include <assert.h>
25 #include <idzebra/util.h>
26 #include <rset.h>
27
28 static RSFD r_open(RSET ct, int flag);
29 static void r_close(RSFD rfd);
30 static void r_delete(RSET ct);
31 static void r_pos(RSFD rfd, double *current, double *total);
32 static int r_read(RSFD rfd, void *buf, TERMID *term);
33
34 static const struct rset_control control =
35 {
36     "null",
37     r_delete,
38     rset_get_one_term,
39     r_open,
40     r_close,
41     0, /* no forward */
42     r_pos,
43     r_read,
44     rset_no_write,
45 };
46
47 RSET rset_create_null(NMEM nmem, struct rset_key_control *kcontrol,
48                       TERMID term)
49 {
50     RSET rnew = rset_create_base(&control, nmem, kcontrol, 0, term, 0, 0);
51     rnew->priv = 0;
52     return rnew;
53 }
54
55 static RSFD r_open(RSET ct, int flag)
56 {
57     RSFD rfd;
58     if (flag & RSETF_WRITE)
59     {
60         yaz_log (YLOG_FATAL, "NULL set type is read-only");
61         return NULL;
62     }
63     rfd = rfd_create_base(ct);
64     rfd->priv = 0;
65     return rfd;
66 }
67
68 static void r_close(RSFD rfd)
69 {
70 }
71
72 static void r_delete(RSET ct)
73 {
74 }
75
76 static void r_pos(RSFD rfd, double *current, double *total)
77 {
78     assert(rfd);
79     assert(current);
80     assert(total);
81     *total = 0;
82     *current = 0;
83 }
84
85 static int r_read(RSFD rfd, void *buf, TERMID *term)
86 {
87     if (term)
88         *term = 0;
89     return 0;
90 }
91
92 /*
93  * Local variables:
94  * c-basic-offset: 4
95  * c-file-style: "Stroustrup"
96  * indent-tabs-mode: nil
97  * End:
98  * vim: shiftwidth=4 tabstop=8 expandtab
99  */
100