LSCabinet.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. const common = require('../common.js');
  2. const parse = require('./blueParse/LSCabinet.js');
  3. const readServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  4. const readID = '000036F6-0000-1000-8000-00805F9B34FB';
  5. const writeServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  6. const writeID = '000036F5-0000-1000-8000-00805F9B34FB';
  7. const app = getApp();
  8. const MTU = 115;
  9. var isStart = 0; //0 未开始 1 已开始 2进行中 3已完成
  10. var timeOut = 0; //超时次数
  11. var deviceData = {};
  12. function acceptDevice(device) {
  13. return device.btid ? true : false;
  14. }
  15. function isSingleBt() {
  16. return true;
  17. }
  18. function isDevice(device, data) {
  19. const advertisData = new Uint8Array(data.advertisData);
  20. const mac = device.btid
  21. .split('')
  22. .map((p, i) => parseInt(p + device.btid[i + 1], 16))
  23. .filter((p, i) => i % 2 == 0);
  24. if (advertisData.slice(0, 4).toString() == [9, 255, 1, 2].toString() && advertisData.slice(4, 10).toString() == mac.toString()) {
  25. return true;
  26. }
  27. return false;
  28. }
  29. function sendCommand(cmd, data = []) {
  30. data = [cmd, data.length].concat(data);
  31. return common.completArrayCRC(data, data.length);
  32. }
  33. //换电指令
  34. function sendExchangeCommand(data) {
  35. deviceData = data;
  36. app.globalData.deviceBTBMSBuf[data.mac_id] = {
  37. bms_origin_data: null
  38. };
  39. return [togetherCommand([1, 1], data)];
  40. }
  41. //租电指令
  42. function sendHireCommand(data) {
  43. deviceData = data;
  44. app.globalData.deviceBTBMSBuf[data.mac_id] = {
  45. bms_origin_data: null
  46. };
  47. return [togetherCommand([2, 1], data)];
  48. }
  49. //还电指令
  50. function sendBackCommand(data) {
  51. deviceData = data;
  52. app.globalData.deviceBTBMSBuf[data.mac_id] = {
  53. bms_origin_data: null
  54. };
  55. return [togetherCommand([3, 1], data)];
  56. }
  57. //确认指令 (序列号,密钥,消息头)
  58. function sendConfirmCommand(value, serialNum) {
  59. app.globalData.deviceBTBMSBuf[deviceData.mac_id] = {
  60. bms_origin_data: null
  61. };
  62. return [confirmCommand(value, serialNum, deviceData.key)];
  63. }
  64. //取消确认指令
  65. function sendCancelCommand(serialNum) {
  66. app.globalData.deviceBTBMSBuf[deviceData.mac_id] = {
  67. bms_origin_data: null
  68. };
  69. var body = [confirmCommand([4, 1], serialNum, deviceData.key)];
  70. return body;
  71. }
  72. //获取柜体信息
  73. function sendGetCabinetInfoCommand(data) {
  74. isStart = 1;
  75. deviceData = data;
  76. app.globalData.deviceBTBMSBuf[data.mac_id] = {
  77. bms_origin_data: null
  78. };
  79. deviceData.serialNum = new Date().getTime().toString();
  80. return [confirmCommand([6, 1], deviceData.serialNum, deviceData.key)];
  81. }
  82. //开仓指令
  83. // 鉴权
  84. function alterConnect(device, deviceId) {
  85. return [sendCommand(1, [171, 205, 171, 205])];
  86. }
  87. function readData(device, value, data) {
  88. var value = new Uint8Array(value);
  89. console.log('接收到的指令');
  90. console.log(value);
  91. let macid = device.mac_id;
  92. if (value[value.length - 1] === 120 && value[0] === 122) {
  93. //单包封包直接结束
  94. var bms_data = value;
  95. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data;
  96. var json = getCompleteData(bms_data);
  97. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = null;
  98. return json;
  99. }
  100. if (value[value.length - 1] !== 120 && value[0] === 122) {
  101. //分包开头
  102. var bms_data = value;
  103. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data;
  104. }
  105. if (value[value.length - 1] !== 120 && value[0] !== 122) {
  106. //分包中间过程封包
  107. var bms_data = mergeUint8Array(app.globalData.deviceBTBMSBuf[macid].bms_origin_data, value);
  108. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data;
  109. }
  110. if (value[value.length - 1] === 120 && value[0] !== 122) {
  111. //分包结束
  112. var bms_data = mergeUint8Array(app.globalData.deviceBTBMSBuf[macid].bms_origin_data, value);
  113. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data;
  114. var json = getCompleteData(bms_data);
  115. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = null;
  116. return json;
  117. }
  118. }
  119. function getCompleteData(value) {
  120. var json = parse.realData(value);
  121. //响应进行确认数据
  122. if (json.response == 1) {
  123. app.globalData.reponseData = json;
  124. }
  125. //上次操作未确认 发送取消指令
  126. json = cancleConfirm(json);
  127. //汇报进行确认数据
  128. json = reportConfirm(json, value);
  129. //获取电柜信息
  130. json = getCabintInfo(json);
  131. return json;
  132. }
  133. //上次操作未确认 发送取消指令
  134. function cancleConfirm(json) {
  135. if (json.response === 1) {
  136. app.globalData.reportData = json;
  137. }
  138. return json;
  139. }
  140. //汇报进行确认数据
  141. function reportConfirm(json, value) {
  142. if (json.report == 1) {
  143. var reportData = {};
  144. reportData.serialNo = json.serialNo;
  145. reportData.state = json.state;
  146. reportData.msg = json.msg;
  147. reportData.report = 1;
  148. app.globalData.reportData = reportData;
  149. if (value[2] === 130) {
  150. parse.reportCabintHire(deviceData.dev_id, json.orderNo, json);
  151. sendConfirmCommandBlue([2, 2], json.serialNo);
  152. }
  153. if (value[2] === 129) {
  154. parse.reportCabintExchange(deviceData.dev_id, json);
  155. sendConfirmCommandBlue([1, 2], json.serialNo);
  156. }
  157. if (value[2] === 131) {
  158. parse.reportCabintReturn(deviceData.dev_id, json.orderNo, json);
  159. sendConfirmCommandBlue([3, 2], json.serialNo);
  160. }
  161. }
  162. return json;
  163. }
  164. function sendConfirmCommandBlue(value, serialNum) {
  165. const bluetooth = require('../bluetooth.js');
  166. if (bluetooth.isConnected(deviceData.mac_id)) {
  167. bluetooth.sendConfirmCommand(
  168. deviceData.mac_id,
  169. value,
  170. serialNum,
  171. function () {},
  172. function () {}
  173. );
  174. } else {
  175. }
  176. }
  177. //获取电柜信息 蓝牙超时三次请求操作
  178. function getCabintInfo(json) {
  179. if (json.command === 134) {
  180. if (json.state === 10000) {
  181. isStart = 3;
  182. } else {
  183. if (isStart === 1) {
  184. setTimeout(function () {
  185. if (isStart !== 3) {
  186. isStart = 0;
  187. if (timeOut < 3) {
  188. //超时次数
  189. timeOut++;
  190. sendGetCabinetInfoCommand(deviceData);
  191. } else {
  192. json.state = 10002; //失败
  193. timeOut = 0;
  194. }
  195. }
  196. }, 1500);
  197. }
  198. isStart = 2;
  199. }
  200. }
  201. return json;
  202. }
  203. function confirmCommand(data, serialNum, key) {
  204. //标志体
  205. var toBody = confirmBody(serialNum, key);
  206. //标志头
  207. var toHead = [122, toBody.length + 2].concat(data);
  208. //标志尾
  209. var toFoot = getMarkFoot(toBody, data);
  210. var body = toHead.concat(toBody).concat(toFoot);
  211. return body;
  212. }
  213. function togetherCommand(data, device) {
  214. console.log('设备信息');
  215. console.log(device);
  216. //标志体
  217. var toBody = [];
  218. //下发换电
  219. if (data[0] === 1 && data[1] === 1) {
  220. toBody = loadToMsgBody(device);
  221. }
  222. if (data[0] === 2 && data[1] === 1) {
  223. toBody = loadToMsgBody2(device);
  224. }
  225. if (data[0] === 3 && data[1] === 1) {
  226. toBody = loadToMsgBody3(device);
  227. }
  228. //标志头
  229. var toHead = [122, toBody.length + 2].concat(data);
  230. //标志尾
  231. var toFoot = getMarkFoot(toBody, data);
  232. var body = toHead.concat(toBody).concat(toFoot);
  233. console.log('下发的机柜指令--------------');
  234. console.log(body);
  235. return body;
  236. }
  237. //标志尾
  238. function getMarkFoot(toBody, hexList) {
  239. var total = 0;
  240. for (var i = 0; toBody.length > i; i++) {
  241. total += toBody[i];
  242. }
  243. for (var i = 0; hexList.length > i; i++) {
  244. total += hexList[i];
  245. }
  246. total = toBody.length + 2 + total;
  247. var toFoot = [total & 255, 120];
  248. return toFoot;
  249. }
  250. //标志体-确认
  251. function confirmBody(serialNum, key) {
  252. var serialLen = 0;
  253. var serialNo = 0;
  254. if (serialNum !== '0') {
  255. //序列号长度
  256. var serialLen = serialNum.length;
  257. //序列号
  258. var serialNo = common.getASCIICode(serialNum);
  259. }
  260. var keyList = keyHex(key); //密钥长度 密钥索引 密钥值
  261. var toBody;
  262. if (serialNum !== '0') {
  263. toBody = contactList([[serialLen], serialNo]).concat(keyList);
  264. } else {
  265. toBody = [serialLen].concat(keyList);
  266. }
  267. //拼接
  268. return toBody;
  269. }
  270. //换电标志体
  271. function loadToMsgBody(device) {
  272. //空仓门编号
  273. var empityBoxNo = parseInt(device.empityBoxNo, 16);
  274. //满仓门编号
  275. var fullBoxNo = parseInt(device.fullBoxNo, 16);
  276. var boxNo = [empityBoxNo].concat([fullBoxNo]);
  277. //电池编号长度
  278. var batteryNoLen = device.battertNum.length;
  279. //电池编号
  280. var batteryNo = common.getASCIICode(device.battertNum);
  281. //订单号长度
  282. var orderNoLen = device.orderNo.length;
  283. //订单号
  284. var orderNo = common.getASCIICode(device.orderNo);
  285. //序列号长度
  286. var serialLen = device.serialNum.length;
  287. //序列号
  288. var serialNo = common.getASCIICode(device.serialNum);
  289. //得到密钥
  290. var keyList = keyHex(device.key);
  291. var toBody = contactList([boxNo, [batteryNoLen], batteryNo, [orderNoLen], orderNo, [serialLen], serialNo]).concat(keyList);
  292. return toBody;
  293. }
  294. //租电标志体
  295. function loadToMsgBody2(device) {
  296. //空仓门编号
  297. var boxNo = parseInt(device.boxNo, 16);
  298. //序列号长度
  299. var serialLen = device.serialNum.length;
  300. //序列号
  301. var serialNo = common.getASCIICode(device.serialNum);
  302. //订单号长度
  303. var orderNoLen = device.orderNo.length;
  304. //订单号
  305. var orderNo = common.getASCIICode(device.orderNo);
  306. //得到密钥
  307. var keyList = keyHex(device.key);
  308. var toBody = contactList([[boxNo], [serialLen], serialNo, [orderNoLen], orderNo]).concat(keyList);
  309. return toBody;
  310. }
  311. //还电标志体
  312. function loadToMsgBody3(device) {
  313. //还电仓门编号
  314. var boxNo = parseInt(device.boxNo, 16);
  315. //电池编号长度
  316. var batteryNoLen = device.battertNum.length;
  317. //电池编号
  318. var batteryNo = common.getASCIICode(device.battertNum);
  319. //序列号长度
  320. var serialLen = device.serialNum.length;
  321. //序列号
  322. var serialNo = common.getASCIICode(device.serialNum);
  323. //订单号长度
  324. var orderNoLen = device.orderNo.length;
  325. //订单号
  326. var orderNo = common.getASCIICode(device.orderNo);
  327. //得到密钥
  328. var keyList = keyHex(device.key);
  329. console.log(keyList);
  330. var toBody = contactList([[boxNo], [batteryNoLen], batteryNo, [serialLen], serialNo, [orderNoLen], orderNo]).concat(keyList);
  331. return toBody;
  332. }
  333. //生成密钥
  334. function keyHex(key) {
  335. //密钥索引
  336. //var keyIndexHex = randomHexNumber()
  337. var keyIndexHex = '00000002';
  338. var keyIndex = hexToList(keyIndexHex);
  339. //密钥值
  340. var binaryKeyIndex = binaryArray(parseInt(keyIndexHex, 16));
  341. var keyValue = getEncryptionKey(binaryKeyIndex, key);
  342. var keyValueASCII = common.getASCIICode(keyValue);
  343. //秘钥验证数据长度
  344. var keyVerifyLen = 4 + keyValue.length; //密钥索引4字节+秘钥值长度
  345. return contactList([[keyVerifyLen], keyIndex, keyValueASCII]);
  346. }
  347. //获取32位2进制数据
  348. function binaryArray(b) {
  349. var array = [];
  350. for (var i = 31; i >= 0; i--) {
  351. array[i] = b & 1;
  352. b = b >> 1;
  353. }
  354. return array;
  355. }
  356. //随机8位16进制
  357. function hexToList(str) {
  358. var val = [];
  359. for (var i = 0; i < str.length / 2; i++) {
  360. val.push(parseInt(str.substring(0 + i * 2, 2 + i * 2), 16));
  361. }
  362. return val;
  363. }
  364. function getEncryptionKey(keyList, key) {
  365. var keyStr = '';
  366. for (var i = 0; keyList.length > i; i++) {
  367. if (keyList[i] === 1) {
  368. keyStr += key.charAt(keyList.length - i - 1);
  369. }
  370. }
  371. var keyStr = keyStr.split('').reverse().join('');
  372. return keyStr;
  373. }
  374. function contactList(list) {
  375. var contactList = [];
  376. for (var i = 0; list.length > i; i++) {
  377. contactList = contactList.concat(list[i]);
  378. }
  379. return contactList;
  380. }
  381. function mergeUint8Array(arr1, arr2) {
  382. let len1 = arr1 ? arr1.length : 0;
  383. let len2 = arr2.length;
  384. let arr = new Uint8Array(len1 + len2);
  385. for (let i = 0; i < len1; i++) {
  386. arr[i] = arr1[i];
  387. }
  388. for (let i = 0; i < len2; i++) {
  389. arr[len1 + i] = arr2[i];
  390. }
  391. return arr;
  392. }
  393. module.exports = {
  394. readServiceID: readServiceID,
  395. readID: readID,
  396. writeServiceID: writeServiceID,
  397. writeID: writeID,
  398. MTU: MTU,
  399. acceptDevice: acceptDevice,
  400. sendGetCabinetInfoCommand: sendGetCabinetInfoCommand,
  401. isDevice: isDevice,
  402. sendHireCommand: sendHireCommand,
  403. sendBackCommand: sendBackCommand,
  404. sendExchangeCommand: sendExchangeCommand,
  405. sendConfirmCommand: sendConfirmCommand,
  406. sendCancelCommand: sendCancelCommand,
  407. alterConnect: alterConnect,
  408. readData: readData,
  409. isSingleBt: isSingleBt
  410. };