X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fcclqual.c;h=e55a654c021791927079a9ad20e5d14a5edc135f;hp=d196a00caa34a53e424b4e4c2be9f3bf6b69c125;hb=1f3fef356c699a9d7c68902cd6d3e33b08c3cc4e;hpb=989d5bac118f61e95638cf994b168ef29822443f diff --git a/src/cclqual.c b/src/cclqual.c index d196a00..e55a654 100644 --- a/src/cclqual.c +++ b/src/cclqual.c @@ -259,6 +259,74 @@ void ccl_qual_rm(CCL_bibset *b) *b = NULL; } +CCL_bibset ccl_qual_dup(CCL_bibset b) +{ + CCL_bibset n = ccl_qual_mk(); + struct ccl_qualifier *q, **qp; + struct ccl_qualifier_special *s, **sp; + + qp = &n->list; + for (q = b->list; q; q = q->next) + { + struct ccl_rpn_attr *attr, **attrp; + *qp = xmalloc(sizeof(**qp)); + (*qp)->next = 0; + (*qp)->attr_list = 0; + (*qp)->name = xstrdup(q->name); + + attrp = &(*qp)->attr_list; + for (attr = q->attr_list; attr; attr = attr->next) + { + int i; + *attrp = xmalloc(sizeof(**attrp)); + (*attrp)->next = 0; + (*attrp)->set = attr->set ? xstrdup(attr->set) : 0; + (*attrp)->type = attr->type; + if (attr->kind == CCL_RPN_ATTR_NUMERIC) + (*attrp)->value.numeric = attr->value.numeric; + else if (attr->kind == CCL_RPN_ATTR_STRING) + (*attrp)->value.str = xstrdup(attr->value.str); + + /* fix up the sub qualifiers.. */ + for (i = 0; q->sub[i]; i++) + ; + (*qp)->sub = xmalloc(sizeof(*(*qp)->sub) * (i+1)); + for (i = 0; q->sub[i]; i++) + { + struct ccl_qualifier *q1, *q2; + + /* sweep though original and match up the corresponding ent */ + q2 = n->list; + for (q1 = b->list; q1 && q2; q1 = q1->next, q2 = q2->next) + if (q1 == q->sub[i]) + break; + (*qp)->sub[i] = q2; + } + (*qp)->sub[i] = 0; + + attrp = &(*attrp)->next; + } + qp = &(*qp)->next; + } + sp = &n->special; + for (s = b->special; s; s = s->next) + { + int i; + + for (i = 0; s->values[i]; i++) + ; + *sp = xmalloc(sizeof(**sp)); + (*sp)->next = 0; + (*sp)->name = xstrdup(s->name); + (*sp)->values = xmalloc(sizeof(*(*sp)->values) * (i+1)); + for (i = 0; s->values[i]; i++) + (*sp)->values[i] = xstrdup(s->values[i]); + (*sp)->values[i] = 0; + sp = &(*sp)->next; + } + return n; +} + ccl_qualifier_t ccl_qual_search(CCL_parser cclp, const char *name, size_t name_len, int seq) {