*** empty log message ***
[bpt/emacs.git] / lisp / vc-git.el
CommitLineData
fff4a046
DN
1;;; vc-git.el --- VC backend for the git version control system
2
3;; Copyright (C) 2006, 2007 Free Software Foundation, Inc.
4
8b38ce20 5;; Author: Alexandre Julliard <julliard@winehq.org>
fff4a046
DN
6;; Keywords: tools
7
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 2, or (at your option)
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23;; Boston, MA 02110-1301, USA.
24
25;;; Commentary:
26
27;; This file contains a VC backend for the git version control
28;; system.
29;;
30
31;;; Installation:
32
33;; To install: put this file on the load-path and add GIT to the list
34;; of supported backends in `vc-handled-backends'; the following line,
35;; placed in your ~/.emacs, will accomplish this:
36;;
37;; (add-to-list 'vc-handled-backends 'GIT)
38
39;;; Todo:
53cc90ab
DN
40;; - check if more functions could use vc-git-command instead
41;; of start-process.
fff4a046
DN
42;; - changelog generation
43;; - working with revisions other than HEAD
53cc90ab
DN
44
45;; Implement the rest of the vc interface. See the comment at the
46;; beginning of vc.el. The current status is:
fff4a046 47;;
53cc90ab
DN
48;; FUNCTION NAME STATUS
49;; BACKEND PROPERTIES
50;; * revision-granularity OK
51;; STATE-QUERYING FUNCTIONS
52;; * registered (file) OK
53;; * state (file) OK
54;; - state-heuristic (file) ?? PROBABLY NOT NEEDED
55;; - dir-state (dir) OK
56;; * workfile-version (file) OK
57;; - latest-on-branch-p (file) ??
58;; * checkout-model (file) OK
59;; - workfile-unchanged-p (file) MAYBE CAN BE SIMPLIFIED
60;; - mode-line-string (file) NOT NEEDED
61;; - dired-state-info (file) OK
62;; STATE-CHANGING FUNCTIONS
63;; * create-repo () OK
9143abff 64;; * register (files &optional rev comment) OK
53cc90ab
DN
65;; - init-version (file) ??
66;; - responsible-p (file) OK
67;; - could-register (file) NEEDED
68;; - receive-file (file rev) ??
d7009f45 69;; - unregister (file) OK
9143abff 70;; * checkin (files rev comment) OK
b0f90937 71;; * find-version (file rev buffer) OK
53cc90ab
DN
72;; * checkout (file &optional editable rev) OK
73;; * revert (file &optional contents-done) OK
b0f90937 74;; - rollback (files) ?? PROBABLY NOT NEEDED
53cc90ab
DN
75;; - merge (file rev1 rev2) NEEDED
76;; - merge-news (file) NEEDED
77;; - steal-lock (file &optional version) NOT NEEDED
78;; HISTORY FUNCTIONS
9143abff 79;; * print-log (files &optional buffer) OK
53cc90ab
DN
80;; - log-view-mode () OK
81;; - show-log-entry (version) NOT NEEDED, DEFAULT IS GOOD
82;; - wash-log (file) ??
83;; - logentry-check () ??
84;; - comment-history (file) ??
85;; - update-changelog (files) ??
86;; * diff (file &optional rev1 rev2 buffer) PORT TO NEW VC INTERFACE
87;; - revision-completion-table (file) NEEDED?
b0f90937 88;; - diff-tree (dir &optional rev1 rev2) OK
53cc90ab
DN
89;; - annotate-command (file buf &optional rev) OK
90;; - annotate-time () OK
91;; - annotate-current-time () ?? NOT NEEDED
92;; - annotate-extract-revision-at-line () OK
93;; SNAPSHOT SYSTEM
94;; - create-snapshot (dir name branchp) NEEDED
95;; - assign-name (file name) NOT NEEDED
96;; - retrieve-snapshot (dir name update) NEEDED
97;; MISCELLANEOUS
98;; - make-version-backups-p (file) ??
99;; - repository-hostname (dirname) ??
100;; - previous-version (file rev) ??
101;; - next-version (file rev) ??
102;; - check-headers () ??
103;; - clear-headers () ??
8b38ce20
DN
104;; - delete-file (file) OK
105;; - rename-file (old new) OK
53cc90ab
DN
106;; - find-file-hook () PROBABLY NOT NEEDED
107;; - find-file-not-found-hook () PROBABLY NOT NEEDED
fff4a046 108
b0f90937 109(eval-when-compile (require 'cl) (require 'vc))
fff4a046
DN
110
111(defvar git-commits-coding-system 'utf-8
112 "Default coding system for git commits.")
113
53cc90ab
DN
114;; XXX when this backend is considered sufficiently reliable this
115;; should be moved to vc-hooks.el
116(add-to-list 'vc-handled-backends 'GIT)
faa98100
DN
117(eval-after-load "vc"
118 '(add-to-list 'vc-directory-exclusion-list ".bzr" t))
53cc90ab
DN
119
120;;; BACKEND PROPERTIES
121
122(defun vc-git-revision-granularity ()
123 'repository)
124
125;;; STATE-QUERYING FUNCTIONS
126
127;;;###autoload (defun vc-git-registered (file)
128;;;###autoload "Return non-nil if FILE is registered with git."
129;;;###autoload (if (vc-find-root file ".git") ; short cut
130;;;###autoload (progn
131;;;###autoload (load "vc-git")
132;;;###autoload (vc-git-registered file))))
133
fff4a046
DN
134(defun vc-git-registered (file)
135 "Check whether FILE is registered with git."
53cc90ab
DN
136 (when (vc-git-root file)
137 (with-temp-buffer
138 (let* ((dir (file-name-directory file))
139 (name (file-relative-name file dir)))
140 (and (ignore-errors
141 (when dir (cd dir))
142 (eq 0 (call-process "git" nil '(t nil) nil "ls-files" "-c" "-z" "--" name)))
143 (let ((str (buffer-string)))
144 (and (> (length str) (length name))
145 (string= (substring str 0 (1+ (length name))) (concat name "\0")))))))))
146
fff4a046 147(defun vc-git-state (file)
53cc90ab 148 "Git-specific version of `vc-state'."
fff4a046
DN
149 (let ((diff (vc-git--run-command-string file "diff-index" "-z" "HEAD" "--")))
150 (if (and diff (string-match ":[0-7]\\{6\\} [0-7]\\{6\\} [0-9a-f]\\{40\\} [0-9a-f]\\{40\\} [ADMU]\0[^\0]+\0" diff))
151 'edited
152 'up-to-date)))
153
53cc90ab
DN
154(defun vc-git-dir-state (dir)
155 (with-temp-buffer
156 (vc-git-command (current-buffer) nil nil "ls-files" "-t")
157 (goto-char (point-min))
158 (let ((status-char nil)
159 (file nil))
160 (while (not (eobp))
161 (setq status-char (char-after))
162 (setq file
163 (expand-file-name
164 (buffer-substring-no-properties (+ (point) 2) (line-end-position))))
165 (cond
166 ;; The rest of the possible states in "git ls-files -t" output:
167 ;; R removed/deleted
168 ;; K to be killed
169 ;; should not show up in vc-dired, so don't deal with them
170 ;; here.
171 ((eq status-char ?H)
172 (vc-file-setprop file 'vc-state 'up-to-date))
173 ((eq status-char ?M)
174 (vc-file-setprop file 'vc-state 'edited))
175 ((eq status-char ?C)
176 (vc-file-setprop file 'vc-state 'edited))
177 ((eq status-char ??)
178 (vc-file-setprop file 'vc-backend 'none)
179 (vc-file-setprop file 'vc-state 'nil)))
180 (forward-line)))))
181
fff4a046 182(defun vc-git-workfile-version (file)
53cc90ab 183 "Git-specific version of `vc-workfile-version'."
fff4a046
DN
184 (let ((str (with-output-to-string
185 (with-current-buffer standard-output
186 (call-process "git" nil '(t nil) nil "symbolic-ref" "HEAD")))))
187 (if (string-match "^\\(refs/heads/\\)?\\(.+\\)$" str)
188 (match-string 2 str)
189 str)))
190
191(defun vc-git-checkout-model (file)
192 'implicit)
193
194(defun vc-git-workfile-unchanged-p (file)
4d3ac01e
DN
195 ;; The reason this does not use the result of vc-git-state is that
196 ;; git-diff-index (used by vc-git-state) doesn't refresh the cached
197 ;; stat info, so if the file has been modified it will always show
198 ;; up as modified in vc-git-state, even if the change has been
199 ;; undone, until git-update-index --refresh is run.
200
201 ;; OTOH the vc-git-workfile-unchanged-p implementation checks the
202 ;; actual content, so it will detect the case of a file reverted
203 ;; back to its original state.
204
205 ;; The ideal implementation would be to refresh the stat cache and
206 ;; then call vc-git-state, but at the moment there's no git command
207 ;; to refresh a single file, so this will have to be added first.
fff4a046
DN
208 (let ((sha1 (vc-git--run-command-string file "hash-object" "--"))
209 (head (vc-git--run-command-string file "ls-tree" "-z" "HEAD" "--")))
210 (and head
211 (string-match "[0-7]\\{6\\} blob \\([0-9a-f]\\{40\\}\\)\t[^\0]+\0" head)
212 (string= (car (split-string sha1 "\n")) (match-string 1 head)))))
213
53cc90ab
DN
214(defun vc-git-dired-state-info (file)
215 "Git-specific version of `vc-dired-state-info'."
216 (let ((git-state (vc-state file)))
217 (if (eq git-state 'edited)
218 "(modified)"
219 ;; fall back to the default VC representation
220 (vc-default-dired-state-info 'GIT file))))
221
222;;; STATE-CHANGING FUNCTIONS
223
224(defun vc-git-create-repo ()
225 "Create a new GIT repository."
226 (vc-git-command "init" nil 0 nil))
227
8b9783e0 228(defun vc-git-register (files &optional rev comment)
fff4a046 229 "Register FILE into the git version-control system."
8b9783e0 230 (vc-git-command nil 0 files "update-index" "--add" "--"))
fff4a046 231
53cc90ab
DN
232(defalias 'vc-git-responsible-p 'vc-git-root)
233
d7009f45
DN
234(defun vc-git-unregister (file)
235 (vc-git-command nil 0 file "rm" "-f" "--cached" "--"))
236
237
8b9783e0 238(defun vc-git-checkin (files rev comment)
fff4a046 239 (let ((coding-system-for-write git-commits-coding-system))
8b9783e0 240 (vc-git-command nil 0 files "commit" "-m" comment "--only" "--")))
fff4a046 241
b0f90937
DN
242(defun vc-git-find-version (file rev buffer)
243 (let ((coding-system-for-read 'binary)
8b38ce20
DN
244 (coding-system-for-write 'binary)
245 (fullname (substring
246 (vc-git--run-command-string
247 file "ls-files" "-z" "--full-name" "--")
248 0 -1)))
b0f90937
DN
249 (vc-git-command
250 buffer 0
8b38ce20 251 (concat (if rev rev "HEAD") ":" fullname) "cat-file" "blob")))
b0f90937
DN
252
253(defun vc-git-checkout (file &optional editable rev)
254 (vc-git-command nil0 file "checkout" (or rev "HEAD")))
fff4a046
DN
255
256(defun vc-git-revert (file &optional contents-done)
257 "Revert FILE to the version stored in the git repository."
258 (if contents-done
b0f90937
DN
259 (vc-git-command nil 0 file "update-index" "--")
260 (vc-git-command nil 0 file "checkout" "HEAD")))
fff4a046 261
53cc90ab
DN
262;;; HISTORY FUNCTIONS
263
8b9783e0
DN
264(defun vc-git-print-log (files &optional buffer)
265 "Get change log associated with FILES."
fff4a046
DN
266 (let ((name (file-relative-name file))
267 (coding-system-for-read git-commits-coding-system))
53cc90ab
DN
268 ;; `log-view-mode' needs to have the file name in order to function
269 ;; correctly. "git log" does not print it, so we insert it here by
270 ;; hand.
271
272 ;; `vc-do-command' creates the buffer, but we need it before running
273 ;; the command.
274 (vc-setup-buffer buffer)
275 ;; If the buffer exists from a previous invocation it might be
276 ;; read-only.
277 (let ((inhibit-read-only t))
8b9783e0
DN
278 ;; XXX Here loop and call "git rev-list" on each file separately
279 ;; to make sure that each file gets a "File:" header before the
280 ;; corresponding log. Maybe there is a way to do this with one
281 ;; command...
282 (dolist (file files)
53cc90ab
DN
283 (with-current-buffer
284 buffer
285 (insert "File: " (file-name-nondirectory file) "\n")))
8b9783e0 286 (vc-git-command buffer 'async name "rev-list" "--pretty" "HEAD" "--"))))
53cc90ab
DN
287
288(defvar log-view-message-re)
289(defvar log-view-file-re)
290(defvar log-view-font-lock-keywords)
291
292(define-derived-mode vc-git-log-view-mode log-view-mode "GIT-Log-View"
293 (require 'add-log) ;; we need the faces add-log
294 ;; Don't have file markers, so use impossible regexp.
295 (set (make-local-variable 'log-view-file-re) "^File:[ \t]+\\(.+\\)")
296 (set (make-local-variable 'log-view-message-re)
297 "^commit *\\([0-9a-z]+\\)")
298 (set (make-local-variable 'log-view-font-lock-keywords)
299 (append
300 `((,log-view-message-re (1 'change-log-acknowledgement))
301 (,log-view-file-re (1 'change-log-file-face)))
302 ;; Handle the case:
303 ;; user: foo@bar
304 '(("^Author:[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)"
305 (1 'change-log-email))
306 ;; Handle the case:
307 ;; user: FirstName LastName <foo@bar>
308 ("^Author:[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]"
309 (1 'change-log-name)
310 (2 'change-log-email))
311 ("^Date: \\(.+\\)" (1 'change-log-date))
312 ("^summary:[ \t]+\\(.+\\)" (1 'log-view-message))))))
fff4a046
DN
313
314(defun vc-git-diff (file &optional rev1 rev2 buffer)
315 (let ((name (file-relative-name file))
316 (buf (or buffer "*vc-diff*")))
317 (if (and rev1 rev2)
53cc90ab
DN
318 (vc-git-command buf 0 name "diff-tree" "-p" rev1 rev2 "--")
319 (vc-git-command buf 0 name "diff-index" "-p" (or rev1 "HEAD") "--"))
320 ;; git-diff-index doesn't set exit status like diff does
fff4a046
DN
321 (if (vc-git-workfile-unchanged-p file) 0 1)))
322
b0f90937
DN
323(defun vc-git-diff-tree (dir &optional rev1 rev2)
324 (vc-git-diff dir rev1 rev2))
325
fff4a046 326(defun vc-git-annotate-command (file buf &optional rev)
53cc90ab 327 ;; FIXME: rev is ignored
fff4a046 328 (let ((name (file-relative-name file)))
53cc90ab 329 (vc-git-command buf 0 name "blame" (if rev (concat "-r" rev)))))
fff4a046
DN
330
331(defun vc-git-annotate-time ()
332 (and (re-search-forward "[0-9a-f]+ (.* \\([0-9]+\\)-\\([0-9]+\\)-\\([0-9]+\\) \\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\) \\([-+0-9]+\\) +[0-9]+)" nil t)
333 (vc-annotate-convert-time
334 (apply #'encode-time (mapcar (lambda (match) (string-to-number (match-string match))) '(6 5 4 3 2 1 7))))))
335
53cc90ab
DN
336(defun vc-git-annotate-extract-revision-at-line ()
337 (save-excursion
338 (move-beginning-of-line 1)
339 (and (looking-at "[0-9a-f]+")
340 (buffer-substring-no-properties (match-beginning 0) (match-end 0)))))
341
342;;; MISCELLANEOUS
fff4a046
DN
343
344(defun vc-git-previous-version (file rev)
53cc90ab 345 "Git-specific version of `vc-previous-version'."
fff4a046
DN
346 (let ((default-directory (file-name-directory (expand-file-name file)))
347 (file (file-name-nondirectory file)))
348 (vc-git-symbolic-commit
349 (with-temp-buffer
350 (and
351 (zerop
352 (call-process "git" nil '(t nil) nil "rev-list"
353 "-2" rev "--" file))
354 (goto-char (point-max))
355 (bolp)
356 (zerop (forward-line -1))
357 (not (bobp))
358 (buffer-substring-no-properties
359 (point)
360 (1- (point-max))))))))
361
362(defun vc-git-next-version (file rev)
53cc90ab 363 "Git-specific version of `vc-next-version'."
fff4a046
DN
364 (let* ((default-directory (file-name-directory
365 (expand-file-name file)))
366 (file (file-name-nondirectory file))
367 (current-rev
368 (with-temp-buffer
369 (and
370 (zerop
371 (call-process "git" nil '(t nil) nil "rev-list"
372 "-1" rev "--" file))
373 (goto-char (point-max))
374 (bolp)
375 (zerop (forward-line -1))
376 (bobp)
377 (buffer-substring-no-properties
378 (point)
379 (1- (point-max)))))))
380 (and current-rev
381 (vc-git-symbolic-commit
382 (with-temp-buffer
383 (and
384 (zerop
385 (call-process "git" nil '(t nil) nil "rev-list"
386 "HEAD" "--" file))
387 (goto-char (point-min))
388 (search-forward current-rev nil t)
389 (zerop (forward-line -1))
390 (buffer-substring-no-properties
391 (point)
392 (progn (forward-line 1) (1- (point))))))))))
393
8b38ce20
DN
394(defun vc-git-delete-file (file)
395 (vc-git-command nil 0 file "rm" "-f" "--"))
b0f90937 396
8b38ce20
DN
397(defun vc-git-rename-file (old new)
398 (vc-git-command nil 0 (list old new) "mv" "-f" "--"))
b0f90937 399
fff4a046
DN
400\f
401;; Internal commands
402
53cc90ab
DN
403(defun vc-git-root (file)
404 (vc-find-root file ".git"))
405
8b9783e0 406(defun vc-git-command (buffer okstatus file-or-list &rest flags)
53cc90ab
DN
407 "A wrapper around `vc-do-command' for use in vc-git.el.
408The difference to vc-do-command is that this function always invokes `git'."
8b9783e0 409 (apply 'vc-do-command buffer okstatus "git" file-or-list flags))
53cc90ab 410
fff4a046
DN
411(defun vc-git--run-command-string (file &rest args)
412 "Run a git command on FILE and return its output as string."
413 (let* ((ok t)
414 (str (with-output-to-string
415 (with-current-buffer standard-output
416 (unless (eq 0 (apply #'call-process "git" nil '(t nil) nil
417 (append args (list (file-relative-name file)))))
418 (setq ok nil))))))
419 (and ok str)))
420
fff4a046
DN
421(defun vc-git-symbolic-commit (commit)
422 "Translate COMMIT string into symbolic form.
423Returns nil if not possible."
424 (and commit
425 (with-temp-buffer
426 (and
427 (zerop
428 (call-process "git" nil '(t nil) nil "name-rev"
429 "--name-only" "--tags"
430 commit))
431 (goto-char (point-min))
432 (= (forward-line 2) 1)
433 (bolp)
434 (buffer-substring-no-properties (point-min) (1- (point-max)))))))
435
436(provide 'vc-git)
53cc90ab 437
328471d9 438;; arch-tag: bd10664a-0e5b-48f5-a877-6c17b135be12
53cc90ab 439;;; vc-git.el ends here