2007-05-08 05:35:48 +02:00
|
|
|
# git-gui object database management support
|
|
|
|
# Copyright (C) 2006, 2007 Shawn Pearce
|
|
|
|
|
|
|
|
proc do_stats {} {
|
2007-07-09 07:17:09 +02:00
|
|
|
set fd [git_read count-objects -v]
|
2007-05-08 05:35:48 +02:00
|
|
|
while {[gets $fd line] > 0} {
|
|
|
|
if {[regexp {^([^:]+): (\d+)$} $line _ name value]} {
|
|
|
|
set stats($name) $value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close $fd
|
|
|
|
|
|
|
|
set packed_sz 0
|
|
|
|
foreach p [glob -directory [gitdir objects pack] \
|
|
|
|
-type f \
|
|
|
|
-nocomplain -- *] {
|
|
|
|
incr packed_sz [file size $p]
|
|
|
|
}
|
|
|
|
if {$packed_sz > 0} {
|
|
|
|
set stats(size-pack) [expr {$packed_sz / 1024}]
|
|
|
|
}
|
|
|
|
|
|
|
|
set w .stats_view
|
|
|
|
toplevel $w
|
|
|
|
wm geometry $w "+[winfo rootx .]+[winfo rooty .]"
|
|
|
|
|
2007-07-21 14:21:34 +02:00
|
|
|
label $w.header -text [mc "Database Statistics"]
|
2007-05-08 05:35:48 +02:00
|
|
|
pack $w.header -side top -fill x
|
|
|
|
|
|
|
|
frame $w.buttons -border 1
|
2007-07-21 14:21:34 +02:00
|
|
|
button $w.buttons.close -text [mc Close] \
|
2007-05-08 05:35:48 +02:00
|
|
|
-default active \
|
|
|
|
-command [list destroy $w]
|
2007-07-21 14:21:34 +02:00
|
|
|
button $w.buttons.gc -text [mc "Compress Database"] \
|
2007-05-08 05:35:48 +02:00
|
|
|
-default normal \
|
|
|
|
-command "destroy $w;do_gc"
|
|
|
|
pack $w.buttons.close -side right
|
|
|
|
pack $w.buttons.gc -side left
|
|
|
|
pack $w.buttons -side bottom -fill x -pady 10 -padx 10
|
|
|
|
|
|
|
|
frame $w.stat -borderwidth 1 -relief solid
|
|
|
|
foreach s {
|
2007-07-21 14:21:34 +02:00
|
|
|
{count {mc "Number of loose objects"}}
|
|
|
|
{size {mc "Disk space used by loose objects"} { KiB}}
|
|
|
|
{in-pack {mc "Number of packed objects"}}
|
|
|
|
{packs {mc "Number of packs"}}
|
|
|
|
{size-pack {mc "Disk space used by packed objects"} { KiB}}
|
|
|
|
{prune-packable {mc "Packed objects waiting for pruning"}}
|
|
|
|
{garbage {mc "Garbage files"}}
|
2007-05-08 05:35:48 +02:00
|
|
|
} {
|
|
|
|
set name [lindex $s 0]
|
2007-07-21 14:21:34 +02:00
|
|
|
set label [eval [lindex $s 1]]
|
2007-05-08 05:35:48 +02:00
|
|
|
if {[catch {set value $stats($name)}]} continue
|
|
|
|
if {[llength $s] > 2} {
|
|
|
|
set value "$value[lindex $s 2]"
|
|
|
|
}
|
|
|
|
|
|
|
|
label $w.stat.l_$name -text "$label:" -anchor w
|
|
|
|
label $w.stat.v_$name -text $value -anchor w
|
|
|
|
grid $w.stat.l_$name $w.stat.v_$name -sticky we -padx {0 5}
|
|
|
|
}
|
|
|
|
pack $w.stat -pady 10 -padx 10
|
|
|
|
|
|
|
|
bind $w <Visibility> "grab $w; focus $w.buttons.close"
|
|
|
|
bind $w <Key-Escape> [list destroy $w]
|
|
|
|
bind $w <Key-Return> [list destroy $w]
|
2007-07-21 14:21:34 +02:00
|
|
|
wm title $w [append "[appname] ([reponame]): " [mc "Database Statistics"]]
|
2007-05-08 05:35:48 +02:00
|
|
|
tkwait window $w
|
|
|
|
}
|
|
|
|
|
|
|
|
proc do_gc {} {
|
2007-07-21 14:21:34 +02:00
|
|
|
set w [console::new {gc} [mc "Compressing the object database"]]
|
2007-05-09 02:33:47 +02:00
|
|
|
console::chain $w {
|
|
|
|
{exec git pack-refs --prune}
|
|
|
|
{exec git reflog expire --all}
|
|
|
|
{exec git repack -a -d -l}
|
|
|
|
{exec git rerere gc}
|
|
|
|
}
|
2007-05-08 05:35:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
proc do_fsck_objects {} {
|
2007-05-01 08:59:53 +02:00
|
|
|
set w [console::new {fsck-objects} \
|
2007-07-21 14:21:34 +02:00
|
|
|
[mc "Verifying the object database with fsck-objects"]]
|
2007-05-08 05:35:48 +02:00
|
|
|
set cmd [list git fsck-objects]
|
|
|
|
lappend cmd --full
|
|
|
|
lappend cmd --cache
|
|
|
|
lappend cmd --strict
|
2007-05-01 08:59:53 +02:00
|
|
|
console::exec $w $cmd
|
2007-05-08 05:35:48 +02:00
|
|
|
}
|
2007-07-18 05:20:56 +02:00
|
|
|
|
|
|
|
proc hint_gc {} {
|
2009-09-14 00:20:44 +02:00
|
|
|
set ndirs 1
|
|
|
|
set limit 8
|
2007-07-18 05:20:56 +02:00
|
|
|
if {[is_Windows]} {
|
2009-09-14 00:20:44 +02:00
|
|
|
set ndirs 4
|
|
|
|
set limit 1
|
2007-07-18 05:20:56 +02:00
|
|
|
}
|
|
|
|
|
2009-09-14 00:20:44 +02:00
|
|
|
set count [llength [glob \
|
2007-07-18 05:20:56 +02:00
|
|
|
-nocomplain \
|
|
|
|
-- \
|
2009-09-14 00:20:44 +02:00
|
|
|
[gitdir objects 4\[0-[expr {$ndirs-1}]\]/*]]]
|
2007-07-18 05:20:56 +02:00
|
|
|
|
2009-09-14 00:20:44 +02:00
|
|
|
if {$count >= $limit * $ndirs} {
|
|
|
|
set objects_current [expr {$count * 256/$ndirs}]
|
2007-07-18 05:20:56 +02:00
|
|
|
if {[ask_popup \
|
2007-09-13 15:19:05 +02:00
|
|
|
[mc "This repository currently has approximately %i loose objects.
|
2007-07-18 05:20:56 +02:00
|
|
|
|
2009-09-14 00:20:44 +02:00
|
|
|
To maintain optimal performance it is strongly recommended that you compress the database.
|
2007-07-18 05:20:56 +02:00
|
|
|
|
2009-09-14 00:20:44 +02:00
|
|
|
Compress the database now?" $objects_current]] eq yes} {
|
2007-07-18 05:20:56 +02:00
|
|
|
do_gc
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|