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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
local util = require 'utility'
local await = require 'await'
local pub = require 'pub'
local jsonrpc = require 'jsonrpc'
local define = require 'proto.define'
local json = require 'json'
local inspect = require 'inspect'
local platform = require 'bee.platform'
local fs = require 'bee.filesystem'
local net = require 'service.net'
local timer = require 'timer'
local reqCounter = util.counter()
local function logSend(buf)
if not RPCLOG then
return
end
log.info('rpc send:', buf)
end
local function logRecieve(proto)
if not RPCLOG then
return
end
log.info('rpc recieve:', json.encode(proto))
end
---@class proto
local m = {}
m.ability = {}
m.waiting = {}
m.holdon = {}
m.mode = 'stdio'
m.client = nil
function m.getMethodName(proto)
if proto.method:sub(1, 2) == '$/' then
return proto.method, true
else
return proto.method, false
end
end
---@param callback async fun()
function m.on(method, callback)
m.ability[method] = callback
end
function m.send(data)
local buf = jsonrpc.encode(data)
logSend(buf)
if m.mode == 'stdio' then
io.write(buf)
elseif m.mode == 'socket' then
m.client:write(buf)
end
end
function m.response(id, res)
if id == nil then
log.error('Response id is nil!', inspect(res))
return
end
if not m.holdon[id] then
log.error('Unknown response id!', id)
return
end
m.holdon[id] = nil
local data = {}
data.id = id
data.result = res == nil and json.null or res
m.send(data)
end
function m.responseErr(id, code, message)
if id == nil then
log.error('Response id is nil!', inspect(message))
return
end
if not m.holdon[id] then
log.error('Unknown response id!', id)
return
end
m.holdon[id] = nil
m.send {
id = id,
error = {
code = code,
message = message,
}
}
end
function m.notify(name, params)
m.send {
method = name,
params = params,
}
end
---@async
function m.awaitRequest(name, params)
local id = reqCounter()
m.send {
id = id,
method = name,
params = params,
}
local result, error = await.wait(function (resume)
m.waiting[id] = {
id = id,
method = name,
params = params,
resume = resume,
}
end)
if error then
log.warn(('Response of [%s] error [%d]: %s'):format(name, error.code, error.message))
end
return result
end
function m.request(name, params, callback)
local id = reqCounter()
m.send {
id = id,
method = name,
params = params,
}
m.waiting[id] = {
id = id,
method = name,
params = params,
resume = function (result, error)
if error then
log.warn(('Response of [%s] error [%d]: %s'):format(name, error.code, error.message))
end
if callback then
callback(result)
end
end
}
end
local secretOption = {
process = function (item, path)
if path[1] == 'params'
and path[2] == 'textDocument'
and path[3] == 'text'
and path[4] == nil then
return '"***"'
end
return item
end
}
m.methodQueue = {}
function m.applyMethod(proto)
logRecieve(proto)
local method, optional = m.getMethodName(proto)
local abil = m.ability[method]
if proto.id then
m.holdon[proto.id] = proto
end
if not abil then
if not optional then
log.warn('Recieved unknown proto: ' .. method)
end
if proto.id then
m.responseErr(proto.id, define.ErrorCodes.MethodNotFound, method)
end
return
end
await.call(function () ---@async
--log.debug('Start method:', method)
if proto.id then
await.setID('proto:' .. proto.id)
end
local clock = os.clock()
local ok = false
local res
-- 任务可能在执行过程中被中断,通过close来捕获
local response <close> = function ()
local passed = os.clock() - clock
if passed > 0.5 then
log.warn(('Method [%s] takes [%.3f]sec. %s'):format(method, passed, inspect(proto, secretOption)))
end
--log.debug('Finish method:', method)
if not proto.id then
return
end
await.close('proto:' .. proto.id)
if ok then
m.response(proto.id, res)
else
m.responseErr(proto.id, proto._closeReason or define.ErrorCodes.InternalError, proto._closeMessage or res)
end
end
ok, res = xpcall(abil, log.error, proto.params, proto.id)
await.delay()
end)
end
function m.applyMethodQueue()
local queue = m.methodQueue
m.methodQueue = {}
local canceled = {}
for _, proto in ipairs(queue) do
if proto.method == '$/cancelRequest' then
canceled[proto.params.id] = true
end
end
for _, proto in ipairs(queue) do
if not canceled[proto.id] then
m.applyMethod(proto)
end
end
end
function m.doMethod(proto)
m.methodQueue[#m.methodQueue+1] = proto
if #m.methodQueue > 1 then
return
end
timer.wait(0, m.applyMethodQueue)
end
function m.close(id, reason, message)
local proto = m.holdon[id]
if not proto then
return
end
proto._closeReason = reason
proto._closeMessage = message
await.close('proto:' .. id)
end
function m.doResponse(proto)
logRecieve(proto)
local id = proto.id
local waiting = m.waiting[id]
if not waiting then
log.warn('Response id not found: ' .. inspect(proto))
return
end
m.waiting[id] = nil
if proto.error then
waiting.resume(nil, proto.error)
return
end
waiting.resume(proto.result)
end
function m.listen(mode, socketPort)
m.mode = mode
if mode == 'stdio' then
log.info('Listen Mode: stdio')
if platform.os == 'windows' then
local windows = require 'bee.windows'
windows.filemode(io.stdin, 'b')
windows.filemode(io.stdout, 'b')
end
io.stdin:setvbuf 'no'
io.stdout:setvbuf 'no'
pub.task('loadProtoByStdio')
elseif mode == 'socket' then
local unixFolder = LOGPATH .. '/unix'
fs.create_directories(fs.path(unixFolder))
local unixPath = unixFolder .. '/' .. tostring(socketPort)
local server = net.listen('unix', unixPath)
log.info('Listen Mode: socket')
log.info('Listen Port:', socketPort)
log.info('Listen Path:', unixPath)
assert(server)
local dummyClient = {
buf = '',
write = function (self, data)
self.buf = self.buf.. data
end,
update = function () end,
}
m.client = dummyClient
function server:on_accepted(client)
m.client = client
client:write(dummyClient.buf)
return true
end
function server:on_error(...)
log.error(...)
end
pub.task('loadProtoBySocket', {
port = socketPort,
unixPath = unixPath,
})
end
end
return m
|