Skip to content

Commit 9e157df

Browse files
committed
feat: refactor all vim.loop -> vim.uv and add a shim when needed
1 parent 83493db commit 9e157df

19 files changed

+53
-51
lines changed

lua/lazy/core/cache.lua

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
local uv = vim.loop
1+
local uv = vim.uv
22

33
local M = {}
44

@@ -51,7 +51,7 @@ end
5151
---@private
5252
function Loader.normalize(path)
5353
if path:sub(1, 1) == "~" then
54-
local home = vim.loop.os_homedir() or "~"
54+
local home = vim.uv.os_homedir() or "~"
5555
if home:sub(-1) == "\\" or home:sub(-1) == "/" then
5656
home = home:sub(1, -2)
5757
end
@@ -222,7 +222,7 @@ end
222222
--- Loads the given module path using the cache
223223
---@param modpath string
224224
---@param opts? {hash?: CacheHash, mode?: "b"|"t"|"bt", env?:table} (table|nil) Options for loading the module:
225-
--- - hash: (table) the hash of the file to load if it is already known. (defaults to `vim.loop.fs_stat({modpath})`)
225+
--- - hash: (table) the hash of the file to load if it is already known. (defaults to `vim.uv.fs_stat({modpath})`)
226226
--- - mode: (string) the mode to load the module with. "b"|"t"|"bt" (defaults to `nil`)
227227
--- - env: (table) the environment to load the module in. (defaults to `nil`)
228228
---@see |luaL_loadfile()|
@@ -442,9 +442,9 @@ function Loader.lsmod(path)
442442
if not Loader._indexed[path] then
443443
local start = uv.hrtime()
444444
Loader._indexed[path] = {}
445-
local handle = vim.loop.fs_scandir(path .. "/lua")
445+
local handle = vim.uv.fs_scandir(path .. "/lua")
446446
while handle do
447-
local name, t = vim.loop.fs_scandir_next(handle)
447+
local name, t = vim.uv.fs_scandir_next(handle)
448448
if not name then
449449
break
450450
end
@@ -480,7 +480,7 @@ function M._profile_loaders()
480480
for l, loader in pairs(package.loaders) do
481481
local loc = debug.getinfo(loader, "Sn").source:sub(2)
482482
package.loaders[l] = function(modname)
483-
local start = vim.loop.hrtime()
483+
local start = vim.uv.hrtime()
484484
local ret = loader(modname)
485485
Loader.track("loader " .. l .. ": " .. loc, start)
486486
Loader.track("loader_all", start)

