Towards GPL
[idzebra-moved-to-github.git] / include / rset.h
1 /* $Id: rset.h,v 1.19 2002-08-02 19:26:55 adam 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 #ifndef RSET_H
26 #define RSET_H
27
28 #include <stdlib.h>
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33 typedef void *RSFD;
34
35 typedef struct rset *RSET;
36 typedef struct rset_term *RSET_TERM;
37
38 struct rset_control
39 {
40     char *desc; /* text description of set type (for debugging) */
41     void *(*f_create)(RSET ct, const struct rset_control *sel, void *parms);
42     RSFD (*f_open)(RSET ct, int wflag);
43     void (*f_close)(RSFD rfd);
44     void (*f_delete)(RSET ct);
45     void (*f_rewind)(RSFD rfd);
46     int (*f_count)(RSET ct);
47     int (*f_read)(RSFD rfd, void *buf, int *term_index);
48     int (*f_write)(RSFD rfd, const void *buf);
49 };
50
51 struct rset_term {
52     char *name;
53     int  nn;
54     char *flags;
55     int  count;
56     int  type;
57 };
58
59 typedef struct rset
60 {
61     const struct rset_control *control;
62     int  flags;
63     int  count;
64     void *buf;
65     RSET_TERM *rset_terms;
66     int no_rset_terms;
67 } rset;
68
69 RSET_TERM rset_term_create (const char *name, int length, const char *flags,
70                             int type);
71 void rset_term_destroy (RSET_TERM t);
72 RSET_TERM rset_term_dup (RSET_TERM t);
73
74 #define RSETF_READ       0
75 #define RSETF_WRITE      1
76
77 RSET rset_create(const struct rset_control *sel, void *parms); 
78 /* parameters? */
79
80 /* int rset_open(RSET rs, int wflag); */
81 #define rset_open(rs, wflag) (*(rs)->control->f_open)((rs), (wflag))
82
83 /* void rset_close(RSET rs); */
84 #define rset_close(rs, rfd) (*(rs)->control->f_close)(rfd)
85
86 void rset_delete(RSET rs);
87
88 RSET rset_dup (RSET rs);
89
90 /* void rset_rewind(RSET rs); */
91 #define rset_rewind(rs, rfd) (*(rs)->control->f_rewind)((rfd))
92
93 /* int rset_count(RSET rs); */
94 #define rset_count(rs) (*(rs)->control->f_count)(rs)
95
96 /* int rset_read(RSET rs, void *buf); */
97 #define rset_read(rs, fd, buf, indx) (*(rs)->control->f_read)((fd), (buf), indx)
98
99 /* int rset_write(RSET rs, const void *buf); */
100 #define rset_write(rs, fd, buf) (*(rs)->control->f_write)((fd), (buf))
101
102 /* int rset_type (RSET) */
103 #define rset_type(rs) ((rs)->control->desc)
104
105 #define RSET_FLAG_VOLATILE 1
106
107 #define rset_is_volatile(rs) ((rs)->flags & RSET_FLAG_VOLATILE)
108
109 #ifdef __cplusplus
110 }
111 #endif
112
113 #endif