X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=data1%2Fd1_handle.c;h=e5c4eaad1afaa87d3facafcaa7913d646129c982;hp=2c5f853a44a903e91e806365676e2d8d6a550806;hb=44621b084e8fdf06a45409754116e8810bd89664;hpb=074e63e27b02896c927606ce5bb324a55613dd31 diff --git a/data1/d1_handle.c b/data1/d1_handle.c index 2c5f853..e5c4eaa 100644 --- a/data1/d1_handle.c +++ b/data1/d1_handle.c @@ -1,8 +1,5 @@ -/* $Id: d1_handle.c,v 1.8 2006-03-29 10:43:23 adam Exp $ - Copyright (C) 1995-2005 - Index Data ApS - -This file is part of the Zebra server. +/* This file is part of the Zebra server. + Copyright (C) 1994-2010 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 @@ -15,9 +12,9 @@ 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 Zebra; see the file LICENSE.zebra. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ #include @@ -49,7 +46,7 @@ data1_handle data1_create(void) { data1_handle p = (data1_handle)xmalloc (sizeof(*p)); if (!p) - return NULL; + return 0; p->tab_path = NULL; p->tab_root = NULL; p->wrbuf = wrbuf_alloc(); @@ -89,7 +86,7 @@ void data1_destroy (data1_handle dh) */ data1_absyn_destroy(dh); - wrbuf_free (dh->wrbuf, 1); + wrbuf_destroy(dh->wrbuf); if (dh->tab_path) xfree (dh->tab_path); if (dh->tab_root) @@ -150,12 +147,37 @@ const char *data1_get_tabroot (data1_handle dp) FILE *data1_path_fopen (data1_handle dh, const char *file, const char *mode) { + FILE *f; const char *path = data1_get_tabpath(dh); const char *root = data1_get_tabroot(dh); - return yaz_fopen (path, file, "r", root); + + yaz_log(YLOG_DEBUG, "data1_path_fopen path=%s root=%s " + "file=%s mode=%s", path ? path : "NULL", + root ? root : "NULL", file, mode); + if (!path || !*path) + return 0; + f = yaz_fopen(path, file, mode, root); + if (!f) + { + yaz_log(YLOG_WARN|YLOG_ERRNO, "Couldn't open %s", file); + if (root) + yaz_log(YLOG_LOG, "for root=%s", root); + if (path) + yaz_log(YLOG_LOG, "for profilePath=%s", path); + } + return f; } int data1_is_xmlmode(data1_handle dh) { return 1; } +/* + * Local variables: + * c-basic-offset: 4 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +