-
Notifications
You must be signed in to change notification settings - Fork 14
/
git-annex.el
189 lines (160 loc) · 6.83 KB
/
git-annex.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
;;; git-annex.el --- Mode for easy editing of git-annex'd files
;; Copyright (C) 2012 John Wiegley
;; Author: John Wiegley <[email protected]>
;; Created: 20 Oct 2012
;; Version: 1.1
;; Keywords: files data git annex
;; X-URL: https://github.com/jwiegley/git-annex-el
;; 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 2, 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 GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
;; Typing C-x C-q in an annexed file buffer causes Emacs to run "git annex
;; edit". When the buffer is killed Emacs will run "git annex add && git
;; commit -m Updated".
;;
;; Dired has been extended to not show Annex symlinks, but instead to color
;; annexed files green (and preserve the "l" in the file modes). You have the
;; following commands available in dired-mode on all marked files (or the
;; current file):
;;
;; @ a Add file to Git annex
;; @ e Edit an annexed file
;;; Code:
(eval-when-compile
(require 'dired nil t) ; for variable dired-mode-map
(require 'dired-aux nil t) ; for function dired-relist-file
(require 'cl))
(defgroup git-annex nil
"Mode for easy editing of git-annex'd files"
:group 'files)
(defcustom git-annex-commit t
"If not nil, git-annex command will commit by default.
otherwise you will have to commit by hand."
:type 'boolean)
(defsubst git-annex (&rest args)
(apply #'call-process "git" nil nil nil "annex" args))
(defun git-annex-add-file ()
(git-annex "add" (file-relative-name buffer-file-name default-directory))
(when git-annex-commit
(call-process "git" nil nil nil "commit" "-m" "Updated")))
(defun git-annex--toggle-unlock ()
(when (string=
(vc-backend buffer-file-name)
"Git"
)
(when (and buffer-file-name buffer-read-only
(file-symlink-p buffer-file-name))
(let ((target (nth 0 (file-attributes buffer-file-name))))
(assert (stringp target))
(when (string-match "\\.git/annex/" target)
(call-process "git" nil nil nil "annex" "edit"
(file-relative-name buffer-file-name default-directory))
(let ((here (point-marker)))
(unwind-protect
(revert-buffer nil t t)
(goto-char here)))
(add-hook 'kill-buffer-hook 'git-annex-add-file nil t)
(setq buffer-read-only t))))
(when (and buffer-file-name (not buffer-read-only)
(not (file-symlink-p buffer-file-name)))
(let ((cur (current-buffer))
(name buffer-file-name)
(result))
(with-temp-buffer
(call-process "git" nil t nil "diff-files" "--diff-filter=T" "-G^[./]*\\.git/annex/objects/" "--name-only" "--" (file-relative-name name default-directory))
(setq result (buffer-string)))
(unless (string= result "")
(git-annex-add-file)
(let ((here (point-marker)))
(unwind-protect
(revert-buffer nil t t)
(goto-char here)))
(setq buffer-read-only nil)))))
)
(defadvice toggle-read-only (before git-annex-edit-file activate)
(git-annex--toggle-unlock))
(defadvice read-only-mode (before git-annex-edit-file activate)
(git-annex--toggle-unlock))
(defface git-annex-dired-annexed-available
'((((class color) (background dark))
(:foreground "dark green"))
(((class color) (background light))
(:foreground "dark green")))
"Face used to highlight git-annex'd files."
:group 'git-annex)
(defface git-annex-dired-annexed-unavailable
'((((class color) (background dark))
(:foreground "firebrick"))
(((class color) (background light))
(:foreground "firebrick")))
"Face used to highlight git-annex'd files."
:group 'git-annex)
(defvar git-annex-dired-annexed-available 'git-annex-dired-annexed-available
"Face name used to highlight available git-annex'd files.")
(defvar git-annex-dired-annexed-unavailable 'git-annex-dired-annexed-unavailable
"Face name used to highlight unavailable git-annex'd files.")
(defvar git-annex-dired-annexed-invisible
'(face git-annex-dired-annexed-available invisible t)
"Face name used to hide a git-annex'd file's annex path.")
(defun git-annex-lookup-file (limit)
(cl-loop while (re-search-forward " -> .*\\.git/annex/.+" limit t)
if (file-exists-p
(file-truename (dired-get-filename nil t)))
return t))
(eval-after-load "dired"
'(progn
(add-to-list 'dired-font-lock-keywords
(list " -> .*\\.git/annex/"
'("\\(.+\\)\\( -> .+\\)" (dired-move-to-filename) nil
(1 git-annex-dired-annexed-unavailable)
(2 git-annex-dired-annexed-invisible))))
(add-to-list 'dired-font-lock-keywords
(list 'git-annex-lookup-file
'("\\(.+\\)\\( -> .+\\)" (dired-move-to-filename) nil
(1 git-annex-dired-annexed-available)
(2 git-annex-dired-annexed-invisible))))))
(defvar git-annex-dired-map
(let ((map (make-keymap)))
(define-key map "a" 'git-annex-dired-add-files)
(define-key map "d" 'git-annex-dired-drop-files)
(define-key map "e" 'git-annex-dired-edit-files)
(define-key map "g" 'git-annex-dired-get-files)
map)
"Git-annex keymap for `dired-mode' buffers.")
(add-hook 'dired-mode-hook
(lambda () (define-key dired-mode-map "@" git-annex-dired-map)))
(defun git-annex-dired--apply (command file-list)
(let ((here (point)))
(unwind-protect
(mapc #'(lambda (file)
(git-annex command file)
(dired-relist-file (expand-file-name file)))
file-list)
(goto-char here))))
(defmacro git-annex-dired-do-to-files (cmd msg &optional commit-after)
`(defun ,(intern (concat "git-annex-dired-" cmd "-files"))
(file-list &optional arg)
(interactive
(let ((files (dired-get-marked-files t current-prefix-arg)))
(list files current-prefix-arg)))
(git-annex-dired--apply ,cmd file-list)
(let ((msg (format ,msg (length file-list))))
,(if commit-after
`(when git-annex-commit (call-process "git" nil nil nil "commit" "-m" msg)))
(message msg))))
(git-annex-dired-do-to-files "add" "Annex: updated %d file(s)" t)
(git-annex-dired-do-to-files "drop" "Annex: dropped %d file(s)")
(git-annex-dired-do-to-files "edit" "Annex: unlocked %d file(s) for editing")
(git-annex-dired-do-to-files "get" "Annex: got %d file(s)")
(provide 'git-annex)
;;; git-annex.el ends here