79 lines
2.1 KiB
Lua
79 lines
2.1 KiB
Lua
|
local fs = require 'bee.filesystem'
|
||
|
local util = require 'utility'
|
||
|
local version = require 'version'
|
||
|
|
||
|
local function getValue(value)
|
||
|
if value == 'true' or value == nil then
|
||
|
value = true
|
||
|
elseif value == 'false' then
|
||
|
value = false
|
||
|
elseif tonumber(value) then
|
||
|
value = tonumber(value)
|
||
|
elseif value:sub(1, 1) == '"' and value:sub(-1, -1) == '"' then
|
||
|
value = value:sub(2, -2)
|
||
|
end
|
||
|
return value
|
||
|
end
|
||
|
|
||
|
local function loadArgs()
|
||
|
local lastKey
|
||
|
for _, v in ipairs(arg) do
|
||
|
---@type string
|
||
|
local key, tail = v:match '^%-%-([%w_]+)(.*)$'
|
||
|
local value
|
||
|
if key then
|
||
|
value = tail:match '=(.+)'
|
||
|
lastKey = nil
|
||
|
if not value then
|
||
|
lastKey = key
|
||
|
end
|
||
|
else
|
||
|
if lastKey then
|
||
|
key = lastKey
|
||
|
value = v
|
||
|
lastKey = nil
|
||
|
end
|
||
|
end
|
||
|
if key then
|
||
|
_G[key:upper()] = getValue(value)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
loadArgs()
|
||
|
|
||
|
local currentPath = debug.getinfo(1, 'S').source:sub(2)
|
||
|
local rootPath = currentPath:gsub('[/\\]*[^/\\]-$', '')
|
||
|
|
||
|
rootPath = (rootPath == '' and '.' or rootPath)
|
||
|
ROOT = fs.path(util.expandPath(rootPath))
|
||
|
LOGPATH = LOGPATH and util.expandPath(LOGPATH) or (ROOT:string() .. '/log')
|
||
|
METAPATH = METAPATH and util.expandPath(METAPATH) or (ROOT:string() .. '/meta')
|
||
|
|
||
|
---@diagnostic disable-next-line: deprecated
|
||
|
debug.setcstacklimit(200)
|
||
|
collectgarbage('generational', 10, 50)
|
||
|
--collectgarbage('incremental', 120, 120, 0)
|
||
|
|
||
|
---@diagnostic disable-next-line: lowercase-global
|
||
|
log = require 'log'
|
||
|
log.init(ROOT, fs.path(LOGPATH) / 'service.log')
|
||
|
if LOGLEVEL then
|
||
|
log.level = tostring(LOGLEVEL):lower()
|
||
|
end
|
||
|
|
||
|
log.info('Lua Lsp startup, root: ', ROOT)
|
||
|
log.info('ROOT:', ROOT:string())
|
||
|
log.info('LOGPATH:', LOGPATH)
|
||
|
log.info('METAPATH:', METAPATH)
|
||
|
log.info('VERSION:', version.getVersion())
|
||
|
|
||
|
require 'tracy'
|
||
|
require 'cli'
|
||
|
|
||
|
xpcall(dofile, log.debug, (ROOT / 'debugger.lua'):string())
|
||
|
|
||
|
local _, service = xpcall(require, log.error, 'service')
|
||
|
|
||
|
service.start()
|