stgit.el: Forbid stgit-{delete,edit,mark,rename} on index and work tree
[stgit] / contrib / stgit.el
CommitLineData
3a59f3db
KH
1;; stgit.el: An emacs mode for StGit
2;;
3;; Copyright (C) 2007 David Kågedal <davidk@lysator.liu.se>
4;;
5;; To install: put this file on the load-path and place the following
6;; in your .emacs file:
7;;
8;; (require 'stgit)
9;;
10;; To start: `M-x stgit'
11
0f076fe6 12(require 'git nil t)
50d88c67 13(require 'cl)
98230edd 14(require 'ewoc)
0f076fe6 15
56d81fe5 16(defun stgit (dir)
a53347d9 17 "Manage StGit patches for the tree in DIR."
56d81fe5 18 (interactive "DDirectory: \n")
52144ce5 19 (switch-to-stgit-buffer (git-get-top-dir dir))
1f0bf00f 20 (stgit-reload))
56d81fe5 21
074a4fb0
GH
22(unless (fboundp 'git-get-top-dir)
23 (defun git-get-top-dir (dir)
24 "Retrieve the top-level directory of a git tree."
25 (let ((cdup (with-output-to-string
26 (with-current-buffer standard-output
27 (cd dir)
28 (unless (eq 0 (call-process "git" nil t nil
29 "rev-parse" "--show-cdup"))
df283a8b 30 (error "Cannot find top-level git tree for %s" dir))))))
074a4fb0
GH
31 (expand-file-name (concat (file-name-as-directory dir)
32 (car (split-string cdup "\n")))))))
33
34(defun stgit-refresh-git-status (&optional dir)
35 "If it exists, refresh the `git-status' buffer belonging to
36directory DIR or `default-directory'"
37 (when (and (fboundp 'git-find-status-buffer)
38 (fboundp 'git-refresh-status))
39 (let* ((top-dir (git-get-top-dir (or dir default-directory)))
40 (git-status-buffer (and top-dir (git-find-status-buffer top-dir))))
41 (when git-status-buffer
42 (with-current-buffer git-status-buffer
43 (git-refresh-status))))))
52144ce5 44
b894e680
DK
45(defun stgit-find-buffer (dir)
46 "Return the buffer displaying StGit patches for DIR, or nil if none."
56d81fe5
DK
47 (setq dir (file-name-as-directory dir))
48 (let ((buffers (buffer-list)))
49 (while (and buffers
50 (not (with-current-buffer (car buffers)
51 (and (eq major-mode 'stgit-mode)
52 (string= default-directory dir)))))
53 (setq buffers (cdr buffers)))
b894e680
DK
54 (and buffers (car buffers))))
55
56(defun switch-to-stgit-buffer (dir)
57 "Switch to a (possibly new) buffer displaying StGit patches for DIR."
58 (setq dir (file-name-as-directory dir))
59 (let ((buffer (stgit-find-buffer dir)))
60 (switch-to-buffer (or buffer
61 (create-stgit-buffer dir)))))
62
2c862b07 63(defstruct (stgit-patch)
3164eec6 64 status name desc empty files-ewoc)
56d81fe5 65
98230edd
DK
66(defun stgit-patch-pp (patch)
67 (let ((status (stgit-patch-status patch))
68 (start (point))
69 (name (stgit-patch-name patch)))
b894e680
DK
70 (case name
71 (:index (insert (propertize " Index" 'face 'italic)))
72 (:work (insert (propertize " Work tree" 'face 'italic)))
73 (t (insert (case status
74 ('applied "+")
75 ('top ">")
76 ('unapplied "-"))
77 (if (memq name stgit-marked-patches)
78 "*" " ")
79 (propertize (format "%-30s"
80 (symbol-name name))
81 'face (case status
82 ('applied 'stgit-applied-patch-face)
83 ('top 'stgit-top-patch-face)
84 ('unapplied 'stgit-unapplied-patch-face)
85 ('index nil)
86 ('work nil)))
87 " "
88 (if (stgit-patch-empty patch) "(empty) " "")
89 (propertize (or (stgit-patch-desc patch) "")
90 'face 'stgit-description-face))))
f9b82d36 91 (put-text-property start (point) 'entry-type 'patch)
98230edd 92 (when (memq name stgit-expanded-patches)
0de6881a 93 (stgit-insert-patch-files patch))
98230edd
DK
94 (put-text-property start (point) 'patch-data patch)))
95
56d81fe5
DK
96(defun create-stgit-buffer (dir)
97 "Create a buffer for showing StGit patches.
98Argument DIR is the repository path."
99 (let ((buf (create-file-buffer (concat dir "*stgit*")))
100 (inhibit-read-only t))
101 (with-current-buffer buf
102 (setq default-directory dir)
103 (stgit-mode)
98230edd
DK
104 (set (make-local-variable 'stgit-ewoc)
105 (ewoc-create #'stgit-patch-pp "Branch:\n" "--"))
56d81fe5
DK
106 (setq buffer-read-only t))
107 buf))
108
109(defmacro stgit-capture-output (name &rest body)
e558a4ab
GH
110 "Capture StGit output and, if there was any output, show it in a window
111at the end.
112Returns nil if there was no output."
94baef5a
DK
113 (declare (debug ([&or stringp null] body))
114 (indent 1))
34afb86c
DK
115 `(let ((output-buf (get-buffer-create ,(or name "*StGit output*")))
116 (stgit-dir default-directory)
117 (inhibit-read-only t))
56d81fe5 118 (with-current-buffer output-buf
34afb86c
DK
119 (erase-buffer)
120 (setq default-directory stgit-dir)
121 (setq buffer-read-only t))
56d81fe5
DK
122 (let ((standard-output output-buf))
123 ,@body)
34afb86c
DK
124 (with-current-buffer output-buf
125 (set-buffer-modified-p nil)
126 (setq buffer-read-only t)
127 (if (< (point-min) (point-max))
128 (display-buffer output-buf t)))))
56d81fe5 129
d51722b7
GH
130(defun stgit-make-run-args (args)
131 "Return a copy of ARGS with its elements converted to strings."
132 (mapcar (lambda (x)
133 ;; don't use (format "%s" ...) to limit type errors
134 (cond ((stringp x) x)
135 ((integerp x) (number-to-string x))
136 ((symbolp x) (symbol-name x))
137 (t
138 (error "Bad element in stgit-make-run-args args: %S" x))))
139 args))
140
9aecd505 141(defun stgit-run-silent (&rest args)
d51722b7 142 (setq args (stgit-make-run-args args))
56d81fe5
DK
143 (apply 'call-process "stg" nil standard-output nil args))
144
9aecd505 145(defun stgit-run (&rest args)
d51722b7 146 (setq args (stgit-make-run-args args))
9aecd505
DK
147 (let ((msgcmd (mapconcat #'identity args " ")))
148 (message "Running stg %s..." msgcmd)
149 (apply 'call-process "stg" nil standard-output nil args)
150 (message "Running stg %s...done" msgcmd)))
151
378a003d 152(defun stgit-run-git (&rest args)
d51722b7 153 (setq args (stgit-make-run-args args))
378a003d
GH
154 (let ((msgcmd (mapconcat #'identity args " ")))
155 (message "Running git %s..." msgcmd)
156 (apply 'call-process "git" nil standard-output nil args)
157 (message "Running git %s...done" msgcmd)))
158
1f60181a 159(defun stgit-run-git-silent (&rest args)
d51722b7 160 (setq args (stgit-make-run-args args))
1f60181a
GH
161 (apply 'call-process "git" nil standard-output nil args))
162
b894e680
DK
163(defun stgit-index-empty-p ()
164 "Returns non-nil if the index contains no changes from HEAD."
165 (zerop (stgit-run-git-silent "diff-index" "--cached" "--quiet" "HEAD")))
166
2ecb05c8
GH
167(defvar stgit-index-node)
168(defvar stgit-worktree-node)
210a2a52
DK
169
170(defun stgit-refresh-index ()
171 (when stgit-index-node
172 (ewoc-invalidate (car stgit-index-node) (cdr stgit-index-node))))
173
174(defun stgit-refresh-worktree ()
175 (when stgit-worktree-node
176 (ewoc-invalidate (car stgit-worktree-node) (cdr stgit-worktree-node))))
177
98230edd
DK
178(defun stgit-run-series (ewoc)
179 (let ((first-line t))
180 (with-temp-buffer
181 (let ((exit-status (stgit-run-silent "series" "--description" "--empty")))
182 (goto-char (point-min))
183 (if (not (zerop exit-status))
184 (cond ((looking-at "stg series: \\(.*\\)")
185 (ewoc-set-hf ewoc (car (ewoc-get-hf ewoc))
186 "-- not initialized (run M-x stgit-init)"))
187 ((looking-at ".*")
188 (error "Error running stg: %s"
189 (match-string 0))))
190 (while (not (eobp))
191 (unless (looking-at
192 "\\([0 ]\\)\\([>+-]\\)\\( \\)\\([^ ]+\\) *[|#] \\(.*\\)")
193 (error "Syntax error in output from stg series"))
194 (let* ((state-str (match-string 2))
195 (state (cond ((string= state-str ">") 'top)
196 ((string= state-str "+") 'applied)
197 ((string= state-str "-") 'unapplied))))
198 (ewoc-enter-last ewoc
199 (make-stgit-patch
200 :status state
201 :name (intern (match-string 4))
202 :desc (match-string 5)
203 :empty (string= (match-string 1) "0"))))
204 (setq first-line nil)
ce3b6130 205 (forward-line 1)))))
210a2a52
DK
206 (if stgit-show-worktree
207 (setq stgit-index-node (cons ewoc (ewoc-enter-last ewoc
208 (make-stgit-patch
209 :status 'index
210 :name :index
211 :desc nil
212 :empty nil)))
213 stgit-worktree-node (cons ewoc (ewoc-enter-last ewoc
214 (make-stgit-patch
215 :status 'work
216 :name :work
217 :desc nil
218 :empty nil))))
219 (setq stgit-worktree-node nil))))
98230edd
DK
220
221
1f0bf00f 222(defun stgit-reload ()
a53347d9 223 "Update the contents of the StGit buffer."
56d81fe5
DK
224 (interactive)
225 (let ((inhibit-read-only t)
226 (curline (line-number-at-pos))
2c862b07 227 (curpatch (stgit-patch-name-at-point)))
98230edd
DK
228 (ewoc-filter stgit-ewoc #'(lambda (x) nil))
229 (ewoc-set-hf stgit-ewoc
230 (concat "Branch: "
231 (propertize
232 (with-temp-buffer
233 (stgit-run-silent "branch")
234 (buffer-substring (point-min) (1- (point-max))))
4f292066 235 'face 'stgit-branch-name-face)
98230edd 236 "\n")
ce3b6130
DK
237 (if stgit-show-worktree
238 "--"
239 (propertize
240 (substitute-command-keys "--\n\"\\[stgit-toggle-worktree]\"\
241 shows the working tree\n")
242 'face 'stgit-description-face)))
98230edd 243 (stgit-run-series stgit-ewoc)
56d81fe5
DK
244 (if curpatch
245 (stgit-goto-patch curpatch)
074a4fb0
GH
246 (goto-line curline)))
247 (stgit-refresh-git-status))
56d81fe5 248
8f40753a
GH
249(defgroup stgit nil
250 "A user interface for the StGit patch maintenance tool."
251 :group 'tools)
252
07f464e0
DK
253(defface stgit-description-face
254 '((((background dark)) (:foreground "tan"))
255 (((background light)) (:foreground "dark red")))
8f40753a
GH
256 "The face used for StGit descriptions"
257 :group 'stgit)
4f292066
GH
258
259(defface stgit-branch-name-face
260 '((t :inherit bold))
261 "The face used for the StGit branch name"
262 :group 'stgit)
07f464e0
DK
263
264(defface stgit-top-patch-face
265 '((((background dark)) (:weight bold :foreground "yellow"))
266 (((background light)) (:weight bold :foreground "purple"))
267 (t (:weight bold)))
8f40753a
GH
268 "The face used for the top patch names"
269 :group 'stgit)
07f464e0
DK
270
271(defface stgit-applied-patch-face
272 '((((background dark)) (:foreground "light yellow"))
273 (((background light)) (:foreground "purple"))
274 (t ()))
8f40753a
GH
275 "The face used for applied patch names"
276 :group 'stgit)
07f464e0
DK
277
278(defface stgit-unapplied-patch-face
279 '((((background dark)) (:foreground "gray80"))
280 (((background light)) (:foreground "orchid"))
281 (t ()))
8f40753a
GH
282 "The face used for unapplied patch names"
283 :group 'stgit)
07f464e0 284
1f60181a
GH
285(defface stgit-modified-file-face
286 '((((class color) (background light)) (:foreground "purple"))
287 (((class color) (background dark)) (:foreground "salmon")))
288 "StGit mode face used for modified file status"
289 :group 'stgit)
290
291(defface stgit-unmerged-file-face
292 '((((class color) (background light)) (:foreground "red" :bold t))
293 (((class color) (background dark)) (:foreground "red" :bold t)))
294 "StGit mode face used for unmerged file status"
295 :group 'stgit)
296
297(defface stgit-unknown-file-face
298 '((((class color) (background light)) (:foreground "goldenrod" :bold t))
299 (((class color) (background dark)) (:foreground "goldenrod" :bold t)))
300 "StGit mode face used for unknown file status"
301 :group 'stgit)
302
a6d9a852
GH
303(defface stgit-file-permission-face
304 '((((class color) (background light)) (:foreground "green" :bold t))
305 (((class color) (background dark)) (:foreground "green" :bold t)))
306 "StGit mode face used for permission changes."
307 :group 'stgit)
308
1f60181a
GH
309(defcustom stgit-expand-find-copies-harder
310 nil
311 "Try harder to find copied files when listing patches.
312
313When not nil, runs git diff-tree with the --find-copies-harder
314flag, which reduces performance."
315 :type 'boolean
316 :group 'stgit)
317
318(defconst stgit-file-status-code-strings
319 (mapcar (lambda (arg)
320 (cons (car arg)
a6d9a852
GH
321 (propertize (cadr arg) 'face (car (cddr arg)))))
322 '((add "Added" stgit-modified-file-face)
323 (copy "Copied" stgit-modified-file-face)
324 (delete "Deleted" stgit-modified-file-face)
325 (modify "Modified" stgit-modified-file-face)
326 (rename "Renamed" stgit-modified-file-face)
327 (mode-change "Mode change" stgit-modified-file-face)
328 (unmerged "Unmerged" stgit-unmerged-file-face)
329 (unknown "Unknown" stgit-unknown-file-face)))
1f60181a
GH
330 "Alist of code symbols to description strings")
331
3164eec6
DK
332(defun stgit-file-status-code-as-string (file)
333 "Return stgit status code for FILE as a string"
334 (let* ((code (assq (stgit-file-status file)
335 stgit-file-status-code-strings))
336 (score (stgit-file-cr-score file)))
337 (when code
a6d9a852 338 (format "%-11s "
3164eec6
DK
339 (if (and score (/= score 100))
340 (format "%s %s" (cdr code)
341 (propertize (format "%d%%" score)
a6d9a852 342 'face 'stgit-description-face))
3164eec6 343 (cdr code))))))
1f60181a 344
a6d9a852 345(defun stgit-file-status-code (str &optional score)
1f60181a
GH
346 "Return stgit status code from git status string"
347 (let ((code (assoc str '(("A" . add)
348 ("C" . copy)
349 ("D" . delete)
350 ("M" . modify)
351 ("R" . rename)
352 ("T" . mode-change)
353 ("U" . unmerged)
354 ("X" . unknown)))))
a6d9a852
GH
355 (setq code (if code (cdr code) 'unknown))
356 (when (stringp score)
357 (if (> (length score) 0)
358 (setq score (string-to-number score))
359 (setq score nil)))
360 (if score (cons code score) code)))
361
362(defconst stgit-file-type-strings
363 '((#o100 . "file")
364 (#o120 . "symlink")
365 (#o160 . "subproject"))
366 "Alist of names of file types")
367
368(defun stgit-file-type-string (type)
47271f41
GH
369 "Return string describing file type TYPE (the high bits of file permission).
370Cf. `stgit-file-type-strings' and `stgit-file-type-change-string'."
a6d9a852
GH
371 (let ((type-str (assoc type stgit-file-type-strings)))
372 (or (and type-str (cdr type-str))
373 (format "unknown type %o" type))))
374
375(defun stgit-file-type-change-string (old-perm new-perm)
47271f41
GH
376 "Return string describing file type change from OLD-PERM to NEW-PERM.
377Cf. `stgit-file-type-string'."
a6d9a852
GH
378 (let ((old-type (lsh old-perm -9))
379 (new-type (lsh new-perm -9)))
380 (cond ((= old-type new-type) "")
381 ((zerop new-type) "")
382 ((zerop old-type)
383 (if (= new-type #o100)
384 ""
385 (format " (%s)" (stgit-file-type-string new-type))))
386 (t (format " (%s -> %s)"
387 (stgit-file-type-string old-type)
388 (stgit-file-type-string new-type))))))
389
390(defun stgit-file-mode-change-string (old-perm new-perm)
47271f41
GH
391 "Return string describing file mode change from OLD-PERM to NEW-PERM.
392Cf. `stgit-file-type-change-string'."
a6d9a852
GH
393 (setq old-perm (logand old-perm #o777)
394 new-perm (logand new-perm #o777))
395 (if (or (= old-perm new-perm)
396 (zerop old-perm)
397 (zerop new-perm))
398 ""
399 (let* ((modified (logxor old-perm new-perm))
400 (not-x-modified (logand (logxor old-perm new-perm) #o666)))
401 (cond ((zerop modified) "")
402 ((and (zerop not-x-modified)
403 (or (and (eq #o111 (logand old-perm #o111))
404 (propertize "-x" 'face 'stgit-file-permission-face))
405 (and (eq #o111 (logand new-perm #o111))
406 (propertize "+x" 'face
407 'stgit-file-permission-face)))))
408 (t (concat (propertize (format "%o" old-perm)
409 'face 'stgit-file-permission-face)
410 (propertize " -> "
411 'face 'stgit-description-face)
412 (propertize (format "%o" new-perm)
413 'face 'stgit-file-permission-face)))))))
1f60181a 414
0de6881a
DK
415(defstruct (stgit-file)
416 old-perm new-perm copy-or-rename cr-score cr-from cr-to status file)
417
3164eec6 418(defun stgit-file-pp (file)
0de6881a
DK
419 (let ((status (stgit-file-status file))
420 (name (if (stgit-file-copy-or-rename file)
421 (concat (stgit-file-cr-from file)
422 (propertize " -> "
423 'face 'stgit-description-face)
424 (stgit-file-cr-to file))
425 (stgit-file-file file)))
426 (mode-change (stgit-file-mode-change-string
427 (stgit-file-old-perm file)
428 (stgit-file-new-perm file)))
429 (start (point)))
3164eec6
DK
430 (insert (format " %-12s%1s%s%s\n"
431 (stgit-file-status-code-as-string file)
98230edd 432 mode-change
0de6881a
DK
433 name
434 (propertize (stgit-file-type-change-string
435 (stgit-file-old-perm file)
436 (stgit-file-new-perm file))
98230edd 437 'face 'stgit-description-face)))
0de6881a 438 (add-text-properties start (point)
3164eec6
DK
439 (list 'entry-type 'file
440 'file-data file))))
0de6881a 441
7567401c
GH
442(defun stgit-find-copies-harder-diff-arg ()
443 "Return the flag to use with `git-diff' depending on the
444`stgit-expand-find-copies-harder' flag."
445 (if stgit-expand-find-copies-harder
446 "--find-copies-harder"
447 "-C"))
448
0de6881a 449(defun stgit-insert-patch-files (patch)
88134ff7
GH
450 "Expand (show modification of) the patch PATCH after the line
451at point."
3164eec6
DK
452 (let* ((patchsym (stgit-patch-name patch))
453 (end (progn (insert "#") (prog1 (point-marker) (forward-char -1))))
7567401c 454 (args (list "-z" (stgit-find-copies-harder-diff-arg)))
3164eec6
DK
455 (ewoc (ewoc-create #'stgit-file-pp nil nil t)))
456 (setf (stgit-patch-files-ewoc patch) ewoc)
0de6881a 457 (with-temp-buffer
b894e680
DK
458 (apply 'stgit-run-git
459 (cond ((eq patchsym :work)
460 `("diff-files" ,@args))
461 ((eq patchsym :index)
462 `("diff-index" ,@args "--cached" "HEAD"))
463 (t
464 `("diff-tree" ,@args "-r" ,(stgit-id patchsym)))))
0de6881a 465 (goto-char (point-min))
b894e680
DK
466 (unless (or (eobp) (memq patchsym '(:work :index)))
467 (forward-char 41))
0de6881a
DK
468 (while (looking-at ":\\([0-7]+\\) \\([0-7]+\\) [0-9A-Fa-f]\\{40\\} [0-9A-Fa-f]\\{40\\} ")
469 (let ((old-perm (string-to-number (match-string 1) 8))
470 (new-perm (string-to-number (match-string 2) 8)))
471 (goto-char (match-end 0))
472 (let ((file
473 (cond ((looking-at
474 "\\([CR]\\)\\([0-9]*\\)\0\\([^\0]*\\)\0\\([^\0]*\\)\0")
027e1370
GH
475 (let* ((patch-status (stgit-patch-status patch))
476 (file-subexp (if (eq patch-status 'unapplied)
477 3
478 4))
479 (file (match-string file-subexp)))
480 (make-stgit-file
481 :old-perm old-perm
482 :new-perm new-perm
483 :copy-or-rename t
484 :cr-score (string-to-number (match-string 2))
485 :cr-from (match-string 3)
486 :cr-to (match-string 4)
487 :status (stgit-file-status-code
488 (match-string 1))
489 :file file)))
0de6881a
DK
490 ((looking-at "\\([ABD-QS-Z]\\)\0\\([^\0]*\\)\0")
491 (make-stgit-file
492 :old-perm old-perm
493 :new-perm new-perm
494 :copy-or-rename nil
495 :cr-score nil
496 :cr-from nil
497 :cr-to nil
027e1370
GH
498 :status (stgit-file-status-code
499 (match-string 1))
0de6881a 500 :file (match-string 2))))))
3164eec6
DK
501 (ewoc-enter-last ewoc file))
502 (goto-char (match-end 0))))
503 (unless (ewoc-nth ewoc 0)
504 (ewoc-set-hf ewoc "" (propertize " <no files>\n"
505 'face 'stgit-description-face))))
506 (goto-char end)
507 (delete-char -2)))
07f464e0 508
acc5652f 509(defun stgit-select-file ()
3164eec6
DK
510 (let ((filename (expand-file-name
511 (stgit-file-file (stgit-patched-file-at-point)))))
0de6881a
DK
512 (unless (file-exists-p filename)
513 (error "File does not exist"))
514 (find-file filename)))
acc5652f 515
50d88c67 516(defun stgit-select-patch ()
98230edd
DK
517 (let ((patchname (stgit-patch-name-at-point)))
518 (if (memq patchname stgit-expanded-patches)
519 (setq stgit-expanded-patches (delq patchname stgit-expanded-patches))
520 (setq stgit-expanded-patches (cons patchname stgit-expanded-patches)))
521 (ewoc-invalidate stgit-ewoc (ewoc-locate stgit-ewoc)))
522 (move-to-column (stgit-goal-column)))
acc5652f 523
378a003d
GH
524(defun stgit-select ()
525 "Expand or collapse the current entry"
526 (interactive)
50d88c67
DK
527 (case (get-text-property (point) 'entry-type)
528 ('patch
529 (stgit-select-patch))
530 ('file
531 (stgit-select-file))
532 (t
533 (error "No patch or file on line"))))
378a003d
GH
534
535(defun stgit-find-file-other-window ()
536 "Open file at point in other window"
537 (interactive)
538 (let ((patched-file (stgit-patched-file-at-point)))
539 (unless patched-file
540 (error "No file on the current line"))
3164eec6 541 (let ((filename (expand-file-name (stgit-file-file patched-file))))
378a003d
GH
542 (unless (file-exists-p filename)
543 (error "File does not exist"))
544 (find-file-other-window filename))))
545
83327d53 546(defun stgit-quit ()
a53347d9 547 "Hide the stgit buffer."
83327d53
GH
548 (interactive)
549 (bury-buffer))
550
0f076fe6 551(defun stgit-git-status ()
a53347d9 552 "Show status using `git-status'."
0f076fe6
GH
553 (interactive)
554 (unless (fboundp 'git-status)
df283a8b 555 (error "The stgit-git-status command requires git-status"))
0f076fe6
GH
556 (let ((dir default-directory))
557 (save-selected-window
558 (pop-to-buffer nil)
559 (git-status dir))))
560
58f72f16
GH
561(defun stgit-goal-column ()
562 "Return goal column for the current line"
50d88c67
DK
563 (case (get-text-property (point) 'entry-type)
564 ('patch 2)
565 ('file 4)
566 (t 0)))
58f72f16
GH
567
568(defun stgit-next-line (&optional arg)
378a003d 569 "Move cursor vertically down ARG lines"
58f72f16
GH
570 (interactive "p")
571 (next-line arg)
572 (move-to-column (stgit-goal-column)))
378a003d 573
58f72f16 574(defun stgit-previous-line (&optional arg)
378a003d 575 "Move cursor vertically up ARG lines"
58f72f16
GH
576 (interactive "p")
577 (previous-line arg)
578 (move-to-column (stgit-goal-column)))
378a003d
GH
579
580(defun stgit-next-patch (&optional arg)
98230edd 581 "Move cursor down ARG patches."
378a003d 582 (interactive "p")
98230edd
DK
583 (ewoc-goto-next stgit-ewoc (or arg 1))
584 (move-to-column goal-column))
378a003d
GH
585
586(defun stgit-previous-patch (&optional arg)
98230edd 587 "Move cursor up ARG patches."
378a003d 588 (interactive "p")
98230edd
DK
589 (ewoc-goto-prev stgit-ewoc (or arg 1))
590 (move-to-column goal-column))
378a003d 591
56d81fe5
DK
592(defvar stgit-mode-hook nil
593 "Run after `stgit-mode' is setup.")
594
595(defvar stgit-mode-map nil
596 "Keymap for StGit major mode.")
597
598(unless stgit-mode-map
ce3b6130
DK
599 (let ((toggle-map (make-keymap)))
600 (suppress-keymap toggle-map)
601 (mapc (lambda (arg) (define-key toggle-map (car arg) (cdr arg)))
602 '(("t" . stgit-toggle-worktree)))
603 (setq stgit-mode-map (make-keymap))
604 (suppress-keymap stgit-mode-map)
605 (mapc (lambda (arg) (define-key stgit-mode-map (car arg) (cdr arg)))
606 `((" " . stgit-mark)
607 ("m" . stgit-mark)
608 ("\d" . stgit-unmark-up)
609 ("u" . stgit-unmark-down)
610 ("?" . stgit-help)
611 ("h" . stgit-help)
612 ("\C-p" . stgit-previous-line)
613 ("\C-n" . stgit-next-line)
614 ([up] . stgit-previous-line)
615 ([down] . stgit-next-line)
616 ("p" . stgit-previous-patch)
617 ("n" . stgit-next-patch)
618 ("\M-{" . stgit-previous-patch)
619 ("\M-}" . stgit-next-patch)
620 ("s" . stgit-git-status)
408fa7cb 621 ("g" . stgit-reload-or-repair)
ce3b6130
DK
622 ("r" . stgit-refresh)
623 ("\C-c\C-r" . stgit-rename)
624 ("e" . stgit-edit)
625 ("M" . stgit-move-patches)
626 ("S" . stgit-squash)
627 ("N" . stgit-new)
e9fdd4ea
GH
628 ("\C-c\C-c" . stgit-commit)
629 ("\C-c\C-u" . stgit-uncommit)
3959a095 630 ("U" . stgit-revert-file)
51783171 631 ("R" . stgit-resolve-file)
ce3b6130
DK
632 ("\r" . stgit-select)
633 ("o" . stgit-find-file-other-window)
634 ("i" . stgit-file-toggle-index)
635 (">" . stgit-push-next)
636 ("<" . stgit-pop-next)
637 ("P" . stgit-push-or-pop)
638 ("G" . stgit-goto)
639 ("=" . stgit-show)
640 ("D" . stgit-delete)
641 ([(control ?/)] . stgit-undo)
642 ("\C-_" . stgit-undo)
643 ("B" . stgit-branch)
644 ("t" . ,toggle-map)
645 ("q" . stgit-quit)))))
56d81fe5
DK
646
647(defun stgit-mode ()
648 "Major mode for interacting with StGit.
649Commands:
650\\{stgit-mode-map}"
651 (kill-all-local-variables)
652 (buffer-disable-undo)
653 (setq mode-name "StGit"
654 major-mode 'stgit-mode
655 goal-column 2)
656 (use-local-map stgit-mode-map)
657 (set (make-local-variable 'list-buffers-directory) default-directory)
6df83d42 658 (set (make-local-variable 'stgit-marked-patches) nil)
378a003d 659 (set (make-local-variable 'stgit-expanded-patches) nil)
ce3b6130 660 (set (make-local-variable 'stgit-show-worktree) stgit-default-show-worktree)
2ecb05c8
GH
661 (set (make-local-variable 'stgit-index-node) nil)
662 (set (make-local-variable 'stgit-worktree-node) nil)
2870f8b8 663 (set-variable 'truncate-lines 't)
b894e680 664 (add-hook 'after-save-hook 'stgit-update-saved-file)
56d81fe5
DK
665 (run-hooks 'stgit-mode-hook))
666
b894e680
DK
667(defun stgit-update-saved-file ()
668 (let* ((file (expand-file-name buffer-file-name))
669 (dir (file-name-directory file))
670 (gitdir (condition-case nil (git-get-top-dir dir)
671 (error nil)))
672 (buffer (and gitdir (stgit-find-buffer gitdir))))
673 (when buffer
674 (with-current-buffer buffer
210a2a52 675 (stgit-refresh-worktree)))))
b894e680 676
d51722b7
GH
677(defun stgit-add-mark (patchsym)
678 "Mark the patch PATCHSYM."
8036afdd 679 (setq stgit-marked-patches (cons patchsym stgit-marked-patches)))
6df83d42 680
d51722b7
GH
681(defun stgit-remove-mark (patchsym)
682 "Unmark the patch PATCHSYM."
8036afdd 683 (setq stgit-marked-patches (delq patchsym stgit-marked-patches)))
6df83d42 684
e6b1fdae 685(defun stgit-clear-marks ()
47271f41 686 "Unmark all patches."
e6b1fdae
DK
687 (setq stgit-marked-patches '()))
688
735cb7ec 689(defun stgit-patch-at-point (&optional cause-error)
2c862b07
DK
690 (get-text-property (point) 'patch-data))
691
64ada6f5 692(defun stgit-patch-name-at-point (&optional cause-error only-patches)
d51722b7 693 "Return the patch name on the current line as a symbol.
64ada6f5
GH
694If CAUSE-ERROR is not nil, signal an error if none found.
695If ONLY-PATCHES is not nil, only allow real patches, and not
696index or work tree."
2c862b07 697 (let ((patch (stgit-patch-at-point)))
64ada6f5
GH
698 (and patch
699 only-patches
700 (memq (stgit-patch-status patch) '(work index))
701 (setq patch nil))
2c862b07
DK
702 (cond (patch
703 (stgit-patch-name patch))
704 (cause-error
705 (error "No patch on this line")))))
378a003d 706
3164eec6
DK
707(defun stgit-patched-file-at-point ()
708 (get-text-property (point) 'file-data))
56d81fe5 709
7755d7f1 710(defun stgit-patches-marked-or-at-point ()
d51722b7 711 "Return the symbols of the marked patches, or the patch on the current line."
7755d7f1 712 (if stgit-marked-patches
d51722b7 713 stgit-marked-patches
2c862b07 714 (let ((patch (stgit-patch-name-at-point)))
7755d7f1
KH
715 (if patch
716 (list patch)
717 '()))))
718
d51722b7
GH
719(defun stgit-goto-patch (patchsym)
720 "Move point to the line containing patch PATCHSYM.
f9b82d36
DK
721If that patch cannot be found, do nothing."
722 (let ((node (ewoc-nth stgit-ewoc 0)))
723 (while (and node (not (eq (stgit-patch-name (ewoc-data node))
724 patchsym)))
725 (setq node (ewoc-next stgit-ewoc node)))
726 (when node
727 (ewoc-goto-node stgit-ewoc node)
d51722b7 728 (move-to-column goal-column))))
56d81fe5 729
1c2426dc 730(defun stgit-init ()
a53347d9 731 "Run stg init."
1c2426dc
DK
732 (interactive)
733 (stgit-capture-output nil
b0424080 734 (stgit-run "init"))
1f0bf00f 735 (stgit-reload))
1c2426dc 736
6df83d42 737(defun stgit-mark ()
a53347d9 738 "Mark the patch under point."
6df83d42 739 (interactive)
8036afdd 740 (let* ((node (ewoc-locate stgit-ewoc))
64ada6f5
GH
741 (patch (ewoc-data node))
742 (name (stgit-patch-name patch)))
743 (when (eq name :work)
744 (error "Cannot mark the work tree"))
745 (when (eq name :index)
746 (error "Cannot mark the index"))
8036afdd
DK
747 (stgit-add-mark (stgit-patch-name patch))
748 (ewoc-invalidate stgit-ewoc node))
378a003d 749 (stgit-next-patch))
6df83d42 750
9b151b27 751(defun stgit-unmark-up ()
a53347d9 752 "Remove mark from the patch on the previous line."
6df83d42 753 (interactive)
378a003d 754 (stgit-previous-patch)
8036afdd
DK
755 (let* ((node (ewoc-locate stgit-ewoc))
756 (patch (ewoc-data node)))
757 (stgit-remove-mark (stgit-patch-name patch))
758 (ewoc-invalidate stgit-ewoc node))
759 (move-to-column (stgit-goal-column)))
9b151b27
GH
760
761(defun stgit-unmark-down ()
a53347d9 762 "Remove mark from the patch on the current line."
9b151b27 763 (interactive)
8036afdd
DK
764 (let* ((node (ewoc-locate stgit-ewoc))
765 (patch (ewoc-data node)))
766 (stgit-remove-mark (stgit-patch-name patch))
767 (ewoc-invalidate stgit-ewoc node))
1288eda2 768 (stgit-next-patch))
6df83d42 769
56d81fe5 770(defun stgit-rename (name)
018fa1ac 771 "Rename the patch under point to NAME."
64ada6f5
GH
772 (interactive (list
773 (read-string "Patch name: "
774 (symbol-name (stgit-patch-name-at-point t t)))))
775 (let ((old-patchsym (stgit-patch-name-at-point t t)))
56d81fe5 776 (stgit-capture-output nil
d51722b7
GH
777 (stgit-run "rename" old-patchsym name))
778 (let ((name-sym (intern name)))
779 (when (memq old-patchsym stgit-expanded-patches)
378a003d 780 (setq stgit-expanded-patches
d51722b7
GH
781 (cons name-sym (delq old-patchsym stgit-expanded-patches))))
782 (when (memq old-patchsym stgit-marked-patches)
378a003d 783 (setq stgit-marked-patches
d51722b7
GH
784 (cons name-sym (delq old-patchsym stgit-marked-patches))))
785 (stgit-reload)
786 (stgit-goto-patch name-sym))))
56d81fe5 787
408fa7cb
GH
788(defun stgit-reload-or-repair (repair)
789 "Update the contents of the StGit buffer (`stgit-reload').
790
791With a prefix argument, repair the StGit metadata if the branch
792was modified with git commands (`stgit-repair')."
793 (interactive "P")
794 (if repair
795 (stgit-repair)
796 (stgit-reload)))
797
26201d96 798(defun stgit-repair ()
a53347d9 799 "Run stg repair."
26201d96
DK
800 (interactive)
801 (stgit-capture-output nil
b0424080 802 (stgit-run "repair"))
1f0bf00f 803 (stgit-reload))
26201d96 804
adeef6bc
GH
805(defun stgit-available-branches ()
806 "Returns a list of the available stg branches"
807 (let ((output (with-output-to-string
808 (stgit-run "branch" "--list")))
809 (start 0)
810 result)
811 (while (string-match "^>?\\s-+s\\s-+\\(\\S-+\\)" output start)
812 (setq result (cons (match-string 1 output) result))
813 (setq start (match-end 0)))
814 result))
815
816(defun stgit-branch (branch)
817 "Switch to branch BRANCH."
818 (interactive (list (completing-read "Switch to branch: "
819 (stgit-available-branches))))
820 (stgit-capture-output nil (stgit-run "branch" "--" branch))
821 (stgit-reload))
822
41c1c59c
GH
823(defun stgit-commit (count)
824 "Run stg commit on COUNT commits.
825Interactively, the prefix argument is used as COUNT."
826 (interactive "p")
827 (stgit-capture-output nil (stgit-run "commit" "-n" count))
1f0bf00f 828 (stgit-reload))
c4aad9a7 829
3959a095
GH
830(defun stgit-revert-file ()
831 "Revert the file at point, which must be in the index or the
832working tree."
833 (interactive)
834 (let* ((patched-file (or (stgit-patched-file-at-point)
835 (error "No file on the current line")))
836 (patch-name (stgit-patch-name-at-point))
837 (file-status (stgit-file-status patched-file))
838 (rm-file (cond ((stgit-file-copy-or-rename patched-file)
839 (stgit-file-cr-to patched-file))
840 ((eq file-status 'add)
841 (stgit-file-file patched-file))))
842 (co-file (cond ((eq file-status 'rename)
843 (stgit-file-cr-from patched-file))
844 ((not (memq file-status '(copy add)))
845 (stgit-file-file patched-file)))))
846
847 (unless (memq patch-name '(:work :index))
848 (error "No index or working tree file on this line"))
849
850 (let ((nfiles (+ (if rm-file 1 0) (if co-file 1 0))))
851 (when (yes-or-no-p (format "Revert %d file%s? "
852 nfiles
853 (if (= nfiles 1) "" "s")))
854 (stgit-capture-output nil
855 (when rm-file
856 (stgit-run-git "rm" "-f" "-q" "--" rm-file))
857 (when co-file
858 (stgit-run-git "checkout" "HEAD" co-file)))
859 (stgit-reload)))))
860
51783171
GH
861(defun stgit-resolve-file ()
862 "Resolve conflict in the file at point."
863 (interactive)
864 (let* ((patched-file (stgit-patched-file-at-point))
865 (patch (stgit-patch-at-point))
866 (patch-name (and patch (stgit-patch-name patch)))
867 (status (and patched-file (stgit-file-status patched-file))))
868
869 (unless (memq patch-name '(:work :index))
870 (error "No index or working tree file on this line"))
871
872 (unless (eq status 'unmerged)
873 (error "No conflict to resolve at the current line"))
874
875 (stgit-capture-output nil
876 (stgit-move-change-to-index (stgit-file-file patched-file)))
877
878 (stgit-reload)))
879
41c1c59c
GH
880(defun stgit-uncommit (count)
881 "Run stg uncommit on COUNT commits.
882Interactively, the prefix argument is used as COUNT."
c4aad9a7 883 (interactive "p")
41c1c59c 884 (stgit-capture-output nil (stgit-run "uncommit" "-n" count))
1f0bf00f 885 (stgit-reload))
c4aad9a7 886
0b661144
DK
887(defun stgit-push-next (npatches)
888 "Push the first unapplied patch.
889With numeric prefix argument, push that many patches."
890 (interactive "p")
d51722b7 891 (stgit-capture-output nil (stgit-run "push" "-n" npatches))
074a4fb0
GH
892 (stgit-reload)
893 (stgit-refresh-git-status))
56d81fe5 894
0b661144
DK
895(defun stgit-pop-next (npatches)
896 "Pop the topmost applied patch.
897With numeric prefix argument, pop that many patches."
898 (interactive "p")
d51722b7 899 (stgit-capture-output nil (stgit-run "pop" "-n" npatches))
074a4fb0
GH
900 (stgit-reload)
901 (stgit-refresh-git-status))
56d81fe5 902
f9182fca
KH
903(defun stgit-applied-at-point ()
904 "Is the patch on the current line applied?"
905 (save-excursion
906 (beginning-of-line)
907 (looking-at "[>+]")))
908
909(defun stgit-push-or-pop ()
a53347d9 910 "Push or pop the patch on the current line."
f9182fca 911 (interactive)
2c862b07 912 (let ((patchsym (stgit-patch-name-at-point t))
f9182fca
KH
913 (applied (stgit-applied-at-point)))
914 (stgit-capture-output nil
d51722b7 915 (stgit-run (if applied "pop" "push") patchsym))
1f0bf00f 916 (stgit-reload)))
f9182fca 917
c7adf5ef 918(defun stgit-goto ()
a53347d9 919 "Go to the patch on the current line."
c7adf5ef 920 (interactive)
2c862b07 921 (let ((patchsym (stgit-patch-name-at-point t)))
c7adf5ef 922 (stgit-capture-output nil
d51722b7 923 (stgit-run "goto" patchsym))
1f0bf00f 924 (stgit-reload)))
c7adf5ef 925
d51722b7 926(defun stgit-id (patchsym)
50d88c67
DK
927 "Return the git commit id for PATCHSYM.
928If PATCHSYM is a keyword, returns PATCHSYM unmodified."
929 (if (keywordp patchsym)
930 patchsym
931 (let ((result (with-output-to-string
932 (stgit-run-silent "id" patchsym))))
933 (unless (string-match "^\\([0-9A-Fa-f]\\{40\\}\\)$" result)
934 (error "Cannot find commit id for %s" patchsym))
935 (match-string 1 result))))
378a003d 936
56d81fe5 937(defun stgit-show ()
a53347d9 938 "Show the patch on the current line."
56d81fe5
DK
939 (interactive)
940 (stgit-capture-output "*StGit patch*"
50d88c67
DK
941 (case (get-text-property (point) 'entry-type)
942 ('file
3164eec6
DK
943 (let* ((patched-file (stgit-patched-file-at-point))
944 (patch-name (stgit-patch-name-at-point))
945 (patch-id (stgit-id patch-name))
946 (args (append (and (stgit-file-cr-from patched-file)
7567401c 947 (list (stgit-find-copies-harder-diff-arg)))
b894e680
DK
948 (cond ((eq patch-id :index)
949 '("--cached"))
950 ((eq patch-id :work)
951 nil)
952 (t
953 (list (concat patch-id "^") patch-id)))
3164eec6
DK
954 '("--")
955 (if (stgit-file-copy-or-rename patched-file)
956 (list (stgit-file-cr-from patched-file)
957 (stgit-file-cr-to patched-file))
958 (list (stgit-file-file patched-file))))))
959 (apply 'stgit-run-git "diff" args)))
50d88c67 960 ('patch
4713c50e
GH
961 (let* ((patch-name (stgit-patch-name-at-point))
962 (patch-id (stgit-id patch-name)))
963 (if (or (eq patch-id :index) (eq patch-id :work))
964 (apply 'stgit-run-git "diff"
965 (stgit-find-copies-harder-diff-arg)
966 (and (eq patch-id :index)
967 '("--cached")))
968 (stgit-run "show" "-O" "--patch-with-stat" "-O" "-M"
969 (stgit-patch-name-at-point)))))
50d88c67
DK
970 (t
971 (error "No patch or file at point")))
972 (with-current-buffer standard-output
973 (goto-char (point-min))
974 (diff-mode))))
0663524d 975
fd9fe574 976(defun stgit-move-change-to-index (file)
37cb5766 977 "Copies the workspace state of FILE to index, using git add or git rm"
306b37a6
GH
978 (let ((op (if (or (file-exists-p file) (file-symlink-p file))
979 '("add") '("rm" "-q"))))
37cb5766 980 (stgit-capture-output "*git output*"
5115dea0 981 (apply 'stgit-run-git (append op '("--") (list file))))))
37cb5766 982
fd9fe574 983(defun stgit-remove-change-from-index (file)
37cb5766
DK
984 "Unstages the change in FILE from the index"
985 (stgit-capture-output "*git output*"
986 (stgit-run-git "reset" "-q" "--" file)))
987
988(defun stgit-file-toggle-index ()
989 "Move modified file in or out of the index."
990 (interactive)
991 (let ((patched-file (stgit-patched-file-at-point)))
992 (unless patched-file
993 (error "No file on the current line"))
51783171
GH
994 (when (eq (stgit-file-status patched-file) 'unmerged)
995 (error (substitute-command-keys "Use \\[stgit-resolve-file] to move an unmerged file to the index")))
37cb5766
DK
996 (let ((patch-name (stgit-patch-name-at-point)))
997 (cond ((eq patch-name :work)
fd9fe574 998 (stgit-move-change-to-index (stgit-file-file patched-file)))
37cb5766 999 ((eq patch-name :index)
fd9fe574 1000 (stgit-remove-change-from-index (stgit-file-file patched-file)))
37cb5766
DK
1001 (t
1002 (error "Can only move files in the working tree to index")))))
210a2a52
DK
1003 (stgit-refresh-worktree)
1004 (stgit-refresh-index))
37cb5766 1005
0bca35c8 1006(defun stgit-edit ()
a53347d9 1007 "Edit the patch on the current line."
0bca35c8 1008 (interactive)
64ada6f5 1009 (let ((patchsym (stgit-patch-name-at-point t t))
0780be79 1010 (edit-buf (get-buffer-create "*StGit edit*"))
0bca35c8
DK
1011 (dir default-directory))
1012 (log-edit 'stgit-confirm-edit t nil edit-buf)
d51722b7 1013 (set (make-local-variable 'stgit-edit-patchsym) patchsym)
0bca35c8
DK
1014 (setq default-directory dir)
1015 (let ((standard-output edit-buf))
d51722b7 1016 (stgit-run-silent "edit" "--save-template=-" patchsym))))
0bca35c8
DK
1017
1018(defun stgit-confirm-edit ()
1019 (interactive)
1020 (let ((file (make-temp-file "stgit-edit-")))
1021 (write-region (point-min) (point-max) file)
1022 (stgit-capture-output nil
d51722b7 1023 (stgit-run "edit" "-f" file stgit-edit-patchsym))
0bca35c8 1024 (with-current-buffer log-edit-parent-buffer
1f0bf00f 1025 (stgit-reload))))
0bca35c8 1026
aa04f831
GH
1027(defun stgit-new (add-sign)
1028 "Create a new patch.
1029With a prefix argument, include a \"Signed-off-by:\" line at the
1030end of the patch."
1031 (interactive "P")
c5d45b92
GH
1032 (let ((edit-buf (get-buffer-create "*StGit edit*"))
1033 (dir default-directory))
1034 (log-edit 'stgit-confirm-new t nil edit-buf)
aa04f831
GH
1035 (setq default-directory dir)
1036 (when add-sign
1037 (save-excursion
1038 (let ((standard-output (current-buffer)))
1039 (stgit-run-silent "new" "--sign" "--save-template=-"))))))
64c097a0
DK
1040
1041(defun stgit-confirm-new ()
1042 (interactive)
27b0f9e4 1043 (let ((file (make-temp-file "stgit-edit-")))
64c097a0
DK
1044 (write-region (point-min) (point-max) file)
1045 (stgit-capture-output nil
27b0f9e4 1046 (stgit-run "new" "-f" file))
64c097a0 1047 (with-current-buffer log-edit-parent-buffer
1f0bf00f 1048 (stgit-reload))))
64c097a0
DK
1049
1050(defun stgit-create-patch-name (description)
1051 "Create a patch name from a long description"
1052 (let ((patch ""))
1053 (while (> (length description) 0)
1054 (cond ((string-match "\\`[a-zA-Z_-]+" description)
8439f657
GH
1055 (setq patch (downcase (concat patch
1056 (match-string 0 description))))
64c097a0
DK
1057 (setq description (substring description (match-end 0))))
1058 ((string-match "\\` +" description)
1059 (setq patch (concat patch "-"))
1060 (setq description (substring description (match-end 0))))
1061 ((string-match "\\`[^a-zA-Z_-]+" description)
1062 (setq description (substring description (match-end 0))))))
1063 (cond ((= (length patch) 0)
1064 "patch")
1065 ((> (length patch) 20)
1066 (substring patch 0 20))
1067 (t patch))))
0bca35c8 1068
9008e45b 1069(defun stgit-delete (patchsyms &optional spill-p)
d51722b7 1070 "Delete the patches in PATCHSYMS.
9008e45b
GH
1071Interactively, delete the marked patches, or the patch at point.
1072
1073With a prefix argument, or SPILL-P, spill the patch contents to
1074the work tree and index."
1075 (interactive (list (stgit-patches-marked-or-at-point)
1076 current-prefix-arg))
e7231e4f
GH
1077 (unless patchsyms
1078 (error "No patches to delete"))
64ada6f5
GH
1079 (when (memq :index patchsyms)
1080 (error "Cannot delete the index"))
1081 (when (memq :work patchsyms)
1082 (error "Cannot delete the work tree"))
1083
d51722b7 1084 (let ((npatches (length patchsyms)))
9008e45b 1085 (when (yes-or-no-p (format "Really delete %d patch%s%s? "
e7231e4f 1086 npatches
9008e45b
GH
1087 (if (= 1 npatches) "" "es")
1088 (if spill-p
1089 " (spilling contents to index)"
1090 "")))
1091 (let ((args (if spill-p
1092 (cons "--spill" patchsyms)
1093 patchsyms)))
1094 (stgit-capture-output nil
1095 (apply 'stgit-run "delete" args))
1096 (stgit-reload)))))
d51722b7 1097
7cc45294
GH
1098(defun stgit-move-patches-target ()
1099 "Return the patchsym indicating a target patch for
1100`stgit-move-patches'.
1101
1102This is either the patch at point, or one of :top and :bottom, if
1103the point is after or before the applied patches."
1104
2c862b07 1105 (let ((patchsym (stgit-patch-name-at-point)))
7cc45294
GH
1106 (cond (patchsym patchsym)
1107 ((save-excursion (re-search-backward "^>" nil t)) :top)
1108 (t :bottom))))
1109
95369f6c
GH
1110(defun stgit-sort-patches (patchsyms)
1111 "Returns the list of patches in PATCHSYMS sorted according to
1112their position in the patch series, bottommost first.
1113
1114PATCHSYMS may not contain duplicate entries."
1115 (let (sorted-patchsyms
1116 (series (with-output-to-string
1117 (with-current-buffer standard-output
1118 (stgit-run-silent "series" "--noprefix"))))
1119 start)
1120 (while (string-match "^\\(.+\\)" series start)
1121 (let ((patchsym (intern (match-string 1 series))))
1122 (when (memq patchsym patchsyms)
1123 (setq sorted-patchsyms (cons patchsym sorted-patchsyms))))
1124 (setq start (match-end 0)))
1125 (setq sorted-patchsyms (nreverse sorted-patchsyms))
1126
1127 (unless (= (length patchsyms) (length sorted-patchsyms))
1128 (error "Internal error"))
1129
1130 sorted-patchsyms))
1131
7cc45294
GH
1132(defun stgit-move-patches (patchsyms target-patch)
1133 "Move the patches in PATCHSYMS to below TARGET-PATCH.
1134If TARGET-PATCH is :bottom or :top, move the patches to the
1135bottom or top of the stack, respectively.
1136
1137Interactively, move the marked patches to where the point is."
1138 (interactive (list stgit-marked-patches
1139 (stgit-move-patches-target)))
1140 (unless patchsyms
1141 (error "Need at least one patch to move"))
1142
1143 (unless target-patch
1144 (error "Point not at a patch"))
1145
1146 (if (eq target-patch :top)
1147 (stgit-capture-output nil
1148 (apply 'stgit-run "float" patchsyms))
1149
1150 ;; need to have patchsyms sorted by position in the stack
95369f6c 1151 (let ((sorted-patchsyms (stgit-sort-patches patchsyms)))
7cc45294
GH
1152 (while sorted-patchsyms
1153 (setq sorted-patchsyms
1154 (and (stgit-capture-output nil
1155 (if (eq target-patch :bottom)
1156 (stgit-run "sink" "--" (car sorted-patchsyms))
1157 (stgit-run "sink" "--to" target-patch "--"
1158 (car sorted-patchsyms))))
1159 (cdr sorted-patchsyms))))))
1160 (stgit-reload))
1161
594aa463
KH
1162(defun stgit-squash (patchsyms)
1163 "Squash the patches in PATCHSYMS.
693d179b
GH
1164Interactively, squash the marked patches.
1165
1166Unless there are any conflicts, the patches will be merged into
1167one patch, which will occupy the same spot in the series as the
1168deepest patch had before the squash."
d51722b7
GH
1169 (interactive (list stgit-marked-patches))
1170 (when (< (length patchsyms) 2)
594aa463 1171 (error "Need at least two patches to squash"))
32d7545d
GH
1172 (let ((stgit-buffer (current-buffer))
1173 (edit-buf (get-buffer-create "*StGit edit*"))
693d179b
GH
1174 (dir default-directory)
1175 (sorted-patchsyms (stgit-sort-patches patchsyms)))
594aa463 1176 (log-edit 'stgit-confirm-squash t nil edit-buf)
693d179b 1177 (set (make-local-variable 'stgit-patchsyms) sorted-patchsyms)
ea0def18 1178 (setq default-directory dir)
32d7545d
GH
1179 (let ((result (let ((standard-output edit-buf))
1180 (apply 'stgit-run-silent "squash"
1181 "--save-template=-" sorted-patchsyms))))
1182
1183 ;; stg squash may have reordered the patches or caused conflicts
1184 (with-current-buffer stgit-buffer
1185 (stgit-reload))
1186
1187 (unless (eq 0 result)
1188 (fundamental-mode)
1189 (rename-buffer "*StGit error*")
1190 (resize-temp-buffer-window)
1191 (switch-to-buffer-other-window stgit-buffer)
1192 (error "stg squash failed")))))
ea0def18 1193
594aa463 1194(defun stgit-confirm-squash ()
ea0def18
DK
1195 (interactive)
1196 (let ((file (make-temp-file "stgit-edit-")))
1197 (write-region (point-min) (point-max) file)
1198 (stgit-capture-output nil
594aa463 1199 (apply 'stgit-run "squash" "-f" file stgit-patchsyms))
ea0def18 1200 (with-current-buffer log-edit-parent-buffer
e6b1fdae
DK
1201 (stgit-clear-marks)
1202 ;; Go to first marked patch and stay there
1203 (goto-char (point-min))
1204 (re-search-forward (concat "^[>+-]\\*") nil t)
1205 (move-to-column goal-column)
1206 (let ((pos (point)))
1f0bf00f 1207 (stgit-reload)
e6b1fdae 1208 (goto-char pos)))))
ea0def18 1209
0663524d
KH
1210(defun stgit-help ()
1211 "Display help for the StGit mode."
1212 (interactive)
1213 (describe-function 'stgit-mode))
3a59f3db 1214
83e51dbf
DK
1215(defun stgit-undo (&optional arg)
1216 "Run stg undo.
1217With prefix argument, run it with the --hard flag."
1218 (interactive "P")
1219 (stgit-capture-output nil
1220 (if arg
1221 (stgit-run "undo" "--hard")
1222 (stgit-run "undo")))
1f0bf00f 1223 (stgit-reload))
83e51dbf 1224
4d73c4d8
DK
1225(defun stgit-refresh (&optional arg)
1226 "Run stg refresh.
36a4eacd
GH
1227If the index contains any changes, only refresh from index.
1228
a53347d9 1229With prefix argument, refresh the marked patch or the patch under point."
4d73c4d8
DK
1230 (interactive "P")
1231 (let ((patchargs (if arg
b0424080
GH
1232 (let ((patches (stgit-patches-marked-or-at-point)))
1233 (cond ((null patches)
df283a8b 1234 (error "No patch to update"))
b0424080 1235 ((> (length patches) 1)
df283a8b 1236 (error "Too many patches selected"))
b0424080
GH
1237 (t
1238 (cons "-p" patches))))
1239 nil)))
36a4eacd
GH
1240 (unless (stgit-index-empty-p)
1241 (setq patchargs (cons "--index" patchargs)))
4d73c4d8 1242 (stgit-capture-output nil
074a4fb0
GH
1243 (apply 'stgit-run "refresh" patchargs))
1244 (stgit-refresh-git-status))
4d73c4d8
DK
1245 (stgit-reload))
1246
ce3b6130
DK
1247(defcustom stgit-default-show-worktree
1248 nil
1249 "Set to non-nil to by default show the working tree in a new stgit buffer.
1250
1251This value is used as the default value for `stgit-show-worktree'."
1252 :type 'boolean
1253 :group 'stgit)
1254
1255(defvar stgit-show-worktree nil
1256 "Show work tree and index in the stgit buffer.
1257
1258See `stgit-default-show-worktree' for its default value.")
1259
1260(defun stgit-toggle-worktree (&optional arg)
1261 "Toggle the visibility of the work tree.
1262With arg, show the work tree if arg is positive.
1263
1264Its initial setting is controlled by `stgit-default-show-worktree'."
1265 (interactive)
1266 (setq stgit-show-worktree
1267 (if (numberp arg)
1268 (> arg 0)
1269 (not stgit-show-worktree)))
1270 (stgit-reload))
1271
3a59f3db 1272(provide 'stgit)