wuwei
2025-06-13 e8c9c0ca7e6c307243c158fd529c59c5a3717f2f
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
#!/bin/sh
# 批量配置设备通道信息
#
echo -en "Content-type: text/html; charset=utf-8\n\n"
#*****************************************************
source ../bin/env.sh
db="../bin/db"
jsoner="../bin/jsoner"
msg="../bin/msg"
dbFile="/work/iot_cfg.db"
 
 
read content
 
#echo $content > log
 
startChn=`$jsoner $content passcode0`
if [ $? -ne 0 ]
then
    echo "{\"code\": \"error\"}" 
    exit
fi
endChn=`$jsoner $content passcode1`
if [ $? -ne 0 ]
then
    echo "{\"code\": \"error\"}" 
    exit
fi
 
ids=`$jsoner $content ids`
if [ $? -ne 0 ]
then
    echo "{\"code\": \"error\"}" 
fi
 
#alarm flag 
alarmFlag=`$jsoner $content alarmFlag`
if [ $? -eq 0 ]
then
    sqlite3 $dbFile "update accuracy set alarmFlag=$alarmFlag where id in ($ids) and passcode>=$startChn and passcode<=$endChn"
    if [ $? -ne 0 ]
    then
        echo "{\"code\": \"error\"}"
        echo "alarmFlag exec error " >> log
        exit
    fi
fi
 
#val1
val=`$jsoner $content val1`
if [ $? -eq 0 ]
then
    sqlite3 $dbFile "update accuracy set val1=$val where id in ($ids) and passcode>=$startChn and passcode<=$endChn"
    if [ $? -ne 0 ]
    then
        echo "{\"code\": \"error\"}"
        exit
    fi
fi
 
 
#val2
val=`$jsoner $content val2`
if [ $? -eq 0 ]
then
    sqlite3 $dbFile "update accuracy set val2=$val where id in ($ids) and passcode>=$startChn and passcode<=$endChn"
    if [ $? -ne 0 ]
    then
        echo "{\"code\": \"error\"}"
        exit
    fi
#else 
#    echo "has no val2"
fi
 
#operation
val=`$jsoner $content operation`
if [ $? -eq 0 ]
then
    sqlite3 $dbFile "update accuracy set operation=$val where id in ($ids) and passcode>=$startChn and passcode<=$endChn"
    if [ $? -ne 0 ]
    then
        echo "{\"code\": \"error\"}"
        exit
    fi
#else 
#    echo "has no operation"
fi 
 
 
#operValue
val=`$jsoner $content operValue`
if [ $? -eq 0 ]
then
    sqlite3 $dbFile "update accuracy set operValue=$val where id in ($ids) and passcode>=$startChn and passcode<=$endChn"
    if [ $? -ne 0 ]
    then
        echo "{\"code\": \"error\"}"
        exit
    fi
#else 
#    echo "has no opervalue"
fi 
 
 
#uploadFlag 上传标志
val=`$jsoner $content vld`
if [ $? -eq 0 ]
then
    sqlite3 $dbFile "update accuracy set uploadFlag=$val where id in ($ids) and passcode>=$startChn and passcode<=$endChn"
    if [ $? -ne 0 ]
    then
        echo "{\"code\": \"error\"}"
        exit
    fi
#else 
#    echo "has no vld"
fi 
 
echo "{\"code\": \"success\"}"