forked from BeeeOn/gateway-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
XMLTool.h
48 lines (41 loc) · 1.05 KB
/
XMLTool.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
* @file XMLTool.h
* @Author BeeeOn team
* @date
* @brief
*/
#ifndef XMLTOOL_H
#define XMLTOOL_H
#include <fstream>
#include <tuple>
#include <Poco/AutoPtr.h>
#include <Poco/DOM/AutoPtr.h>
#include <Poco/DOM/Document.h>
#include <Poco/DOM/DOMParser.h>
#include <Poco/DOM/NamedNodeMap.h>
#include <Poco/DOM/NodeFilter.h>
#include <Poco/DOM/NodeIterator.h>
#include <Poco/Exception.h>
#include <Poco/Logger.h>
#include <Poco/SAX/AttributesImpl.h>
#include <Poco/SAX/InputSource.h>
#include <Poco/UTF8Encoding.h>
#include <Poco/XML/XMLWriter.h>
#include "utils.h"
/**
* Parse XML data. It can generate XML messages according to defined protocol and parse them.
*/
class XMLTool {
public:
XMLTool();
XMLTool(IOTMessage);
std::string createXML(int);
Command parseXML(std::string);
virtual ~XMLTool();
private:
IOTMessage msg;
void createDevice(Poco::XML::XMLWriter*, Device, bool debug=false, std::string proto="", std::string fw="");
void createParam(Poco::XML::XMLWriter* w, CmdParam dev, std::string state);
Poco::Logger& log;
};
#endif /* XMLTOOL_H */