Skip to content

Commit c2f7e2d

Browse files
committed
feat(ui): added extra cache stats to the debug tab
1 parent 34977c2 commit c2f7e2d

File tree

1 file changed

+40
-4
lines changed

1 file changed

+40
-4
lines changed

lua/lazy/view/render.lua

+40-4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ local Handler = require("lazy.core.handler")
55
local Git = require("lazy.manage.git")
66
local Plugin = require("lazy.core.plugin")
77
local ViewConfig = require("lazy.view.config")
8+
local Cache = require("lazy.core.cache")
89

910
local Text = require("lazy.view.text")
1011

@@ -240,6 +241,13 @@ function M:diagnostic(diag)
240241
table.insert(self._diagnostics, diag)
241242
end
242243

244+
---@param precision? number
245+
function M:ms(nsec, precision)
246+
precision = precision or 2
247+
local e = math.pow(10, precision)
248+
return math.floor(nsec / 1e6 * e + 0.5) / e .. "ms"
249+
end
250+
243251
---@param reason? {[string]:string, time:number}
244252
---@param opts? {time_right?:boolean}
245253
function M:reason(reason, opts)
@@ -275,7 +283,7 @@ function M:reason(reason, opts)
275283
reason.runtime = reason.runtime:gsub(".*/([^/]+/ftdetect/.*)", "%1")
276284
reason.runtime = reason.runtime:gsub(".*/(runtime/.*)", "%1")
277285
end
278-
local time = reason.time and (" " .. math.floor(reason.time / 1e6 * 100) / 100 .. "ms")
286+
local time = reason.time and (" " .. self:ms(reason.time))
279287
if time and not opts.time_right then
280288
self:append(time, "Bold")
281289
self:append(" ")
@@ -473,21 +481,29 @@ function M:details(plugin)
473481
})
474482
end
475483
end
484+
self:props(props, { indent = 6 })
485+
486+
self:nl()
487+
end
476488

489+
---@alias LazyProps {[1]:string, [2]:string|fun(), [3]?:string}[]
490+
---@param props LazyProps
491+
---@param opts? {indent: number}
492+
function M:props(props, opts)
493+
opts = opts or {}
477494
local width = 0
478495
for _, prop in ipairs(props) do
479496
width = math.max(width, #prop[1])
480497
end
481498
for _, prop in ipairs(props) do
482-
self:append(prop[1] .. string.rep(" ", width - #prop[1] + 1), "LazyProp", { indent = 6 })
499+
self:append(prop[1] .. string.rep(" ", width - #prop[1] + 1), "LazyProp", { indent = opts.indent or 0 })
483500
if type(prop[2]) == "function" then
484501
prop[2]()
485502
else
486-
self:append(prop[2], prop[3] or "LazyValue")
503+
self:append(tostring(prop[2]), prop[3] or "LazyValue")
487504
end
488505
self:nl()
489506
end
490-
self:nl()
491507
end
492508

493509
function M:profile()
@@ -598,6 +614,26 @@ function M:debug()
598614
end)
599615
end)
600616
self:nl()
617+
618+
self:append("Cache.find()", "LazyH2"):nl()
619+
self:props({
620+
{ "total", Cache.stats.find.total, "Number" },
621+
{ "time", self:ms(Cache.stats.find.time, 3), "Bold" },
622+
{ "avg time", self:ms(Cache.stats.find.time / Cache.stats.find.total, 3), "Bold" },
623+
{ "index", Cache.stats.find.index, "Number" },
624+
{ "fs_stat", Cache.stats.find.stat, "Number" },
625+
{ "not found", Cache.stats.find.not_found, "Number" },
626+
}, { indent = 2 })
627+
self:nl()
628+
629+
self:append("Cache.autoload()", "LazyH2"):nl()
630+
self:props({
631+
{ "total", Cache.stats.autoload.total, "Number" },
632+
{ "time", self:ms(Cache.stats.autoload.time, 3), "Bold" },
633+
{ "avg time", self:ms(Cache.stats.autoload.time / Cache.stats.autoload.total, 3), "Bold" },
634+
}, { indent = 2 })
635+
self:nl()
636+
601637
self:append("Cache", "LazyH2"):nl()
602638
local Cache = require("lazy.core.cache")
603639
Util.foreach(Cache.cache, function(modname, entry)

0 commit comments

Comments
 (0)