1 /* This file is part of the Zebra server.
2 Copyright (C) 1994-2009 Index Data
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
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
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
22 #include <idzebra/util.h>
25 static RSFD r_open(RSET ct, int flag);
26 static void r_close(RSFD rfd);
27 static void r_delete(RSET ct);
28 static void r_pos(RSFD rfd, double *current, double *total);
29 static int r_read(RSFD rfd, void *buf, TERMID *term);
30 static int r_write(RSFD rfd, const void *buf);
32 static const struct rset_control control =
45 RSET rset_create_null(NMEM nmem, struct rset_key_control *kcontrol,
48 RSET rnew = rset_create_base(&control, nmem, kcontrol, 0, term, 0, 0);
53 static RSFD r_open(RSET ct, int flag)
56 if (flag & RSETF_WRITE)
58 yaz_log (YLOG_FATAL, "NULL set type is read-only");
61 rfd = rfd_create_base(ct);
66 static void r_close(RSFD rfd)
70 static void r_delete(RSET ct)
74 static void r_pos(RSFD rfd, double *current, double *total)
83 static int r_read(RSFD rfd, void *buf, TERMID *term)
90 static int r_write(RSFD rfd, const void *buf)
92 yaz_log(YLOG_FATAL, "NULL set type is read-only");
98 * indent-tabs-mode: nil
100 * vim: shiftwidth=4 tabstop=8 expandtab