X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fzebramap.c;h=18869b9e162009e216069f790d6060ef78d3fefc;hb=617f456d88a1a46b0dd9d9a5a2bd97bed73c1e2f;hp=483e1776ffef7f168de7e95fb76a5d0bab415588;hpb=6eff7513e0c5f8c1bc43ffa22e063c7add0dc6f6;p=idzebra-moved-to-github.git diff --git a/util/zebramap.c b/util/zebramap.c index 483e177..18869b9 100644 --- a/util/zebramap.c +++ b/util/zebramap.c @@ -1,10 +1,29 @@ /* - * Copyright (C) 1994-1998, Index Data I/S + * Copyright (C) 1994-1999, Index Data * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: zebramap.c,v $ - * Revision 1.8 1998-03-05 08:42:44 adam + * Revision 1.14 1999-02-19 10:37:40 adam + * Minor fix. + * + * Revision 1.13 1999/02/18 15:01:04 adam + * Structure=key uses register type 0. + * + * Revision 1.12 1999/02/12 13:29:25 adam + * Implemented position-flag for registers. + * + * Revision 1.11 1998/10/13 20:09:19 adam + * Changed call to readconf_line. + * + * Revision 1.10 1998/06/23 15:33:37 adam + * Added feature to specify sort criteria in query (type 7 specifies + * sort flags). + * + * Revision 1.9 1998/04/02 14:35:30 adam + * First version of Zebra that works with compiled ASN.1. + * + * Revision 1.8 1998/03/05 08:42:44 adam * Minor changes to zebramap data structures. Query mapping rules changed. * * Revision 1.7 1998/02/10 12:03:07 adam @@ -48,6 +67,7 @@ struct zebra_map { unsigned reg_id; int completeness; + int positioned; int type; union { struct { @@ -90,6 +110,7 @@ static void zebra_map_read (ZebraMaps zms, const char *name) char line[512]; char *argv[10]; int argc; + int lineno = 0; struct zebra_map **zm = 0, *zp; if (!(f = yaz_path_fopen(zms->tabpath, name, "r"))) @@ -97,7 +118,7 @@ static void zebra_map_read (ZebraMaps zms, const char *name) logf(LOG_WARN|LOG_ERRNO, "%s", name); return ; } - while ((argc = readconf_line(f, line, 512, argv, 10))) + while ((argc = readconf_line(f, &lineno, line, 512, argv, 10))) { if (!yaz_matchstr (argv[0], "index") && argc == 2) { @@ -111,6 +132,7 @@ static void zebra_map_read (ZebraMaps zms, const char *name) (*zm)->maptab = NULL; (*zm)->type = ZEBRA_MAP_TYPE_INDEX; (*zm)->completeness = 0; + (*zm)->positioned = 1; } else if (!yaz_matchstr (argv[0], "sort") && argc == 2) { @@ -125,6 +147,7 @@ static void zebra_map_read (ZebraMaps zms, const char *name) (*zm)->u.sort.entry_size = 80; (*zm)->maptab = NULL; (*zm)->completeness = 0; + (*zm)->positioned = 0; } else if (zm && !yaz_matchstr (argv[0], "charmap") && argc == 2) { @@ -134,6 +157,10 @@ static void zebra_map_read (ZebraMaps zms, const char *name) { (*zm)->completeness = atoi (argv[1]); } + else if (zm && !yaz_matchstr (argv[0], "position") && argc == 2) + { + (*zm)->positioned = atoi (argv[1]); + } else if (zm && !yaz_matchstr (argv[0], "entrysize") && argc == 2) { if ((*zm)->type == ZEBRA_MAP_TYPE_SORT) @@ -161,7 +188,7 @@ ZebraMaps zebra_maps_open (Res res) int i; zms->nmem = nmem_create (); - zms->tabpath = nmem_strdup (zms->nmem, res_get (res, "profilePath")); + zms->tabpath = nmem_strdup (zms->nmem, res_get_def (res, "profilePath", ".")); zms->map_list = NULL; zms->temp_map_str[0] = '\0'; @@ -304,9 +331,13 @@ static int attr_find (AttrType *src, oid_value *attributeSetP) static void attr_init_APT (AttrType *src, Z_AttributesPlusTerm *zapt, int type) { - +#ifdef ASN_COMPILED + src->attributeList = zapt->attributes->attributes; + src->num_attributes = zapt->attributes->num_attributes; +#else src->attributeList = zapt->attributeList; src->num_attributes = zapt->num_attributes; +#endif src->type = type; src->major = 0; src->minor = 0; @@ -331,6 +362,14 @@ int zebra_maps_is_complete (ZebraMaps zms, unsigned reg_id) return 0; } +int zebra_maps_is_positioned (ZebraMaps zms, unsigned reg_id) +{ + struct zebra_map *zm = zebra_map_get (zms, reg_id); + if (zm) + return zm->positioned; + return 0; +} + int zebra_maps_is_sort (ZebraMaps zms, unsigned reg_id) { struct zebra_map *zm = zebra_map_get (zms, reg_id); @@ -349,22 +388,26 @@ int zebra_maps_sort (ZebraMaps zms, Z_SortAttributes *sortAttributes) int zebra_maps_attr (ZebraMaps zms, Z_AttributesPlusTerm *zapt, unsigned *reg_id, char **search_type, char **rank_type, - int *complete_flag) + int *complete_flag, int *sort_flag) { AttrType completeness; AttrType structure; AttrType relation; + AttrType sort_relation; int completeness_value; int structure_value; int relation_value; + int sort_relation_value; attr_init_APT (&structure, zapt, 4); attr_init_APT (&completeness, zapt, 6); attr_init_APT (&relation, zapt, 2); + attr_init_APT (&sort_relation, zapt, 7); completeness_value = attr_find (&completeness, NULL); structure_value = attr_find (&structure, NULL); relation_value = attr_find (&relation, NULL); + sort_relation_value = attr_find (&sort_relation, NULL); if (completeness_value == 2 || completeness_value == 3) *complete_flag = 1; @@ -372,6 +415,7 @@ int zebra_maps_attr (ZebraMaps zms, Z_AttributesPlusTerm *zapt, *complete_flag = 0; *reg_id = 0; + *sort_flag = (sort_relation_value > 0) ? 1 : 0; *search_type = "phrase"; *rank_type = "void"; if (relation_value == 102) @@ -395,7 +439,6 @@ int zebra_maps_attr (ZebraMaps zms, Z_AttributesPlusTerm *zapt, case -1: case 1: /* phrase */ case 2: /* word */ - case 3: /* key */ case 108: /* string */ *search_type = "phrase"; break; @@ -405,12 +448,16 @@ int zebra_maps_attr (ZebraMaps zms, Z_AttributesPlusTerm *zapt, break; case 109: /* numeric string */ *reg_id = 'n'; - *search_type = "phrase"; + *search_type = "numeric"; break; case 104: /* urx */ *reg_id = 'u'; *search_type = "phrase"; break; + case 3: /* key */ + *reg_id = '0'; + *search_type = "phrase"; + break; default: return -1; }