X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Fnfaxml.h;h=75694b4077a193e229bb68872c1a0c1fa71a48b7;hb=02c2c415822721c98afff674fc9672d004bd92a2;hp=582f9e7cd3ada23d3f0b95e8e93194ed58443aaa;hpb=fb61309506b52ca0dad9aea4135ceeda63707b0d;p=yaz-moved-to-github.git diff --git a/include/yaz/nfaxml.h b/include/yaz/nfaxml.h index 582f9e7..75694b4 100644 --- a/include/yaz/nfaxml.h +++ b/include/yaz/nfaxml.h @@ -1,7 +1,30 @@ -/* Copyright (C) 2006, Index Data ApS - * See the file LICENSE for details. - * $Id: nfaxml.h,v 1.1 2006-07-04 12:59:56 heikki Exp $ +/* + * Copyright (c) 1995-2006, Index Data + * All rights reserved. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Index Data nor the names of its contributors + * may be used to endorse or promote products derived from this + * software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +/* $Id: nfaxml.h,v 1.6 2006-10-09 21:02:41 adam Exp $ */ /** * \file nfaxml.h @@ -10,7 +33,7 @@ * The xml file is something like this (using round brakcets * on tags, not to confuse our documentation tools) * (?xml ...) - * (charmap) + * (ruleset) * (rule) * (fromstring) FOO (/fromstring) * (tostring) BAR (/tostring) @@ -35,31 +58,34 @@ #ifndef YAZ_NFA_XML_H #define YAZ_NFA_XML_H +#if YAZ_HAVE_XML2 + +#include + #include #include #include -#if HAVE_XML2 -#include - YAZ_BEGIN_CDECL - - /** \brief Parse the NFA from a XML document * * \param doc the xml tree to parse - * \param error_info will be filled in case of errors + * \param filename used for info in error messages * * \returns either the NFA, or null in case of errors * * It is up to the caller to destroy the nfa when done. * + * Does not expand XIncludes. + * * In case of errors, returns a null pointer. You can then - * call xmlGetLastError() to get the details of the error. + * call xmlGetLastError() to get the details of the error, + * if you have a recent enough libxml2. Those are already + * logged in yazlog. * */ -yaz_nfa *yaz_nfa_parse_xml_doc(xmlDocPtr doc); +yaz_nfa *yaz_nfa_parse_xml_doc(xmlDocPtr doc, const char *filename); /** \brief Parse the NFA from a file @@ -71,18 +97,40 @@ yaz_nfa *yaz_nfa_parse_xml_doc(xmlDocPtr doc); * * It is up to the caller to destroy the nfa when done. * - * In case of errors, error_info will be filled with - * suitable diagnostics. It may be null, if you don't - * care. + * This routine also expands XIncludes. + * + * In case of errors, returns a null pointer. You can then + * call xmlGetLastError() to get the details of the error, + * if you have a recent enough libxml2. Those are already + * logged in yazlog. * */ -yaz_nfa *yaz_nfa_parse_xml_file(char *filepath); +yaz_nfa *yaz_nfa_parse_xml_file(const char *filepath); -YAZ_END_CDECL +/** \brief Parse the NFA from a memory buffer + * + * \param filepath path to the xml file to parse + * \param error_info will be filled in case of errors + * + * \returns either the NFA, or null in case of errors + * + * It is up to the caller to destroy the nfa when done. + * + * Does not expand XIncludes. + * + * In case of errors, returns a null pointer. You can then + * call xmlGetLastError() to get the details of the error, + * if you have a recent enough libxml2. Those are already + * logged in yazlog. + * + */ +yaz_nfa *yaz_nfa_parse_xml_memory(const char *xmlbuff, const char *filename); -#endif /* HAVE_XML2 */ +YAZ_END_CDECL + +#endif /* YAZ_HAVE_XML2 */ #endif /* YAZ_NFA_XML_H */ /*