CatalogParser.h
4.47 KB
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
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#ifndef MSG_NOTIFY_MSG_HPP_
#define MSG_NOTIFY_MSG_HPP_
#include "GBMessage.h"
#include <vector>
enum EEventType
{
EVENT_ON = 0, // 上线
EVENT_OFF, // 离线
EVENT_VLOST, // 视频丢失
EVENT_DEFECT, // 故障
EVENT_ADD, // 增加
EVENT_DEL, // 删除
EVENT_UPDATE, // 更新
EVENT_UNKNOW,
};
struct DeviceInfo
{
EEventType event;
std::string id;
std::string name;
std::string manufacturer;
std::string model;
std::string owner;
std::string civil;
std::string block;
std::string address;
std::string safetyway;
std::string registerway;
std::string certnum;
std::string certifiable;
std::string errcode;
std::string secrecy;
std::string parental;
std::string parentid;
std::string endtime;
std::string ip;
std::string port;
std::string password;
std::string status;
std::string longitude;
std::string latitude;
std::string ptz;
std::string position;
std::string room;
std::string use;
std::string supplylight;
std::string direction;
std::string resolution;
std::string businessgroup;
};
//////////////////////////////////////////////////////////////////////////
class CCatalogParser : public CGBMessage
{
public:
CCatalogParser()
{
}
public:
bool Encode( std::string &message );
std::vector< DeviceInfo > Decode_Catlog(const char* body);
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);
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_