-## $Id: Makefile.am,v 1.63 2007-02-07 12:08:54 adam Exp $
+## $Id: Makefile.am,v 1.64 2007-11-01 14:56:07 adam Exp $
aux_libs = \
../rset/libidzebra-rset.la \
orddict.c orddict.h \
rank.h rank1.c ranksimilarity.c rankstatic.c \
recindex.c recindex.h recindxp.h reckeys.c reckeys.h recstat.c retrieve.c \
- rpnscan.c rpnsearch.c sortidx.c symtab.c stream.c \
+ rpnscan.c rpnsearch.c rpnfacet.c sortidx.c symtab.c stream.c \
update_path.c update_file.c trunc.c untrans.c isam_methods.c \
zaptterm.c zebraapi.c zinfo.c zinfo.h zsets.c key_block.c key_block.h \
check_res.c
-/* $Id: index.h,v 1.205 2007-11-01 14:10:03 adam Exp $
+/* $Id: index.h,v 1.206 2007-11-01 14:56:07 adam Exp $
Copyright (C) 1995-2007
Index Data ApS
const char **term_ref_id_str,
NMEM nmem);
+ZEBRA_RES rpn_facet(ZebraHandle zh, ODR stream, NMEM nmem,
+ struct rset_key_control *kc,
+ Z_AttributesPlusTerm *zapt,
+ int *position, int *num_entries,
+ ZebraScanEntry **list,
+ int *is_partial, RSET limit_set,
+ const char *index_type,
+ int ord_no, int *ords);
+
YAZ_END_CDECL
#endif
--- /dev/null
+/* $Id: rpnfacet.c,v 1.1 2007-11-01 14:56:07 adam Exp $
+ Copyright (C) 1995-2007
+ Index Data ApS
+
+This file is part of the Zebra server.
+
+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
+
+*/
+
+#include <stdio.h>
+#include <assert.h>
+#if HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+#include <ctype.h>
+
+#include <yaz/diagbib1.h>
+#include "index.h"
+#include <zebra_xpath.h>
+#include <yaz/wrbuf.h>
+#include <attrfind.h>
+#include <charmap.h>
+#include <rset.h>
+#include <yaz/oid_db.h>
+
+ZEBRA_RES rpn_facet(ZebraHandle zh, ODR stream, NMEM nmem,
+ struct rset_key_control *kc,
+ Z_AttributesPlusTerm *zapt,
+ int *position, int *num_entries,
+ ZebraScanEntry **list,
+ int *is_partial, RSET limit_set,
+ const char *index_type,
+ int ord_no, int *ords)
+{
+ /* for each ord .. */
+ /* check that sort idx exist for ord */
+ /* sweep through result set and sort_idx at the same time */
+ zebra_setError(zh, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR,
+ "facet not implemented");
+
+ return ZEBRA_FAIL;
+}
+
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+
-/* $Id: rpnscan.c,v 1.18 2007-11-01 14:10:03 adam Exp $
+/* $Id: rpnscan.c,v 1.19 2007-11-01 14:56:07 adam Exp $
Copyright (C) 1995-2007
Index Data ApS
#define RPN_MAX_ORDS 32
-int log_scan = YLOG_LOG;
+static int log_scan = YLOG_LOG;
/* convert APT SCAN term to internal cmap */
static ZEBRA_RES trans_scan_term(ZebraHandle zh, Z_AttributesPlusTerm *zapt,
}
return 0;
}
-
-static ZEBRA_RES rpn_scan_ver2(ZebraHandle zh, ODR stream, NMEM nmem,
+
+static ZEBRA_RES rpn_scan_norm(ZebraHandle zh, ODR stream, NMEM nmem,
struct rset_key_control *kc,
Z_AttributesPlusTerm *zapt,
int *position, int *num_entries,
nmem = nmem_create();
kc = zebra_key_control_create(zh);
- res = rpn_scan_ver2(zh, stream, nmem, kc, zapt, position, num_entries,
+ if (sort_flag)
+ res = rpn_facet(zh, stream, nmem, kc, zapt, position, num_entries,
list,
is_partial, limit_set, index_type, ord_no, ords);
+ else
+ res = rpn_scan_norm(zh, stream, nmem, kc, zapt, position, num_entries,
+ list,
+ is_partial, limit_set, index_type, ord_no, ords);
nmem_destroy(nmem);
(*kc->dec)(kc);
return res;
# Zebra makefile for MS NMAKE
-# $Id: makefile,v 1.66 2007-09-11 15:29:35 adam Exp $
+# $Id: makefile,v 1.67 2007-11-01 14:56:08 adam Exp $
###########################################################
############### Parameters
$(OBJDIR)\regxread.obj \
$(OBJDIR)\res.obj \
$(OBJDIR)\retrieve.obj \
+ $(OBJDIR)\rpnfacet.obj \
$(OBJDIR)\rpnscan.obj \
$(OBJDIR)\rpnsearch.obj \
$(OBJDIR)\rsbetween.obj \