好的,我已经和这个人围成一圈。我试图将XML文件/数据解析为某些结构。
因为每个子元素都需要执行某些业务逻辑,所以我决定创建单独的过程来管理每个子元素。
可以在此处找到原始xml:http://hearme.fm/ars.xml
我可以管理DAAST元素,然后将其反馈到Ad元素,但是当我尝试进入Inline元素时。 node-> name返回:" Text"我似乎无法比这更进一步。
任何人都可以放弃任何光明吗?
由于
#ifndef DAASTXML_C_
#define DAASTXML_C_
#define XMLSTR(str) ((xmlChar *)(str))
#include "daastXML.h"
#include <libxml/xmlmemory.h>
#include <libxml/parser.h>
#include <stdio.h>
#include <stdlib.h>
void parseAds(xmlDocPtr doc, xmlNodePtr node, struct daastXML xmlFile);
void parseInline(xmlDocPtr doc, xmlNodePtr node, struct daastXML xmlFile);
void parseCreatives(xmlDocPtr doc, xmlNodePtr node, struct daastXML xmlFile);
void daastParser (char *filePath){
xmlDocPtr doc;
xmlNodePtr node;
doc = xmlParseFile(filePath);
node = xmlDocGetRootElement(doc);
struct daastXML xmlFile;
if (xmlStrcmp (node->name, XMLSTR("DAAST")) == 0){
xmlFile.version = (char *)xmlGetProp(node, XMLSTR("version"));
parseAds(doc, node->children, xmlFile);
}
xmlFreeDoc(doc);
}
void parseAds(xmlDocPtr doc, xmlNodePtr node, struct daastXML xmlFile){
vectorAds_init(&xmlFile.Ads);
do {
if (node == NULL) break;
if (xmlIsBlankNode(node)) continue;
if (xmlStrcmp (node->name, XMLSTR("Ad")) == 0) {
struct daastAd newAd;
newAd.id = (char *)xmlGetProp(node, XMLSTR("id"));
newAd.sequence = (char *)xmlGetProp(node, XMLSTR("sequence"));
// At this point we need to get the inline (or wrapper) info *** WRAPPER NOT INTEGRATED ***
printf("\nAdvert ");
printf("\n");
parseInline (doc, node->children, xmlFile);
vectorAds_append(&xmlFile.Ads, newAd);
}
} while ((node = node->next));
}
void parseInline (xmlDocPtr doc, xmlNodePtr node, struct daastXML xmlFile){
printf("\nInline : node name: ");
printf(node->name);
if (xmlStrcmp (node->name, XMLSTR("InLine")) == 0){
printf("We've got the inline element");
}
parseCreatives (doc, node->children, xmlFile);
}
void parseCreatives(xmlDocPtr doc, xmlNodePtr node, struct daastXML xmlFile){
printf("\nCreatives \n");
}
答案 0 :(得分:1)
在@kaylum的帮助下,我似乎找到了答案。
我添加了以下内容:
我已将此例程添加到parseInline进程中,现在似乎可以正常工作
do {
if (node->type == XML_ELEMENT_NODE){
printf(node->name);
break;
}
} while((node = node->next));
即。它循环遍历父节点的所有子节点,并且当它返回Element_Node时我可以在节点上操作。