* LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THIS SOFTWARE.
*
- * $Id: retrieval.h,v 1.1 2006-05-04 20:00:45 adam Exp $
+ * $Id: retrieval.h,v 1.2 2006-05-05 18:37:08 adam Exp $
*/
/**
* \file retrieval.h
For retrieval:
\verbatim
<retrievalinfo>
- <retrieval syntax="usmarc" name="marcxml"
+ <retrieval syntax="usmarc" schema="marcxml"
identifier="info:srw/schema/1/marcxml-v1.1"
+ backendsyntax="xml" backendschema="dc"
>
<title>MARCXML</title>
- <backend syntax="xml" name="dc" charset="utf-8"/>
<convert>
<marc inputformat="marc" outputformat="marcxml"
inputcharset="marc-8"/>
/** performs retrieval request based on schema and format
\param p retrieval handle
\param schema record schema / element set name (Z39.50)
- \param format record format (syntax)
+ \param syntax record syntax (format)
\param rc record conversion reference (holds conversion upon success)
\retval 0 success
\retval -1 falure
*/
YAZ_EXPORT
int yaz_retrieval_request(yaz_retrieval_t p, const char *schema,
- const char *format, yaz_record_conv_t *rc);
+ const char *syntax, yaz_record_conv_t *rc);
/** returns error string (for last error)
\param p record conversion handle
* Copyright (C) 2005-2006, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: retrieval.c,v 1.1 2006-05-04 20:00:45 adam Exp $
+ * $Id: retrieval.c,v 1.2 2006-05-05 18:37:08 adam Exp $
*/
/**
* \file retrieval.c
/** \brief string buffer for error messages */
WRBUF wr_error;
+ /** \brief path for opening files */
+ char *path;
+
+ /** \brief retrieval list */
+ struct yaz_retrieval_elem *list;
+
+ /** \brief last pointer in retrieval list */
+ struct yaz_retrieval_elem **list_p;
+};
+
+/** \brief information per 'retrieval' construct */
+struct yaz_retrieval_elem {
+ /** \brief schema identifier */
+ const char *identifier;
+ /** \brief schema short-hand (such sa "dc") */
+ const char *schema;
+ /** \brief record syntax */
+ const char *syntax;
+ /** \brief backend schema */
+ const char *backend_schema;
+ /** \brief backend syntax */
+ const char *backend_syntax;
+
/** \brief record conversion */
yaz_record_conv_t record_conv;
+
+ /** \breif next element in list */
+ struct yaz_retrieval_elem *next;
};
+static void yaz_retrieval_reset(yaz_retrieval_t p);
+
yaz_retrieval_t yaz_retrieval_create()
{
yaz_retrieval_t p = xmalloc(sizeof(*p));
p->nmem = nmem_create();
p->wr_error = wrbuf_alloc();
- p->record_conv = yaz_record_conv_create();
+ p->list = 0;
+ p->path = 0;
+ yaz_retrieval_reset(p);
return p;
}
{
if (p)
{
+ yaz_retrieval_reset(p);
nmem_destroy(p->nmem);
wrbuf_free(p->wr_error, 1);
- yaz_record_conv_destroy(p->record_conv);
+ xfree(p->path);
xfree(p);
}
}
-int yaz_retrieval_configure(yaz_retrieval_t p, const void *node)
+void yaz_retrieval_reset(yaz_retrieval_t p)
{
+ struct yaz_retrieval_elem *el = p->list;
+ for(; el; el = el->next)
+ yaz_record_conv_destroy(el->record_conv);
+
wrbuf_rewind(p->wr_error);
- wrbuf_printf(p->wr_error, "yaz_retrieval_request: not implemented");
- return -1;
+ nmem_reset(p->nmem);
+
+ p->list = 0;
+ p->list_p = &p->list;
+}
+
+/** \brief parse retrieval XML config */
+static int conf_retrieval(yaz_retrieval_t p, const xmlNode *ptr)
+{
+
+ struct _xmlAttr *attr;
+ struct yaz_retrieval_elem *el = nmem_malloc(p->nmem, sizeof(*el));
+
+ el->syntax = 0;
+ el->identifier = 0;
+ el->schema = 0;
+ el->backend_schema = 0;
+ el->backend_syntax = 0;
+
+ el->next = 0;
+
+ for (attr = ptr->properties; attr; attr = attr->next)
+ {
+ if (!xmlStrcmp(attr->name, BAD_CAST "syntax") &&
+ attr->children && attr->children->type == XML_TEXT_NODE)
+ el->syntax =
+ nmem_strdup(p->nmem, (const char *) attr->children->content);
+ else if (!xmlStrcmp(attr->name, BAD_CAST "identifier") &&
+ attr->children && attr->children->type == XML_TEXT_NODE)
+ el->identifier =
+ nmem_strdup(p->nmem, (const char *) attr->children->content);
+ else if (!xmlStrcmp(attr->name, BAD_CAST "schema") &&
+ attr->children && attr->children->type == XML_TEXT_NODE)
+ el->schema =
+ nmem_strdup(p->nmem, (const char *) attr->children->content);
+ else if (!xmlStrcmp(attr->name, BAD_CAST "backendschema") &&
+ attr->children && attr->children->type == XML_TEXT_NODE)
+ el->backend_schema =
+ nmem_strdup(p->nmem, (const char *) attr->children->content);
+ else if (!xmlStrcmp(attr->name, BAD_CAST "backendsyntax") &&
+ attr->children && attr->children->type == XML_TEXT_NODE)
+ el->backend_syntax =
+ nmem_strdup(p->nmem, (const char *) attr->children->content);
+ else
+ {
+ wrbuf_printf(p->wr_error, "Bad attribute '%s'.", attr->name);
+ return -1;
+ }
+ }
+ el->record_conv = yaz_record_conv_create();
+
+ yaz_record_conv_set_path(el->record_conv, p->path);
+
+ if (yaz_record_conv_configure(el->record_conv, ptr->children))
+ {
+ wrbuf_printf(p->wr_error, "%s",
+ yaz_record_conv_get_error(el->record_conv));
+ yaz_record_conv_destroy(el->record_conv);
+ return -1;
+ }
+
+ *p->list_p = el;
+ p->list_p = &el->next;
+ return 0;
+}
+
+int yaz_retrieval_configure(yaz_retrieval_t p, const void *ptr_v)
+{
+ const xmlNode *ptr = ptr_v;
+
+ yaz_retrieval_reset(p);
+
+ if (ptr && ptr->type == XML_ELEMENT_NODE &&
+ !strcmp((const char *) ptr->name, "retrievalinfo"))
+ {
+ for (ptr = ptr->children; ptr; ptr = ptr->next)
+ {
+ if (ptr->type != XML_ELEMENT_NODE)
+ continue;
+ if (!strcmp((const char *) ptr->name, "retrieval"))
+ {
+ if (conf_retrieval(p, ptr))
+ return -1;
+ }
+ else
+ {
+ wrbuf_printf(p->wr_error, "Bad element '%s'."
+ " Expected 'retrieval'", ptr->name);
+ return -1;
+ }
+ }
+ }
+ else
+ {
+ wrbuf_printf(p->wr_error, "Missing 'retrievalinfo' element");
+ return -1;
+ }
+ return 0;
}
int yaz_retrieval_request(yaz_retrieval_t p, const char *schema,
- const char *format, yaz_record_conv_t *rc)
+ const char *syntax, yaz_record_conv_t *rc)
{
wrbuf_rewind(p->wr_error);
wrbuf_printf(p->wr_error, "yaz_retrieval_request: not implemented");
void yaz_retrieval_set_path(yaz_retrieval_t p, const char *path)
{
- yaz_record_conv_set_path(p->record_conv, path);
+ xfree(p->path);
+ p->path = 0;
+ if (path)
+ p->path = xstrdup(path);
}
#endif
* Copyright (C) 2005-2006, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: tst_record_conv.c,v 1.4 2006-05-04 20:00:45 adam Exp $
+ * $Id: tst_record_conv.c,v 1.5 2006-05-05 18:37:08 adam Exp $
*
*/
#include <yaz/record_conv.h>
}
else
{
- if (pt)
- *pt = p;
- else
- yaz_record_conv_destroy(p);
ret = 1;
}
}
+ if (pt)
+ *pt = p;
+ else
+ yaz_record_conv_destroy(p);
+
wrbuf_free(w, 1);
return ret;
}
"</convert>",
0, &p));
YAZ_CHECK(conv_convert_test(p, marcxml_rec, iso2709_rec));
+ yaz_record_conv_destroy(p);
YAZ_CHECK(conv_configure_test("<convert>"
"<marc"
"</convert>",
0, &p));
YAZ_CHECK(conv_convert_test(p, iso2709_rec, marcxml_rec));
+ yaz_record_conv_destroy(p);
YAZ_CHECK(conv_configure_test("<convert>"
"</convert>",
0, &p));
YAZ_CHECK(conv_convert_test(p, marcxml_rec, marcxml_rec));
-
+ yaz_record_conv_destroy(p);
YAZ_CHECK(conv_configure_test("<convert>"
"</convert>",
0, &p));
YAZ_CHECK(conv_convert_test(p, marcxml_rec, marcxml_rec));
+ yaz_record_conv_destroy(p);
}
#endif
* Copyright (C) 2005-2006, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: tst_retrieval.c,v 1.1 2006-05-04 20:00:45 adam Exp $
+ * $Id: tst_retrieval.c,v 1.2 2006-05-05 18:37:08 adam Exp $
*
*/
#include <yaz/retrieval.h>
static void tst_configure()
{
- YAZ_CHECK(conv_configure_test("<bad", "xmlParseMemory", 0));
-#if 0
- YAZ_CHECK(conv_configure_test("<bad/>", "Missing 'convert' element", 0));
- YAZ_CHECK(conv_configure_test("<convert/>", 0, 0));
- YAZ_CHECK(conv_configure_test("<convert><bad/></convert>",
+ YAZ_CHECK(conv_configure_test("<bad",
+ "xmlParseMemory", 0));
+
+ YAZ_CHECK(conv_configure_test("<bad/>",
+ "Missing 'retrievalinfo' element", 0));
+
+ YAZ_CHECK(conv_configure_test("<retrievalinfo/>", 0, 0));
+
+ YAZ_CHECK(conv_configure_test("<retrievalinfo><bad/></retrievalinfo>",
"Bad element 'bad'."
- "Expected marc, xslt, ..", 0));
- YAZ_CHECK(conv_configure_test("<convert>"
+ " Expected 'retrieval'", 0));
+
+ YAZ_CHECK(conv_configure_test("<retrievalinfo>"
+ "<retrieval>"
+ "<convert>"
"<xslt stylesheet=\"tst_record_conv.xsl\"/>"
"<marc"
- " inputcharset=\"marc-8\""
+ " inputcharset=\"utf-8\""
" outputcharset=\"marc-8\""
+ " inputformat=\"xml\""
+ " outputformat=\"marc\""
"/>"
- "</convert>",
- "Attribute 'inputformat' required", 0));
- YAZ_CHECK(conv_configure_test("<convert>"
+ "</convert>"
+ "</retrieval>"
+ "</retrievalinfo>",
+ 0, 0));
+
+ YAZ_CHECK(conv_configure_test("<retrievalinfo>"
+ "<retrieval>"
+ "<convert>"
"<xslt stylesheet=\"tst_record_conv.xsl\"/>"
"<marc"
" inputcharset=\"utf-8\""
" inputformat=\"xml\""
" outputformat=\"marc\""
"/>"
- "</convert>",
+ "</convert>"
+ "</retrieval>"
+ "<retrieval>"
+ "<convert>"
+ "<xslt stylesheet=\"tst_record_conv.xsl\"/>"
+ "<marc"
+ " inputcharset=\"utf-8\""
+ " outputcharset=\"marc-8\""
+ " inputformat=\"xml\""
+ " outputformat=\"marc\""
+ "/>"
+ "</convert>"
+ "</retrieval>"
+ "</retrievalinfo>",
0, 0));
-#endif
}
#endif