|
| 1 | +local M = {} |
| 2 | + |
| 3 | +---@class LazyStats |
| 4 | +M._stats = { |
| 5 | + -- startuptime in milliseconds till UIEnter |
| 6 | + startuptime = 0, |
| 7 | + -- when true, startuptime is the accurate cputime for the Neovim process. (Linux & Macos) |
| 8 | + -- this is more accurate than `nvim --startuptime`, and as such will be slightly higher |
| 9 | + -- when false, startuptime is calculated based on a delta with a timestamp when lazy started. |
| 10 | + startuptime_cputime = false, |
| 11 | + count = 0, -- total number of plugins |
| 12 | + loaded = 0, -- number of loaded plugins |
| 13 | +} |
| 14 | + |
| 15 | +function M.on_ui_enter() |
| 16 | + if not M.C then |
| 17 | + pcall(function() end) |
| 18 | + end |
| 19 | + |
| 20 | + local ok = pcall(function() |
| 21 | + local ffi = require("ffi") |
| 22 | + ffi.cdef([[ |
| 23 | + typedef long time_t; |
| 24 | + typedef int clockid_t; |
| 25 | +
|
| 26 | + typedef struct timespec { |
| 27 | + time_t tv_sec; /* seconds */ |
| 28 | + long tv_nsec; /* nanoseconds */ |
| 29 | + } nanotime; |
| 30 | + int clock_gettime(clockid_t clk_id, struct timespec *tp); |
| 31 | + ]]) |
| 32 | + local pnano = assert(ffi.new("nanotime[?]", 1)) |
| 33 | + local CLOCK_PROCESS_CPUTIME_ID = jit.os == "OSX" and 12 or 2 |
| 34 | + ffi.C.clock_gettime(CLOCK_PROCESS_CPUTIME_ID, pnano) |
| 35 | + M._stats.startuptime = tonumber(pnano[0].tv_sec) / 1e6 + tonumber(pnano[0].tv_nsec) / 1e6 |
| 36 | + M._stats.startuptime_cputime = true |
| 37 | + end) |
| 38 | + if not ok then |
| 39 | + M._stats.startuptime = (vim.loop.hrtime() - require("lazy")._start) / 1e6 |
| 40 | + end |
| 41 | + vim.cmd([[do User LazyVimStarted]]) |
| 42 | +end |
| 43 | + |
| 44 | +function M.stats() |
| 45 | + M._stats.count = 0 |
| 46 | + M._stats.loaded = 0 |
| 47 | + for _, plugin in pairs(require("lazy.core.config").plugins) do |
| 48 | + M._stats.count = M._stats.count + 1 |
| 49 | + if plugin._.loaded then |
| 50 | + M._stats.loaded = M._stats.loaded + 1 |
| 51 | + end |
| 52 | + end |
| 53 | + return M._stats |
| 54 | +end |
| 55 | + |
| 56 | +return M |
0 commit comments