X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=retrieval%2Fd1_espec.c;h=0f36614fe8560f2bdbd66af40f51f7c26033aa69;hp=3c62d058b119ae9b37c3d1bc2b0ae106833cda9d;hb=79bf9f1b8b224b6b7323b280fca704591ac17324;hpb=a309d6ece06c0ab732d98c59f2718efaebd01ec6 diff --git a/retrieval/d1_espec.c b/retrieval/d1_espec.c index 3c62d05..0f36614 100644 --- a/retrieval/d1_espec.c +++ b/retrieval/d1_espec.c @@ -1,10 +1,35 @@ /* - * Copyright (c) 1995, Index Data. + * Copyright (c) 1995-1997, Index Data. * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * * $Log: d1_espec.c,v $ - * Revision 1.3 1995-11-13 09:27:34 quinn + * Revision 1.11 1997-09-29 13:18:59 adam + * Added function, oid_ent_to_oid, to replace the function + * oid_getoidbyent, which is not thread safe. + * + * Revision 1.10 1997/09/29 07:21:10 adam + * Added typecast to avoid warnings on MSVC. + * + * Revision 1.9 1997/09/17 12:10:35 adam + * YAZ version 1.4. + * + * Revision 1.8 1997/09/05 09:50:56 adam + * Removed global data1_tabpath - uses data1_get_tabpath() instead. + * + * Revision 1.7 1997/05/14 06:54:02 adam + * C++ support. + * + * Revision 1.6 1996/07/06 19:58:34 quinn + * System headerfiles gathered in yconfig + * + * Revision 1.5 1996/01/02 08:57:44 quinn + * Changed enums in the ASN.1 .h files to #defines. Changed oident.class to oclass + * + * Revision 1.4 1995/12/05 11:16:10 quinn + * Fixed malloc of 0. + * + * Revision 1.3 1995/11/13 09:27:34 quinn * Fiddling with the variant stuff. * * Revision 1.2 1995/11/01 16:34:56 quinn @@ -34,21 +59,25 @@ static Z_Variant *read_variant(int argc, char **argv, ODR o) Z_Variant *r = odr_malloc(o, sizeof(*r)); oident var1; int i; + int oid[OID_SIZE]; var1.proto = PROTO_Z3950; - var1.class = CLASS_VARSET; + var1.oclass = CLASS_VARSET; var1.value = VAL_VAR1; - r->globalVariantSetId = odr_oiddup(o, oid_getoidbyent(&var1)); + r->globalVariantSetId = odr_oiddup(o, oid_ent_to_oid(&var1, oid)); - r->triples = odr_malloc(o, sizeof(Z_Triple*) * argc); + if (argc) + r->triples = odr_malloc(o, sizeof(Z_Triple*) * argc); + else + r->triples = 0; r->num_triples = argc; for (i = 0; i < argc; i++) { - int class, type; + int zclass, type; char value[512]; Z_Triple *t; - if (sscanf(argv[i], "(%d,%d,%[^)])", &class, &type, value) < 3) + if (sscanf(argv[i], "(%d,%d,%[^)])", &zclass, &type, value) < 3) { logf(LOG_WARN, "Syntax error in variant component '%s'", argv[i]); @@ -56,8 +85,8 @@ static Z_Variant *read_variant(int argc, char **argv, ODR o) } t = r->triples[i] = odr_malloc(o, sizeof(Z_Triple)); t->variantSetId = 0; - t->class = odr_malloc(o, sizeof(int)); - *t->class = class; + t->zclass = odr_malloc(o, sizeof(int)); + *t->zclass = zclass; t->type = odr_malloc(o, sizeof(int)); *t->type = type; /* @@ -69,6 +98,12 @@ static Z_Variant *read_variant(int argc, char **argv, ODR o) t->which = Z_Triple_null; t->value.null = ODR_NULLVAL; } + else if (isdigit(*value)) + { + t->which = Z_Triple_integer; + t->value.integer = odr_malloc(o, sizeof(*t->value.integer)); + *t->value.integer = atoi(value); + } else { t->which = Z_Triple_internationalString; @@ -189,14 +224,14 @@ static Z_ETagUnit *read_tagunit(char *buf, ODR o) * Read an element-set specification from a file. * NOTE: If !o, memory is allocated directly from the heap by odr_malloc(). */ -Z_Espec1 *data1_read_espec1(char *file, ODR o) +Z_Espec1 *data1_read_espec1 (data1_handle dh, const char *file, ODR o) { FILE *f; int argc, size_esn = 0; char *argv[50], line[512]; Z_Espec1 *res = odr_malloc(o, sizeof(*res)); - if (!(f = yaz_path_fopen(data1_tabpath, file, "r"))) + if (!(f = yaz_path_fopen(data1_get_tabpath(dh), file, "r"))) { logf(LOG_WARN|LOG_ERRNO, "%s", file); return 0; @@ -222,7 +257,7 @@ Z_Espec1 *data1_read_espec1(char *file, ODR o) continue; } - res->elementSetNames = odr_malloc(o, sizeof(char*)*nnames); + res->elementSetNames = odr_malloc(o, sizeof(char**)*nnames); for (i = 0; i < nnames; i++) { res->elementSetNames[i] = odr_malloc(o, strlen(argv[i+1])+1); @@ -265,21 +300,29 @@ Z_Espec1 *data1_read_espec1(char *file, ODR o) char *path = argv[1]; char *ep; int num, i = 0; - + if (!res->elements) - res->elements = odr_malloc(o, size_esn = 24*sizeof(*er)); - else if (res->num_elements >= size_esn) + res->elements = odr_malloc(o, size_esn = 24*sizeof(er)); + else if (res->num_elements >= (int) (size_esn/sizeof(er))) { size_esn *= 2; - res->elements = o ? odr_malloc(o, size_esn) : - xrealloc(res->elements, size_esn); + if (o) + { + Z_ElementRequest **oe = res->elements; + + res->elements = odr_malloc (o, size_esn*sizeof(er)); + memcpy (res->elements, oe, size_esn/2); + } + else + res->elements = + xrealloc(res->elements, size_esn*sizeof(er)); } if (argc < 2) { logf(LOG_WARN, "%s: Empty simpleelement directive", file); continue; } - + res->elements[res->num_elements++] = er = odr_malloc(o, sizeof(*er)); er->which = Z_ERequest_simpleElement; @@ -290,19 +333,20 @@ Z_Espec1 *data1_read_espec1(char *file, ODR o) /* * Parse the element selector. */ - for (num = 1, ep = path; (ep = strchr(ep, '/')); num++, ep++); + for (num = 1, ep = path; (ep = strchr(ep, '/')); num++, ep++) + ; tp->tags = odr_malloc(o, sizeof(Z_ETagUnit*)*num); - - for ((ep = strchr(path, '/')) ; path ; (void)((path = ep) && - (ep = strchr(path, '/')))) + + for ((ep = strchr(path, '/')) ; path ; + (void)((path = ep) && (ep = strchr(path, '/')))) { if (ep) ep++; - + assert(itags[tp->num_tags++] = read_tagunit(path, o); } - + if (argc > 2 && !strcmp(argv[2], "variant")) se->variantRequest= read_variant(argc-3, argv+3, o); }