Using doubles in the position estimates, not to loose precision
[idzebra-moved-to-github.git] / rset / rsnull.c
1 /* $Id: rsnull.c,v 1.20 2004-08-06 10:09:28 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 <rsnull.h>
29
30 static void *r_create(RSET ct, const struct rset_control *sel, void *parms);
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, int *term_index);
37 static int r_write (RSFD rfd, const void *buf);
38
39 static const struct rset_control control = 
40 {
41     "null",
42     r_create,
43     r_open,
44     r_close,
45     r_delete,
46     r_rewind,
47     rset_default_forward,
48     r_pos,
49     r_read,
50     r_write,
51 };
52
53 const struct rset_control *rset_kind_null = &control;
54
55 static void *r_create(RSET ct, const struct rset_control *sel, void *parms)
56 {
57     rset_null_parms *null_parms = (rset_null_parms *) parms;
58
59     ct->no_rset_terms = 1;
60     ct->rset_terms = (RSET_TERM *) xmalloc (sizeof(*ct->rset_terms));
61     if (parms && null_parms->rset_term)
62         ct->rset_terms[0] = null_parms->rset_term;
63     else
64         ct->rset_terms[0] = rset_term_create ("term", -1, "rank-0",
65                                               0);
66     ct->rset_terms[0]->nn = 0;
67
68     return NULL;
69 }
70
71 static RSFD r_open (RSET ct, int flag)
72 {
73     if (flag & RSETF_WRITE)
74     {
75         logf (LOG_FATAL, "NULL set type is read-only");
76         return NULL;
77     }
78     return "";
79 }
80
81 static void r_close (RSFD rfd)
82 {
83 }
84
85 static void r_delete (RSET ct)
86 {
87     rset_term_destroy (ct->rset_terms[0]);
88     xfree (ct->rset_terms);
89 }
90
91 static void r_rewind (RSFD rfd)
92 {
93     logf (LOG_DEBUG, "rsnull_rewind");
94 }
95
96 static void r_pos (RSFD rfd, double *current, double *total)
97 {
98     assert(rfd);
99     assert(current);
100     assert(total);
101     *total=0;
102     *current=0;
103 }
104
105 static int r_read (RSFD rfd, void *buf, int *term_index)
106 {
107     *term_index = -1;
108     return 0;
109 }
110
111 static int r_write (RSFD rfd, const void *buf)
112 {
113     logf (LOG_FATAL, "NULL set type is read-only");
114     return -1;
115 }
116