Added the scope parameter to rsets, and using it in all forwards and reads
[idzebra-moved-to-github.git] / rset / rsnull.c
1 /* $Id: rsnull.c,v 1.26 2004-09-09 10:08:06 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 <assert.h>
27 #include <zebrautl.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_rewind (RSFD rfd);
35 static void r_pos (RSFD rfd, double *current, double *total);
36 static int r_read (RSFD rfd, void *buf);
37 static int r_write (RSFD rfd, const void *buf);
38
39 static const struct rset_control control = 
40 {
41     "null",
42     r_delete,
43     r_open,
44     r_close,
45     r_rewind,
46     rset_default_forward,
47     r_pos,
48     r_read,
49     r_write,
50 };
51
52 const struct rset_control *rset_kind_null = &control;
53
54 RSET rsnull_create(NMEM nmem, const struct key_control *kcontrol )
55 {
56     RSET rnew=rset_create_base(&control, nmem, kcontrol,0);
57     rnew->priv=NULL;
58     return rnew;
59 }
60
61 static RSFD r_open (RSET ct, int flag)
62 {
63     RSFD rfd;
64     if (flag & RSETF_WRITE)
65     {
66         logf (LOG_FATAL, "NULL set type is read-only");
67         return NULL;
68     }
69     rfd=rfd_create_base(ct);
70     rfd->priv=NULL; 
71     return rfd;
72 }
73
74 static void r_close (RSFD rfd)
75 {
76     rfd_delete_base(rfd);
77 }
78
79 static void r_delete (RSET ct)
80 {
81 }
82
83 static void r_rewind (RSFD rfd)
84 {
85 }
86
87 static void r_pos (RSFD rfd, double *current, double *total)
88 {
89     assert(rfd);
90     assert(current);
91     assert(total);
92     *total=0;
93     *current=0;
94 }
95
96 static int r_read (RSFD rfd, void *buf)
97 {
98     return 0;
99 }
100
101 static int r_write (RSFD rfd, const void *buf)
102 {
103     logf (LOG_FATAL, "NULL set type is read-only");
104     return -1;
105 }
106