@@ -5,6 +5,7 @@ local Handler = require("lazy.core.handler")
5
5
local Git = require (" lazy.manage.git" )
6
6
local Plugin = require (" lazy.core.plugin" )
7
7
local ViewConfig = require (" lazy.view.config" )
8
+ local Cache = require (" lazy.core.cache" )
8
9
9
10
local Text = require (" lazy.view.text" )
10
11
@@ -240,6 +241,13 @@ function M:diagnostic(diag)
240
241
table.insert (self ._diagnostics , diag )
241
242
end
242
243
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
+
243
251
--- @param reason ? { [string] : string , time : number }
244
252
--- @param opts ? { time_right ?: boolean }
245
253
function M :reason (reason , opts )
@@ -275,7 +283,7 @@ function M:reason(reason, opts)
275
283
reason .runtime = reason .runtime :gsub (" .*/([^/]+/ftdetect/.*)" , " %1" )
276
284
reason .runtime = reason .runtime :gsub (" .*/(runtime/.*)" , " %1" )
277
285
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 ) )
279
287
if time and not opts .time_right then
280
288
self :append (time , " Bold" )
281
289
self :append (" " )
@@ -473,21 +481,29 @@ function M:details(plugin)
473
481
})
474
482
end
475
483
end
484
+ self :props (props , { indent = 6 })
485
+
486
+ self :nl ()
487
+ end
476
488
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 {}
477
494
local width = 0
478
495
for _ , prop in ipairs (props ) do
479
496
width = math.max (width , # prop [1 ])
480
497
end
481
498
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 })
483
500
if type (prop [2 ]) == " function" then
484
501
prop [2 ]()
485
502
else
486
- self :append (prop [2 ], prop [3 ] or " LazyValue" )
503
+ self :append (tostring ( prop [2 ]) , prop [3 ] or " LazyValue" )
487
504
end
488
505
self :nl ()
489
506
end
490
- self :nl ()
491
507
end
492
508
493
509
function M :profile ()
@@ -598,6 +614,26 @@ function M:debug()
598
614
end )
599
615
end )
600
616
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
+
601
637
self :append (" Cache" , " LazyH2" ):nl ()
602
638
local Cache = require (" lazy.core.cache" )
603
639
Util .foreach (Cache .cache , function (modname , entry )
0 commit comments