1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
|
/* This file is part of the Zebra server.
Copyright (C) Index Data
Zebra is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.
Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* converts data1 tree to GRS-1 record */
#if HAVE_CONFIG_H
#include <config.h>
#endif
#include <assert.h>
#include <stdlib.h>
#include <yaz/proto.h>
#include <yaz/log.h>
#include <d1_absyn.h>
#define D1_VARIANTARRAY 20 /* fixed max length on sup'd variant-list. Lazy me */
static Z_GenericRecord *data1_nodetogr_r(data1_handle dh, data1_node *n,
int select, ODR o, int *len,
data1_tag *wellknown_tag);
static Z_ElementMetaData *get_ElementMetaData(ODR o)
{
Z_ElementMetaData *r = (Z_ElementMetaData *)odr_malloc(o, sizeof(*r));
r->seriesOrder = 0;
r->usageRight = 0;
r->num_hits = 0;
r->hits = 0;
r->displayName = 0;
r->num_supportedVariants = 0;
r->supportedVariants = 0;
r->message = 0;
r->elementDescriptor = 0;
r->surrogateFor = 0;
r->surrogateElement = 0;
r->other = 0;
return r;
}
/*
* N should point to the *last* (leaf) triple in a sequence. Construct a variant
* from each of the triples beginning (ending) with 'n', up to the
* nearest parent tag. num should equal the number of triples in the
* sequence.
*/
static Z_Variant *make_variant(data1_node *n, int num, ODR o)
{
Z_Variant *v = (Z_Variant *)odr_malloc(o, sizeof(*v));
data1_node *p;
v->globalVariantSetId = 0;
v->num_triples = num;
v->triples = (Z_Triple **)odr_malloc(o, sizeof(Z_Triple*) * num);
/*
* cycle back up through the tree of variants
* (traversing exactly 'level' variants).
*/
for (p = n, num--; p && num >= 0; p = p->parent, num--)
{
Z_Triple *t;
assert(p->which == DATA1N_variant);
t = v->triples[num] = (Z_Triple *)odr_malloc(o, sizeof(*t));
t->variantSetId = 0;
t->zclass = odr_intdup(o, p->u.variant.type->zclass->zclass);
t->type = odr_intdup(o, p->u.variant.type->type);
switch (p->u.variant.type->datatype)
{
case DATA1K_string:
t->which = Z_Triple_internationalString;
t->value.internationalString =
odr_strdup(o, p->u.variant.value);
break;
default:
yaz_log(YLOG_WARN, "Unable to handle value for variant %s",
p->u.variant.type->name);
return 0;
}
}
return v;
}
/*
* Traverse the variant children of n, constructing a supportedVariant list.
*/
static int traverse_triples(data1_node *n, int level, Z_ElementMetaData *m,
ODR o)
{
data1_node *c;
for (c = n->child; c; c = c->next)
if (c->which == DATA1N_data && level)
{
if (!m->supportedVariants)
m->supportedVariants = (Z_Variant **)odr_malloc(o, sizeof(Z_Variant*) *
D1_VARIANTARRAY);
else if (m->num_supportedVariants >= D1_VARIANTARRAY)
{
yaz_log(YLOG_WARN, "Too many variants (D1_VARIANTARRAY==%d)",
D1_VARIANTARRAY);
return -1;
}
if (!(m->supportedVariants[m->num_supportedVariants++] =
make_variant(n, level, o)))
return -1;
}
else if (c->which == DATA1N_variant)
if (traverse_triples(c, level+1, m, o) < 0)
return -1;
return 0;
}
/*
* Locate some data under this node. This routine should handle variants
* prettily.
*/
static char *get_data(data1_node *n, int *len)
{
char *r;
data1_node *np = 0;
while (n)
{
if (n->which == DATA1N_data)
{
int i;
*len = n->u.data.len;
for (i = 0; i<*len; i++)
if (!d1_isspace(n->u.data.data[i]))
break;
while (*len && d1_isspace(n->u.data.data[*len - 1]))
(*len)--;
*len = *len - i;
if (*len > 0)
return n->u.data.data + i;
}
if (n->which == DATA1N_tag)
np = n->child;
n = n->next;
if (!n)
{
n = np;
np = 0;
}
}
r = "";
*len = strlen(r);
return r;
}
static Z_ElementData *nodetoelementdata(data1_handle dh, data1_node *n,
int select, int leaf,
ODR o, int *len,
data1_tag *wellknown_tag)
{
Z_ElementData *res = (Z_ElementData *)odr_malloc(o, sizeof(*res));
if (!n)
{
res->which = Z_ElementData_elementNotThere;
res->u.elementNotThere = odr_nullval();
}
else if (n->which == DATA1N_data && leaf)
{
char str[64], *cp;
int toget = n->u.data.len;
cp = get_data (n, &toget);
switch (n->u.data.what)
{
case DATA1I_num:
res->which = Z_ElementData_numeric;
res->u.numeric = odr_intdup(o, atoi_n(cp, toget));
*len += 4;
break;
case DATA1I_text:
case DATA1I_xmltext:
res->which = Z_ElementData_string;
res->u.string = (char *)odr_malloc(o, toget+1);
if (toget)
memcpy(res->u.string, cp, toget);
res->u.string[toget] = '\0';
*len += toget;
break;
case DATA1I_oid:
res->which = Z_ElementData_oid;
if (toget > 63)
toget = 63;
memcpy (str, cp, toget);
str[toget] = '\0';
res->u.oid = odr_getoidbystr(o, str);
*len += oid_oidlen(res->u.oid) * sizeof(int);
break;
default:
yaz_log(YLOG_WARN, "Can't handle datatype.");
return 0;
}
}
else
{
res->which = Z_ElementData_subtree;
if (!(res->u.subtree = data1_nodetogr_r (dh, n->parent, select, o, len,
wellknown_tag )))
return 0;
}
return res;
}
static int is_empty_data (data1_node *n)
{
if (n && n->which == DATA1N_data && (n->u.data.what == DATA1I_text
|| n->u.data.what == DATA1I_xmltext))
{
int i = n->u.data.len;
while (i > 0 && d1_isspace(n->u.data.data[i-1]))
i--;
if (i == 0)
return 1;
}
return 0;
}
static Z_TaggedElement *nodetotaggedelement(data1_handle dh, data1_node *n,
int select, ODR o,
int *len,
data1_tag *wellknown_tag)
{
Z_TaggedElement *res = (Z_TaggedElement *)odr_malloc(o, sizeof(*res));
data1_tag *tag = 0;
data1_node *data;
int leaf = 0;
if (n->which == DATA1N_tag)
{
if (n->u.tag.element)
tag = n->u.tag.element->tag;
data = n->child;
/* skip empty data children */
while (is_empty_data(data))
data = data->next;
if (!data)
data = n->child;
else
{ /* got one. see if this is the only non-empty one */
data1_node *sub = data->next;
while (sub && is_empty_data(sub))
sub = sub->next;
if (!sub)
leaf = 1; /* all empty. 'data' is the only child */
}
}
/*
* If we're a data element at this point, we need to insert a
* wellKnown tag to wrap us up.
*/
else if (n->which == DATA1N_data || n->which == DATA1N_variant)
{
tag = wellknown_tag;
if (!tag)
return 0;
data = n;
leaf = 1;
if (is_empty_data(data))
return 0;
}
else
{
yaz_log(YLOG_WARN, "Bad data.");
return 0;
}
res->tagType = odr_intdup(o, (tag && tag->tagset) ? tag->tagset->type : 3);
res->tagValue = (Z_StringOrNumeric *)odr_malloc(o, sizeof(Z_StringOrNumeric));
if (tag && tag->which == DATA1T_numeric)
{
res->tagValue->which = Z_StringOrNumeric_numeric;
res->tagValue->u.numeric = odr_intdup(o, tag->value.numeric);
}
else
{
char *tagstr;
if (n->which == DATA1N_tag)
tagstr = n->u.tag.tag; /* tag at node */
else if (tag)
tagstr = tag->value.string; /* no take from well-known */
else
return 0;
res->tagValue->which = Z_StringOrNumeric_string;
res->tagValue->u.string = odr_strdup(o, tagstr);
}
res->tagOccurrence = 0;
res->appliedVariant = 0;
res->metaData = 0;
if (n->which == DATA1N_variant || (data && data->which ==
DATA1N_variant && data->next == NULL))
{
int nvars = 0;
res->metaData = get_ElementMetaData(o);
if (n->which == DATA1N_tag && n->u.tag.make_variantlist)
if (traverse_triples(data, 0, res->metaData, o) < 0)
return 0;
while (data && data->which == DATA1N_variant)
{
nvars++;
data = data->child;
}
if (n->which != DATA1N_tag || !n->u.tag.no_data_requested)
res->appliedVariant = make_variant(data->parent, nvars-1, o);
}
if (n->which == DATA1N_tag && n->u.tag.no_data_requested)
{
res->content = (Z_ElementData *)odr_malloc(o, sizeof(*res->content));
res->content->which = Z_ElementData_noDataRequested;
res->content->u.noDataRequested = odr_nullval();
}
else if (!(res->content = nodetoelementdata (dh, data, select, leaf,
o, len, wellknown_tag)))
return 0;
*len += 10;
return res;
}
static Z_GenericRecord *data1_nodetogr_r(data1_handle dh, data1_node *n,
int select, ODR o, int *len,
data1_tag *wellknown_tag)
{
Z_GenericRecord *res = (Z_GenericRecord *)odr_malloc(o, sizeof(*res));
data1_node *c;
int num_children = 0;
for (c = n->child; c; c = c->next)
num_children++;
res->elements = (Z_TaggedElement **)
odr_malloc(o, sizeof(Z_TaggedElement *) * num_children);
res->num_elements = 0;
for (c = n->child; c; c = c->next)
{
if (c->which == DATA1N_tag && select && !c->u.tag.node_selected)
continue;
if ((res->elements[res->num_elements] =
nodetotaggedelement (dh, c, select, o, len, wellknown_tag)))
res->num_elements++;
}
return res;
}
Z_GenericRecord *data1_nodetogr(data1_handle dh, data1_node *n,
int select, ODR o, int *len)
{
data1_tag *wellknown_tag = 0;
if (n->which == DATA1N_root)
n = data1_get_root_tag (dh, n);
if (n->root->u.root.absyn &&
!(wellknown_tag =
data1_gettagbyname (dh, n->root->u.root.absyn->tagset,
"wellKnown")))
{
yaz_log(YLOG_WARN, "Unable to locate tag for 'wellKnown'");
wellknown_tag = odr_malloc(o, sizeof(*wellknown_tag));
wellknown_tag->which = DATA1T_numeric;
wellknown_tag->value.numeric = 19;
wellknown_tag->next = 0;
wellknown_tag->tagset = odr_malloc(o, sizeof(*wellknown_tag->tagset));
wellknown_tag->tagset->type = 1;
wellknown_tag->kind = DATA1K_string;
}
return data1_nodetogr_r(dh, n, select, o, len, wellknown_tag);
}
/*
* Local variables:
* c-basic-offset: 4
* c-file-style: "Stroustrup"
* indent-tabs-mode: nil
* End:
* vim: shiftwidth=4 tabstop=8 expandtab
*/
|