-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
468 lines (393 loc) · 10.2 KB
/
main.cpp
File metadata and controls
468 lines (393 loc) · 10.2 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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
#include <QApplication>
#include<QDebug>
#include"qtjson.hpp"
#include<QJsonArray>
#include<map>
#include<vector>
class OsInfo {
public:
QString m_type = "Windows";//系统类型,Windows 或 Linux
QString m_platform = "win";
QString m_release;//系统版本
QString m_hostname;//机器名
QString m_arch;//cpu架构
double m_uptime;//开机时间
QJsonObject toJson();
REFLECT(m_type,m_platform,m_release,m_hostname,m_arch,m_uptime);
};
class CpuInfo{
public:
double cpuUsage;
unsigned short cpuCount;
QString cpuModel;
REFLECT(cpuUsage,cpuCount,cpuModel)
};
class MemInfo{
public:
double totalMemMb;
double usedMemMb;
double freeMemMb;
double usedMemPercentage;
double freeMemPercentage;
REFLECT(totalMemMb,usedMemMb,freeMemMb,usedMemPercentage,freeMemPercentage)
};
class DriverInfo{
public:
double totalGb;
double usedGb;
double freeGb ;
double usedPercentage;
double freePercentage;
REFLECT(totalGb,usedGb,usedPercentage,freePercentage)
};
/**
* 网速相关信息
* @brief The NetstatInfo class
*/
class NetstatInfo{
public:
double inputMb;
double outputMb;
REFLECT(inputMb,outputMb)
};
/**
* 网卡信息
*
* @brief The NetInterfaceInfo class
*/
class NetInterfaceInfo{
public:
QString address;
QString netmask;
QString family;
QString mac;
bool internal;
REFLECT(address,netmask,family,mac,internal)
};
class DevInfo
{
public:
CpuInfo cpuInfo;
MemInfo memInfo;
DriverInfo driveInfo;
std::map<QString,NetstatInfo> netstatInfo;
std::map<QString,QJsonArray> netInterface;
OsInfo osInfo;
short openedCount = 0;
QJsonObject ipInfo;
REFLECT(cpuInfo,memInfo,driveInfo,netstatInfo,netInterface,osInfo,openedCount,ipInfo)
};
//自定义类型
void testCustom(){
using namespace qtjson;
//对象转换QJsonObject
OsInfo * osInfo = new OsInfo();
osInfo->m_platform ="平台";
osInfo->m_arch = "x86";
osInfo->m_hostname = "lenovo";
osInfo->m_release = "win10212H";
osInfo->m_uptime = 12.6;
QJsonObject j1= objToJson(*osInfo);
for (auto it = j1.begin(); it != j1.end(); ++it) {
qDebug() << "Key:" << it.key() << ", Value:" << it.value().toString();
}
//QJsonObject 转换对象
OsInfo o = jsonToObj<OsInfo>(j1);
qDebug()<< o.m_platform<<","
<<o.m_arch<<","
<<o.m_hostname<<","
<<o.m_release<<","
<<o.m_uptime;
//对象转json字符串
QString jsonStr = serialize(*osInfo);
/*
{
"m_arch": "x86",
"m_hostname": "lenovo",
"m_platform": "平台",
"m_release": "win10212H",
"m_type": "Windows",
"m_uptime": 12.6
}
*/
qDebug()<<jsonStr.toUtf8().data();
//json字符串转对象
OsInfo o2 = deserialize<OsInfo>(jsonStr);
qDebug()<< o2.m_platform<<","
<<o2.m_arch<<","
<<o2.m_hostname<<","
<<o2.m_release<<","
<<o2.m_uptime;
delete osInfo;
}
//测试 std::vector
void testVector(){
using namespace qtjson;
//序列化
std::vector<int> v= {
1,2,3,4,5,6,8
};
QString jsonStr = serialize(v);
qDebug()<<jsonStr.toUtf8().data();
//反序列化
std::vector<int> v2= deserialize<std::vector<int>>( jsonStr);
qDebug()<<"v2.size="<< v2.size();
for(auto & elem : v2){
qDebug()<<"反序列化:"<<elem;
}
qDebug()<<"反序列化结束";
}
void testMap(){
using namespace qtjson;
std::map<QString,int> m={
{"zhangsan",20},
{"lisi",15}
};
QString jsonStr = serialize(m);
qDebug()<<jsonStr.toUtf8().data();
std::map<QString,int> m2=deserialize< std::map<QString,int>>( jsonStr);
qDebug()<<m2.size();
for (auto p : m2) {
qDebug()<< "key=" << p.first << ",value=" << p.second;
}
}
void testComplex(){
QString jsonStr = R"({
"cpuInfo": {
"cpuUsage": 0,
"cpuCount": 2,
"cpuModel": "Intel(R) Celeron(R) CPU J1800 @ 2.41GHz"
},
"memInfo": {
"totalMemMb": 3831.13,
"usedMemMb": 514.58,
"freeMemMb": 3316.55,
"usedMemPercentage": 13.43,
"freeMemPercentage": 86.57
},
"driveInfo": {
"totalGb": "12.9",
"usedGb": "8.3",
"freeGb": "4.6",
"usedPercentage": "64.1",
"freePercentage": "35.9"
},
"netstatInfo": {
"total": {
"inputMb": 0,
"outputMb": 0
},
"enp1s0": {
"inputMb": 0,
"outputMb": 0
},
"wgp": {
"inputMb": 0,
"outputMb": 0
},
"wgc": {
"inputMb": 0,
"outputMb": 0
}
},
"netInterface": {
"lo": [
{
"address": "127.0.0.1",
"netmask": "255.0.0.0",
"family": "IPv4",
"mac": "00:00:00:00:00:00",
"internal": true,
"cidr": "127.0.0.1/8"
},
{
"address": "::1",
"netmask": "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
"family": "IPv6",
"mac": "00:00:00:00:00:00",
"internal": true,
"cidr": "::1/128",
"scopeid": 0
}
],
"enp1s0": [
{
"address": "192.168.0.9",
"netmask": "255.255.255.0",
"family": "IPv4",
"mac": "54:f6:c5:fb:0f:db",
"internal": false,
"cidr": "127.0.0.10/24"
},
{
"address": "fe80::56f6:c6ff:fefb:fdb",
"netmask": "ffff:ffff:ffff:ffff::",
"family": "IPv6",
"mac": "54:f6:c5:fb:0f:db",
"internal": false,
"cidr": "fe80::56f6:c5ff:fefb:fdb/64",
"scopeid": 2
}
],
"wgp": [
{
"address": "127.0.0.10",
"netmask": "255.255.255.255",
"family": "IPv4",
"mac": "00:00:00:00:00:00",
"internal": false,
"cidr": "127.0.0.10/32"
}
],
"wgc": [
{
"address": "127.0.0.10",
"netmask": "255.255.255.255",
"family": "IPv4",
"mac": "00:00:00:00:00:00",
"internal": false,
"cidr": "127.0.0.10/32"
}
]
},
"osInfo": {
"type": "Linux",
"platform": "linux",
"release": "4.15.0-213-generic",
"ip": "127.0.0.1",
"hostname": "linux",
"arch": "x64",
"uptime": 345918.83
},
"openedCount": 0,
"ipInfo": {
"status": "success",
"country": "中国",
"countryCode": "CN",
"region": "GD",
"regionName": "江苏",
"city": "吴川",
"zip": "",
"lat": 23.4508,
"lon": 120.7633,
"timezone": "Asia/Shanghai",
"isp": "Chinanet",
"org": "Chinanet GD",
"as": "AS4134 CHINANET-BACKBONE",
"query": "127.0.0.1"
}
})";
QJsonObject obj = qtjson::strToJson(jsonStr).toObject();
// 获取 "driveInfo" 子对象
QJsonValue driveInfoValue = obj.value("driveInfo");
if (!driveInfoValue.isNull() && driveInfoValue.isObject()) {
QJsonObject driveInfo = driveInfoValue.toObject();
// 从 "driveInfo" 子对象中获取 "usedPercentage"
QJsonValue usedPercentageValue = driveInfo.value("usedPercentage");
qDebug() <<"usedPercentage type ="<<usedPercentageValue.type();
if (!usedPercentageValue.isNull() && usedPercentageValue.isDouble()) {
double usedPercentage = usedPercentageValue.toDouble();
qDebug() << "usedPercentage:" << usedPercentage;
} else {
qDebug() << "usedPercentage is not a valid number";
}
} else {
qDebug() << "driveInfo is not a valid object";
}
// DevInfo d = qtjson::deserialize<DevInfo>(jsonStr);
// qDebug()<<"";
// qDebug()<<"=====================";
// qDebug()<<d.cpuInfo.cpuModel;
// for(auto & pair :d.netInterface){
// qDebug()<<"map key="<<pair.first;
// qDebug()<<"map value="<<pair.second;
// std::vector<NetInterfaceInfo> v = qtjson::jsonArrayToVector<NetInterfaceInfo>(pair.second);
// qDebug()<<"v.size= "<<v.size();
// for(NetInterfaceInfo &n :v){
// qDebug()<<"address="<<n.address;
// }
// }
// qDebug()<<"driverInfo.usedPercentage="<<d.driveInfo.usedPercentage;
// qDebug()<<"";
// qDebug()<<"=========反序列化============";
// qDebug()<< qtjson::serialize(d).toUtf8().data();
}
void testComplex2(){
QString jsonStr = R"({
"enp1s0": [
{
"address": "192.168.0.9",
"cidr": "127.0.0.10/24",
"family": "IPv4",
"internal": false,
"mac": "54:f6:c5:fb:0f:db",
"netmask": "255.255.255.0"
},
{
"address": "fe80::56f6:c6ff:fefb:fdb",
"cidr": "fe80::56f6:c5ff:fefb:fdb/64",
"family": "IPv6",
"internal": false,
"mac": "54:f6:c5:fb:0f:db",
"netmask": "ffff:ffff:ffff:ffff::",
"scopeid": 2
}
],
"lo": [
{
"address": "127.0.0.1",
"cidr": "127.0.0.1/8",
"family": "IPv4",
"internal": true,
"mac": "00:00:00:00:00:00",
"netmask": "255.0.0.0"
},
{
"address": "::1",
"cidr": "::1/128",
"family": "IPv6",
"internal": true,
"mac": "00:00:00:00:00:00",
"netmask": "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
"scopeid": 0
}
],
"wgc": [
{
"address": "127.0.0.10",
"cidr": "127.0.0.10/32",
"family": "IPv4",
"internal": false,
"mac": "00:00:00:00:00:00",
"netmask": "255.255.255.255"
}
],
"wgp": [
{
"address": "127.0.0.10",
"cidr": "127.0.0.10/32",
"family": "IPv4",
"internal": false,
"mac": "00:00:00:00:00:00",
"netmask": "255.255.255.255"
}
]
}
)";
std::map<QString,QJsonArray> netInterface = qtjson::deserialize<std::map<QString,QJsonArray>>(jsonStr);
for(auto & pair : netInterface){
qDebug()<<"map key="<<pair.first;
qDebug()<<"map value="<<pair.second;
//传入QJsonValue 返回 QJsonArray
}
}
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
// testCustom();
// testVector();
//testMap();
testComplex();
//testComplex2();
return a.exec();
}