X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Foid_db.c;h=5d9297e98961e7d1bf268975175e9a0dd8db094f;hp=104ff930881abaacc778642ea21d6418fe06d992;hb=43a9d38d20c1b1bcd1a03b2445a501d27526bd35;hpb=ee6ab2ee3a9ee1a8c65d7272ec7fba1d886f5af0 diff --git a/src/oid_db.c b/src/oid_db.c index 104ff93..5d9297e 100644 --- a/src/oid_db.c +++ b/src/oid_db.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2008 Index Data + * Copyright (C) 1995-2011 Index Data * See the file LICENSE for details. */ @@ -27,7 +27,7 @@ struct yaz_oid_db { }; struct yaz_oid_db standard_db_l = { - yaz_oid_standard_entries, 0, 0 + 0, 0, 0 }; yaz_oid_db_t standard_db = &standard_db_l; @@ -36,6 +36,8 @@ yaz_oid_db_t yaz_oid_std(void) return standard_db; } +#define get_entries(db) (db->xmalloced==0 ? yaz_oid_standard_entries : db->entries) + const Odr_oid *yaz_string_to_oid(yaz_oid_db_t oid_db, oid_class oclass, const char *name) { @@ -44,13 +46,13 @@ const Odr_oid *yaz_string_to_oid(yaz_oid_db_t oid_db, struct yaz_oid_entry *e; if (oclass != CLASS_GENERAL) { - for (e = oid_db->entries; e->name; e++) + for (e = get_entries(oid_db); e->name; e++) { if (!yaz_matchstr(e->name, name) && oclass == e->oclass) return e->oid; } } - for (e = oid_db->entries; e->name; e++) + for (e = get_entries(oid_db); e->name; e++) { if (!yaz_matchstr(e->name, name)) return e->oid; @@ -81,7 +83,7 @@ const char *yaz_oid_to_string(yaz_oid_db_t oid_db, return 0; for (; oid_db; oid_db = oid_db->next) { - struct yaz_oid_entry *e = oid_db->entries; + struct yaz_oid_entry *e = get_entries(oid_db); for (; e->name; e++) { if (!oid_oidcmp(e->oid, oid)) @@ -97,7 +99,7 @@ const char *yaz_oid_to_string(yaz_oid_db_t oid_db, const char *yaz_oid_to_string_buf(const Odr_oid *oid, oid_class *oclass, char *buf) { - const char *p = yaz_oid_to_string(standard_db, oid, oclass); + const char *p = yaz_oid_to_string(yaz_oid_std(), oid, oclass); if (p) return p; if (oclass) @@ -192,7 +194,7 @@ void yaz_oid_trav(yaz_oid_db_t oid_db, { for (; oid_db; oid_db = oid_db->next) { - struct yaz_oid_entry *e = oid_db->entries; + struct yaz_oid_entry *e = get_entries(oid_db); for (; e->name; e++) func(e->oid, e->oclass, e->name, client_data); @@ -202,6 +204,7 @@ void yaz_oid_trav(yaz_oid_db_t oid_db, /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab