2023-01-02 18:28:18 +08:00
|
|
|
local ffi = require("ffi")
|
|
|
|
|
2022-12-27 20:34:07 +08:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
---@class LazyStats
|
|
|
|
M._stats = {
|
|
|
|
-- startuptime in milliseconds till UIEnter
|
|
|
|
startuptime = 0,
|
|
|
|
-- when true, startuptime is the accurate cputime for the Neovim process. (Linux & Macos)
|
|
|
|
-- this is more accurate than `nvim --startuptime`, and as such will be slightly higher
|
|
|
|
-- when false, startuptime is calculated based on a delta with a timestamp when lazy started.
|
|
|
|
startuptime_cputime = false,
|
|
|
|
count = 0, -- total number of plugins
|
|
|
|
loaded = 0, -- number of loaded plugins
|
2023-01-02 18:28:18 +08:00
|
|
|
---@type table<string, number>
|
|
|
|
times = {},
|
2022-12-27 20:34:07 +08:00
|
|
|
}
|
|
|
|
|
2023-01-02 18:28:18 +08:00
|
|
|
---@type ffi.namespace*|boolean
|
|
|
|
M.C = nil
|
|
|
|
|
2022-12-27 20:34:07 +08:00
|
|
|
function M.on_ui_enter()
|
2023-01-02 18:28:18 +08:00
|
|
|
M._stats.startuptime = M.track("UIEnter")
|
2023-01-03 00:42:12 +08:00
|
|
|
M._stats.startuptime_cputime = M.C ~= false
|
2023-01-02 18:28:18 +08:00
|
|
|
vim.cmd([[do User LazyVimStarted]])
|
|
|
|
end
|
2022-12-27 20:34:07 +08:00
|
|
|
|
2023-01-02 18:28:18 +08:00
|
|
|
function M.track(event)
|
|
|
|
local time = M.cputime()
|
|
|
|
M._stats.times[event] = time
|
|
|
|
return time
|
|
|
|
end
|
|
|
|
|
|
|
|
function M.cputime()
|
|
|
|
if M.C == nil then
|
2023-01-03 00:42:12 +08:00
|
|
|
M.C = false
|
2023-01-03 00:10:54 +08:00
|
|
|
pcall(function()
|
2023-01-02 18:28:18 +08:00
|
|
|
ffi.cdef([[
|
2022-12-27 20:34:07 +08:00
|
|
|
typedef long time_t;
|
|
|
|
typedef int clockid_t;
|
|
|
|
typedef struct timespec {
|
|
|
|
time_t tv_sec; /* seconds */
|
|
|
|
long tv_nsec; /* nanoseconds */
|
|
|
|
} nanotime;
|
|
|
|
int clock_gettime(clockid_t clk_id, struct timespec *tp);
|
|
|
|
]])
|
2023-01-03 03:50:10 +08:00
|
|
|
if ffi.C.clock_gettime then
|
2023-01-03 00:42:12 +08:00
|
|
|
M.C = ffi.C
|
|
|
|
end
|
2023-01-02 18:28:18 +08:00
|
|
|
end)
|
|
|
|
end
|
2023-01-03 00:42:12 +08:00
|
|
|
if M.C then
|
2022-12-27 20:34:07 +08:00
|
|
|
local pnano = assert(ffi.new("nanotime[?]", 1))
|
|
|
|
local CLOCK_PROCESS_CPUTIME_ID = jit.os == "OSX" and 12 or 2
|
|
|
|
ffi.C.clock_gettime(CLOCK_PROCESS_CPUTIME_ID, pnano)
|
2023-01-02 18:28:18 +08:00
|
|
|
return tonumber(pnano[0].tv_sec) / 1e6 + tonumber(pnano[0].tv_nsec) / 1e6
|
|
|
|
else
|
|
|
|
return (vim.loop.hrtime() - require("lazy")._start) / 1e6
|
2022-12-27 20:34:07 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function M.stats()
|
|
|
|
M._stats.count = 0
|
|
|
|
M._stats.loaded = 0
|
|
|
|
for _, plugin in pairs(require("lazy.core.config").plugins) do
|
|
|
|
M._stats.count = M._stats.count + 1
|
|
|
|
if plugin._.loaded then
|
|
|
|
M._stats.loaded = M._stats.loaded + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return M._stats
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|