blob: fecc8523737e9156d9b01512ea4791c693c87f05 [file] [log] [blame]
Daniel Veillardce1648b2005-01-04 15:10:22 +00001/*
2 * testModule.c : a small tester program for xmlModule
3 *
4 * See Copyright for the status of this software.
5 *
6 * joelwreed@comcast.net
7 */
8
9#include "libxml.h"
10#ifdef LIBXML_MODULES_ENABLED
11#include <libxml/xmlversion.h>
12
13#include <limits.h>
14#include <stdio.h>
15#include <string.h>
16#include <stdarg.h>
17
18#include <libxml/xmlmemory.h>
19#include <libxml/debugXML.h>
20#include <libxml/xmlmodule.h>
21
22#ifdef _WIN32
23#define MODULE_PATH "."
24#include <stdlib.h> /* for _MAX_PATH */
Igor Zlatkovicf52de602005-04-06 20:42:35 +000025#ifndef __MINGW32__
Daniel Veillardce1648b2005-01-04 15:10:22 +000026#define PATH_MAX _MAX_PATH
Igor Zlatkovicf52de602005-04-06 20:42:35 +000027#endif
Daniel Veillardce1648b2005-01-04 15:10:22 +000028#else
29#define MODULE_PATH ".libs"
30#endif
31
Daniel Veillard48df9612005-01-04 21:50:05 +000032typedef int (*hello_world_t)(void);
Daniel Veillardce1648b2005-01-04 15:10:22 +000033
34int main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) {
35 xmlChar filename[PATH_MAX];
36 xmlModulePtr module = NULL;
37 hello_world_t hello_world = NULL;
38
39 /* build the module filename, and confirm the module exists */
Daniel Veillard48df9612005-01-04 21:50:05 +000040 xmlStrPrintf(filename, sizeof(filename),
41 (const xmlChar*) "%s/testdso%s",
Daniel Veillardbe076e92005-01-04 20:18:14 +000042 (const xmlChar*)MODULE_PATH,
43 (const xmlChar*)LIBXML_MODULE_EXTENSION);
Daniel Veillardce1648b2005-01-04 15:10:22 +000044
Daniel Veillard48df9612005-01-04 21:50:05 +000045 module = xmlModuleOpen((const char*)filename, 0);
Daniel Veillardce1648b2005-01-04 15:10:22 +000046 if (module)
47 {
Daniel Veillardbe076e92005-01-04 20:18:14 +000048 if (xmlModuleSymbol(module, "hello_world", (void **) &hello_world)) {
49 fprintf(stderr, "Failure to lookup\n");
50 return(1);
51 }
52 if (hello_world == NULL) {
53 fprintf(stderr, "Lookup returned NULL\n");
54 return(1);
55 }
56
Daniel Veillardce1648b2005-01-04 15:10:22 +000057 (*hello_world)();
58
59 xmlModuleClose(module);
60 }
61
62 xmlMemoryDump();
63
64 return(0);
65}
66
67#else
68#include <stdio.h>
69int main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) {
70 printf("%s : Module support not compiled in\n", argv[0]);
71 return(0);
72}
73#endif /* LIBXML_SCHEMAS_ENABLED */