summaryrefslogtreecommitdiff
path: root/server/src/service.lua
blob: 9f05ad1bea51bcd0453301ce33966ae1d6966f20 (plain)
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
local sleep      = require 'ffi.sleep'
local subprocess = require 'bee.subprocess'
local lsp        = require 'lsp'
local Method     = require 'method'
local fs         = require 'bee.filesystem'

local function listen(self, input, output)
    if input then
        log.info('指定输入文件,路径为:', input)
        fs.create_directories(input:parent_path())
        io.input(io.open(input:string(), 'rb'))
    else
        subprocess.filemode(io.stdin, 'b')
    end
    if output then
        log.info('指定输出文件,路径为:', output)
        fs.create_directories(output:parent_path())
        io.output(io.open(output:string(), 'wb'))
    else
        subprocess.filemode(io.stdout, 'b')
    end
    io.input():setvbuf 'no'
    io.output():setvbuf 'no'

    local session = lsp()
    local cache = ''
    session:setInput(function (mode)
        local num = subprocess.peek(io.input())
        if num > 0 then
            cache = cache .. io.read(num)
        end
        if type(mode) == 'number' then
            if #cache < mode then
                return nil
            end
            local res = cache:sub(1, mode)
            cache = cache:sub(mode + 1)
            return res
        elseif mode == 'l' then
            local pos = cache:find '[\r\n]'
            if not pos then
                return nil
            end
            local res = cache:sub(1, pos - 1)
            if cache:sub(pos, pos + 1) == '\r\n' then
                cache = cache:sub(pos + 2)
            else
                cache = cache:sub(pos + 1)
            end
            return res
        end
        return nil
    end)
    session:setOutput(function (buf)
        io.write(buf)
    end)
    session:setMethod(function (method, params)
        local optional
        if method:sub(1, 2) == '$/' then
            method = method:sub(3)
            optional = true
        end
        local f = Method[method]
        if f then
            local suc, res, res2 = pcall(f, session, params)
            if suc then
                return res, res2
            else
                return nil, '发生运行时错误:' .. res
            end
        end
        if optional then
            return false
        else
            return nil, '没有注册方法:' .. method
        end
    end)

    while true do
        session:runStep()
        sleep(1)
    end
end

local mt = {
    listen     = listen,
}
mt.__index = mt

return function ()
    local session = setmetatable({}, mt)
    return session
end