1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2013 Index Data
3 * See the file LICENSE for details.
7 * \brief Implements CCL qualifier utilities
16 #include <yaz/snprintf.h>
17 #include <yaz/tokenizer.h>
21 struct ccl_qualifier {
24 struct ccl_qualifier **sub;
25 struct ccl_rpn_attr *attr_list;
26 struct ccl_qualifier *next;
30 /** Definition of CCL_bibset pointer */
31 struct ccl_qualifiers {
32 struct ccl_qualifier *list;
33 struct ccl_qualifier_special *special;
37 /** CCL Qualifier special */
38 struct ccl_qualifier_special {
41 struct ccl_qualifier_special *next;
45 static struct ccl_qualifier *ccl_qual_lookup(CCL_bibset b,
46 const char *n, size_t len)
48 struct ccl_qualifier *q;
49 for (q = b->list; q; q = q->next)
50 if (len == strlen(q->name) && !memcmp(q->name, n, len))
55 void ccl_qual_add_special_ar(CCL_bibset bibset, const char *n,
58 struct ccl_qualifier_special *p;
59 for (p = bibset->special; p && strcmp(p->name, n); p = p->next)
66 for (i = 0; p->values[i]; i++)
67 xfree((char *) p->values[i]);
68 xfree((char **)p->values);
73 p = (struct ccl_qualifier_special *) xmalloc(sizeof(*p));
75 p->next = bibset->special;
81 void ccl_qual_add_special(CCL_bibset bibset, const char *n, const char *cp)
84 char **vlist = (char **) xmalloc(no * sizeof(*vlist));
85 yaz_tok_cfg_t yt = yaz_tok_cfg_create();
89 yaz_tok_parse_t tp = yaz_tok_parse_buf(yt, cp);
91 yaz_tok_cfg_destroy(yt);
94 while (t == YAZ_TOK_STRING)
97 vlist = (char **) xrealloc(vlist, (no = no * 2) * sizeof(*vlist));
98 vlist[i++] = xstrdup(yaz_tok_parse_string(tp));
102 ccl_qual_add_special_ar(bibset, n, (const char **) vlist);
104 yaz_tok_parse_destroy(tp);
108 /** \brief adds specifies qualifier aliases
111 \param n qualifier name
112 \param names list of qualifier aliases
114 void ccl_qual_add_combi(CCL_bibset b, const char *n, const char **names)
117 struct ccl_qualifier *q;
118 for (q = b->list; q && strcmp(q->name, n); q = q->next)
122 q = (struct ccl_qualifier *) xmalloc(sizeof(*q));
123 q->name = xstrdup(n);
128 for (i = 0; names[i]; i++)
131 q->sub = (struct ccl_qualifier **)
132 xmalloc(sizeof(*q->sub) * (1+q->no_sub));
133 for (i = 0; names[i]; i++)
134 q->sub[i] = ccl_qual_lookup(b, names[i], strlen(names[i]));
137 /** \brief adds specifies attributes for qualifier
140 \param name qualifier name
141 \param no number of attribute type+value pairs
142 \param type_ar attributes type of size no
143 \param value_ar attribute value of size no
144 \param svalue_ar attribute string values ([i] only used if != NULL)
145 \param attsets attribute sets of size no
148 void ccl_qual_add_set(CCL_bibset b, const char *name, int no,
149 int *type_ar, int *value_ar, char **svalue_ar,
152 struct ccl_qualifier *q;
153 struct ccl_rpn_attr **attrp;
156 for (q = b->list; q; q = q->next)
157 if (!strcmp(name, q->name))
161 q = (struct ccl_qualifier *)xmalloc(sizeof(*q));
167 q->name = xstrdup(name);
173 attrp = &q->attr_list;
175 attrp = &(*attrp)->next;
178 struct ccl_rpn_attr *attr;
180 attr = (struct ccl_rpn_attr *)xmalloc(sizeof(*attr));
182 attr->set = *attsets++;
183 attr->type = *type_ar++;
186 attr->kind = CCL_RPN_ATTR_STRING;
187 attr->value.str = *svalue_ar;
191 attr->kind = CCL_RPN_ATTR_NUMERIC;
192 attr->value.numeric = *value_ar;
202 /** \brief creates Bibset
205 CCL_bibset ccl_qual_mk(void)
207 CCL_bibset b = (CCL_bibset)xmalloc(sizeof(*b));
214 /** \brief destroys Bibset
215 \param b pointer to Bibset
217 *b will be set to NULL.
219 void ccl_qual_rm(CCL_bibset *b)
221 struct ccl_qualifier *q, *q1;
222 struct ccl_qualifier_special *sp, *sp1;
226 for (q = (*b)->list; q; q = q1)
228 struct ccl_rpn_attr *attr, *attr1;
230 for (attr = q->attr_list; attr; attr = attr1)
235 if (attr->kind == CCL_RPN_ATTR_STRING)
236 xfree(attr->value.str);
245 for (sp = (*b)->special; sp; sp = sp1)
252 for (i = 0; sp->values[i]; i++)
253 xfree((char*) sp->values[i]);
254 xfree((char **)sp->values);
262 CCL_bibset ccl_qual_dup(CCL_bibset b)
264 CCL_bibset n = ccl_qual_mk();
265 struct ccl_qualifier *q, **qp;
266 struct ccl_qualifier_special *s, **sp;
269 for (q = b->list; q; q = q->next)
271 struct ccl_rpn_attr *attr, **attrp;
272 *qp = xmalloc(sizeof(**qp));
274 (*qp)->attr_list = 0;
275 (*qp)->name = xstrdup(q->name);
277 attrp = &(*qp)->attr_list;
278 for (attr = q->attr_list; attr; attr = attr->next)
280 *attrp = xmalloc(sizeof(**attrp));
282 (*attrp)->set = attr->set ? xstrdup(attr->set) : 0;
283 (*attrp)->type = attr->type;
284 (*attrp)->kind = attr->kind;
285 if (attr->kind == CCL_RPN_ATTR_NUMERIC)
286 (*attrp)->value.numeric = attr->value.numeric;
287 else if (attr->kind == CCL_RPN_ATTR_STRING)
288 (*attrp)->value.str = xstrdup(attr->value.str);
290 attrp = &(*attrp)->next;
292 (*qp)->no_sub = q->no_sub;
297 /* fix up the sub qualifiers.. */
299 (*qp)->sub = xmalloc(sizeof(*q->sub) * (q->no_sub + 1));
300 for (i = 0; i < q->no_sub; i++)
302 struct ccl_qualifier *q1, *q2;
304 /* sweep though original and match up the corresponding ent */
306 for (q1 = b->list; q1 && q2; q1 = q1->next, q2 = q2->next)
315 for (s = b->special; s; s = s->next)
319 for (i = 0; s->values[i]; i++)
321 *sp = xmalloc(sizeof(**sp));
323 (*sp)->name = xstrdup(s->name);
324 (*sp)->values = xmalloc(sizeof(*(*sp)->values) * (i+1));
325 for (i = 0; s->values[i]; i++)
326 (*sp)->values[i] = xstrdup(s->values[i]);
327 (*sp)->values[i] = 0;
333 ccl_qualifier_t ccl_qual_search(CCL_parser cclp, const char *name,
334 size_t name_len, int seq)
336 struct ccl_qualifier *q = 0;
337 const char **aliases;
338 int case_sensitive = cclp->ccl_case_sensitive;
344 aliases = ccl_qual_search_special(cclp->bibset, "case");
346 case_sensitive = atoi(aliases[0]);
348 for (q = cclp->bibset->list; q; q = q->next)
349 if (strlen(q->name) == name_len)
353 if (!memcmp(name, q->name, name_len))
358 if (!ccl_memicmp(name, q->name, name_len))
377 struct ccl_rpn_attr *ccl_qual_get_attr(ccl_qualifier_t q)
382 const char *ccl_qual_get_name(ccl_qualifier_t q)
387 const char **ccl_qual_search_special(CCL_bibset b, const char *name)
389 struct ccl_qualifier_special *q;
392 for (q = b->special; q && strcmp(q->name, name); q = q->next)
399 int ccl_search_stop(CCL_bibset bibset, const char *qname,
400 const char *src_str, size_t src_len)
402 const char **slist = 0;
406 yaz_snprintf(qname_buf, sizeof(qname_buf)-1, "stop.%s",
408 slist = ccl_qual_search_special(bibset, qname_buf);
411 slist = ccl_qual_search_special(bibset, "stop.*");
415 for (i = 0; slist[i]; i++)
416 if (src_len == strlen(slist[i])
417 && ccl_memicmp(slist[i], src_str, src_len) == 0)
426 * c-file-style: "Stroustrup"
427 * indent-tabs-mode: nil
429 * vim: shiftwidth=4 tabstop=8 expandtab