blob: af2627d41c55a0bce811355046053b1c090c4868 [file] [log] [blame]
MDT 2002 John Fleck598f6eb2002-06-04 15:10:36 +00001<![CDATA[
2#include <stdio.h>
3#include <string.h>
4#include <stdlib.h>
5#include <libxml/xmlmemory.h>
6#include <libxml/parser.h>
7
8void
9parseStory (xmlDocPtr doc, xmlNodePtr cur) {
10
11 cur = cur->xmlChildrenNode;
12 while (cur != NULL) {
13 if ((!xmlStrcmp(cur->name, (const xmlChar *)"keyword"))) {
14 printf("keyword: %s\n", xmlNodeListGetString(doc, cur->xmlChildrenNode, 1));
15 }
16 cur = cur->next;
17 }
18 return;
19}
20
21static void
22parseDoc(char *docname) {
23
24 xmlDocPtr doc;
25 xmlNodePtr cur;
26
27 doc = xmlParseFile(docname);
28
29 if (doc == NULL ) {
30 fprintf(stderr,"Document not parsed successfully. \n");
31 return;
32 }
33
34 cur = xmlDocGetRootElement(doc);
35
36 if (cur == NULL) {
37 fprintf(stderr,"empty document\n");
38 xmlFreeDoc(doc);
39 return;
40 }
41
42 if (xmlStrcmp(cur->name, (const xmlChar *) "story")) {
43 fprintf(stderr,"document of the wrong type, root node != story");
44 xmlFreeDoc(doc);
45 return;
46 }
47
48 cur = cur->xmlChildrenNode;
49 while (cur != NULL) {
50 if ((!xmlStrcmp(cur->name, (const xmlChar *)"storyinfo"))){
51 parseStory (doc, cur);
52 }
53
54 cur = cur->next;
55 }
56
57}
58
59int
60main(int argc, char **argv) {
61
62 char *docname;
63
64 if (argc <= 1) {
65 printf("Usage: %s docname\n", argv[0]);
66 return(0);
67 }
68
69 docname = argv[1];
70 parseDoc (docname);
71
72 return (1);
73}
74]]>