X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=index%2Freckeys.c;h=39a3f4a3344cc5b3bc0a6aa11f7bfd3aa049623c;hp=3ba84539df477b0dc845968730571f978eb9ffdf;hb=ba0720e26f508ba3396e232d2f82037c0e701698;hpb=a1b0fc99b8a098eff3d56172af6dd249a28399b3 diff --git a/index/reckeys.c b/index/reckeys.c index 3ba8453..39a3f4a 100644 --- a/index/reckeys.c +++ b/index/reckeys.c @@ -1,8 +1,5 @@ -/* $Id: reckeys.c,v 1.9 2006-11-20 13:59:35 adam Exp $ - Copyright (C) 1995-2006 - Index Data ApS - -This file is part of the Zebra server. +/* This file is part of the Zebra server. + 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 @@ -20,14 +17,18 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#if HAVE_CONFIG_H +#include +#endif #include #include +#include #include #include -#include -#include "index.h" #include "reckeys.h" +#include +#include struct zebra_rec_key_entry { char *buf; @@ -44,10 +45,11 @@ struct zebra_rec_keys_t_ { void *encode_handle; void *decode_handle; char owner_of_buffer; + zint custom_record_id; NMEM nmem; size_t hash_size; - struct zebra_rec_key_entry **entries; + struct zebra_rec_key_entry **entries; }; @@ -94,6 +96,7 @@ zebra_rec_keys_t zebra_rec_keys_open(void) p->encode_handle = iscz1_start(); p->decode_handle = iscz1_start(); + p->custom_record_id = 0; p->nmem = nmem_create(); p->hash_size = 32767; p->entries = 0; @@ -191,6 +194,10 @@ void zebra_rec_keys_write(zebra_rec_keys_t keys, assert(keys->owner_of_buffer); + if (key->mem[1]) /* record_id custom */ + { + keys->custom_record_id = key->mem[1]; + } #if 1 if (!zebra_rec_keys_add_hash(keys, str, slen, key)) { @@ -228,13 +235,14 @@ void zebra_rec_keys_reset(zebra_rec_keys_t keys) iscz1_reset(keys->encode_handle); init_hash(keys); - } int zebra_rec_keys_rewind(zebra_rec_keys_t keys) { assert(keys); iscz1_reset(keys->decode_handle); + + keys->fetch_offset = 0; if (keys->buf_used == 0) return 0; @@ -274,9 +282,16 @@ int zebra_rec_keys_read(zebra_rec_keys_t keys, } return 1; } + +zint zebra_rec_keys_get_custom_record_id(zebra_rec_keys_t keys) +{ + return keys->custom_record_id; +} + /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab