|
@@ -1,154 +0,0 @@
|
1
|
|
-const protocal = {
|
2
|
|
- protocol: 'json',
|
3
|
|
- version: 1,
|
4
|
|
-}
|
5
|
|
-
|
6
|
|
-const MessageType = {
|
7
|
|
- /** Indicates the message is an Invocation message and implements the {@link InvocationMessage} interface. */
|
8
|
|
- Invocation: 1,
|
9
|
|
- /** Indicates the message is a StreamItem message and implements the {@link StreamItemMessage} interface. */
|
10
|
|
- StreamItem: 2,
|
11
|
|
- /** Indicates the message is a Completion message and implements the {@link CompletionMessage} interface. */
|
12
|
|
- Completion: 3,
|
13
|
|
- /** Indicates the message is a Stream Invocation message and implements the {@link StreamInvocationMessage} interface. */
|
14
|
|
- StreamInvocation: 4,
|
15
|
|
- /** Indicates the message is a Cancel Invocation message and implements the {@link CancelInvocationMessage} interface. */
|
16
|
|
- CancelInvocation: 5,
|
17
|
|
- /** Indicates the message is a Ping message and implements the {@link PingMessage} interface. */
|
18
|
|
- Ping: 6,
|
19
|
|
- /** Indicates the message is a Close message and implements the {@link CloseMessage} interface. */
|
20
|
|
- Close: 7,
|
21
|
|
-}
|
22
|
|
-
|
23
|
|
-export class HubConnection {
|
24
|
|
-
|
25
|
|
- // 构造函数
|
26
|
|
- constructor() {
|
27
|
|
- this.connection = {}
|
28
|
|
- this.openStatus = false
|
29
|
|
- this.invocationId = 0
|
30
|
|
- }
|
31
|
|
-
|
32
|
|
- // 创建链接
|
33
|
|
- connectSocket(option = {}) {
|
34
|
|
- if (this.connection != null && this.openStatus) {
|
35
|
|
- return
|
36
|
|
- }
|
37
|
|
-
|
38
|
|
- this.connection = uni.connectSocket({
|
39
|
|
- ...option,
|
40
|
|
- success: () => {
|
41
|
|
- console.log('建立连接成功')
|
42
|
|
- },
|
43
|
|
- fail: () => {
|
44
|
|
- console.log('建立连接失败')
|
45
|
|
- },
|
46
|
|
- })
|
47
|
|
- this.onOpen(() => {
|
48
|
|
- console.log('连接打开')
|
49
|
|
- this.openStatus = true
|
50
|
|
- this.send(protocal)
|
51
|
|
- })
|
52
|
|
- this.onClose(() => {
|
53
|
|
- console.log('连接关闭')
|
54
|
|
- this.connection = null
|
55
|
|
- this.openStatus = false
|
56
|
|
- })
|
57
|
|
- this.onError(res => {
|
58
|
|
- console.error('连接出错:' + res.errMsg)
|
59
|
|
- })
|
60
|
|
- }
|
61
|
|
-
|
62
|
|
- // 监听连接打开事件
|
63
|
|
- onOpen(callback) {
|
64
|
|
- this.connection.onOpen(res => {
|
65
|
|
- callback(res)
|
66
|
|
- })
|
67
|
|
- }
|
68
|
|
-
|
69
|
|
- // 监听连接关闭事件
|
70
|
|
- onClose(callback) {
|
71
|
|
- this.connection.onClose(res => {
|
72
|
|
- callback(res)
|
73
|
|
- })
|
74
|
|
- }
|
75
|
|
-
|
76
|
|
- // 监听连接错误事件
|
77
|
|
- onError(callback) {
|
78
|
|
- this.connection.onError(res => {
|
79
|
|
- callback(res)
|
80
|
|
- })
|
81
|
|
- }
|
82
|
|
-
|
83
|
|
- // 接收服务器消息事件
|
84
|
|
- onMessage(callback) {
|
85
|
|
- this.connection.onMessage(res => {
|
86
|
|
- let data = res.data.split('')
|
87
|
|
- data.length = data.length - 1
|
88
|
|
-
|
89
|
|
- data.forEach(item => {
|
90
|
|
- let message = JSON.parse(item)
|
91
|
|
- if (message.type === MessageType.Invocation) {
|
92
|
|
- callback(message)
|
93
|
|
- } else if (message.type === MessageType.Completion) {
|
94
|
|
- if (message.error) {
|
95
|
|
- console.error(message.error)
|
96
|
|
- }
|
97
|
|
- }
|
98
|
|
- })
|
99
|
|
- })
|
100
|
|
- }
|
101
|
|
-
|
102
|
|
- // 发送数据
|
103
|
|
- send(data, success, fail) {
|
104
|
|
- this.connection.send({
|
105
|
|
- data: JSON.stringify(data) + '',
|
106
|
|
- success: success,
|
107
|
|
- fail: fail,
|
108
|
|
- })
|
109
|
|
- }
|
110
|
|
-
|
111
|
|
- // 发送消息
|
112
|
|
- sendData(functionName) {
|
113
|
|
- let args = []
|
114
|
|
- for (let i = 1; i < arguments.length; i++) {
|
115
|
|
- args[i - 1] = arguments[i]
|
116
|
|
- }
|
117
|
|
-
|
118
|
|
- let data = {
|
119
|
|
- target: functionName,
|
120
|
|
- arguments: args,
|
121
|
|
- type: MessageType.Invocation,
|
122
|
|
- invocationId: this.invocationId.toString(),
|
123
|
|
- }
|
124
|
|
- this.invocationId++
|
125
|
|
-
|
126
|
|
- return new Promise((resolve, reject) => {
|
127
|
|
- this.connection.send({
|
128
|
|
- data: JSON.stringify(data) + '',
|
129
|
|
- success: res => {
|
130
|
|
- resolve(res)
|
131
|
|
- },
|
132
|
|
- fail: res => {
|
133
|
|
- reject(res)
|
134
|
|
- },
|
135
|
|
- })
|
136
|
|
- })
|
137
|
|
- }
|
138
|
|
-
|
139
|
|
- // 关闭连接
|
140
|
|
- close(option = {}) {
|
141
|
|
- this.connection.close({
|
142
|
|
- code: option.code || 1000,
|
143
|
|
- reason: option.reason || '客户端主动关闭',
|
144
|
|
- success: () => {
|
145
|
|
- this.openStatus = false
|
146
|
|
- console.log('主动关闭连接')
|
147
|
|
- },
|
148
|
|
- fail: res => {
|
149
|
|
- console.log('主动关闭连接失败')
|
150
|
|
- console.log(res)
|
151
|
|
- },
|
152
|
|
- })
|
153
|
|
- }
|
154
|
|
-}
|