X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fres.c;h=10b600e0b54360169c4e76d5bca5ec37e7e1757a;hb=edf09fc5529eae3e8214a432058b4c07b2b8d2f9;hp=e6415000d0e0da3480c0a025695a5cdd55bd12e1;hpb=f8d11c9a16e0312c29e31fba8029f85fe0d9085c;p=idzebra-moved-to-github.git diff --git a/util/res.c b/util/res.c index e641500..10b600e 100644 --- a/util/res.c +++ b/util/res.c @@ -4,7 +4,25 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: res.c,v $ - * Revision 1.10 1994-10-05 10:47:31 adam + * Revision 1.16 1996-10-29 13:47:49 adam + * Implemented res_get_match. Updated to use zebrautl instead of alexpath. + * + * Revision 1.15 1996/05/22 08:23:43 adam + * Bug fix: trailing blanks in resource values where not removed. + * + * Revision 1.14 1996/04/26 11:51:20 adam + * Resource names are matched by the yaz_matchstr routine instead of strcmp. + * + * Revision 1.13 1995/09/04 12:34:05 adam + * Various cleanup. YAZ util used instead. + * + * Revision 1.12 1995/01/24 16:40:32 adam + * Bug fix. + * + * Revision 1.11 1994/10/05 16:54:52 adam + * Minor changes. + * + * Revision 1.10 1994/10/05 10:47:31 adam * Small bug fix. * * Revision 1.9 1994/09/16 14:41:12 quinn @@ -18,7 +36,6 @@ * * Revision 1.6 1994/09/01 17:45:14 adam * Work on resource manager. - * CVS ---------------------------------------------------------------------- * * Revision 1.5 1994/08/18 11:02:28 adam * Implementation of res_write. @@ -41,7 +58,9 @@ #include #include #include -#include + +#include +#include static struct res_entry *add_entry (Res r) { @@ -65,7 +84,6 @@ static void reread (Res r) char *line; char *val_buf; int val_size, val_max = 256; - char path[256]; char fr_buf[1024]; FILE *fr; @@ -74,12 +92,10 @@ static void reread (Res r) val_buf = xmalloc (val_max); - strcpy (path, alex_path(r->name)); - - fr = fopen (path, "r"); + fr = fopen (r->name, "r"); if (!fr) { - log (LOG_FATAL|LOG_ERRNO, "cannot open %s", path); + logf (LOG_FATAL|LOG_ERRNO, "Cannot open %s", r->name); exit (1); } while (1) @@ -128,10 +144,14 @@ static void reread (Res r) { if (fr_buf[no] == '\0' || fr_buf[no] == '\n') { + while (val_size > 0 && + (val_buf[val_size-1] == ' ' || + val_buf[val_size-1] == '\t')) + val_size--; val_buf[val_size++] = '\0'; resp->value = xmalloc (val_size); strcpy (resp->value, val_buf); - log (LOG_DEBUG, "(name=%s,value=%s)", + logf (LOG_DEBUG, "(name=%s,value=%s)", resp->name, resp->value); break; } @@ -170,9 +190,10 @@ Res res_open (const char *name) { Res r; if (access (name, R_OK)) - log (LOG_LOG|LOG_ERRNO, "cannot access `%s'", name); + logf (LOG_LOG|LOG_ERRNO, "Cannot access `%s'", name); r = xmalloc (sizeof(*r)); r->init = 0; + r->first = r->last = NULL; r->name = xstrdup (name); return r; } @@ -204,7 +225,7 @@ char *res_get (Res r, const char *name) if (!r->init) reread (r); for (re = r->first; re; re=re->next) - if (re->value && !strcmp (re->name, name)) + if (re->value && !yaz_matchstr (re->name, name)) return re->value; return NULL; } @@ -215,13 +236,22 @@ char *res_get_def (Res r, const char *name, char *def) if (!(t = res_get (r, name))) { - log(LOG_DEBUG, "CAUTION: Using default resource %s:%s", name, def); + logf (LOG_DEBUG, "CAUTION: Using default resource %s:%s", name, def); return def; } else return t; } +int res_get_match (Res r, const char *name, const char *value, const char *s) +{ + const char *cn = res_get (r, name); + + if (cn && !yaz_matchstr (cn, value)) + return 1; + return 0; +} + void res_put (Res r, const char *name, const char *value) { struct res_entry *re; @@ -230,7 +260,7 @@ void res_put (Res r, const char *name, const char *value) reread (r); for (re = r->first; re; re=re->next) - if (re->value && !strcmp (re->name, name)) + if (re->value && !yaz_matchstr (re->name, name)) { xfree (re->value); re->value = xstrdup (value); @@ -262,18 +292,15 @@ void res_trav (Res r, const char *prefix, int res_write (Res r) { struct res_entry *re; - char path[256]; FILE *fr; assert (r); if (!r->init) reread (r); - strcpy (path, alex_path(r->name)); - - fr = fopen (path, "w"); + fr = fopen (r->name, "w"); if (!fr) { - log (LOG_FATAL|LOG_ERRNO, "cannot create %s", path); + logf (LOG_FATAL|LOG_ERRNO, "Cannot create %s", r->name); exit (1); }