mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 19:38:20 +00:00

Instead of eager-loading during plugin/* sourcing, define runtime modules such as `vim.inspect` as lazy builtins. Otherwise non-builtin Lua modules such as `vim.inspect` would not be available during startup (init.vim, `-c`, `--cmd`, …). ref #6580 ref #8677
211 lines
5.8 KiB
Lua
211 lines
5.8 KiB
Lua
-- Internal-only until comments in #8107 are addressed.
|
|
-- Returns:
|
|
-- {errcode}, {output}
|
|
local function _system(cmd)
|
|
local out = vim.api.nvim_call_function('system', { cmd })
|
|
local err = vim.api.nvim_get_vvar('shell_error')
|
|
return err, out
|
|
end
|
|
|
|
-- Gets process info from the `ps` command.
|
|
-- Used by nvim_get_proc() as a fallback.
|
|
local function _os_proc_info(pid)
|
|
if pid == nil or pid <= 0 or type(pid) ~= 'number' then
|
|
error('invalid pid')
|
|
end
|
|
local cmd = { 'ps', '-p', pid, '-o', 'comm=', }
|
|
local err, name = _system(cmd)
|
|
if 1 == err and string.gsub(name, '%s*', '') == '' then
|
|
return {} -- Process not found.
|
|
elseif 0 ~= err then
|
|
local args_str = vim.api.nvim_call_function('string', { cmd })
|
|
error('command failed: '..args_str)
|
|
end
|
|
local _, ppid = _system({ 'ps', '-p', pid, '-o', 'ppid=', })
|
|
-- Remove trailing whitespace.
|
|
name = string.gsub(string.gsub(name, '%s+$', ''), '^.*/', '')
|
|
ppid = string.gsub(ppid, '%s+$', '')
|
|
ppid = tonumber(ppid) == nil and -1 or tonumber(ppid)
|
|
return {
|
|
name = name,
|
|
pid = pid,
|
|
ppid = ppid,
|
|
}
|
|
end
|
|
|
|
-- Gets process children from the `pgrep` command.
|
|
-- Used by nvim_get_proc_children() as a fallback.
|
|
local function _os_proc_children(ppid)
|
|
if ppid == nil or ppid <= 0 or type(ppid) ~= 'number' then
|
|
error('invalid ppid')
|
|
end
|
|
local cmd = { 'pgrep', '-P', ppid, }
|
|
local err, rv = _system(cmd)
|
|
if 1 == err and string.gsub(rv, '%s*', '') == '' then
|
|
return {} -- Process not found.
|
|
elseif 0 ~= err then
|
|
local args_str = vim.api.nvim_call_function('string', { cmd })
|
|
error('command failed: '..args_str)
|
|
end
|
|
local children = {}
|
|
for s in string.gmatch(rv, '%S+') do
|
|
local i = tonumber(s)
|
|
if i ~= nil then
|
|
table.insert(children, i)
|
|
end
|
|
end
|
|
return children
|
|
end
|
|
|
|
-- TODO(ZyX-I): Create compatibility layer.
|
|
--{{{1 package.path updater function
|
|
-- Last inserted paths. Used to clear out items from package.[c]path when they
|
|
-- are no longer in &runtimepath.
|
|
local last_nvim_paths = {}
|
|
local function _update_package_paths()
|
|
local cur_nvim_paths = {}
|
|
local rtps = vim.api.nvim_list_runtime_paths()
|
|
local sep = package.config:sub(1, 1)
|
|
for _, key in ipairs({'path', 'cpath'}) do
|
|
local orig_str = package[key] .. ';'
|
|
local pathtrails_ordered = {}
|
|
local orig = {}
|
|
-- Note: ignores trailing item without trailing `;`. Not using something
|
|
-- simpler in order to preserve empty items (stand for default path).
|
|
for s in orig_str:gmatch('[^;]*;') do
|
|
s = s:sub(1, -2) -- Strip trailing semicolon
|
|
orig[#orig + 1] = s
|
|
end
|
|
if key == 'path' then
|
|
-- /?.lua and /?/init.lua
|
|
pathtrails_ordered = {sep .. '?.lua', sep .. '?' .. sep .. 'init.lua'}
|
|
else
|
|
local pathtrails = {}
|
|
for _, s in ipairs(orig) do
|
|
-- Find out path patterns. pathtrail should contain something like
|
|
-- /?.so, \?.dll. This allows not to bother determining what correct
|
|
-- suffixes are.
|
|
local pathtrail = s:match('[/\\][^/\\]*%?.*$')
|
|
if pathtrail and not pathtrails[pathtrail] then
|
|
pathtrails[pathtrail] = true
|
|
pathtrails_ordered[#pathtrails_ordered + 1] = pathtrail
|
|
end
|
|
end
|
|
end
|
|
local new = {}
|
|
for _, rtp in ipairs(rtps) do
|
|
if not rtp:match(';') then
|
|
for _, pathtrail in pairs(pathtrails_ordered) do
|
|
local new_path = rtp .. sep .. 'lua' .. pathtrail
|
|
-- Always keep paths from &runtimepath at the start:
|
|
-- append them here disregarding orig possibly containing one of them.
|
|
new[#new + 1] = new_path
|
|
cur_nvim_paths[new_path] = true
|
|
end
|
|
end
|
|
end
|
|
for _, orig_path in ipairs(orig) do
|
|
-- Handle removing obsolete paths originating from &runtimepath: such
|
|
-- paths either belong to cur_nvim_paths and were already added above or
|
|
-- to last_nvim_paths and should not be added at all if corresponding
|
|
-- entry was removed from &runtimepath list.
|
|
if not (cur_nvim_paths[orig_path] or last_nvim_paths[orig_path]) then
|
|
new[#new + 1] = orig_path
|
|
end
|
|
end
|
|
package[key] = table.concat(new, ';')
|
|
end
|
|
last_nvim_paths = cur_nvim_paths
|
|
end
|
|
|
|
local function gsplit(s, sep, plain)
|
|
assert(type(s) == "string")
|
|
assert(type(sep) == "string")
|
|
assert(type(plain) == "boolean" or type(plain) == "nil")
|
|
|
|
local start = 1
|
|
local done = false
|
|
|
|
local function pass(i, j, ...)
|
|
if i then
|
|
assert(j+1 > start, "Infinite loop detected")
|
|
local seg = s:sub(start, i - 1)
|
|
start = j + 1
|
|
return seg, ...
|
|
else
|
|
done = true
|
|
return s:sub(start)
|
|
end
|
|
end
|
|
|
|
return function()
|
|
if done then
|
|
return
|
|
end
|
|
if sep == '' then
|
|
if start == #s then
|
|
done = true
|
|
end
|
|
return pass(start+1, start)
|
|
end
|
|
return pass(s:find(sep, start, plain))
|
|
end
|
|
end
|
|
|
|
local inspect = (function()
|
|
local f
|
|
return function(...)
|
|
if f == nil then f = require('vim.inspect') end
|
|
return f(...)
|
|
end
|
|
end)()
|
|
|
|
local function split(s,sep,plain)
|
|
local t={} for c in gsplit(s, sep, plain) do table.insert(t,c) end
|
|
return t
|
|
end
|
|
|
|
local function trim(s)
|
|
assert(type(s) == "string", "Only strings can be trimmed")
|
|
local result = s:gsub("^%s+", ""):gsub("%s+$", "")
|
|
return result
|
|
end
|
|
|
|
local deepcopy
|
|
|
|
local function id(v)
|
|
return v
|
|
end
|
|
|
|
local deepcopy_funcs = {
|
|
table = function(orig)
|
|
local copy = {}
|
|
for k, v in pairs(orig) do
|
|
copy[deepcopy(k)] = deepcopy(v)
|
|
end
|
|
return copy
|
|
end,
|
|
number = id,
|
|
string = id,
|
|
['nil'] = id,
|
|
boolean = id,
|
|
}
|
|
|
|
deepcopy = function(orig)
|
|
return deepcopy_funcs[type(orig)](orig)
|
|
end
|
|
|
|
local module = {
|
|
_update_package_paths = _update_package_paths,
|
|
_os_proc_children = _os_proc_children,
|
|
_os_proc_info = _os_proc_info,
|
|
_system = _system,
|
|
trim = trim,
|
|
split = split,
|
|
gsplit = gsplit,
|
|
deepcopy = deepcopy,
|
|
inspect = inspect,
|
|
}
|
|
|
|
return module
|