forked from kiwanami/emacs-window-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
e2wm-vcs.el
490 lines (397 loc) · 15.7 KB
/
e2wm-vcs.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
;;; e2wm-vcs.el --- VCS perspectives
;; Copyright (C) 2011 SAKURAI Masashi
;; Author: SAKURAI Masashi <m.sakurai at kiwanami.net>
;; Keywords: tools
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; These are e2wm perspectives for magit and dsvn.
;; One can change the perspective by M-x e2wm:dp-magit or e2wm:dp-svn.
;; Here is a sample code to add switching perspective key bindings:
;; (e2wm:add-keymap e2wm:pst-minor-mode-keymap '(("prefix v" . e2wm:dp-magit)) e2wm:prefix-key)
;; (e2wm:add-keymap e2wm:pst-minor-mode-keymap '(("prefix v" . e2wm:dp-svn)) e2wm:prefix-key)
;;; Code:
(require 'e2wm)
(require 'magit nil t)
(require 'monky nil t)
(require 'dsvn nil t)
;;; Utilities
;;;--------------------------------------------------
(defface e2wm:face-vcs-na
'((((class color) (background light))
:foreground "Chocolate" :height 1.5 :inherit variable-pitch)
(((class color) (background dark))
:foreground "Chocolate3" :weight bold :height 1.5 :inherit variable-pitch)
(t :height 1.5 :weight bold :inherit variable-pitch))
"Face for e2wm:vcs-na title."
:group 'e2wm)
(defun e2wm:def-plugin-vcs-na-buffer (title)
(let ((buf (get-buffer-create " *e2wm:vcs-na*")))
(with-current-buffer buf
(let (buffer-read-only)
(buffer-disable-undo buf)
(erase-buffer)
(insert (e2wm:rt (substring title 0) 'e2wm:face-vcs-na))
buf))))
(defun e2wm:def-plugin-vcs-with-window (topdir-func body-func na-buffer-func)
(let* ((buf (e2wm:history-get-main-buffer))
(file (buffer-file-name buf))
(dir (or (and file (file-name-directory file)) default-directory))
(topdir (and dir (funcall topdir-func dir))))
(e2wm:with-advice
(cond
(topdir
(with-selected-window (wlf:get-window wm (wlf:window-name winfo))
(with-current-buffer buf
(funcall body-func dir topdir))
(wlf:set-buffer wm (wlf:window-name winfo)
(window-buffer (selected-window)))))
(t
(wlf:set-buffer wm (wlf:window-name winfo)
(funcall na-buffer-func)))))))
(defvar e2wm:c-vcs-select-if-plugin nil "If this variable is non-nil, the plugin window is selected during popping up the plugin buffer.")
(defun e2wm:vcs-select-if-plugin (buf)
(e2wm:message "#vcs-select-if-plugin")
(if e2wm:c-vcs-select-if-plugin
(loop with wm = (e2wm:pst-get-wm)
for wname in (mapcar 'wlf:window-name (wlf:wset-winfo-list wm))
if (and (equal buf (wlf:get-buffer wm wname))
(e2wm:pst-window-plugin-get wm wname))
return (progn (wlf:select wm wname)
(e2wm:message "#vcs-select-if-plugin wname: %s" wname)
t))))
;;; magit / plugins
;;;--------------------------------------------------
(defun e2wm:def-plugin-magit-branches (frame wm winfo)
(e2wm:def-plugin-vcs-with-window
'magit-get-top-dir
(if (fboundp 'magit-branch-manager)
(lambda (dir topdir) (magit-branch-manager))
(lambda (dir topdir) (magit-show-branches)))
(lambda () (e2wm:def-plugin-vcs-na-buffer "Git N/A"))))
(e2wm:plugin-register 'magit-branches
"Magit Branches"
'e2wm:def-plugin-magit-branches)
(defun e2wm:def-plugin-magit-logs (frame wm winfo)
(e2wm:def-plugin-vcs-with-window
'magit-get-top-dir
(lambda (dir topdir)
(magit-display-log nil))
(lambda () (e2wm:def-plugin-vcs-na-buffer "Git N/A"))))
(e2wm:plugin-register 'magit-logs
"Magit Logs"
'e2wm:def-plugin-magit-logs)
(defun e2wm:def-plugin-magit-status (frame wm winfo)
(e2wm:def-plugin-vcs-with-window
'magit-get-top-dir
(lambda (dir topdir)
(magit-status (file-name-as-directory dir)))
(lambda () (e2wm:history-get-main-buffer))))
(e2wm:plugin-register 'magit-status
"Magit Status"
'e2wm:def-plugin-magit-status)
;;; magit / magit perspective
;;;--------------------------------------------------
(defvar e2wm:c-magit-recipe
'(| (:left-max-size 35)
(- (:upper-size-ratio 0.7)
files history)
(| (:right-max-size 45)
(- status (- main sub))
(- (:upper-size-ratio 0.4) branches logs))))
(defvar e2wm:c-magit-winfo
'((:name main)
(:name status :plugin magit-status)
(:name files :plugin files)
(:name history :plugin history-list)
(:name sub :buffer nil :default-hide t)
(:name branches :plugin magit-branches)
(:name logs :plugin magit-logs)))
(defvar e2wm:c-magit-show-main-regexp
"\\*\\(vc-diff\\)\\*")
(e2wm:pst-class-register
(make-e2wm:$pst-class
:name 'magit
:extend 'base
:title "Magit"
:init 'e2wm:dp-magit-init
:main 'main
:start 'e2wm:dp-magit-start
:switch 'e2wm:dp-magit-switch
:popup 'e2wm:dp-magit-popup
:leave 'e2wm:dp-magit-leave
:keymap 'e2wm:dp-magit-minor-mode-map))
(defadvice magit-log-edit-commit (after e2wm:ad-override-magit)
(e2wm:pst-update-windows))
(ad-deactivate-regexp "^e2wm:ad-override-magit$")
(defun e2wm:dp-magit-leave (wm)
(ad-deactivate-regexp "^e2wm:ad-override-magit$")
(setq e2wm:prev-selected-buffer nil))
(defun e2wm:dp-magit-start (wm)
(ad-activate-regexp "^e2wm:ad-override-magit$"))
(defun e2wm:dp-magit-init ()
(let* ((magit-wm
(wlf:no-layout e2wm:c-magit-recipe e2wm:c-magit-winfo))
(buf (or e2wm:prev-selected-buffer
(e2wm:history-get-main-buffer))))
(wlf:set-buffer magit-wm 'main buf)
magit-wm))
(defun e2wm:dp-magit-switch (buf)
(e2wm:message "#DP MAGIT switch : %s" buf)
(e2wm:vcs-select-if-plugin buf))
(defun e2wm:dp-magit-popup (buf)
(let ((cb (current-buffer)))
(e2wm:message "#DP MAGIT popup : %s (current %s / backup %s)"
buf cb e2wm:override-window-cfg-backup))
(unless (e2wm:vcs-select-if-plugin buf)
(let ((buf-name (buffer-name buf))
(wm (e2wm:pst-get-wm))
(not-minibufp (= 0 (minibuffer-depth))))
(e2wm:with-advice
(cond
((equal buf-name magit-commit-buffer-name)
;; displaying commit objects in the main window
(e2wm:pst-buffer-set 'main buf t nil))
((string-match "^\\*magit: .*\\*$" buf-name)
;; displaying status object in the status window
(e2wm:pst-buffer-set 'status buf t t))
((buffer-file-name buf)
;; displaying file buffer in the main window
(e2wm:pst-buffer-set 'main buf t t))
(t
;; displaying other objects in the sub window
(e2wm:pst-buffer-set 'sub buf t not-minibufp)))))))
;; Commands / Keybindings
(defun e2wm:dp-magit ()
(interactive)
(e2wm:pst-change 'magit))
(defvar e2wm:dp-magit-minor-mode-map
(e2wm:define-keymap '() e2wm:prefix-key))
;; (e2wm:add-keymap e2wm:pst-minor-mode-keymap '(("prefix v" . e2wm:dp-magit)) e2wm:prefix-key)
;;; monky / plugins
;;;--------------------------------------------------
(defun e2wm:monky-get-root-dir (dir)
(monky-get-root-dir))
(defun e2wm:def-plugin-monky-branches (frame wm winfo)
(e2wm:def-plugin-vcs-with-window
'e2wm:monky-get-root-dir
(lambda (dir topdir)
(monky-branches))
(lambda () (e2wm:def-plugin-vcs-na-buffer "Hg N/A"))))
(e2wm:plugin-register 'monky-branches
"Monky Branches"
'e2wm:def-plugin-monky-branches)
(defun e2wm:def-plugin-monky-logs (frame wm winfo)
(e2wm:def-plugin-vcs-with-window
'e2wm:monky-get-root-dir
(lambda (dir topdir) (monky-log))
(lambda () (e2wm:def-plugin-vcs-na-buffer "Hg N/A"))))
(e2wm:plugin-register 'monky-logs
"Monky Logs"
'e2wm:def-plugin-monky-logs)
(defun e2wm:def-plugin-monky-status (frame wm winfo)
(e2wm:def-plugin-vcs-with-window
'e2wm:monky-get-root-dir
(lambda (dir topdir) (monky-status))
(lambda () (e2wm:history-get-main-buffer))))
(e2wm:plugin-register 'monky-status
"Monky Status"
'e2wm:def-plugin-monky-status)
;;; monky / monky perspective
;;;--------------------------------------------------
(defvar e2wm:c-monky-recipe
'(| (:left-max-size 35)
(- (:upper-size-ratio 0.7)
files history)
(| (:right-max-size 45)
(- status (- main sub))
(- (:upper-size-ratio 0.4) branches logs))))
(defvar e2wm:c-monky-winfo
'((:name main)
(:name status :plugin monky-status)
(:name files :plugin files)
(:name history :plugin history-list)
(:name sub :buffer nil :default-hide t)
(:name branches :plugin monky-branches)
(:name logs :plugin monky-logs)))
(defvar e2wm:c-monky-show-main-regexp
"\\*\\(vc-diff\\)\\*")
(e2wm:pst-class-register
(make-e2wm:$pst-class
:name 'monky
:extend 'base
:title "Monky"
:init 'e2wm:dp-monky-init
:main 'main
:start 'e2wm:dp-monky-start
:update 'e2wm:dp-monky-update
:switch 'e2wm:dp-monky-switch
:popup 'e2wm:dp-monky-popup
:leave 'e2wm:dp-vcs-monky
:keymap 'e2wm:dp-monky-minor-mode-map))
(defadvice monky-log-edit-commit (after e2wm:ad-override-monky)
(e2wm:pst-update-windows))
(ad-deactivate-regexp "^e2wm:ad-override-monky$")
(defun e2wm:dp-vcs-monky (wm)
(ad-deactivate-regexp "^e2wm:ad-override-monky$")
(setq e2wm:prev-selected-buffer nil))
(defun e2wm:dp-monky-start (wm)
(ad-activate-regexp "^e2wm:ad-override-monky$"))
(defun e2wm:dp-monky-init ()
(let* ((monky-wm
(wlf:no-layout e2wm:c-monky-recipe e2wm:c-monky-winfo))
(buf (or e2wm:prev-selected-buffer
(e2wm:history-get-main-buffer))))
(wlf:set-buffer monky-wm 'main buf)
monky-wm))
(defun e2wm:dp-monky-update (wm)
(monky-with-refresh
(e2wm:$pst-class-super)))
(defun e2wm:dp-monky-switch (buf)
(e2wm:message "#DP MONKY switch : %s" buf)
(e2wm:vcs-select-if-plugin buf))
(defun e2wm:dp-monky-popup (buf)
(let ((cb (current-buffer)))
(e2wm:message "#DP MONKY popup : %s (current %s / backup %s)"
buf cb e2wm:override-window-cfg-backup))
(unless (e2wm:vcs-select-if-plugin buf)
(let ((buf-name (buffer-name buf))
(wm (e2wm:pst-get-wm))
(not-minibufp (= 0 (minibuffer-depth))))
(e2wm:with-advice
(cond
((equal buf-name monky-commit-buffer-name)
;; displaying commit objects in the main window
(e2wm:pst-buffer-set 'main buf t nil))
((string-match "^\\*monky: .*\\*$" buf-name)
;; displaying status object in the status window
(e2wm:pst-buffer-set 'status buf t t))
((equal buf-name monky-queue-buffer-name)
;; displaying queue objects in the status window
(e2wm:pst-buffer-set 'status buf t t))
((buffer-file-name buf)
;; displaying file buffer in the main window
(e2wm:pst-buffer-set 'main buf t t))
(t
;; displaying other objects in the sub window
(e2wm:pst-buffer-set 'sub buf t not-minibufp)))))))
;; Commands / Keybindings
(defun e2wm:dp-monky ()
(interactive)
(e2wm:pst-change 'monky))
(defvar e2wm:dp-monky-minor-mode-map
(e2wm:define-keymap '() e2wm:prefix-key))
;; (e2wm:add-keymap e2wm:pst-minor-mode-keymap '(("prefix v" . e2wm:dp-monky)) e2wm:prefix-key)
;;; Subversion / plugins
;;;--------------------------------------------------
(defvar e2wm:def-plugin-svn-log-arg "-l 4 -v")
(defun e2wm:def-plugin-svn-top-dir (dir)
(let* ((expanded-dir (expand-file-name dir))
(svndir (member ".svn" (directory-files expanded-dir))))
(cond
((null svndir) nil)
((or
(string= expanded-dir "/")
(string= expanded-dir (expand-file-name "~/"))) nil)
(t (let ((updir (e2wm:def-plugin-svn-top-dir
(concat (file-name-as-directory dir) ".."))))
(if (null updir) expanded-dir updir))))))
(defvar e2wm:def-plugin-svn-logs-buffer-name " *WM:dsvn-logs*" "[internal]")
(defun e2wm:def-plugin-svn-logs (frame wm winfo)
(e2wm:def-plugin-vcs-with-window
'e2wm:def-plugin-svn-top-dir
(lambda (dir topdir)
(let ((default-directory (file-name-as-directory topdir)))
(svn-log e2wm:def-plugin-svn-log-arg))
(let ((dbuf (get-buffer-create e2wm:def-plugin-svn-logs-buffer-name)))
(with-current-buffer dbuf
(setq buffer-read-only nil)
(buffer-disable-undo buf)
(erase-buffer)
(insert (with-current-buffer (get-buffer "*svn output*")
(buffer-string)))
(setq default-directory dir)
(setq buffer-read-only t)
(goto-char (point-min))
(svn-log-mode))
(set-window-buffer (selected-window) dbuf)))
(lambda () (e2wm:def-plugin-vcs-na-buffer "Subversion N/A"))))
(e2wm:plugin-register 'svn-logs
"Svn Logs"
'e2wm:def-plugin-svn-logs)
(defun e2wm:def-plugin-svn-status (frame wm winfo)
(e2wm:def-plugin-vcs-with-window
'e2wm:def-plugin-svn-top-dir
(lambda (dir topdir)
(svn-status (file-name-as-directory topdir)))
(lambda () (e2wm:history-get-main-buffer))))
(e2wm:plugin-register 'svn-status
"Svn Status"
'e2wm:def-plugin-svn-status)
;;; Subversion status perspective
;;;--------------------------------------------------
(defvar e2wm:c-svn-recipe
'(| (:left-max-size 35)
(- (:upper-size-ratio 0.7)
files history)
(| (:right-max-size 45)
(- status (- main sub))
logs)))
(defvar e2wm:c-svn-winfo
'((:name main)
(:name status :plugin svn-status)
(:name files :plugin files)
(:name history :plugin history-list)
(:name sub :buffer nil :default-hide t)
(:name logs :plugin svn-logs :default-hide t)))
(defvar e2wm:c-svn-focus-buffer-regexp "\\*\\(svn commit\\)\\*")
(e2wm:pst-class-register
(make-e2wm:$pst-class
:name 'svn
:extend 'base
:title "Svn"
:init 'e2wm:dp-svn-init
:main 'main
:switch 'e2wm:dp-svn-switch
:popup 'e2wm:dp-svn-popup
:leave 'e2wm:dp-svn-leave
:keymap 'e2wm:dp-svn-minor-mode-map))
(defun e2wm:dp-svn-leave (wm)
(setq e2wm:prev-selected-buffer nil))
(defun e2wm:dp-svn-init ()
(let* ((svn-wm
(wlf:no-layout e2wm:c-svn-recipe e2wm:c-svn-winfo))
(buf (or e2wm:prev-selected-buffer
(e2wm:history-get-main-buffer))))
(wlf:set-buffer svn-wm 'main buf)
svn-wm))
(defun e2wm:dp-svn-switch (buf)
(e2wm:message "#DP SVN switch : %s" buf)
(e2wm:vcs-select-if-plugin buf))
(defun e2wm:dp-svn-popup (buf)
(let ((cb (current-buffer)))
(e2wm:message "#DP SVN popup : %s (current %s / backup %s)"
buf cb e2wm:override-window-cfg-backup))
(let* ((wm (e2wm:pst-get-wm))
(bufname (buffer-name buf))
(focus-set (and (= 0 (minibuffer-depth))
(string-match e2wm:c-svn-focus-buffer-regexp bufname))))
(e2wm:with-advice
(e2wm:pst-buffer-set 'sub buf t focus-set))))
;; Commands / Keybindings
(defun e2wm:dp-svn ()
(interactive)
(e2wm:pst-change 'svn))
(defvar e2wm:dp-svn-minor-mode-map
(e2wm:define-keymap '() e2wm:prefix-key))
;; (e2wm:add-keymap e2wm:pst-minor-mode-keymap '(("prefix v" . e2wm:dp-svn)) e2wm:prefix-key)
(provide 'e2wm-vcs)
;;; e2wm-vcs.el ends here