lua/lazy/core/config.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ M.defaults = {
1717
-- leave nil when passing the spec as the first argument to setup()
1818
spec = nil, ---@type LazySpec
1919
lockfile = vim.fn.stdpath("config") .. "/lazy-lock.json", -- lockfile generated after running update.
20-
concurrency = jit.os:find("Windows") and (vim.loop.available_parallelism() * 2) or nil, ---@type number limit the maximum amount of concurrent tasks
20+
concurrency = jit.os:find("Windows") and (vim.uv.available_parallelism() * 2) or nil, ---@type number limit the maximum amount of concurrent tasks
2121
git = {
2222
-- defaults for the `Lazy log` command
2323
-- log = { "--since=3 days ago" }, -- show commits from the last 3 days

lua/lazy/core/loader.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ function M.add_to_rtp(plugin)
472472
table.insert(rtp, idx_dir or (#rtp + 1), plugin.dir)
473473

474474
local after = plugin.dir .. "/after"
475-
if vim.loop.fs_stat(after) then
475+
if vim.uv.fs_stat(after) then
476476
table.insert(rtp, idx_after or (#rtp + 1), after)
477477
end
478478

@@ -495,7 +495,7 @@ function M.colorscheme(name)
495495
if not plugin._.loaded then
496496
for _, ext in ipairs({ "lua", "vim" }) do
497497
local path = plugin.dir .. "/colors/" .. name .. "." .. ext
498-
if vim.loop.fs_stat(path) then
498+
if vim.uv.fs_stat(path) then
499499
return M.load(plugin, { colorscheme = name })
500500
end
501501
end

lua/lazy/core/util.lua

+8-8
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function M.track(data, time)
1212
if data then
1313
local entry = {
1414
data = data,
15-
time = time or vim.loop.hrtime(),
15+
time = time or vim.uv.hrtime(),
1616
}
1717
table.insert(M._profiles[#M._profiles], entry)
1818

@@ -23,7 +23,7 @@ function M.track(data, time)
2323
else
2424
---@type LazyProfile
2525
local entry = table.remove(M._profiles)
26-
entry.time = vim.loop.hrtime() - entry.time
26+
entry.time = vim.uv.hrtime() - entry.time
2727
return entry
2828
end
2929
end
@@ -54,7 +54,7 @@ end
5454
---@return string
5555
function M.norm(path)
5656
if path:sub(1, 1) == "~" then
57-
local home = vim.loop.os_homedir()
57+
local home = vim.uv.os_homedir()
5858
if home:sub(-1) == "\\" or home:sub(-1) == "/" then
5959
home = home:sub(1, -2)
6060
end
@@ -175,9 +175,9 @@ end
175175
---@param path string
176176
---@param fn fun(path: string, name:string, type:FileType):boolean?
177177
function M.ls(path, fn)
178-
local handle = vim.loop.fs_scandir(path)
178+
local handle = vim.uv.fs_scandir(path)
179179
while handle do
180-
local name, t = vim.loop.fs_scandir_next(handle)
180+
local name, t = vim.uv.fs_scandir_next(handle)
181181
if not name then
182182
break
183183
end
@@ -187,7 +187,7 @@ function M.ls(path, fn)
187187
-- HACK: type is not always returned due to a bug in luv,
188188
-- so fecth it with fs_stat instead when needed.
189189
-- see https://github.com/folke/lazy.nvim/issues/306
190-
if fn(fname, name, t or vim.loop.fs_stat(fname).type) == false then
190+
if fn(fname, name, t or vim.uv.fs_stat(fname).type) == false then
191191
break
192192
end
193193
end
@@ -263,7 +263,7 @@ function M.lsmod(modname, fn)
263263
return
264264
end
265265

266-
if vim.loop.fs_stat(root .. ".lua") then
266+
if vim.uv.fs_stat(root .. ".lua") then
267267
fn(modname, root .. ".lua")
268268
end
269269

@@ -272,7 +272,7 @@ function M.lsmod(modname, fn)
272272
fn(modname, path)
273273
elseif (type == "file" or type == "link") and name:sub(-4) == ".lua" then
274274
fn(modname .. "." .. name:sub(1, -5), path)
275-
elseif type == "directory" and vim.loop.fs_stat(path .. "/init.lua") then
275+
elseif type == "directory" and vim.uv.fs_stat(path .. "/init.lua") then
276276
fn(modname .. "." .. name, path .. "/init.lua")
277277
end
278278
end)

lua/lazy/health.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function M.check()
2626
local existing = false
2727
for _, site in pairs(sites) do
2828
for _, packs in ipairs(vim.fn.expand(site .. "/pack/*", false, true)) do
29-
if not packs:find("[/\\]dist$") and vim.loop.fs_stat(packs) then
29+
if not packs:find("[/\\]dist$") and vim.uv.fs_stat(packs) then
3030
existing = true
3131
warn("found existing packages at `" .. packs .. "`")
3232
end
@@ -46,7 +46,7 @@ function M.check()
4646
end
4747

4848
local packer_compiled = vim.fn.stdpath("config") .. "/plugin/packer_compiled.lua"
49-
if vim.loop.fs_stat(packer_compiled) then
49+
if vim.uv.fs_stat(packer_compiled) then
5050
error("please remove the file `" .. packer_compiled .. "`")
5151
else
5252
ok("packer_compiled.lua not found")

lua/lazy/help.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ local Util = require("lazy.util")
44
local M = {}
55

66
function M.index(plugin)
7-
if Config.options.readme.skip_if_doc_exists and vim.loop.fs_stat(plugin.dir .. "/doc") then
7+
if Config.options.readme.skip_if_doc_exists and vim.uv.fs_stat(plugin.dir .. "/doc") then
88
return {}
99
end
1010

@@ -17,7 +17,7 @@ function M.index(plugin)
1717
local tags = {}
1818
for _, file in ipairs(files) do
1919
file = Util.norm(file)
20-
if vim.loop.fs_stat(file) then
20+
if vim.uv.fs_stat(file) then
2121
local rel_file = file:sub(#plugin.dir + 1)
2222
local tag_filename = plugin.name .. vim.fn.fnamemodify(rel_file, ":h"):gsub("%W+", "-"):gsub("^%-$", "")
2323
local lines = vim.split(Util.read_file(file), "\n")
@@ -50,7 +50,7 @@ function M.update()
5050

5151
Util.ls(docs, function(path, name, type)
5252
if type == "file" and name:sub(-2) == "md" then
53-
vim.loop.fs_unlink(path)
53+
vim.uv.fs_unlink(path)
5454
end
5555
end)
5656
---@type {file:string, tag:string, line:string}[]

lua/lazy/init.lua

+7-5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
local M = {}
33
M._start = 0
44

5+
vim.uv = vim.uv or vim.uv
6+
57
local function profile_require()
68
local done = {} ---@type table<string, true>
79
local r = require
@@ -35,7 +37,7 @@ function M.setup(spec, opts)
3537
opts.spec = spec
3638
end
3739

38-
M._start = M._start == 0 and vim.loop.hrtime() or M._start
40+
M._start = M._start == 0 and vim.uv.hrtime() or M._start
3941
if vim.g.lazy_did_setup then
4042
return vim.notify(
4143
"Re-sourcing your config is not supported with lazy.nvim",
@@ -53,7 +55,7 @@ function M.setup(spec, opts)
5355
if not (pcall(require, "ffi") and jit and jit.version) then
5456
return vim.notify("lazy.nvim requires Neovim built with LuaJIT", vim.log.levels.ERROR, { title = "lazy.nvim" })
5557
end
56-
local start = vim.loop.hrtime()
58+
local start = vim.uv.hrtime()
5759

5860
-- use the Neovim cache if available
5961
if vim.loader and vim.fn.has("nvim-0.9.1") == 1 then
@@ -89,7 +91,7 @@ function M.setup(spec, opts)
8991
end
9092

9193
Util.track({ plugin = "lazy.nvim" }) -- setup start
92-
Util.track("module", vim.loop.hrtime() - start)
94+
Util.track("module", vim.uv.hrtime() - start)
9395

9496
-- load config
9597
Util.track("config")
@@ -100,7 +102,7 @@ function M.setup(spec, opts)
100102
Loader.setup()
101103

102104
-- correct time delta and loaded
103-
local delta = vim.loop.hrtime() - start
105+
local delta = vim.uv.hrtime() - start
104106
Util.track().time = delta -- end setup
105107
if Config.plugins["lazy.nvim"] then
106108
Config.plugins["lazy.nvim"]._.loaded = { time = delta, source = "init.lua" }
@@ -120,7 +122,7 @@ end
120122

121123
function M.bootstrap()
122124
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
123-
if not vim.loop.fs_stat(lazypath) then
125+
if not vim.uv.fs_stat(lazypath) then
124126
vim.fn.system({
125127
"git",
126128
"clone",

lua/lazy/manage/process.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ M.signals = {
4141
}
4242

4343
---@diagnostic disable-next-line: no-unknown
44-
local uv = vim.loop
44+
local uv = vim.uv
4545

4646
---@class ProcessOpts
4747
---@field args string[]

lua/lazy/manage/reloader.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function M.enable()
1616
M.timer:stop()
1717
end
1818
if #Config.spec.modules > 0 then
19-
M.timer = assert(vim.loop.new_timer())
19+
M.timer = assert(vim.uv.new_timer())
2020
M.check(true)
2121
M.timer:start(2000, 2000, M.check)
2222
end
@@ -44,7 +44,7 @@ function M.check(start)
4444
-- spec is a module
4545
local function check(_, modpath)
4646
checked[modpath] = true
47-
local hash = vim.loop.fs_stat(modpath)
47+
local hash = vim.uv.fs_stat(modpath)
4848
if hash then
4949
if M.files[modpath] then
5050
if not M.eq(M.files[modpath], hash) then

lua/lazy/manage/runner.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function Runner:start()
9292
end
9393
end
9494

95-
local check = vim.loop.new_check()
95+
local check = vim.uv.new_check()
9696
check:start(function()
9797
if self:resume() then
9898
return

lua/lazy/manage/task/fs.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ M.clean = {
1212
local dir = self.plugin.dir:gsub("/+$", "")
1313
assert(dir:find(Config.options.root, 1, true) == 1, self.plugin.dir .. " should be under packpath!")
1414

15-
local stat = vim.loop.fs_lstat(dir)
15+
local stat = vim.uv.fs_lstat(dir)
1616
assert(stat and stat.type == "directory", self.plugin.dir .. " should be a directory!")
1717

1818
Util.walk(dir, function(path, _, type)
1919
if type == "directory" then
20-
vim.loop.fs_rmdir(path)
20+
vim.uv.fs_rmdir(path)
2121
else
22-
vim.loop.fs_unlink(path)
22+
vim.uv.fs_unlink(path)
2323
end
2424
end)
25-
vim.loop.fs_rmdir(dir)
25+
vim.uv.fs_rmdir(dir)
2626

2727
self.plugin._.installed = false
2828
end,

lua/lazy/manage/task/git.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ M.log = {
1515
if opts.updated and not (plugin._.updated and plugin._.updated.from ~= plugin._.updated.to) then
1616
return true
1717
end
18-
local stat = vim.loop.fs_stat(plugin.dir .. "/.git")
18+
local stat = vim.uv.fs_stat(plugin.dir .. "/.git")
1919
return not (stat and stat.type == "directory")
2020
end,
2121
---@param opts {args?: string[], updated?:boolean, check?:boolean}
@@ -106,7 +106,7 @@ M.clone = {
106106
self.plugin._.cloned = true
107107
self.plugin._.installed = true
108108
self.plugin._.dirty = true
109-
vim.loop.fs_unlink(marker)
109+
vim.uv.fs_unlink(marker)
110110
end
111111
end,
112112
})

lua/lazy/manage/task/init.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function Task:start()
6565
self:start()
6666
end)
6767
end
68-
self._started = vim.loop.hrtime()
68+
self._started = vim.uv.hrtime()
6969
---@type boolean, string|any
7070
local ok, err = pcall(self._task, self, self._opts)
7171
if not ok then
@@ -81,7 +81,7 @@ function Task:_check()
8181
return
8282
end
8383
end
84-
self._ended = vim.loop.hrtime()
84+
self._ended = vim.uv.hrtime()
8585
if self._opts.on_done then
8686
self._opts.on_done(self)
8787
end
@@ -97,7 +97,7 @@ function Task:time()
9797
return 0
9898
end
9999
if not self:is_done() then
100-
return (vim.loop.hrtime() - self._started) / 1e6
100+
return (vim.uv.hrtime() - self._started) / 1e6
101101
end
102102
return (self._ended - self._started) / 1e6
103103
end

lua/lazy/stats.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function M.cputime()
5454
end
5555

5656
local function fallback()
57-
return (vim.loop.hrtime() - require("lazy")._start) / 1e6
57+
return (vim.uv.hrtime() - require("lazy")._start) / 1e6
5858
end
5959

6060
local ok, ret = pcall(real)

lua/lazy/util.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
local M = setmetatable({}, { __index = require("lazy.core.util") })
33

44
function M.file_exists(file)
5-
return vim.loop.fs_stat(file) ~= nil
5+
return vim.uv.fs_stat(file) ~= nil
66
end
77

88
---@param opts? LazyFloatOptions
@@ -71,7 +71,7 @@ end
7171
---@param fn F
7272
---@return F
7373
function M.throttle(ms, fn)
74-
local timer = vim.loop.new_timer()
74+
local timer = vim.uv.new_timer()
7575
local running = false
7676
local first = true
7777

tests/core/e2e_spec.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ describe("lazy", function()
2828
"folke/paint.nvim",
2929
}, { install_missing = true, defaults = { lazy = true } })
3030
assert(3 == vim.tbl_count(Config.plugins))
31-
assert(vim.loop.fs_stat(root .. "/paint.nvim/README.md"))
32-
assert(vim.loop.fs_stat(root .. "/neodev.nvim/README.md"))
31+
assert(vim.uv.fs_stat(root .. "/paint.nvim/README.md"))
32+
assert(vim.uv.fs_stat(root .. "/neodev.nvim/README.md"))
3333
assert(not neodev)
3434
assert(Config.plugins["neodev.nvim"]._.installed)
3535
assert(not Config.plugins["neodev.nvim"]._.is_local)

tests/core/util_spec.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe("util", function()
1212
end
1313
end
1414
Helpers.fs_rm("")
15-
assert(not vim.loop.fs_stat(Helpers.path("")), "fs root should be deleted")
15+
assert(not vim.uv.fs_stat(Helpers.path("")), "fs root should be deleted")
1616
end)
1717

1818
it("lsmod lists all mods in dir", function()
@@ -85,7 +85,7 @@ describe("util", function()
8585
assert.same(Helpers.path("old/lua/foobar"), root)
8686

8787
Helpers.fs_rm("old")
88-
assert(not vim.loop.fs_stat(Helpers.path("old/lua/foobar")), "old/lua/foobar should not exist")
88+
assert(not vim.uv.fs_stat(Helpers.path("old/lua/foobar")), "old/lua/foobar should not exist")
8989

9090
-- vim.opt.rtp = rtp
9191
vim.opt.rtp:append(Helpers.path("new"))

0 commit comments

Comments
 (0)