(vc-directory-exclusion-list): Use eval-after-load.
[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
5;; Author: Alexandre Julliard
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) ??
69;; - unregister (file) NEEDED
9143abff 70;; * checkin (files rev comment) OK
53cc90ab
DN
71;; * find-version (file rev buffer) NEEDED!
72;; * checkout (file &optional editable rev) OK
73;; * revert (file &optional contents-done) OK
74;; - rollback (files) NEEDED
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?
88;; - diff-tree (dir &optional rev1 rev2) NEEDED
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 () ??
104;; - delete-file (file) NEEDED
105;; - rename-file (old new) NEEDED
106;; - find-file-hook () PROBABLY NOT NEEDED
107;; - find-file-not-found-hook () PROBABLY NOT NEEDED
fff4a046
DN
108
109(eval-when-compile (require 'cl))
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
53cc90ab 194;; XXX Can't this just use the result of vc-git-state?
fff4a046
DN
195(defun vc-git-workfile-unchanged-p (file)
196 (let ((sha1 (vc-git--run-command-string file "hash-object" "--"))
197 (head (vc-git--run-command-string file "ls-tree" "-z" "HEAD" "--")))
198 (and head
199 (string-match "[0-7]\\{6\\} blob \\([0-9a-f]\\{40\\}\\)\t[^\0]+\0" head)
200 (string= (car (split-string sha1 "\n")) (match-string 1 head)))))
201
53cc90ab
DN
202(defun vc-git-dired-state-info (file)
203 "Git-specific version of `vc-dired-state-info'."
204 (let ((git-state (vc-state file)))
205 (if (eq git-state 'edited)
206 "(modified)"
207 ;; fall back to the default VC representation
208 (vc-default-dired-state-info 'GIT file))))
209
210;;; STATE-CHANGING FUNCTIONS
211
212(defun vc-git-create-repo ()
213 "Create a new GIT repository."
214 (vc-git-command "init" nil 0 nil))
215
8b9783e0 216(defun vc-git-register (files &optional rev comment)
fff4a046 217 "Register FILE into the git version-control system."
8b9783e0 218 (vc-git-command nil 0 files "update-index" "--add" "--"))
fff4a046 219
53cc90ab
DN
220(defalias 'vc-git-responsible-p 'vc-git-root)
221
8b9783e0 222(defun vc-git-checkin (files rev comment)
fff4a046 223 (let ((coding-system-for-write git-commits-coding-system))
8b9783e0 224 (vc-git-command nil 0 files "commit" "-m" comment "--only" "--")))
fff4a046
DN
225
226(defun vc-git-checkout (file &optional editable rev destfile)
227 (if destfile
228 (let ((fullname (substring
229 (vc-git--run-command-string file "ls-files" "-z" "--full-name" "--")
230 0 -1))
231 (coding-system-for-read 'no-conversion)
232 (coding-system-for-write 'no-conversion))
233 (with-temp-file destfile
234 (eq 0 (call-process "git" nil t nil "cat-file" "blob"
235 (concat (or rev "HEAD") ":" fullname)))))
236 (vc-git--run-command file "checkout" (or rev "HEAD"))))
237
238(defun vc-git-revert (file &optional contents-done)
239 "Revert FILE to the version stored in the git repository."
240 (if contents-done
241 (vc-git--run-command file "update-index" "--")
242 (vc-git--run-command file "checkout" "HEAD")))
243
53cc90ab
DN
244;;; HISTORY FUNCTIONS
245
8b9783e0
DN
246(defun vc-git-print-log (files &optional buffer)
247 "Get change log associated with FILES."
fff4a046
DN
248 (let ((name (file-relative-name file))
249 (coding-system-for-read git-commits-coding-system))
53cc90ab
DN
250 ;; `log-view-mode' needs to have the file name in order to function
251 ;; correctly. "git log" does not print it, so we insert it here by
252 ;; hand.
253
254 ;; `vc-do-command' creates the buffer, but we need it before running
255 ;; the command.
256 (vc-setup-buffer buffer)
257 ;; If the buffer exists from a previous invocation it might be
258 ;; read-only.
259 (let ((inhibit-read-only t))
8b9783e0
DN
260 ;; XXX Here loop and call "git rev-list" on each file separately
261 ;; to make sure that each file gets a "File:" header before the
262 ;; corresponding log. Maybe there is a way to do this with one
263 ;; command...
264 (dolist (file files)
53cc90ab
DN
265 (with-current-buffer
266 buffer
267 (insert "File: " (file-name-nondirectory file) "\n")))
8b9783e0 268 (vc-git-command buffer 'async name "rev-list" "--pretty" "HEAD" "--"))))
53cc90ab
DN
269
270(defvar log-view-message-re)
271(defvar log-view-file-re)
272(defvar log-view-font-lock-keywords)
273
274(define-derived-mode vc-git-log-view-mode log-view-mode "GIT-Log-View"
275 (require 'add-log) ;; we need the faces add-log
276 ;; Don't have file markers, so use impossible regexp.
277 (set (make-local-variable 'log-view-file-re) "^File:[ \t]+\\(.+\\)")
278 (set (make-local-variable 'log-view-message-re)
279 "^commit *\\([0-9a-z]+\\)")
280 (set (make-local-variable 'log-view-font-lock-keywords)
281 (append
282 `((,log-view-message-re (1 'change-log-acknowledgement))
283 (,log-view-file-re (1 'change-log-file-face)))
284 ;; Handle the case:
285 ;; user: foo@bar
286 '(("^Author:[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)"
287 (1 'change-log-email))
288 ;; Handle the case:
289 ;; user: FirstName LastName <foo@bar>
290 ("^Author:[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]"
291 (1 'change-log-name)
292 (2 'change-log-email))
293 ("^Date: \\(.+\\)" (1 'change-log-date))
294 ("^summary:[ \t]+\\(.+\\)" (1 'log-view-message))))))
fff4a046
DN
295
296(defun vc-git-diff (file &optional rev1 rev2 buffer)
297 (let ((name (file-relative-name file))
298 (buf (or buffer "*vc-diff*")))
299 (if (and rev1 rev2)
53cc90ab
DN
300 (vc-git-command buf 0 name "diff-tree" "-p" rev1 rev2 "--")
301 (vc-git-command buf 0 name "diff-index" "-p" (or rev1 "HEAD") "--"))
302 ;; git-diff-index doesn't set exit status like diff does
fff4a046
DN
303 (if (vc-git-workfile-unchanged-p file) 0 1)))
304
305(defun vc-git-annotate-command (file buf &optional rev)
53cc90ab 306 ;; FIXME: rev is ignored
fff4a046 307 (let ((name (file-relative-name file)))
53cc90ab 308 (vc-git-command buf 0 name "blame" (if rev (concat "-r" rev)))))
fff4a046
DN
309
310(defun vc-git-annotate-time ()
311 (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)
312 (vc-annotate-convert-time
313 (apply #'encode-time (mapcar (lambda (match) (string-to-number (match-string match))) '(6 5 4 3 2 1 7))))))
314
53cc90ab
DN
315(defun vc-git-annotate-extract-revision-at-line ()
316 (save-excursion
317 (move-beginning-of-line 1)
318 (and (looking-at "[0-9a-f]+")
319 (buffer-substring-no-properties (match-beginning 0) (match-end 0)))))
320
321;;; MISCELLANEOUS
fff4a046
DN
322
323(defun vc-git-previous-version (file rev)
53cc90ab 324 "Git-specific version of `vc-previous-version'."
fff4a046
DN
325 (let ((default-directory (file-name-directory (expand-file-name file)))
326 (file (file-name-nondirectory file)))
327 (vc-git-symbolic-commit
328 (with-temp-buffer
329 (and
330 (zerop
331 (call-process "git" nil '(t nil) nil "rev-list"
332 "-2" rev "--" file))
333 (goto-char (point-max))
334 (bolp)
335 (zerop (forward-line -1))
336 (not (bobp))
337 (buffer-substring-no-properties
338 (point)
339 (1- (point-max))))))))
340
341(defun vc-git-next-version (file rev)
53cc90ab 342 "Git-specific version of `vc-next-version'."
fff4a046
DN
343 (let* ((default-directory (file-name-directory
344 (expand-file-name file)))
345 (file (file-name-nondirectory file))
346 (current-rev
347 (with-temp-buffer
348 (and
349 (zerop
350 (call-process "git" nil '(t nil) nil "rev-list"
351 "-1" rev "--" file))
352 (goto-char (point-max))
353 (bolp)
354 (zerop (forward-line -1))
355 (bobp)
356 (buffer-substring-no-properties
357 (point)
358 (1- (point-max)))))))
359 (and current-rev
360 (vc-git-symbolic-commit
361 (with-temp-buffer
362 (and
363 (zerop
364 (call-process "git" nil '(t nil) nil "rev-list"
365 "HEAD" "--" file))
366 (goto-char (point-min))
367 (search-forward current-rev nil t)
368 (zerop (forward-line -1))
369 (buffer-substring-no-properties
370 (point)
371 (progn (forward-line 1) (1- (point))))))))))
372
373\f
374;; Internal commands
375
53cc90ab
DN
376(defun vc-git-root (file)
377 (vc-find-root file ".git"))
378
8b9783e0 379(defun vc-git-command (buffer okstatus file-or-list &rest flags)
53cc90ab
DN
380 "A wrapper around `vc-do-command' for use in vc-git.el.
381The difference to vc-do-command is that this function always invokes `git'."
8b9783e0 382 (apply 'vc-do-command buffer okstatus "git" file-or-list flags))
53cc90ab 383
fff4a046
DN
384(defun vc-git--run-command-string (file &rest args)
385 "Run a git command on FILE and return its output as string."
386 (let* ((ok t)
387 (str (with-output-to-string
388 (with-current-buffer standard-output
389 (unless (eq 0 (apply #'call-process "git" nil '(t nil) nil
390 (append args (list (file-relative-name file)))))
391 (setq ok nil))))))
392 (and ok str)))
393
394(defun vc-git--run-command (file &rest args)
395 "Run a git command on FILE, discarding any output."
396 (let ((name (file-relative-name file)))
397 (eq 0 (apply #'call-process "git" nil (get-buffer "*Messages") nil (append args (list name))))))
398
399(defun vc-git-symbolic-commit (commit)
400 "Translate COMMIT string into symbolic form.
401Returns nil if not possible."
402 (and commit
403 (with-temp-buffer
404 (and
405 (zerop
406 (call-process "git" nil '(t nil) nil "name-rev"
407 "--name-only" "--tags"
408 commit))
409 (goto-char (point-min))
410 (= (forward-line 2) 1)
411 (bolp)
412 (buffer-substring-no-properties (point-min) (1- (point-max)))))))
413
414(provide 'vc-git)
53cc90ab
DN
415
416;;; vc-git.el ends here