- 论坛徽章:
- 0
|
问题是这样的,为了使得模块间的网络通讯标准化,我们决定使用xml来代替直接的struct传送,也就要把通讯用的struct或class转换成xml文本串。
由于struct比较多,因此想通过某种形式的struct定义使得能够从解析struct定义入手,从而生成对应的用来从struct产生xml以及解析xml转换回struct的代码。
具体如下:
struct TMTParam
{
// xml:"Id"
int nId;
// xml:"FileName"
char szFileName[64];
// xml:"FileInfo"
struct TFileInfo
{
// xml:"FileSize"
int nFileSize;
// xml:"Path"
char szPath[64];
}tFileInfo;
};
那么依据这个定义可产生代码类似于
XMLNodePtr pNode0, pNode1, pNode2;
pNode0 = NewRootNode("xml");
pNode1 = NewChildNode(pNode0, "Id", nId);
pNode1 = NewChildNode(pNode0, "FileName", szFileName);
pNode1 = NewChildNode(pNode0, "FileInfo", NULL);
pNode2 = NewChildNode(pNode1, "FileSize", tFileInfo.nFileSize);
...
这样的话需要先对结构进行解析,获取所有的成员变量及类型等,但这个结构中可能内嵌结构或者联合数据类型之类的,所以想通过正则匹配检索出来。
另外ls老大说有C++模板是什么意思?是perl解析C++的模块吗?
其实最好是有一个专门用来解析C/C++文件的模块,通过解析得到结构体、函数体等等,不知道有没有现成的可用? |
|