base.js
2.32 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
/**
* @fileOverview 读写器指令模块基类
* @author qiqi.zhou@yoho.cn
*/
import _ from 'lodash';
import orders from '../interface';
import {
log, returnProc, locateOrder
}
from '../util';
/**
* @class 读写器的指令操作基类
* @module lib/directive/Base
* @member {Object} reproc 预处理方法
* @member {object} proc 返回结果处理
*/
class Base {
/**
* 构造函数
* @return {void}
*/
constructor() {
this.reproc = {};
this.proc = {};
}
/**
* @method send
* @description 发送读写器模块指令
* @param {Connector} connector 链接器socket客户端
* @param {Object} order 指令
* @param {Object} param 传参
* @return {void} 无返回
*/
send(connector, order, param) {
let sendOrder = order.input;
if (this.reproc[order.input]) {
sendOrder = this.reproc[order.input](param);
}
connector.send(sendOrder);
let address = connector.client.remoteAddress;
//log.info('读写器(' + address + ')发送指令:' + sendOrder);
}
/**
* @method receive
* @description 接收读写器模块
* @param {client} client socket客户端
* @param {Array} data 接收指令
* @return {Object} 标准输出
*/
receive(client, data) {
let procFunc = this.procFunc,
ret = null,
order;
if (!_.isArray(data) || _.size(data) < 1) {
return;
}
//log.info('读写器(' + client.remoteAddress + ')接收指令:' + data.join(' '));
//读取命令配置
order = locateOrder(orders, data);
if (order.name) {
if (this.proc[order.name]) {
ret = this.proc[order.name](data, client);
} else {
ret = procFunc(data, client, order.name);
}
}
return ret;
}
/**
* @method procFunc
* @description 处理返回结果
* @param {Array} data 返回的结果数组
* @param {Socket} client socket客户端
* @param {String} method 方法名
* @return {Object} 标准输出
*/
procFunc(data, client, method) {
return returnProc(data, client.remoteAddress, orders[method].output);
}
}
/**
* @exports lib/directive/Base
*/
export default Base;