libxml2库使用示例

2023-10-20 08:44
文章标签 使用 示例 libxml2

本文主要是介绍libxml2库使用示例,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

解析一个名位noname.xml的文件:

<?xml version="1.0" standalone="no" ?>
<Attributes><Attribute name="AcquireTime" type="EPICS_PV" source="$(P)$(R)cam1:AcquireTime" dbrtype="DBR_NATIVE"  description="Camera acquire time"/><Attribute name="FilePath" type="EPICS_PV" source="$(P)$(R)$(T)FilePath"  dbrtype="DBR_STRING" description="File Save Path"/>
</Attributes>

 解析以上文件的源文件:

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sstream>
#include <fstream>
#include <epicsThread.h>
#include <macLib.h>
#include "NDAttribute.h"
#include "NDAttributeList.h"
#include "PVAttribute.h"
#include <libxml/parser.h>int main()
{MAC_HANDLE * macHandle;char ** macPairs;int status = 0;std::ostringstream buff;std::string buffer;std::ifstream infile;std::string fileName;std::string macrodefs;int bufferSize;fileName = "noname.xml";infile.open(fileName.c_str());buff << infile.rdbuf();buffer = buff.str();printf("The name of a xml file to parse:\n ");printf("fileName: %s\n", fileName.c_str());printf("The file's content:\n");printf("%s\n", buffer.c_str());printf("--------------------------------------------------------------\n");macCreateHandle(&macHandle, 0);macrodefs = "P=BS:,R=SIM1:,T=TIFF1:";printf("The macro defination:  %s\n", macrodefs.c_str());status = macParseDefns(macHandle, macrodefs.c_str() ,&macPairs);if (status < 0){printf("macParseDefns call failed\n");return -1;}status = macInstallMacros(macHandle, macPairs);if (status < 0){printf("macInstallMacros call failed\n");return -1;}bufferSize = (int)(buffer.length() * 10);char * tmpBuffer = (char *)malloc(sizeof(char ) * bufferSize);status = macExpandString(macHandle, buffer.c_str(), tmpBuffer, bufferSize);if (status < 0){printf("macExpandString call failed\n");free(tmpBuffer);free(macPairs);return -1;}macrodefs = tmpBuffer;free(tmpBuffer);macDeleteHandle(macHandle);printf("Orignal file content: \n");printf("'%s'\n\n", buffer.c_str());printf("The expended file contenent\n");printf("'%s'\n\n", macrodefs.c_str());const char *pName, *pSource, *pAttrType, *pDescription, *pDBRType;xmlDocPtr doc;xmlNode *Attr, *Attrs;doc = xmlReadMemory(macrodefs.c_str(), (int)macrodefs.length(), NULL , NULL, 0);if (doc == NULL) {printf("xmlReadMemory call failed\n");return -1;}Attrs = xmlDocGetRootElement(doc);if ((!xmlStrEqual(Attrs->name, (const xmlChar *)"Attributes"))){printf("Cannot find the root 'Attriubtes\n'");return -1;}printf("-----------------------------------------------------------------------\n");printf("Parse the xml file: %s\n", fileName.c_str());PVAttribute * pAttribute;NDAttributeList * list = new NDAttributeList();for (Attr = xmlFirstElementChild(Attrs); Attr; Attr = xmlNextElementSibling(Attr)){pName = (const char *)xmlGetProp(Attr, (const xmlChar *)"name");if (!pName){printf("xmlGetProp '%s' call failed\n", "name");return -1;}pDescription = (const char *)xmlGetProp(Attr, (const xmlChar *)"description");if (!pDescription) pDescription ="";pSource = (const char *)xmlGetProp(Attr, (const xmlChar *)"source");if (!pSource){printf("xmlGetProp '%s' call failed\n", "source");return -1;}pAttrType = (const char *)xmlGetProp(Attr, (const xmlChar *)"type");if (!pAttrType){printf("xmlGetProp '%s' call failed\n", "type");return -1;}pDBRType = (const char *)xmlGetProp(Attr, (const xmlChar *)"dbrtype");if (!pDBRType){printf("xmlGetProp '%s' call failed\n", "dbrtype");return -1;}int dbrType = DBR_NATIVE;if (pDBRType) {if      (!strcmp(pDBRType, "DBR_CHAR"))dbrType = DBR_CHAR;else if (!strcmp(pDBRType, "DBR_SHORT"))dbrType = DBR_SHORT;else if (!strcmp(pDBRType, "DBR_ENUM"))dbrType = DBR_ENUM;else if (!strcmp(pDBRType, "DBR_INT"))dbrType = DBR_INT;else if (!strcmp(pDBRType, "DBR_LONG"))dbrType = DBR_LONG;else if (!strcmp(pDBRType, "DBR_FLOAT"))dbrType = DBR_FLOAT;else if (!strcmp(pDBRType, "DBR_DOUBLE"))dbrType = DBR_DOUBLE;else if (!strcmp(pDBRType, "DBR_STRING"))dbrType = DBR_STRING;elsedbrType = DBR_NATIVE;}printf("name: %s\tsource: %s\ttype: %s\tdbrtype: %s\tdescription: %s\n", pName, pSource, pAttrType, pDBRType, pDescription);pAttribute = new PVAttribute(pName, pDescription, pSource, dbrType );list->add(pAttribute);}epicsThreadSleep(1.0);printf("-----------------------------------------------------------------------\n");list->updateValues();epicsThreadSleep(1.0);printf("NDAttributeList and NDAttriubte's information: \n");list->report(stdout, 20);return 0;
}

