-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
256 lines (245 loc) · 8.38 KB
/
app.js
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
//app.js
App({
onLaunch: function() {
// 登录
wx.login({
success: res => {
// 发送 res.code 到后台换取 openId, sessionKey, unionId
}
})
// 获取用户信息
wx.getSetting({
success: res => {
// console.log("获取用户的当前设置",res);
if (res.authSetting['scope.userInfo']) {
// 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
wx.getUserInfo({
success: res => {
// 可以将 res 发送给后台解码出 unionId
this.globalData.userInfo = res.userInfo
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// 所以此处加入 callback 以防止这种情况
if (this.userInfoReadyCallback) {
this.userInfoReadyCallback(res)
}
}
})
}
},
fail: function(res) {
console.log("获取信息失败", res)
}
})
this.globalData.sysinfo = wx.getSystemInfoSync();
},
getModel: function() { //获取手机型号
return this.globalData.sysinfo["model"]
},
getWxVersion: function() { //获取微信版本号
return this.globalData.sysinfo["version"]
},
getSystem: function() { //获取操作系统版本
return this.globalData.sysinfo["system"]
},
getPlatform: function() { //获取客户端平台
return this.globalData.sysinfo["platform"]
},
getSDKVersion: function() { //获取客户端基础库版本
return this.globalData.sysinfo["SDKVersion"]
},
//toast提示
toastTips: function(txt) {
wx.showToast({
title: txt
})
},
//toast提示,可以设置等待时长
toastTips1: function(txt, time) {
wx.showToast({
title: txt,
duration: time
})
},
toastTips2: function(txt) {
wx.showToast({
title: txt,
icon: "loading"
})
},
//弹窗提示
showModal: function(txt) {
wx.showModal({
title: '提示',
content: txt,
showCancel: false,
})
},
//弹窗提示,有确认按钮
showModal1: function(txt) {
wx.showModal({
title: "提示",
content: txt,
showCancel: false,
confirmText: "确定"
})
},
//loading
showLoading: function(txt) {
wx.showLoading({
title: txt,
mask: true
});
},
isBlank: function(str) {
if (Object.prototype.toString.call(str) === '[object Undefined]') { //空
return true
} else if (
Object.prototype.toString.call(str) === '[object String]' ||
Object.prototype.toString.call(str) === '[object Array]') { //字条串或数组
return str.length == 0 ? true : false
} else if (Object.prototype.toString.call(str) === '[object Object]') {
return JSON.stringify(str) == '{}' ? true : false
} else {
return true
}
},
globalData: {
userInfo: null,
sysinfo: null
},
// 解析从设备获取的值
getDiviceDataAnalysis(codeValue) {
// frontCode ==>> 前导码
// typeCod ==>> 请求类型(GET_SEQ=>0, PUT_SEQ=>1, ADD_DATA=>2)
// pad ==>> pad
// len ==>> len
// num ==>> seq数量/data数量
// seqList ==>> seq列表--数组
// seqAllStr ==>> 所有的seq--字符串
// seqListNode ==>> seq列表对象--JSON数组
// seqListNode.id ==>> seq--id
// seqListNode.isCur ==>> seq--isCur(isExist, isCurA, isCurB, isCurAll)
// seqListNode.groupA ==>> seq--在A组的顺序
// seqListNode.groupB ==>> seq--在B组的顺序
// seqListNode.groupAll ==>> seq--在所有列表中的数据
let dataNode = new Object()
let seqList = new Array()
let frontCode = ''
let typeCode = parseInt(codeValue[16] + codeValue[17])
let pad = codeValue[18] + codeValue[19]
let len = codeValue[20] + codeValue[21] + codeValue[22] + codeValue[23]
let num = parseInt(codeValue[24] + codeValue[25] + codeValue[26] + codeValue[27])
let seqAllStr = codeValue.substring(28,codeValue.length);
// 获取前导码
for (let i = 0;i < 16; i++) {
frontCode += codeValue[i]
}
// 通过所有的seq字符串获取seq列表数组
for (let i = 0;i < num; i++) {
seqList[i] = seqAllStr.substring(i * 24, i * 24 + 24);
}
// 数据填充
dataNode = {
frontCode: frontCode,
typeCode: typeCode,
pad: pad,
len: len,
num: num,
seqList: seqList,
seqAllStr: seqAllStr,
seqListNode: []
}
// SEQ解析
for (let i = 0; i < seqList.length; i++) {
let id = ''
// 数据提取
let isCur = seqList[i][14] + seqList[i][15]
let groupA8 = seqList[i][16] + seqList[i][17]
let groupA9 = seqList[i][18] + seqList[i][19]
let groupB9 = seqList[i][18] + seqList[i][19]
let groupB10 = seqList[i][20] + seqList[i][21]
let groupAll10 = seqList[i][20] + seqList[i][21]
let groupAll11 = seqList[i][22] + seqList[i][23]
// 16进制==>>2进制==>>数据补全
isCur = parseInt(isCur, 16).toString(2).padStart(4, '0')
groupA8 = parseInt(groupA8, 16).toString(2).padStart(8, '0')
groupA9 = parseInt(groupA9, 16).toString(2).padStart(8, '0')
groupB9 = parseInt(groupB9, 16).toString(2).padStart(8, '0')
groupB10 = parseInt(groupB10, 16).toString(2).padStart(8, '0')
groupAll10 = parseInt(groupAll10, 16).toString(2).padStart(8, '0')
groupAll11 = parseInt(groupAll11, 16).toString(2).padStart(8, '0')
// 生成ID数据
for (let idlength = 0; idlength < 14; idlength++) {
id += seqList[i][idlength]
}
// 获取A组顺序
let groupA = groupA9.substring(6,groupA9.length) + groupA8;
// 获取B组顺序
let groupB = groupB10.substring(4,groupB10.length) + groupA9.substring(0, 6)
// 获取本条seq在所有seq中的顺序
let groupAll = groupAll11 + groupAll10.substring(0, 4)
dataNode.seqListNode[i] = {
id: id,
isCur: isCur,
isCurExist: isCur[0],
isCurA: isCur[1],
isCurB: isCur[2],
isCurAll: isCur[3],
groupA: groupA,
groupB: groupB,
groupAll: groupAll
}
}
return dataNode
},
// 反编译deviceDataNode数据,获取可下发设备的数据
setDiviceDataAnalysis(deviceDataNode) {
console.log(deviceDataNode)
// 初始化==>>默认值为前置码
let codeValue = deviceDataNode.frontCode
// 文档要求:下发数据时type为01,len为00,pad为00
// 现在使用数据deviceDataNode中的原有值,查看反编译是否成功
let len = deviceDataNode.len
let pad = deviceDataNode.pad
// let len = '00'
// let pad = '00'
let type = '00'
// type为类型
// 00 (type)[8] OPT_ID_GET_SEQ==>>GET方式,数据获取
// 01 (type)[8] OPT_ID_PUT_SEQ==>>PUT方式,数据修改
// 02 (type)[8] OPT_ID_ADD_DATA==>>ADD方式,数据新增
// 将len,pad,type加入到结果字符串中
codeValue += type
codeValue += pad
codeValue += len
let num = deviceDataNode.num + ''
// num ==>> seq数量, 使用padStart补全为4位的字符
codeValue += num.padStart(4, '0')
let seqListNode = deviceDataNode.seqListNode
let seqListStr = ''
// for (let i = 0; i < seqListNode.length; i++) {
let i = 0
for (i in seqListNode) {
// 从deviceDataNode.seqListNode中拿到seq数据列表,反编译成16进制的字符串
seqListStr += seqListNode[i].id
let seqStr = parseInt(seqListNode[i].isCur, 2).toString(16).padStart(2, '0')
seqListStr += seqStr
// 通过文档规则对数据进行拆分
let group8 = seqListNode[i].groupA.substring(2, seqListNode[i].groupA.length)
let group9 = seqListNode[i].groupB.substring(4, seqListNode[i].groupB.length) + seqListNode[i].groupA.substring(0, 2)
let group10 = seqListNode[i].groupAll.substring(8, seqListNode[i].groupAll.length) + seqListNode[i].groupB.substring(0, 4)
let group11 = seqListNode[i].groupAll.substring(0, 8)
// 2进制转16进制,用0补全两位
group8 = parseInt(group8, 2).toString(16).padStart(2, '0')
group9 = parseInt(group9, 2).toString(16).padStart(2, '0')
group10 = parseInt(group10, 2).toString(16).padStart(2, '0')
group11 = parseInt(group11, 2).toString(16).padStart(2, '0')
seqListStr += group8
seqListStr += group9
seqListStr += group10
seqListStr += group11
}
codeValue += seqListStr
return codeValue
}
})