1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2013 Index Data.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of Index Data nor the names of its contributors
13 * may be used to endorse or promote products derived from this
14 * software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * \brief Header for the facet utilities
36 #include <yaz/yconfig.h>
38 #include <yaz/z-core.h>
39 #include <yaz/z-facet-1.h>
45 * Helper function for extracting facet values from the ASN structures.
49 /** A helper structure to extract all the attribute stuff
50 from one Z_AttributesList for facets. The pointers will all be to
51 the Z-structures, or to constants, so there is no need to
52 worry about freeing them */
53 struct yaz_facet_attr {
54 int errcode; /* set in case of errors */
55 char *errstring; /* opt */
56 const char *useattr; /* @attr 1, from a string attr */
57 /* or number converted to a string */
58 /* defaults to 'any' */
59 char useattrbuff[30]; /* for converting numbers to strings */
66 void yaz_facet_attr_init(struct yaz_facet_attr *attr_values);
69 void yaz_facet_attr_get_z_attributes(const Z_AttributeList *attributes,
70 struct yaz_facet_attr *av);
73 Z_FacetTerm *facet_term_create_cstr(ODR odr, const char *cstr, Odr_int freq);
76 Z_FacetField* facet_field_create(ODR odr, Z_AttributeList *attributes,
80 void facet_field_term_set(ODR odr, Z_FacetField *field,
81 Z_FacetTerm *facetTerm, int index);
84 Z_FacetList* facet_list_create(ODR odr, int num_facets);
87 void facet_list_field_set(ODR odr, Z_FacetList *list, Z_FacetField *field,
90 void yaz_oi_set_facetlist(
91 Z_OtherInformation **otherInformation, ODR odr, Z_FacetList *facet_list);
94 Z_FacetList *yaz_oi_get_facetlist(Z_OtherInformation **otherInformation);
102 * c-file-style: "Stroustrup"
103 * indent-tabs-mode: nil
105 * vim: shiftwidth=4 tabstop=8 expandtab