comparison lisp/vc-bzr.el @ 78372:53ed644d1a88

* vc-bzr.el: New file (copied from the trunk). * vc-hooks.el (vc-handled-backends): Add BZR.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 31 Jul 2007 15:26:05 +0000
parents
children b16724404d4f
comparison
equal deleted inserted replaced
78371:f0d8038376f8 78372:53ed644d1a88
1 ;;; vc-bzr.el --- VC backend for the bzr revision control system
2
3 ;; Copyright (C) 2006, 2007 Free Software Foundation, Inc.
4
5 ;; NOTE: THIS IS A MODIFIED VERSION OF Dave Love's vc-bzr.el,
6 ;; which you can find at: http://www.loveshack.ukfsn.org/emacs/vc-bzr.el
7 ;; I could not get in touch with Dave Love by email, so
8 ;; I am releasing my changes separately. -- Riccardo
9
10 ;; Author: Dave Love <fx@gnu.org>, Riccardo Murri <riccardo.murri@gmail.com>
11 ;; Keywords: tools
12 ;; Created: Sept 2006
13 ;; Version: 2007-05-24
14 ;; URL: http://launchpad.net/vc-bzr
15
16 ;; This file is free software; you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by
18 ;; the Free Software Foundation; either version 3, or (at your option)
19 ;; any later version.
20
21 ;; This file is distributed in the hope that it will be useful,
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;; GNU General Public License for more details.
25
26 ;; You should have received a copy of the GNU General Public License
27 ;; along with GNU Emacs; see the file COPYING. If not, write to the
28 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29 ;; Boston, MA 02110-1301, USA.
30
31
32 ;;; Commentary:
33
34 ;; NOTE: THIS IS A MODIFIED VERSION OF Dave Love's vc-bzr.el,
35 ;; which you can find at: http://www.loveshack.ukfsn.org/emacs/vc-bzr.el
36
37 ;; See <URL:http://bazaar-vcs.org/> concerning bzr.
38
39 ;; Load this library to register bzr support in VC. It covers basic VC
40 ;; functionality, but was only lightly exercised with a few Emacs/bzr
41 ;; version combinations, namely those current on the authors' PCs.
42 ;; See various Fixmes below.
43
44
45 ;; Known bugs
46 ;; ==========
47
48 ;; When edititing a symlink and *both* the symlink and its target
49 ;; are bzr-versioned, `vc-bzr` presently runs `bzr status` on the
50 ;; symlink, thereby not detecting whether the actual contents
51 ;; (that is, the target contents) are changed.
52 ;; See https://bugs.launchpad.net/vc-bzr/+bug/116607
53
54 ;; For an up-to-date list of bugs, please see:
55 ;; https://bugs.launchpad.net/vc-bzr/+bugs
56
57
58 ;;; Code:
59
60 (eval-when-compile
61 (require 'cl)
62 (require 'vc)) ; for vc-exec-after
63
64 ;; Clear up the cache to force vc-call to check again and discover
65 ;; new functions when we reload this file.
66 (put 'BZR 'vc-functions nil)
67
68 (defgroup vc-bzr nil
69 "VC bzr backend."
70 ;; :version "22"
71 :group 'vc)
72
73 (defcustom vc-bzr-program "bzr"
74 "Name of the bzr command (excluding any arguments)."
75 :group 'vc-bzr
76 :type 'string)
77
78 ;; Fixme: there's probably no call for this.
79 (defcustom vc-bzr-program-args nil
80 "List of global arguments to pass to `vc-bzr-program'."
81 :group 'vc-bzr
82 :type '(repeat string))
83
84 (defcustom vc-bzr-diff-switches nil
85 "String/list of strings specifying extra switches for bzr diff under VC."
86 :type '(choice (const :tag "None" nil)
87 (string :tag "Argument String")
88 (repeat :tag "Argument List" :value ("") string))
89 :group 'vc-bzr)
90
91 ;; since v0.9, bzr supports removing the progress indicators
92 ;; by setting environment variable BZR_PROGRESS_BAR to "none".
93 (defun vc-bzr-command (bzr-command buffer okstatus file-or-list &rest args)
94 "Wrapper round `vc-do-command' using `vc-bzr-program' as COMMAND.
95 Invoke the bzr command adding `BZR_PROGRESS_BAR=none' to the environment."
96 (let ((process-environment
97 (list* "BZR_PROGRESS_BAR=none" ; Suppress progress output (bzr >=0.9)
98 "LC_ALL=C" ; Force English output
99 process-environment))
100 ;; bzr may attempt some kind of user interaction if its stdin/stdout
101 ;; is connected to a PTY; therefore, ask Emacs to use a pipe to
102 ;; communicate with it.
103 ;; This is redundant because vc-do-command does it already. --Stef
104 (process-connection-type nil))
105 (apply 'vc-do-command buffer okstatus vc-bzr-program
106 file-or-list bzr-command (append vc-bzr-program-args args))))
107
108
109 ;;;###autoload
110 (defconst vc-bzr-admin-dirname ".bzr") ; FIXME: "_bzr" on w32?
111
112 ;;;###autoload (defun vc-bzr-registered (file)
113 ;;;###autoload (if (vc-find-root file vc-bzr-admin-dirname)
114 ;;;###autoload (progn
115 ;;;###autoload (load "vc-bzr")
116 ;;;###autoload (vc-bzr-registered file))))
117
118 (defun vc-bzr-root-dir (file)
119 "Return the root directory in the hierarchy above FILE.
120 Return nil if there isn't one."
121 (vc-find-root file vc-bzr-admin-dirname))
122
123 (defun vc-bzr-registered (file)
124 "Return non-nil if FILE is registered with bzr."
125 (if (vc-bzr-root-dir file) ; Short cut.
126 (vc-bzr-state file))) ; Expensive.
127
128 (defun vc-bzr-buffer-nonblank-p (&optional buffer)
129 "Return non-nil if BUFFER contains any non-blank characters."
130 (or (> (buffer-size buffer) 0)
131 (save-excursion
132 (set-buffer (or buffer (current-buffer)))
133 (goto-char (point-min))
134 (re-search-forward "[^ \t\n]" (point-max) t))))
135
136 (defconst vc-bzr-state-words
137 "added\\|ignored\\|modified\\|removed\\|renamed\\|unknown"
138 "Regexp matching file status words as reported in `bzr' output.")
139
140 ;; FIXME: Also get this in a non-registered sub-directory.
141 (defun vc-bzr-state (file)
142 (with-temp-buffer
143 (cd (file-name-directory file))
144 (let ((ret (vc-bzr-command "status" t 255 file))
145 (state 'up-to-date))
146 ;; the only secure status indication in `bzr status' output
147 ;; is a couple of lines following the pattern::
148 ;; | <status>:
149 ;; | <file name>
150 ;; if the file is up-to-date, we get no status report from `bzr',
151 ;; so if the regexp search for the above pattern fails, we consider
152 ;; the file to be up-to-date.
153 (goto-char (point-min))
154 (when
155 (re-search-forward
156 (concat "^\\(" vc-bzr-state-words "\\):[ \t\n]+"
157 (file-name-nondirectory file) "[ \t\n]*$")
158 (point-max) t)
159 (let ((start (match-beginning 0))
160 (end (match-end 0)))
161 (goto-char start)
162 (setq state
163 (cond
164 ((not (equal ret 0)) nil)
165 ((looking-at "added\\|renamed\\|modified\\|removed") 'edited)
166 ((looking-at "unknown\\|ignored") nil)))
167 ;; erase the status text that matched
168 (delete-region start end)))
169 (when (vc-bzr-buffer-nonblank-p)
170 ;; "bzr" will output some warnings and informational messages
171 ;; to the user to stderr; due to Emacs' `vc-do-command' (and,
172 ;; it seems, `start-process' itself), we cannot catch stderr
173 ;; and stdout into different buffers. So, if there's anything
174 ;; left in the buffer after removing the above status
175 ;; keywords, let us just presume that any other message from
176 ;; "bzr" is a user warning, and display it.
177 (message "Warnings in `bzr' output: %s"
178 (buffer-substring (point-min) (point-max))))
179 (when state
180 (vc-file-setprop file 'vc-workfile-version
181 (vc-bzr-workfile-version file))
182 (vc-file-setprop file 'vc-state state))
183 state)))
184
185 (defun vc-bzr-workfile-unchanged-p (file)
186 (eq 'up-to-date (vc-bzr-state file)))
187
188 (defun vc-bzr-workfile-version (file)
189 ;; Looks like this could be obtained via counting lines in
190 ;; .bzr/branch/revision-history.
191 (with-temp-buffer
192 (vc-bzr-command "revno" t 0 file)
193 (goto-char (point-min))
194 (buffer-substring (point) (line-end-position))))
195
196 (defun vc-bzr-checkout-model (file)
197 'implicit)
198
199 (defun vc-bzr-create-repo ()
200 "Create a new BZR repository."
201 (vc-bzr-command "init" nil 0 nil))
202
203 (defun vc-bzr-register (files &optional rev comment)
204 "Register FILE under bzr.
205 Signal an error unless REV is nil.
206 COMMENT is ignored."
207 (if rev (error "Can't register explicit version with bzr"))
208 (vc-bzr-command "add" nil 0 files))
209
210 ;; Could run `bzr status' in the directory and see if it succeeds, but
211 ;; that's relatively expensive.
212 (defalias 'vc-bzr-responsible-p 'vc-bzr-root-dir
213 "Return non-nil if FILE is (potentially) controlled by bzr.
214 The criterion is that there is a `.bzr' directory in the same
215 or a superior directory.")
216
217 (defun vc-bzr-could-register (file)
218 "Return non-nil if FILE could be registered under bzr."
219 (and (vc-bzr-responsible-p file) ; shortcut
220 (condition-case ()
221 (with-temp-buffer
222 (vc-bzr-command "add" t 0 file "--dry-run")
223 ;; The command succeeds with no output if file is
224 ;; registered (in bzr 0.8).
225 (goto-char (point-min))
226 (looking-at "added "))
227 (error))))
228
229 (defun vc-bzr-unregister (file)
230 "Unregister FILE from bzr."
231 (vc-bzr-command "remove" nil 0 file))
232
233 (defun vc-bzr-checkin (files rev comment)
234 "Check FILE in to bzr with log message COMMENT.
235 REV non-nil gets an error."
236 (if rev (error "Can't check in a specific version with bzr"))
237 (vc-bzr-command "commit" nil 0 files "-m" comment))
238
239 (defun vc-bzr-checkout (file &optional editable rev destfile)
240 "Checkout revision REV of FILE from bzr to DESTFILE.
241 EDITABLE is ignored."
242 (unless destfile
243 (setq destfile (vc-version-backup-file-name file rev)))
244 (let ((coding-system-for-read 'binary)
245 (coding-system-for-write 'binary))
246 (with-temp-file destfile
247 (if rev
248 (vc-bzr-command "cat" t 0 file "-r" rev)
249 (vc-bzr-command "cat" t 0 file)))))
250
251 (defun vc-bzr-revert (file &optional contents-done)
252 (unless contents-done
253 (with-temp-buffer (vc-bzr-command "revert" t 'async file))))
254
255 (defvar log-view-message-re)
256 (defvar log-view-file-re)
257 (defvar log-view-font-lock-keywords)
258 (defvar log-view-current-tag-function)
259
260 (define-derived-mode vc-bzr-log-view-mode log-view-mode "Bzr-Log-View"
261 (remove-hook 'log-view-mode-hook 'vc-bzr-log-view-mode) ;Deactivate the hack.
262 (require 'add-log)
263 ;; Don't have file markers, so use impossible regexp.
264 (set (make-local-variable 'log-view-file-re) "\\'\\`")
265 (set (make-local-variable 'log-view-message-re)
266 "^ *-+\n *\\(?:revno: \\([0-9]+\\)\\|merged: .+\\)")
267 (set (make-local-variable 'log-view-font-lock-keywords)
268 ;; log-view-font-lock-keywords is careful to use the buffer-local
269 ;; value of log-view-message-re only since Emacs-23.
270 (append `((,log-view-message-re . 'log-view-message-face))
271 ;; log-view-font-lock-keywords
272 '(("^ *committer: \
273 \\([^<(]+?\\)[ ]*[(<]\\([[:alnum:]_.+-]+@[[:alnum:]_.-]+\\)[>)]"
274 (1 'change-log-name)
275 (2 'change-log-email))
276 ("^ *timestamp: \\(.*\\)" (1 'change-log-date-face))))))
277
278 (defun vc-bzr-print-log (files &optional buffer) ; get buffer arg in Emacs 22
279 "Get bzr change log for FILES into specified BUFFER."
280 ;; Fixme: This might need the locale fixing up if things like `revno'
281 ;; got localized, but certainly it shouldn't use LC_ALL=C.
282 ;; NB. Can't be async -- see `vc-bzr-post-command-function'.
283 (vc-bzr-command "log" buffer 0 files)
284 ;; FIXME: Until Emacs-23, VC was missing a hook to sort out the mode for
285 ;; the buffer, or at least set the regexps right.
286 (unless (fboundp 'vc-default-log-view-mode)
287 (add-hook 'log-view-mode-hook 'vc-bzr-log-view-mode)))
288
289 (defun vc-bzr-show-log-entry (version)
290 "Find entry for patch name VERSION in bzr change log buffer."
291 (goto-char (point-min))
292 (let (case-fold-search)
293 (if (re-search-forward (concat "^-+\nrevno: " version "$") nil t)
294 (beginning-of-line 0)
295 (goto-char (point-min)))))
296
297 ;; Fixem: vc-bzr-wash-log
298
299 (autoload 'vc-diff-switches-list "vc" nil nil t)
300
301 (defun vc-bzr-diff (files &optional rev1 rev2 buffer)
302 "VC bzr backend for diff."
303 (let ((working (vc-workfile-version (car files))))
304 (if (and (equal rev1 working) (not rev2))
305 (setq rev1 nil))
306 (if (and (not rev1) rev2)
307 (setq rev1 working))
308 ;; NB. Can't be async -- see `vc-bzr-post-command-function'.
309 ;; bzr diff produces condition code 1 for some reason.
310 (apply #'vc-bzr-command "diff" (or buffer "*vc-diff*") 1 files
311 "--diff-options" (mapconcat 'identity (vc-diff-switches-list bzr)
312 " ")
313 (when rev1
314 (if rev2
315 (list "-r" (format "%s..%s" rev1 rev2))
316 (list "-r" rev1))))))
317
318 (defalias 'vc-bzr-diff-tree 'vc-bzr-diff)
319
320 ;; Fixme: implement vc-bzr-dir-state, vc-bzr-dired-state-info
321
322 ;; Fixme: vc-{next,previous}-version need fixing in vc.el to deal with
323 ;; straight integer versions.
324
325 (defun vc-bzr-delete-file (file)
326 "Delete FILE and delete it in the bzr repository."
327 (condition-case ()
328 (delete-file file)
329 (file-error nil))
330 (vc-bzr-command "remove" nil 0 file))
331
332 (defun vc-bzr-rename-file (old new)
333 "Rename file from OLD to NEW using `bzr mv'."
334 (vc-bzr-command "mv" nil 0 new old))
335
336 (defvar vc-bzr-annotation-table nil
337 "Internal use.")
338 (make-variable-buffer-local 'vc-bzr-annotation-table)
339
340 (defun vc-bzr-annotate-command (file buffer &optional version)
341 "Prepare BUFFER for `vc-annotate' on FILE.
342 Each line is tagged with the revision number, which has a `help-echo'
343 property containing author and date information."
344 (apply #'vc-bzr-command "annotate" buffer 0 file "-l" "--all"
345 (if version (list "-r" version)))
346 (with-current-buffer buffer
347 ;; Store the tags for the annotated source lines in a hash table
348 ;; to allow saving space by sharing the text properties.
349 (setq vc-bzr-annotation-table (make-hash-table :test 'equal))
350 (goto-char (point-min))
351 (while (re-search-forward "^\\( *[0-9]+\\) \\(.+\\) +\\([0-9]\\{8\\}\\) |"
352 nil t)
353 (let* ((rev (match-string 1))
354 (author (match-string 2))
355 (date (match-string 3))
356 (key (match-string 0))
357 (tag (gethash key vc-bzr-annotation-table)))
358 (unless tag
359 (save-match-data
360 (string-match " +\\'" author)
361 (setq author (substring author 0 (match-beginning 0))))
362 (setq tag (propertize rev 'help-echo (concat "Author: " author
363 ", date: " date)
364 'mouse-face 'highlight))
365 (puthash key tag vc-bzr-annotation-table))
366 (replace-match "")
367 (insert tag " |")))))
368
369 ;; Definition from Emacs 22
370 (unless (fboundp 'vc-annotate-convert-time)
371 (defun vc-annotate-convert-time (time)
372 "Convert a time value to a floating-point number of days.
373 The argument TIME is a list as returned by `current-time' or
374 `encode-time', only the first two elements of that list are considered."
375 (/ (+ (* (float (car time)) (lsh 1 16)) (cadr time)) 24 3600)))
376
377 (defun vc-bzr-annotate-time ()
378 (when (re-search-forward "^ *[0-9]+ |" nil t)
379 (let ((prop (get-text-property (line-beginning-position) 'help-echo)))
380 (string-match "[0-9]+\\'" prop)
381 (vc-annotate-convert-time
382 (encode-time 0 0 0
383 (string-to-number (substring (match-string 0 prop) 6 8))
384 (string-to-number (substring (match-string 0 prop) 4 6))
385 (string-to-number (substring (match-string 0 prop) 0 4))
386 )))))
387
388 (defun vc-bzr-annotate-extract-revision-at-line ()
389 "Return revision for current line of annoation buffer, or nil.
390 Return nil if current line isn't annotated."
391 (save-excursion
392 (beginning-of-line)
393 (if (looking-at " *\\([0-9]+\\) | ")
394 (match-string-no-properties 1))))
395
396 ;; Not needed for Emacs 22
397 (defun vc-bzr-annotate-difference (point)
398 (let ((next-time (vc-bzr-annotate-time)))
399 (if next-time
400 (- (vc-annotate-convert-time (current-time)) next-time))))
401
402 ;; FIXME: `bzr root' will return the real path to the repository root,
403 ;; that is, it can differ from the buffer's current directory name
404 ;; if there are any symbolic links.
405 (defun vc-bzr-root (dir)
406 "Return the root directory of the bzr repository containing DIR."
407 ;; Cache technique copied from vc-arch.el.
408 (or (vc-file-getprop dir 'bzr-root)
409 (vc-file-setprop
410 dir 'bzr-root
411 (substring
412 (shell-command-to-string (concat vc-bzr-program " root " dir)) 0 -1))))
413
414 ;; TODO: it would be nice to mark the conflicted files in VC Dired,
415 ;; and implement a command to run ediff and `bzr resolve' once the
416 ;; changes have been merged.
417 (defun vc-bzr-dir-state (dir &optional localp)
418 "Find the VC state of all files in DIR.
419 Optional argument LOCALP is always ignored."
420 (let ((bzr-root-directory (vc-bzr-root dir))
421 (at-start t)
422 current-bzr-state current-vc-state)
423 ;; Check that DIR is a bzr repository.
424 (unless (file-name-absolute-p bzr-root-directory)
425 (error "Cannot find bzr repository for directory `%s'" dir))
426 ;; `bzr ls --versioned' lists all versioned files;
427 ;; assume they are up-to-date, unless we are given
428 ;; evidence of the contrary.
429 (setq at-start t)
430 (with-temp-buffer
431 (vc-bzr-command "ls" t 0 nil "--versioned" "--non-recursive")
432 (goto-char (point-min))
433 (while (or at-start
434 (eq 0 (forward-line)))
435 (setq at-start nil)
436 (let ((file (expand-file-name
437 (buffer-substring-no-properties
438 (line-beginning-position) (line-end-position))
439 bzr-root-directory)))
440 (vc-file-setprop file 'vc-state 'up-to-date)
441 ;; XXX: is this correct? what happens if one
442 ;; mixes different SCMs in the same dir?
443 (vc-file-setprop file 'vc-backend 'BZR))))
444 ;; `bzr status' reports on added/modified/renamed and unknown/ignored files
445 (setq at-start t)
446 (with-temp-buffer
447 (vc-bzr-command "status" t 0 nil)
448 (goto-char (point-min))
449 (while (or at-start
450 (eq 0 (forward-line)))
451 (setq at-start nil)
452 (cond
453 ((looking-at "^added")
454 (setq current-vc-state 'edited)
455 (setq current-bzr-state 'added))
456 ((looking-at "^modified")
457 (setq current-vc-state 'edited)
458 (setq current-bzr-state 'modified))
459 ((looking-at "^renamed")
460 (setq current-vc-state 'edited)
461 (setq current-bzr-state 'renamed))
462 ((looking-at "^\\(unknown\\|ignored\\)")
463 (setq current-vc-state nil)
464 (setq current-bzr-state 'not-versioned))
465 ((looking-at " ")
466 ;; file names are indented by two spaces
467 (when current-vc-state
468 (let ((file (expand-file-name
469 (buffer-substring-no-properties
470 (match-end 0) (line-end-position))
471 bzr-root-directory)))
472 (vc-file-setprop file 'vc-state current-vc-state)
473 (vc-file-setprop file 'vc-bzr-state current-bzr-state)
474 (when (eq 'added current-bzr-state)
475 (vc-file-setprop file 'vc-workfile-version "0"))))
476 (when (eq 'not-versioned current-bzr-state)
477 (let ((file (expand-file-name
478 (buffer-substring-no-properties
479 (match-end 0) (line-end-position))
480 bzr-root-directory)))
481 (vc-file-setprop file 'vc-backend 'none)
482 (vc-file-setprop file 'vc-state nil))))
483 (t
484 ;; skip this part of `bzr status' output
485 (setq current-vc-state nil)
486 (setq current-bzr-state nil)))))))
487
488 (defun vc-bzr-dired-state-info (file)
489 "Bzr-specific version of `vc-dired-state-info'."
490 (if (eq 'edited (vc-state file))
491 (let ((bzr-state (vc-file-getprop file 'vc-bzr-state)))
492 (if bzr-state
493 (concat "(" (symbol-name bzr-state) ")")
494 ;; else fall back to default vc representation
495 (vc-default-dired-state-info 'BZR file)))))
496
497 ;; In case of just `(load "vc-bzr")', but that's probably the wrong
498 ;; way to do it.
499 (add-to-list 'vc-handled-backends 'BZR)
500
501 (eval-after-load "vc"
502 '(add-to-list 'vc-directory-exclusion-list ".bzr" t))
503
504 (defconst vc-bzr-unload-hook
505 (lambda ()
506 (setq vc-handled-backends (delq 'BZR vc-handled-backends))
507 (remove-hook 'vc-post-command-functions 'vc-bzr-post-command-function)))
508
509 (provide 'vc-bzr)
510 ;; arch-tag: 8101bad8-4e92-4e7d-85ae-d8e08b4e7c06
511 ;;; vc-bzr.el ends here