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
| #include <assert.h>
| #include <ctype.h>
| #include <errno.h>
| #include <inttypes.h>
| #include <stdbool.h>
| #include <stdio.h>
| #include <stdlib.h>
| #include <string.h>
| #include <sys/types.h>
| #include <unistd.h>
|
| #include <glib.h>
|
| #include <gdbus.h>
| #include <pthread.h>
|
| #include "common.h"
| #include "json-c/json.h"
| #include "rkdb.h"
|
| #define TABLE_SYSTEM_DEVICE_INFO "SystemDeviceInfo"
| #define TABLE_SYSTEM_PARA "SystemPara"
| #define TABLE_SYSTEM_USER "SystemUser"
| #define TABLE_SYSTEM_DISCOVERY "SystemDiscovery"
| #define TABLE_SYSTEM_SCOPES "SystemScopes"
| #define TABLE_SYSTEM_VERSION "SystemVersion"
|
| #define SYSTEM_VERSION "1.0.1"
|
| int system_dbus_register(DBusConnection *dbus_conn) {
| g_dbus_register_interface(dbus_conn, "/", DB_SYSTEM_INTERFACE, methods,
| signals, NULL, DB_SYSTEM_INTERFACE, NULL);
|
| return 0;
| }
|
| void system_init(void) {
| char *col_para;
|
| if (equal_version(TABLE_SYSTEM_VERSION, SYSTEM_VERSION))
| return;
|
| g_free(rkdb_drop(TABLE_SYSTEM_DEVICE_INFO));
| g_free(rkdb_drop(TABLE_SYSTEM_PARA));
| g_free(rkdb_drop(TABLE_SYSTEM_USER));
| g_free(rkdb_drop(TABLE_SYSTEM_DISCOVERY));
| g_free(rkdb_drop(TABLE_SYSTEM_SCOPES));
| g_free(rkdb_drop(TABLE_SYSTEM_VERSION));
|
| creat_version_table(TABLE_SYSTEM_VERSION, SYSTEM_VERSION);
|
| col_para = "id INTEGER PRIMARY KEY AUTOINCREMENT,"
| "name TEXT,"
| "value TEXT,"
| "ro TEXT";
| g_free(rkdb_create(TABLE_SYSTEM_DEVICE_INFO, col_para));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "0, 'deviceName', 'RK IP Camera', 'false'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "1, 'telecontrolID', '88', 'false'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "2, 'model', 'RK-003', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "3, 'serialNumber', 'RK-003-A', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "4, 'firmwareVersion', 'V0.2.6 build 200413', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "5, 'encoderVersion', 'V1.0 build 200413', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "6, 'webVersion', 'V1.12.2 build 200413', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "7, 'pluginVersion', 'V1.0.0.0', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "8, 'channelsNumber', '1', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "9, 'hardDisksNumber', '1', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "10, 'alarmInputsNumber', '0', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "11, 'alarmOutputsNumber', '0', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "12, 'firmwareVersionInfo', 'CP-3-B', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "13, 'manufacturer', 'Rockchip', 'true'"));
| g_free(rkdb_insert(TABLE_SYSTEM_DEVICE_INFO, "id, name, value, ro",
| "14, 'hardwareId', 'c3d9b8674f4b94f6', 'true'"));
|
| /*
| layout: key is part of web, value Array include para show in this part
| capability: the option of para, para tree is similar to what's in the table
| order: url to use; url para to get; remark
| 0: storage/plan/snap; screenshot time; unit: millionseconds
| 1: storage/plan/snap; screenshot-schedule; define default type, eg:[{name:
| xxx, color: '#ffffff'}]
| 2: storage/plan/video; video-plan-schedule; define default type, eg:[{name:
| xxx, color: '#ffffff'}]
| 3: event/smart/cover event/smart/overlay; smart-cover;
| 4: video/0; video-encoder; disabledOption: key checkItem, value toCheck:(key:
| disabled key, value: set when disabled null for not),item whose value change
| must be top
| */
| col_para = "id INTEGER PRIMARY KEY AUTOINCREMENT,"
| "name TEXT,"
| "para TEXT";
| g_free(rkdb_create(TABLE_SYSTEM_PARA, col_para));
| g_free(rkdb_insert(
| TABLE_SYSTEM_PARA, "id, name, para",
| "0, 'webPage', "
| "'{\"auth\":4,\"item\":[{\"auth\":4,\"name\":\"preview\"},{\"auth\":4,"
| "\"item\":[{\"auth\":4,\"item\":[{\"auth\":0,\"name\":\"delete\"}],"
| "\"name\":\"videoRecord\"},{\"auth\":4,\"item\":[{\"auth\":0,\"name\":"
| "\"delete\"}],\"name\":\"pictureRecord\"}],\"name\":\"download\"},{"
| "\"auth\":4,\"item\":[{\"auth\":4,\"item\":[{\"auth\":4,\"item\":[{"
| "\"auth\":1,\"name\":\"modify\"}],\"name\":\"ListManagement\"},{\"auth\":"
| "1,\"name\":\"AddOne\"},{\"auth\":1,\"name\":\"BatchInput\"}],\"name\":"
| "\"MemberList\"},{\"auth\":4,\"item\":[{\"auth\":4,\"item\":[{\"auth\":0,"
| "\"name\":\"modify\"}],\"name\":\"SnapShot\"}],\"name\":\"SnapShot\"},{"
| "\"auth\":4,\"item\":[{\"auth\":4,\"item\":[{\"auth\":0,\"name\":"
| "\"modify\"}],\"name\":\"Control\"}],\"name\":\"Control\"},{\"auth\":1,"
| "\"item\":[{\"auth\":1,\"name\":\"ParaConfig\"}],\"name\":\"Config\"}],"
| "\"name\":\"face\"},{\"auth\":-1,\"item\":[{\"auth\":1,\"item\":[{"
| "\"auth\":1,\"name\":\"FacePara\"},{\"auth\":1,\"name\":\"ROI\"}],"
| "\"name\":\"Config\"}],\"name\":\"face-para\"},{\"auth\":-1,\"item\":["
| "{\"auth\":4,\"item\":[{\"auth\":4,\"item\":[{\"auth\":1,\"name\":"
| "\"modify\"}],\"name\":\"MemberList\"},{\"auth\":1,\"name\":\"AddOne\"},{"
| "\"auth\":1,\"name\":\"BatchInput\"},{\"auth\":4,\"item\":[{\"auth\":0,"
| "\"name\":\"modify\"}],\"name\":\"SnapShot\"},{\"auth\":4,\"item\":["
| "{\"auth\":0,\"name\":\"modify\"}],\"name\":\"Control\"}],\"name\":"
| "\"Manage\"}],\"name\":\"face-manage\"},{\"auth\":1,\"item\":[{\"auth\":"
| "1,\"item\":[{\"auth\":1,\"item\":[{\"auth\":1,\"name\":\"basic\"},{"
| "\"auth\":1,\"name\":\"time\"}],\"name\":\"Settings\"},{\"auth\":1,"
| "\"item\":"
| "[{\"auth\":1,\"name\":\"upgrade\"},{\"auth\":-1,\"name\":\"log\"}],"
| "\"name\":\"Maintain\"},{\"auth\":-1,\"item\":[{\"auth\":-1,\"name\":"
| "\"authentication\"},{\"auth\":-1,\"name\":\"ipAddrFilter\"},{\"auth\":-"
| "1,\"name\":\"securityService\"}],\"name\":\"Security\"},{\"auth\":0,"
| "\"name\":\"User\"}],\"name\":\"System\"},{\"auth\":1,\"item\":[{"
| "\"auth\":1,\"item\":[{\"auth\":1,\"name\":\"TCPIP\"},{\"auth\":-1,"
| "\"name\":\"DDNS\"},{\"auth\":-1,\"name\":\"PPPoE\"},{\"auth\":1,"
| "\"name\":\"Port\"},{\"auth\":-1,\"name\":\"uPnP\"}],\"name\":\"Basic\"},"
| "{\"auth\":1,"
| "\"item\":[{\"auth\":1,\"name\":\"Wi-Fi\"},{\"auth\":-1,\"name\":"
| "\"SMTP\"},{\"auth\":-1,\"name\":\"FTP\"},{\"auth\":-1,\"name\":"
| "\"eMail\"},{\"auth\":-1,\"name\":\"Cloud\"},{\"auth\":-1,\"name\":"
| "\"Protocol\"},{\"auth\":-1,\"name\":\"QoS\"},{\"auth\":-1,\"name\":"
| "\"Https\"}],\"name\":"
| "\"Advanced\"}],\"name\":\"Network\"},{\"auth\":1,\"item\":[{\"auth\":1,"
| "\"name\":\"Encoder\"},{\"auth\":1,\"name\":\"AdvancedEncoder\"},{"
| "\"auth\":1,\"name\":\"ROI\"},{\"auth\":1,\"name\":\"RegionCrop\"}],"
| "\"name\":\"Video\"},{\"auth\":1,\"item\":[{\"auth\":1,\"name\":"
| "\"AudioParam\"}],"
| "\"name\":\"Audio\"},{\"auth\":1,\"item\":[{\"auth\":1,\"name\":"
| "\"DisplaySettings\"},{\"auth\":1,\"name\":\"OSDSettings\"},{\"auth\":1,"
| "\"name\":\"PrivacyCover\"},{\"auth\":1,\"name\":\"PictureMask\"}],"
| "\"name\":\"Image\"},{\"auth\":1,\"item\":[{\"auth\":1,\"name\":"
| "\"MotionDetect\"},"
| "{\"auth\":1,\"name\":\"IntrusionDetection\"},{\"auth\":-1,\"name\":"
| "\"AlarmInput\"},{\"auth\":-1,\"name\":\"AlarmOutput\"},{\"auth\":-1,"
| "\"name\":\"Abnormal\"}],\"name\":\"Event\"},{\"auth\":1,\"item\":[{"
| "\"auth\":1,\"item\":[{\"auth\":1,\"name\":\"VideoPlan\"},{\"auth\":1,"
| "\"name\":"
| "\"ScreenshotPlan\"},{\"auth\":1,\"name\":\"ScreenshotPara\"}],\"name\":"
| "\"PlanSettings\"},{\"auth\":1,\"item\":[{\"auth\":1,\"name\":"
| "\"HardDiskManagement\"},{\"auth\":-1,\"name\":\"NAS\"},{\"auth\":-1,"
| "\"name\":\"CloudStorage\"}],\"name\":\"StorageManage\"}],\"name\":"
| "\"Storage\"},"
| "{\"auth\":1,\"item\":[{\"auth\":1,\"name\":\"MarkCover\"},{\"auth\":-1,"
| "\"name\":\"MaskArea\"},{\"auth\":-1,\"name\":\"RuleSettings\"},{"
| "\"auth\":-1,\"name\":\"AdvancedCFG\"}],\"name\":\"Intel\"},{\"auth\":-1,"
| "\"item\":[{\"auth\":-1,\"name\":\"GateConfig\"},{\"auth\":-1,\"name\":"
| "\"ScreenConfig\"}],\"name\":\"Peripherals\"}],\"name\":\"config\"},{"
| "\"auth\":4,\"name\":\"about\"}],\"name\":\"header\"}'"));
| g_free(rkdb_insert(
| TABLE_SYSTEM_PARA, "id, name, para",
| "1, 'StoragePlanSnap', "
| "'{\"dynamic\":{\"id\":{\"0\":{\"iShotInterval\":{\"for\":\"timing\","
| "\"range\":{\"max\":604800000,\"min\":1000},\"type\":\"range\"},"
| "\"timeUnit\":{\"for\":\"timing\","
| "\"options\":[\"seconds\",\"minutes\",\"hours\",\"days\"],\"type\":"
| "\"options\"}},\"1\":{\"iShotInterval\":{\"for\":\"timing\",\"range\":{"
| "\"max\":65535,\"min\":1000},\"type\":\"range\"},\"timeUnit\":{\"for\":"
| "\"timing\",\"options\":[\"seconds\","
| "\"minutes\"],\"type\":\"options\"}}}},\"relation\":{\"iImageQuality\":{"
| "\"1\":\"low\",\"10\":\"high\",\"5\":\"middle\"}},\"static\":{"
| "\"iImageQuality\":{\"options\":[1,5,10],\"type\":\"options\"},"
| "\"iShotNumber\":{\"range\":{\"max\":120,\"min\":1},"
| "\"type\":\"range\"},\"sImageType\":{\"options\":[\"JPEG\"],\"type\":"
| "\"options\"},\"sResolution\":{\"refer\":[4,\"para\",\"dynamic\","
| "\"sStreamType\",\"mainStream\",\"sResolution\"],\"type\":\"refer\"}}}"
| "'"));
| g_free(rkdb_insert(TABLE_SYSTEM_PARA, "id, name, para",
| "2, 'screenshotSchedule', "
| "'[{\"name\":\"timing\",\"color\":\"#87CEEB\"}]'"));
| g_free(rkdb_insert(TABLE_SYSTEM_PARA, "id, name, para",
| "3, 'videoPlanSchedule', "
| "'[{\"name\":\"timing\",\"color\":\"#87CEEB\"}, "
| "{\"name\":\"motion-detect\",\"color\":\"#74B558\"},"
| "{\"name\":\"alarm\",\"color\":\"#D71820\"}, "
| "{\"name\":\"motionOrAlarm\",\"color\":\"#E58705\"}, "
| "{\"name\":\"motionAndAlarm\",\"color\":\"#B9E2FE\"},"
| "{\"name\":\"event\",\"color\":\"#AA6FFF\"}]'"));
| g_free(rkdb_insert(
| TABLE_SYSTEM_PARA, "id, name, para",
| "4, 'video', "
| "'{\"disabled\":[{\"name\":\"sStreamType\",\"options\":{\"subStream\":{"
| "\"sOutputDataType\":\"H.264\",\"sSmart\":\"close\"},\"thirdStream\":{"
| "\"sSmart\":\"close\"}},\"type\":\"disabled/limit\"},"
| "{\"name\":\"sSmart\",\"options\":{\"open\":{\"iGOP\":null,"
| "\"iStreamSmooth\":null,\"sH264Profile\":null,\"sRCMode\":null,"
| "\"sRCQuality\":null,\"sSVC\":null}},\"type\":\"disabled\"},{\"name\":"
| "\"sRCMode\",\"options\":{\"CBR\":{\"sRCQuality\":null}},\"type\":"
| "\"disabled\"},"
| "{\"name\":\"sOutputDataType\",\"options\":{\"H.265\":{\"sH264Profile\":"
| "null}},\"type\":\"disabled\"},{\"name\":\"unspport\",\"options\":{"
| "\"iStreamSmooth\":null,\"sSVC\":null,\"sVideoType\":null},\"type\":"
| "\"disabled\"}],\"dynamic\":{\"sSmart\":{\"open\":{\"iMinRate\":"
| "{\"dynamicRange\":{\"max\":\"iMaxRate\",\"maxRate\":1,\"min\":"
| "\"iMaxRate\",\"minRate\":0.125},\"type\":\"dynamicRange\"}}},"
| "\"sStreamType\":{\"mainStream\":{\"iMaxRate\":{\"options\":[256,512,"
| "1024,2048,3072,4096,6144,8192,12288,16384],\"type\":\"options\"},"
| "\"sResolution\":"
| "{\"options\":[\"2688*1520\"],\"type\":\"options\"}},\"subStream\":{"
| "\"iMaxRate\":{\"options\":[256,512,1024,2048,3072,4096,6144,8192],"
| "\"type\":\"options\"},\"sResolution\":{\"options\":[\"640*480\",\"704*"
| "576\"],\"type\":\"options\"}},\"thirdStream\":{\"iMaxRate\":{\"options\""
| ":[256,512,1024,2048,3072,4096,6144,8192,12288,16384],\"type\":"
| "\"options\"},\"sResolution\":{\"options\":[\"640*480\",\"704*576\","
| "\"1280*720\",\"1920*1080\"],\"type\":\"options\"}}}},\"layout\":{"
| "\"encoder\":[\"sStreamType\",\"sVideoType\",\"sResolution\",\"sRCMode\","
| "\"sRCQuality\",\"sFrameRate\",\"sOutputDataType\",\"sSmart\","
| "\"sH264Profile\",\"sSVC\",\"iMaxRate\",\"iMinRate\",\"iGOP\","
| "\"iStreamSmooth\"]},\"static\":{\"iGOP\":{\"range\":{\"max\":400,"
| "\"min\":0},\"type\":\"range\"},\"iStreamSmooth\":{\"range\":{\"max\":"
| "100,\"min\":1,"
| "\"step\":1},\"type\":\"range\"},\"sFrameRate\":{\"dynamicRange\":{"
| "\"max\":\"sFrameRateIn\",\"maxRate\":1},\"options\":[\"1/16\",\"1/"
| "8\",\"1/4\",\"1/"
| "2\",\"1\",\"2\",\"4\",\"6\",\"8\",\"10\",\"12\",\"14\",\"16\",\"18\","
| "\"20\",\"25\",\"30\"],\"type\":\"options/dynamicRange\"},"
| "\"sH264Profile\":{\"options\":[\"high\",\"main\",\"baseline\"],\"type\":"
| "\"options\"},\"sOutputDataType\":{\"options\":[\"H.264\",\"H.265\"],"
| "\"type\":\"options\"},\"sRCMode\":{\"options\":[\"CBR\",\"VBR\"],"
| "\"type\":\"options\"},\"sRCQuality\":{\"options\":[\"lowest\",\"lower\","
| "\"low\",\"medium\",\"high\",\"higher\",\"highest\"],\"type\":"
| "\"options\"},\"sSVC\":{\"options\":[\"open\",\"close\"],\"type\":"
| "\"options\"},\"sSmart\":{\"options\":[\"open\",\"close\"],\"type\":"
| "\"options\"},\"sStreamType\":{\"options\":[\"mainStream\",\"subStream\","
| "\"thirdStream\"],\"type\":\"options\"},\"sVideoType\":{\"options\":["
| "\"videoStream\",\"compositeStream\"],\"type\":\"options\"}}}'"));
| g_free(rkdb_insert(TABLE_SYSTEM_PARA, "id, name, para",
| "5, 'video_advanced_enc', "
| "'{\"static\":{\"sStreamType\":{\"refer\":[4,\"para\","
| "\"static\",\"sStreamType\"],\"type\":\"refer\"}}}'"));
| g_free(rkdb_insert(TABLE_SYSTEM_PARA, "id, name, para",
| "6, 'roi', "
| "'{\"static\":{\"sStreamType\":{\"refer\":[4,\"para\","
| "\"static\",\"sStreamType\"],\"type\":\"refer\"}}}'"));
| g_free(rkdb_insert(
| TABLE_SYSTEM_PARA, "id, name, para",
| "7, 'image_adjustment', "
| "'{\"layout\":{\"image_adjustment\":[\"iBrightness\",\"iContrast\","
| "\"iSaturation\",\"iSharpness\",\"iHue\"]},\"static\":{\"iBrightness\":{"
| "\"range\":{\"max\":100,\"min\":0,\"step\":1},\"type\":\"range\"},"
| "\"iContrast\":{\"range\":{\"max\":100,\"min\":0,\"step\":1},\"type\":"
| "\"range\"},\"iSaturation\":{\"range\":{\"max\":100,\"min\":0,\"step\":1}"
| ",\"type\":\"range\"},\"iSharpness\":{\"range\":{\"max\":100,\"min\":0,"
| "\"step\":1},\"type\":\"range\"},\"iHue\":{\"range\":{\"max\":100,"
| "\"min\":0,\"step\":1},\"type\":\"range\"}}}'"));
| g_free(rkdb_insert(
| TABLE_SYSTEM_PARA, "id, name, para",
| "8, 'image_exposure', "
| "'{\"dynamic\":{\"sExposureMode\":{\"auto\":{\"iAutoIrisLevel\":{"
| "\"range\":{\"max\":100,\"min\":0,\"step\":1},\"type\":\"range\"}},"
| "\"manual\":{\"sExposureTime\":{\"options\":[\"1\",\"1/3\",\"1/6\",\"1/"
| "12\",\"1/25\",\"1/50\",\"1/100\",\"1/150\",\"1/200\",\"1/250\",\"1/"
| "500\",\"1/750\",\"1/1000\",\"1/2000\",\"1/4000\",\"1/10000\",\"1/"
| "100000\"],\"type\":\"options\"},\"sGainMode\":{\"options\":[\"auto\","
| "\"manual\"],\"type\":\"options\"}}},\"sGainMode\":{\"manual\":{"
| "\"iExposureGain\":{\"range\":{\"max\":100,\"min\":1,\"step\":1},"
| "\"type\":\"range\"}}}},\"layout\":{\"image_exposure\":["
| "\"sExposureMode\",\"sExposureTime\",\"sGainMode\",\"iExposureGain\"]},"
| "\"static\":{\"sExposureMode\":{\"options\":[\"auto\",\"manual\"],"
| "\"type\":\"options\"}}}'"));
| g_free(rkdb_insert(
| TABLE_SYSTEM_PARA, "id, name, para",
| "9, 'image_night_to_day', "
| "'{\"disabled\":[{\"name\":\"sNightToDay\",\"options\":{\"day\":{"
| "\"iLightBrightness\":null,\"sFillLightMode\":null},\"night\":{"
| "\"iDarkBoostLevel\":null,\"iHDRLevel\":null,\"iHLCLevel\":null,\"sHDR\":"
| "null,\"sHLC\":\"close\"}},\"type\":\"disabled\"}],\"dynamic\":{"
| "\"sNightToDay\":{\"auto\":{\"iNightToDayFilterLevel\":{\"options\":[0,1,"
| "2,3,4,5,6,7],\"type\":\"options\"},\"iNightToDayFilterTime\":{\"range\":"
| "{\"max\":10,\"min\":3,\"step\":1},\"type\":\"range\"}},\"schedule\":{"
| "\"sDawnTime\":{\"input\":\"time\",\"type\":\"input\"},\"sDuskTime\":{"
| "\"input\":\"time\",\"type\":\"input\"}}},\"sOverexposeSuppress\":{"
| "\"open\":{\"sOverexposeSuppressType\":{\"options\":[\"auto\",\"manual\"]"
| ",\"type\":\"options\"}}},\"sOverexposeSuppressType\":{\"manual\":{"
| "\"iDistanceLevel\":{\"range\":{\"max\":100,\"min\":0,\"step\":1},"
| "\"type\":\"range\"}}}},\"layout\":{\"image_night_to_day\":["
| "\"sNightToDay\",\"iNightToDayFilterLevel\",\"iNightToDayFilterTime\","
| "\"sDawnTime\",\"sDuskTime\",\"sFillLightMode\",\"iLightBrightness\"]},"
| "\"static\":{\"iLightBrightness\":{\"range\":{\"max\":100,\"min\":0,"
| "\"step\":10},\"type\":\"range\"},\"sFillLightMode\":{\"options\":["
| "\"IR\"],\"type\":\"options\"},\"sNightToDay\":{\"options\":[\"auto\","
| "\"day\",\"night\",\"schedule\"],\"type\":\"options\"}}}'"));
| g_free(rkdb_insert(
| TABLE_SYSTEM_PARA, "id, name, para",
| "10, 'image_blc', "
| "'{\"disabled\":[{\"name\":\"sHLC\",\"options\":{\"open\":{"
| "\"sBLCRegion\":null}},\"type\":\"disabled\"},{\"name\":\"sBLCRegion\","
| "\"options\":{\"open\":{\"iDarkBoostLevel\":null,\"iHLCLevel\":null,"
| "\"sHLC\":null}},\"type\":\"disabled\"}],\"dynamic\":{\"sBLCRegion\":{"
| "\"open\":{\"iBLCStrength\":{\"range\":{\"max\":100,\"min\":0,\"step\":1}"
| ",\"type\":\"range\"}}},\"sHDR\":{\"HDR2\":{\"iHDRLevel\":{\"options\":["
| "1,2,3,4,5],\"type\":\"options\"}},\"close\":{\"sBLCRegion\":{"
| "\"options\":[\"close\",\"open\"],\"type\":\"options\"},\"sHLC\":{"
| "\"options\":[\"close\",\"open\"],\"type\":\"options\"}}},\"sHLC\":{"
| "\"open\":{\"iDarkBoostLevel\":{\"range\":{\"max\":100,\"min\":0,"
| "\"step\":1},\"type\":\"range\"},\"iHLCLevel\":{\"range\":{\"max\":100,"
| "\"min\":0,\"step\":1},\"type\":\"range\"}}},\"sWDR\":{\"open\":{"
| "\"iWDRLevel\":{\"range\":{\"max\":100,\"min\":0,\"step\":1},\"type\":"
| "\"range\"}}}},\"layout\":{\"image_blc\":[\"sHDR\",\"iHDRLevel\","
| "\"sBLCRegion\",\"iBLCStrength\",\"sHLC\",\"iHLCLevel\","
| "\"iDarkBoostLevel\"]},\"static\":{\"sHDR\":{\"options\":[\"close\","
| "\"HDR2\"],\"type\":\"options\"}}}'"));
| g_free(rkdb_insert(
| TABLE_SYSTEM_PARA, "id, name, para",
| "11, 'image_white_blance', "
| "'{\"dynamic\":{\"sWhiteBlanceStyle\":{\"manualWhiteBalance\":{"
| "\"iWhiteBalanceBlue\":{\"range\":{\"max\":100,\"min\":0,\"step\":1},"
| "\"type\":\"range\"},\"iWhiteBalanceGreen\":{\"range\":{\"max\":100,"
| "\"min\":0,\"s"
| "tep\":1},\"type\":\"range\"},\"iWhiteBalanceRed\":{\"range\":{\"max\":"
| "100,\"min\":0,\"step\":1},\"type\":\"range\"}}}},\"layout\":{\"image_"
| "white_blance\":[\"sWhiteBlanceStyle\",\"iWhiteBalanceRed\","
| "\"iWhiteBalanceGreen\",\"iWhiteBalanceBlue\"]},\"static\":{"
| "\"sWhiteBlanceStyle\":{\"options\""
| ":[\"manualWhiteBalance\",\"autoWhiteBalance\",\"lockingWhiteBalance\","
| "\"fluorescentLamp\",\"incandescent\",\"warmLight\",\"naturalLight\"],"
| "\"type\":\"options\"}}}'"));
| g_free(rkdb_insert(
| TABLE_SYSTEM_PARA, "id, name, para",
| "12, 'image_enhancement', "
| "'{\"dynamic\":{\"sDehaze\":{\"open\":{\"iDehazeLevel\":{\"range\":{"
| "\"max\":10,\"min\":0,\"step\":1},\"type\":\"range\"}}},"
| "\"sDistortionCorrection\":{\"FEC\":{\"iFecLevel\":{\"range\":{\"max\":"
| "100,\"min\":0,\"step\":1},"
| "\"type\":\"range\"}},\"LDCH\":{\"iLdchLevel\":{\"range\":{\"max\":100,"
| "\"min\":0,\"step\":1},\"type\":\"range\"}}},\"sNoiseReduceMode\":{"
| "\"2dnr\":{\"iSpatialDenoiseLevel\":{\"range\":{\"max\":100,\"min\":0,"
| "\"step\":1},\"type\":\"range\"}},\"3dnr\":{\"iTemporalDenoiseLevel\":{"
| "\"range\":{\"max\":100,"
| "\"min\":0,\"step\":1},\"type\":\"range\"}},\"mixnr\":{"
| "\"iSpatialDenoiseLevel\":{\"range\":{\"max\":100,\"min\":0,\"step\":1},"
| "\"type\":\"range\"},\"iTemporalDenoiseLevel\":{\"range\":{\"max\":100,"
| "\"min\":0,\"step\":1},\"type\":\"range\"}}}},\"layout\":{\"image_"
| "enhancement\":[\"sNoiseReduceMode\","
| "\"iSpatialDenoiseLevel\",\"iTemporalDenoiseLevel\",\"sDehaze\","
| "\"iDehazeLevel\",\"sGrayScaleMode\",\"sDistortionCorrection\","
| "\"iLdchLevel\",\"iFecLevel\",\"iImageRotation\"]},\"static\":{"
| "\"iImageRotation\":{\"options\":[0,90,270],\"type\":\"options\"},"
| "\"sDIS\":{\"options\":[\"open\",\"close\"],"
| "\"type\":\"options\"},\"sDehaze\":{\"options\":[\"open\",\"close\","
| "\"auto\"],\"type\":\"options\"},\"sDistortionCorrection\":{\"options\":["
| "\"LDCH\",\"FEC\",\"close\"],\"type\":\"options\"},\"sFEC\":{\"options\":"
| "[\"open\",\"close\"],\"type\":\"options\"},\"sGrayScaleMode\":{"
| "\"options\":[\"[0-255]\","
| "\"[16-235]\"],\"type\":\"options\"},\"sNoiseReduceMode\":{\"options\":["
| "\"default\",\"2dnr\",\"3dnr\",\"mixnr\"],\"type\":\"options\"}}}'"));
| g_free(rkdb_insert(TABLE_SYSTEM_PARA, "id, name, para",
| "13, 'image_video_adjustment', "
| "'{\"layout\":{\"image_video_adjustment\":["
| "\"sPowerLineFrequencyMode\",\"sImageFlip\"]},\"static\":{"
| "\"sImageFlip\":{\"options\":[\"close\",\"flip\","
| "\"mirror\",\"centrosymmetric\"],\"type\":\"options\"},"
| "\"sPowerLin"
| "eFrequencyMode\":{\"options\":[\"PAL(50HZ)\",\"NTSC(60HZ)"
| "\"],\"type\":\"options\"},\"sSceneMode\":{\"options\":["
| "\"indoor\",\"outdoor\"],\"type\":\"options\"}}}'"));
| g_free(rkdb_insert(
| TABLE_SYSTEM_PARA, "id, name, para",
| "14, 'smartCover', "
| "'{\"capability\":{\"SmartCover\":{\"sImageQuality\":[\"best\",\"good\","
| "\"general\"],\"sTargetImageType\":[\"head\"]}},\"layout\":{\"enabled\":["
| "\"iFaceRecognitionEnabled\",\"iStreamOverlayEnabled\""
| "],\"infoEnabled\":[\"deviceNum\",\"positonInfo\"],\"snap\":["
| "\"sTargetImageType\",\"iWidthRatio\",\"sImageQuality\"]}}'"));
|
| /*
| password encodes by base64
| */
| col_para = "id INTEGER PRIMARY KEY AUTOINCREMENT,"
| "sUserName TEXT UNIQUE,"
| "sPassword TEXT,"
| "iFixed INT DEFAULT 0,"
| "iUserLevel INT DEFAULT 1,"
| "iAuthLevel INTEGER DEFAULT 1";
| g_free(rkdb_create(TABLE_SYSTEM_USER, col_para));
| g_free(rkdb_insert(TABLE_SYSTEM_USER,
| "id, sUserName, sPassword, iFixed, iUserLevel, iAuthLevel",
| "0, 'admin', 'YWRtaW4=', 1, 0, 1"));
|
| col_para = "id INTEGER PRIMARY KEY AUTOINCREMENT,"
| "iDiscoveryDisabled INTEGER DEFAULT 0";
| g_free(rkdb_create(TABLE_SYSTEM_DISCOVERY, col_para));
| g_free(rkdb_insert(TABLE_SYSTEM_DISCOVERY, "id", "0"));
|
| col_para = "id INTEGER PRIMARY KEY AUTOINCREMENT,"
| "sScopeItem TEXT,"
| "iScopeDef DEFAULT 1";
| g_free(rkdb_create(TABLE_SYSTEM_SCOPES, col_para));
| g_free(rkdb_insert(TABLE_SYSTEM_SCOPES, "id, sScopeItem, iScopeDef",
| "0, 'onvif://www.onvif.org/Profile/S', 0"));
| g_free(rkdb_insert(TABLE_SYSTEM_SCOPES, "id, sScopeItem, iScopeDef",
| "1, 'onvif://www.onvif.org/type/video_encoder', 0"));
| g_free(rkdb_insert(TABLE_SYSTEM_SCOPES, "id, sScopeItem, iScopeDef",
| "2, 'onvif://www.onvif.org/type/audio_encoder', 0"));
| g_free(
| rkdb_insert(TABLE_SYSTEM_SCOPES, "id, sScopeItem, iScopeDef",
| "5, 'onvif://www.onvif.org/hardware/c3d9b8674f4b94f6', 1"));
| g_free(rkdb_insert(TABLE_SYSTEM_SCOPES, "id, sScopeItem, iScopeDef",
| "6, 'onvif://www.onvif.org/location/city/fuzhou', 1"));
| g_free(rkdb_insert(TABLE_SYSTEM_SCOPES, "id, sScopeItem, iScopeDef",
| "7, 'onvif://www.onvif.org/name/RK_IPC', 1"));
| }
|
|