1 # git-gui remote branch deleting support
2 # Copyright (C) 2007 Shawn Pearce
4 class remote_branch_delete {
13 field checktype {head}
25 constructor dialog {} {
26 global all_remotes M1B
29 wm title $top [append "[appname] ([reponame]): " [mc "Delete Remote Branch"]]
31 wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
34 label $w.header -text [mc "Delete Remote Branch"] -font font_uibold
35 pack $w.header -side top -fill x
38 button $w.buttons.delete -text [mc Delete] \
41 pack $w.buttons.delete -side right
42 button $w.buttons.cancel -text [mc "Cancel"] \
43 -command [list destroy $w]
44 pack $w.buttons.cancel -side right -padx 5
45 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
47 labelframe $w.dest -text [mc "From Repository"]
48 if {$all_remotes ne {}} {
49 radiobutton $w.dest.remote_r \
50 -text [mc "Remote:"] \
53 eval tk_optionMenu $w.dest.remote_m @remote $all_remotes
54 grid $w.dest.remote_r $w.dest.remote_m -sticky w
55 if {[lsearch -sorted -exact $all_remotes origin] != -1} {
58 set remote [lindex $all_remotes 0]
61 trace add variable @remote write [cb _write_remote]
65 radiobutton $w.dest.url_r \
66 -text [mc "Arbitrary URL:"] \
76 if {%d == 1 && [regexp {\s} %S]} {return 0}
79 trace add variable @url write [cb _write_url]
80 grid $w.dest.url_r $w.dest.url_t -sticky we -padx {0 5}
81 grid columnconfigure $w.dest 1 -weight 1
82 pack $w.dest -anchor nw -fill x -pady 5 -padx 5
84 labelframe $w.heads -text [mc "Branches"]
88 -listvariable @head_list \
89 -selectmode extended \
90 -yscrollcommand [list $w.heads.sby set]
91 scrollbar $w.heads.sby -command [list $w.heads.l yview]
94 label $w.heads.footer.status \
95 -textvariable @status \
98 button $w.heads.footer.rescan \
100 -command [cb _rescan]
101 pack $w.heads.footer.status -side left -fill x
102 pack $w.heads.footer.rescan -side right
104 pack $w.heads.footer -side bottom -fill x
105 pack $w.heads.sby -side right -fill y
106 pack $w.heads.l -side left -fill both -expand 1
107 pack $w.heads -fill both -expand 1 -pady 5 -padx 5
109 labelframe $w.validate -text [mc "Delete Only If"]
110 radiobutton $w.validate.head_r \
111 -text [mc "Merged Into:"] \
114 set head_m [tk_optionMenu $w.validate.head_m @check_head {}]
115 trace add variable @head_list write [cb _write_head_list]
116 trace add variable @check_head write [cb _write_check_head]
117 grid $w.validate.head_r $w.validate.head_m -sticky w
118 radiobutton $w.validate.always_r \
119 -text [mc "Always (Do not perform merge checks)"] \
122 grid $w.validate.always_r -columnspan 2 -sticky w
123 grid columnconfigure $w.validate 1 -weight 1
124 pack $w.validate -anchor nw -fill x -pady 5 -padx 5
126 trace add variable @urltype write [cb _write_urltype]
129 bind $w <Key-F5> [cb _rescan]
130 bind $w <$M1B-Key-r> [cb _rescan]
131 bind $w <$M1B-Key-R> [cb _rescan]
132 bind $w <Key-Return> [cb _delete]
133 bind $w <Key-Escape> [list destroy $w]
139 remote {set uri $remote}
143 set cache $urltype:$uri
145 if {$checktype eq {head}} {
146 if {$check_head eq {}} {
150 -title [wm title $w] \
152 -message [mc "A branch is required for 'Merged Into'."]
155 set crev $full_cache("$cache\nrefs/heads/$check_head")
158 set not_merged [list]
161 set push_cmd [list git push]
163 lappend push_cmd $uri
165 foreach i [$w.heads.l curselection] {
166 set ref [lindex $full_list $i]
168 set obj $full_cache("$cache\n$ref")
169 if {[catch {set m [git merge-base $obj $crev]}]} {
174 lappend not_merged [lindex $head_list $i]
179 lappend push_cmd :$ref
183 if {$not_merged ne {}} {
184 set msg [mc "The following branches are not completely merged into %s:
186 - %s" $check_head [join $not_merged "\n - "]]
189 append msg "\n\n" [mc "One or more of the merge tests failed because you have not fetched the necessary commits. Try fetching from %s first." $uri]
195 -title [wm title $w] \
198 if {!$have_selection} return
201 if {!$have_selection} {
205 -title [wm title $w] \
207 -message [mc "Please select one or more branches to delete."]
214 -title [wm title $w] \
216 -message [mc "Recovering deleted branches is difficult.
218 Delete the selected branches?"]] ne yes} {
224 set cons [console::new \
226 [mc "Deleting branches from %s" $uri]]
227 console::exec $cons $push_cmd
230 method _rescan {{force 1}} {
232 remote {set uri $remote}
237 unset -nocomplain cached($urltype:$uri)
240 if {$idle_id ne {}} {
241 after cancel $idle_id
245 _load $this $urltype:$uri $uri
248 method _write_remote {args} { set urltype remote }
249 method _write_url {args} { set urltype url }
250 method _write_check_head {args} { set checktype head }
252 method _write_head_list {args} {
254 foreach abr $head_list {
255 $head_m insert end radiobutton \
258 -variable @check_head
260 if {[lsearch -exact -sorted $head_list $check_head] < 0} {
265 method _write_urltype {args} {
266 if {$urltype eq {url}} {
267 if {$idle_id ne {}} {
268 after cancel $idle_id
271 set idle_id [after 1000 [cb _rescan 0]]
277 method _load {cache uri} {
278 if {$active_ls ne {}} {
279 catch {close $active_ls}
283 $w.heads.l conf -state disabled
286 set status [mc "No repository selected."]
290 if {[catch {set x $cached($cache)}]} {
291 set status [mc "Scanning %s..." $uri]
292 $w.heads.l conf -state disabled
295 set head_cache($cache) [list]
296 set full_cache($cache) [list]
297 set active_ls [git_read ls-remote $uri]
298 fconfigure $active_ls \
302 fileevent $active_ls readable [cb _read $cache $active_ls]
305 set full_list $full_cache($cache)
306 set head_list $head_cache($cache)
307 $w.heads.l conf -state normal
311 method _read {cache fd} {
312 if {$fd ne $active_ls} {
317 while {[gets $fd line] >= 0} {
318 if {[string match {*^{}} $line]} continue
319 if {[regexp {^([0-9a-f]{40}) (.*)$} $line _junk obj ref]} {
320 if {[regsub ^refs/heads/ $ref {} abr]} {
321 lappend head_list $abr
322 lappend head_cache($cache) $abr
323 lappend full_list $ref
324 lappend full_cache($cache) $ref
325 set full_cache("$cache\n$ref") $obj
331 if {[catch {close $fd} err]} {
338 $w.heads.l conf -state normal