X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fres.c;h=78457d5c75a6ad4d5d62fa0590f1f9190fcc66bf;hb=5f8ba9f35bd3c9aeafe26613021f2edd141b8611;hp=0864a9177e8789e66f4a5c163972b25f5d467281;hpb=252d2081a943e847418dc677a4b95ebb2244ce4a;p=idzebra-moved-to-github.git diff --git a/util/res.c b/util/res.c index 0864a91..78457d5 100644 --- a/util/res.c +++ b/util/res.c @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: res.c,v $ - * Revision 1.15 1996-05-22 08:23:43 adam + * Revision 1.17 1997-09-09 13:38:19 adam + * Partial port to WIN95/NT. + * + * 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 @@ -54,8 +60,13 @@ #include #include #include +#ifdef WINDOWS +#include +#else #include -#include +#endif + +#include #include static struct res_entry *add_entry (Res r) @@ -80,7 +91,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; @@ -89,12 +99,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) { - logf (LOG_FATAL|LOG_ERRNO, "Cannot open %s", path); + logf (LOG_FATAL|LOG_ERRNO, "Cannot open %s", r->name); exit (1); } while (1) @@ -188,7 +196,11 @@ static void reread (Res r) Res res_open (const char *name) { Res r; +#ifdef WINDOWS + if (access (name, 4)) +#else if (access (name, R_OK)) +#endif logf (LOG_LOG|LOG_ERRNO, "Cannot access `%s'", name); r = xmalloc (sizeof(*r)); r->init = 0; @@ -242,6 +254,15 @@ char *res_get_def (Res r, const char *name, char *def) 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; @@ -282,18 +303,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) { - logf (LOG_FATAL|LOG_ERRNO, "Cannot create %s", path); + logf (LOG_FATAL|LOG_ERRNO, "Cannot create %s", r->name); exit (1); }