Blame view

sip/Message/GBXmlParser.h 3.67 KB
c887a0f0   Hu Chunming   提交初成版代码
1
2
3
4
5
6
7
8
  #ifndef MSG_NOTIFY_MSG_HPP_

  #define MSG_NOTIFY_MSG_HPP_

  

  #include "GBMessage.h"

  #include <vector>

  

  #include "../sip_header.h"

  

756d2ef6   Hu Chunming   修改缓存设备状态的更新方式
9
  class GBXmlParser : public CGBMessage

c887a0f0   Hu Chunming   提交初成版代码
10
11
  {

  public:

756d2ef6   Hu Chunming   修改缓存设备状态的更新方式
12
  	GBXmlParser()

c887a0f0   Hu Chunming   提交初成版代码
13
14
15
16
17
18
19
20
  	{

  	}

  

  public:

  	bool Encode( std::string &message );

  

  	std::vector<DeviceInfo>  DecodeCatlog(const char* body);

  

3a5bc7be   Hu Chunming   添加无鉴权;支持摄像头直连
21
22
  	DeviceInfo  DecodeDeviceInfo(const char* body);

  

c887a0f0   Hu Chunming   提交初成版代码
23
24
  	ServerInfo DecodeServerConfig(const char* body);

  

756d2ef6   Hu Chunming   修改缓存设备状态的更新方式
25
26
  	vector<string> ParseKeepalive(const char* body);

  

c887a0f0   Hu Chunming   提交初成版代码
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
  	static std::string GetStrName(EEventType eType)

  	{

  		switch (eType)

  		{

  		case EVENT_ON:

  			return "ON";

  		case EVENT_OFF:

  			return "OFF";

  		case EVENT_VLOST:

  			return "VLOST";

  		case EVENT_DEFECT:

  			return "DEFECT";

  		case EVENT_ADD:

  			return "ADD";

  		case EVENT_DEL:

  			return "DEL";

  		case EVENT_UPDATE:

  			return "UPDATE";

  		default: //EVENT_UNKNOW

  			return "UNKNOW";

  		}

  

  		return "UNKNOW";

  	}

  

  	EEventType GetEnumName(const std::string &sType)

  	{

  		if (sType == "ON")

  			return EVENT_ON;

  		if (sType == "OFF")

  			return EVENT_OFF;

  		if (sType == "VLOSE")

  			return EVENT_VLOST;

  		if (sType == "DEFECT")

  			return EVENT_DEFECT;

  		if (sType == "ADD")

  			return EVENT_ADD;

  		if (sType == "DEL")

  			return EVENT_DEL;

  		if (sType == "UPDATE")

  			return EVENT_UPDATE;

  

  		return EVENT_UNKNOW;

  

  	}

  

  

  public:

  

  	inline const std::string& GetSN() const

  	{

  		return m_sn;

  	}

  

  	inline const std::string& GetDeviceID() const

  	{

  		return m_deviceid;

  	}

  

  	inline void SetDeviceID( const std::string &deviceid )

  	{

  		m_deviceid = deviceid;

  	}

  

  	inline void SetSN( const std::string &sn )

  	{

  		m_sn = sn;

  	}

  

  	inline const std::string& GetStatus() const

  	{

  		return m_status;

  	}

  

  	inline void SetStatus( const std::string &status )

  	{

  		m_status = status;

  	}

  

  	inline int GetSum() const

  	{

  		return m_sum;

  	}

  

  	inline void SetSum( int sum )

  	{

  		m_sum = sum;

  	}

  

  	inline const std::vector< DeviceInfo >& GetDevices() const

  	{

  		return m_devices;

  	}

  

  	inline void AddEvent(const std::string &id, EEventType eventType)

  	{

  		DeviceInfo catalog;

  		catalog.id = id;

  		catalog.event = eventType;

  		m_devices.push_back( catalog );

  	}

  

  	inline void AddOnEvent( const std::string &id )

  	{

  		DeviceInfo catalog;

  		catalog.id = id;

  		catalog.event = EVENT_ON;

  		m_devices.push_back( catalog );

  	}

  

  	inline void AddOffEvent( const std::string &id )

  	{

  		DeviceInfo catalog;

  		catalog.id = id;

  		catalog.event = EVENT_OFF;

  		m_devices.push_back( catalog );

  	}

  

  	inline void AddVLostEvent( const std::string &id )

  	{

  		DeviceInfo catalog;

  		catalog.id = id;

  		catalog.event = EVENT_VLOST;

  		m_devices.push_back( catalog );

  	}

  

  	inline void AddDefectEvent( const std::string &id )

  	{

  		DeviceInfo catalog;

  		catalog.id = id;

  		catalog.event = EVENT_DEFECT;

  		m_devices.push_back( catalog );

  	}

  

  	inline void AddDelEvent( const std::string &id )

  	{

  		DeviceInfo catalog;

  		catalog.id = id;

  		catalog.event = EVENT_DEL;

  		m_devices.push_back( catalog );

  	}

  

  	inline void AddAddEvent( const DeviceInfo &catalog )

  	{

  		if( catalog.event == EVENT_ADD )

  		{

  			m_devices.push_back( catalog );

  		}

  	}

  

  	inline void AddUpdateEvent( const DeviceInfo &catalog )

  	{

  		if( catalog.event == EVENT_UPDATE )

  		{

  			m_devices.push_back( catalog );

  		}

  	}

  

  private:

  	std::vector< DeviceInfo > Decode(const std::vector< tinyxml2::XMLNode* >& nodes);

  	string getItemValue(tinyxml2::XMLNode *pItem);

  

  private:

  	std::string                  m_sn;

  	std::string                  m_deviceid;

  	std::string                  m_status;

  	int                          m_sum;

  	std::vector< DeviceInfo >        m_devices;

  };

  

  #endif // MSG_NOTIFY_MSG_HPP_