先用通道访问测试以上此处用到的EPICS过程变量:

orangepi@orangepi5:~/C_program/host_program/hostApp$ caget BS:SIM1:cam1:AcquireTime
BS:SIM1:cam1:AcquireTime   5
orangepi@orangepi5:~/C_program/host_program/hostApp$ caget -S BS:SIM1:TIFF1:FilePath
BS:SIM1:TIFF1:FilePath /home/test_gap

编译以上程序,执行结果如下:

orangepi@orangepi5:~/C_program/host_program/hostApp$ O.linux-aarch64/testXml
The name of a xml file to parse:fileName: noname.xml
The file's content:
<?xml version="1.0" standalone="no" ?>
<Attributes><Attribute name="AcquireTime" type="EPICS_PV" source="$(P)$(R)cam1:AcquireTime" dbrtype="DBR_NATIVE"  description="Camera acquire time"/><Attribute name="FilePath" type="EPICS_PV" source="$(P)$(R)$(T)FilePath"  dbrtype="DBR_STRING" description="File Save Path"/>
</Attributes>--------------------------------------------------------------
The macro defination:  P=BS:,R=SIM1:,T=TIFF1:
Orignal file content:
'<?xml version="1.0" standalone="no" ?>
<Attributes><Attribute name="AcquireTime" type="EPICS_PV" source="$(P)$(R)cam1:AcquireTime" dbrtype="DBR_NATIVE"  description="Camera acquire time"/><Attribute name="FilePath" type="EPICS_PV" source="$(P)$(R)$(T)FilePath"  dbrtype="DBR_STRING" description="File Save Path"/>
</Attributes>
'The expended file contenent
'<?xml version="1.0" standalone="no" ?>
<Attributes><Attribute name="AcquireTime" type="EPICS_PV" source="BS:SIM1:cam1:AcquireTime" dbrtype="DBR_NATIVE"  description="Camera acquire time"/><Attribute name="FilePath" type="EPICS_PV" source="BS:SIM1:TIFF1:FilePath"  dbrtype="DBR_STRING" description="File Save Path"/>
</Attributes>
'-----------------------------------------------------------------------
Parse the xml file: noname.xml
name: AcquireTime       source: BS:SIM1:cam1:AcquireTime    type: EPICS_PV  dbrtype: DBR_NATIVE     description: Camera acquire time
name: FilePath  source: BS:SIM1:TIFF1:FilePath      type: EPICS_PV  dbrtype: DBR_STRING     description: File Save Path
-----------------------------------------------------------------------
NDAttributeList and NDAttriubte's information:NDAttributeList: address=0x556d1b5970:number of attributes=2NDAttribute, address=0x556d1b7f90:name=AcquireTimedescription=Camera acquire timesource type=2source type string=NDAttrSourceEPICSPVsource=BS:SIM1:cam1:AcquireTimedataType=NDAttrFloat64value=5.000000PVAttributedbrType=DBR_invalidchanId=0x556d1bf3c0eventId=0x7f80000b70NDAttribute, address=0x556d1dff40:name=FilePathdescription=File Save Pathsource type=2source type string=NDAttrSourceEPICSPVsource=BS:SIM1:TIFF1:FilePathdataType=NDAttrStringvalue=/home/test_gapPVAttributedbrType=DBR_STRINGchanId=0x556d1bf3f8eventId=0x7f80000b98

