X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=rset%2Frsnull.c;h=4e9cc70de764d02207ec9dac47cda04748f9781f;hp=8c597b76087bcd9c19a719ce86109589ed8612b0;hb=HEAD;hpb=b7ed8922d365e24874e561b7347c2c2ad682d6d8 diff --git a/rset/rsnull.c b/rset/rsnull.c index 8c597b7..4e9cc70 100644 --- a/rset/rsnull.c +++ b/rset/rsnull.c @@ -1,90 +1,100 @@ -/* - * Copyright (C) 1994-1995, Index Data I/S - * All rights reserved. - * Sebastian Hammer, Adam Dickmeiss - * - * $Log: rsnull.c,v $ - * Revision 1.1 1995-09-06 10:35:44 adam - * Null set implemented. - * - */ +/* This file is part of the Zebra server. + Copyright (C) Index Data + +Zebra is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Zebra is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +#if HAVE_CONFIG_H +#include +#endif #include -#include -#include +#include +#include +#include -static rset_control *r_create(const struct rset_control *sel, void *parms); -static int r_open (rset_control *ct, int wflag); -static void r_close (rset_control *ct); -static void r_delete (rset_control *ct); -static void r_rewind (rset_control *ct); -static int r_count (rset_control *ct); -static int r_read (rset_control *ct, void *buf); -static int r_write (rset_control *ct, const void *buf); +static RSFD r_open(RSET ct, int flag); +static void r_close(RSFD rfd); +static void r_delete(RSET ct); +static void r_pos(RSFD rfd, double *current, double *total); +static int r_read(RSFD rfd, void *buf, TERMID *term); -static const rset_control control = +static const struct rset_control control = { - "NULL set type", - 0, - r_create, + "null", + r_delete, + rset_get_one_term, r_open, r_close, - r_delete, - r_rewind, - r_count, + 0, /* no forward */ + r_pos, r_read, - r_write + rset_no_write, }; -const rset_control *rset_kind_null = &control; - -static rset_control *r_create(const struct rset_control *sel, void *parms) +RSET rset_create_null(NMEM nmem, struct rset_key_control *kcontrol, + TERMID term) { - rset_control *newct; - - logf (LOG_DEBUG, "rsnull_create(%s)", sel->desc); - newct = xmalloc(sizeof(*newct)); - memcpy(newct, sel, sizeof(*sel)); - return newct; + RSET rnew = rset_create_base(&control, nmem, kcontrol, 0, term, 0, 0); + rnew->priv = 0; + return rnew; } -static int r_open(rset_control *ct, int wflag) +static RSFD r_open(RSET ct, int flag) { - if (wflag) + RSFD rfd; + if (flag & RSETF_WRITE) { - logf (LOG_FATAL, "NULL set type is read-only"); - return -1; + yaz_log (YLOG_FATAL, "NULL set type is read-only"); + return NULL; } - return 0; + rfd = rfd_create_base(ct); + rfd->priv = 0; + return rfd; } -static void r_close(rset_control *ct) +static void r_close(RSFD rfd) { - /* NOP */ } -static void r_delete(rset_control *ct) +static void r_delete(RSET ct) { - xfree(ct); } -static void r_rewind(rset_control *ct) +static void r_pos(RSFD rfd, double *current, double *total) { - logf (LOG_DEBUG, "rsnull_rewind"); + assert(rfd); + assert(current); + assert(total); + *total = 0; + *current = 0; } -static int r_count (rset_control *ct) +static int r_read(RSFD rfd, void *buf, TERMID *term) { + if (term) + *term = 0; return 0; } -static int r_read (rset_control *ct, void *buf) -{ - return 0; -} +/* + * Local variables: + * c-basic-offset: 4 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ -static int r_write (rset_control *ct, const void *buf) -{ - logf (LOG_FATAL, "NULL set type is read-only"); - return -1; -}