d51b2efb79c9e6412a25c7ddfe362401dbb9e823
[yaz-moved-to-github.git] / include / yaz / facet.h
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2010 Index Data.
3  * All rights reserved.
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
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.
15  *
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.
26  */
27
28 /**
29  * \file facet.h
30  * \brief Header for the facet utilities
31  */
32
33 #ifndef YAZ_FACET_H
34 #define YAZ_FACET_H
35
36 #include <yaz/yconfig.h>
37 #include <yaz/odr.h>
38 #include <yaz/z-core.h>
39 #include <yaz/z-facet-1.h>
40 #include <yaz/log.h>
41
42 YAZ_BEGIN_CDECL
43
44 /*
45  * Helper function for extracting facet values from the ASN structures.
46  *
47  */
48
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 */
60     char *relation; /* @attr 2, defaults to '=' */
61     int limit; /* for facet attributes */
62 };
63
64 YAZ_EXPORT
65 void yaz_facet_attr_init(struct yaz_facet_attr *attr_values);
66
67 YAZ_EXPORT
68 void yaz_facet_attr_get_z_attributes(const Z_AttributeList *attributes,
69                                      struct yaz_facet_attr *av);
70
71 YAZ_EXPORT
72 Z_Term *term_create(ODR odr, const char *cstr);
73
74 YAZ_EXPORT
75 Z_FacetTerm* facet_term_create(ODR odr, Z_Term *term, int freq);
76
77 YAZ_EXPORT
78 Z_FacetField* facet_field_create(ODR odr, Z_AttributeList *attributes,
79                                  int num_terms);
80
81 YAZ_EXPORT
82 void facet_field_term_set(ODR odr, Z_FacetField *field,
83                           Z_FacetTerm *facetTerm, int index);
84
85 YAZ_EXPORT
86 Z_FacetList* facet_list_create(ODR odr, int num_facets);
87
88 YAZ_EXPORT
89 void facet_list_field_set(ODR odr, Z_FacetList *list, Z_FacetField *field,
90                           int index);
91 YAZ_EXPORT
92 void yaz_oi_set_facetlist(
93     Z_OtherInformation **otherInformation, ODR odr, Z_FacetList *facet_list);
94
95 YAZ_EXPORT
96 Z_FacetList *yaz_oi_get_facetlist(Z_OtherInformation **otherInformation);
97
98 YAZ_END_CDECL
99
100 #endif
101 /*
102  * Local variables:
103  * c-basic-offset: 4
104  * c-file-style: "Stroustrup"
105  * indent-tabs-mode: nil
106  * End:
107  * vim: shiftwidth=4 tabstop=8 expandtab
108  */
109