这篇关于libxml2库使用示例的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/246012

相关文章

如何使用celery进行异步处理和定时任务(django)

《如何使用celery进行异步处理和定时任务(django)》文章介绍了Celery的基本概念、安装方法、如何使用Celery进行异步任务处理以及如何设置定时任务,通过Celery,可以在Web应用中... 目录一、celery的作用二、安装celery三、使用celery 异步执行任务四、使用celery

使用Python绘制蛇年春节祝福艺术图

《使用Python绘制蛇年春节祝福艺术图》:本文主要介绍如何使用Python的Matplotlib库绘制一幅富有创意的“蛇年有福”艺术图,这幅图结合了数字,蛇形,花朵等装饰,需要的可以参考下... 目录1. 绘图的基本概念2. 准备工作3. 实现代码解析3.1 设置绘图画布3.2 绘制数字“2025”3.3

Jsoncpp的安装与使用方式

《Jsoncpp的安装与使用方式》JsonCpp是一个用于解析和生成JSON数据的C++库,它支持解析JSON文件或字符串到C++对象,以及将C++对象序列化回JSON格式,安装JsonCpp可以通过... 目录安装jsoncppJsoncpp的使用Value类构造函数检测保存的数据类型提取数据对json数

python使用watchdog实现文件资源监控

《python使用watchdog实现文件资源监控》watchdog支持跨平台文件资源监控,可以检测指定文件夹下文件及文件夹变动,下面我们来看看Python如何使用watchdog实现文件资源监控吧... python文件监控库watchdogs简介随着Python在各种应用领域中的广泛使用,其生态环境也

Python中构建终端应用界面利器Blessed模块的使用

《Python中构建终端应用界面利器Blessed模块的使用》Blessed库作为一个轻量级且功能强大的解决方案,开始在开发者中赢得口碑,今天,我们就一起来探索一下它是如何让终端UI开发变得轻松而高... 目录一、安装与配置:简单、快速、无障碍二、基本功能:从彩色文本到动态交互1. 显示基本内容2. 创建链

SpringCloud集成AlloyDB的示例代码

《SpringCloud集成AlloyDB的示例代码》AlloyDB是GoogleCloud提供的一种高度可扩展、强性能的关系型数据库服务,它兼容PostgreSQL,并提供了更快的查询性能... 目录1.AlloyDBjavascript是什么?AlloyDB 的工作原理2.搭建测试环境3.代码工程1.

springboot整合 xxl-job及使用步骤

《springboot整合xxl-job及使用步骤》XXL-JOB是一个分布式任务调度平台,用于解决分布式系统中的任务调度和管理问题,文章详细介绍了XXL-JOB的架构,包括调度中心、执行器和Web... 目录一、xxl-job是什么二、使用步骤1. 下载并运行管理端代码2. 访问管理页面,确认是否启动成功

Java中ArrayList的8种浅拷贝方式示例代码

《Java中ArrayList的8种浅拷贝方式示例代码》:本文主要介绍Java中ArrayList的8种浅拷贝方式的相关资料,讲解了Java中ArrayList的浅拷贝概念,并详细分享了八种实现浅... 目录引言什么是浅拷贝?ArrayList 浅拷贝的重要性方法一:使用构造函数方法二:使用 addAll(

使用Nginx来共享文件的详细教程

《使用Nginx来共享文件的详细教程》有时我们想共享电脑上的某些文件,一个比较方便的做法是,开一个HTTP服务,指向文件所在的目录,这次我们用nginx来实现这个需求,本文将通过代码示例一步步教你使用... 在本教程中,我们将向您展示如何使用开源 Web 服务器 Nginx 设置文件共享服务器步骤 0 —

Java中switch-case结构的使用方法举例详解

《Java中switch-case结构的使用方法举例详解》:本文主要介绍Java中switch-case结构使用的相关资料,switch-case结构是Java中处理多个分支条件的一种有效方式,它... 目录前言一、switch-case结构的基本语法二、使用示例三、注意事项四、总结前言对于Java初学者