X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=rset%2Frstemp.c;h=c02121bc42c7f67fb6a48153ae6a96c568ae635e;hp=19092449d5408af3eb3d418fa08f34950d0177f1;hb=d02c4c703a93e0ad3f4ccde4519879f1f57a6824;hpb=6a0f9234f945bc4956e2bcef75f715661a9eba9a diff --git a/rset/rstemp.c b/rset/rstemp.c index 1909244..c02121b 100644 --- a/rset/rstemp.c +++ b/rset/rstemp.c @@ -1,5 +1,5 @@ /* This file is part of the Zebra server. - Copyright (C) 1994-2009 Index Data + Copyright (C) 1994-2011 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 @@ -17,6 +17,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#if HAVE_CONFIG_H +#include +#endif #include #include #include @@ -42,7 +45,7 @@ static void r_pos(RSFD rfd, double *current, double *total); static void r_flush(RSFD rfd, int mk); static void r_reread(RSFD rfd); -static const struct rset_control control = +static const struct rset_control control = { "temp", r_delete, @@ -50,7 +53,7 @@ static const struct rset_control control = r_open, r_close, 0, /* no forward */ - r_pos, + r_pos, r_read, r_write, }; @@ -103,7 +106,7 @@ RSET rset_create_temp(NMEM nmem, struct rset_key_control *kcontrol, info->temp_path = NULL; else info->temp_path = nmem_strdup(rnew->nmem, temp_path); - rnew->priv = info; + rnew->priv = info; return rnew; } /* rstemp_create */ @@ -143,7 +146,7 @@ static RSFD r_open(RSET ct, int flag) prfd = (struct rfd_private *) nmem_malloc(ct->nmem, sizeof(*prfd)); rfd->priv = (void *)prfd; prfd->buf = nmem_malloc(ct->nmem,ct->keycontrol->key_size); - } + } else prfd= rfd->priv; r_flush(rfd, 0); @@ -200,7 +203,7 @@ static void r_flush(RSFD rfd, int mk) { size_t count; int r; - + if (lseek(info->fd, info->pos_buf, SEEK_SET) == -1) { yaz_log(YLOG_FATAL|YLOG_ERRNO, "rstemp: lseek (1) %s", info->fname); @@ -243,7 +246,7 @@ static void r_close(RSFD rfd) */ static void r_reread(RSFD rfd) { - struct rfd_private *mrfd = (struct rfd_private*) rfd->priv; + struct rfd_private *mrfd = (struct rfd_private*) rfd->priv; struct rset_private *info = (struct rset_private *)rfd->rset->priv; if (info->fname) @@ -280,7 +283,7 @@ static void r_reread(RSFD rfd) static int r_read(RSFD rfd, void *buf, TERMID *term) { - struct rfd_private *mrfd = (struct rfd_private*) rfd->priv; + struct rfd_private *mrfd = (struct rfd_private*) rfd->priv; struct rset_private *info = (struct rset_private *)rfd->rset->priv; size_t nc = mrfd->pos_cur + rfd->rset->keycontrol->key_size; @@ -296,7 +299,7 @@ static int r_read(RSFD rfd, void *buf, TERMID *term) memcpy(buf, info->buf_mem + (mrfd->pos_cur - info->pos_buf), rfd->rset->keycontrol->key_size); if (term) - *term = rfd->rset->term; + *term = rfd->rset->term; /* FIXME - should we store and return terms ?? */ mrfd->pos_cur = nc; mrfd->cur++; @@ -305,7 +308,7 @@ static int r_read(RSFD rfd, void *buf, TERMID *term) static int r_write(RSFD rfd, const void *buf) { - struct rfd_private *mrfd = (struct rfd_private*) rfd->priv; + struct rfd_private *mrfd = (struct rfd_private*) rfd->priv; struct rset_private *info = (struct rset_private *)rfd->rset->priv; size_t nc = mrfd->pos_cur + rfd->rset->keycontrol->key_size; @@ -329,9 +332,9 @@ static int r_write(RSFD rfd, const void *buf) static void r_pos(RSFD rfd, double *current, double *total) { - struct rfd_private *mrfd = (struct rfd_private*) rfd->priv; + struct rfd_private *mrfd = (struct rfd_private*) rfd->priv; struct rset_private *info = (struct rset_private *)rfd->rset->priv; - + *current = (double) mrfd->cur; *total = (double) info->hits; }