*** empty log message ***
[bpt/emacs.git] / lisp / vc-svn.el
CommitLineData
1fd3454a
SM
1;;; vc-svn.el --- non-resident support for Subversion version-control
2
c45b3be3 3;; Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
1fd3454a
SM
4
5;; Author: FSF (see vc.el for full credits)
6;; Maintainer: Stefan Monnier <monnier@gnu.org>
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
b4aa6026 12;; the Free Software Foundation; either version 3, or (at your option)
1fd3454a
SM
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
086add15
LK
22;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23;; Boston, MA 02110-1301, USA.
1fd3454a
SM
24
25;;; Commentary:
26
f9914e54
ER
27;; Sync'd with Subversion's vc-svn.el as of revision 5801. but this version
28;; has been extensively modified since to handle filesets.
1fd3454a 29
1fd3454a
SM
30;;; Code:
31
32(eval-when-compile
33 (require 'vc))
34
35;;;
36;;; Customization options
37;;;
38
39(defcustom vc-svn-global-switches nil
40 "*Global switches to pass to any SVN command."
41 :type '(choice (const :tag "None" nil)
42 (string :tag "Argument String")
43 (repeat :tag "Argument List"
44 :value ("")
45 string))
bf247b6e 46 :version "22.1"
1fd3454a
SM
47 :group 'vc)
48
49(defcustom vc-svn-register-switches nil
50 "*Extra switches for registering a file into SVN.
51A string or list of strings passed to the checkin program by
52\\[vc-register]."
53 :type '(choice (const :tag "None" nil)
54 (string :tag "Argument String")
55 (repeat :tag "Argument List"
56 :value ("")
57 string))
bf247b6e 58 :version "22.1"
1fd3454a
SM
59 :group 'vc)
60
8462aca5
SM
61(defcustom vc-svn-diff-switches
62 t ;`svn' doesn't support common args like -c or -b.
63 "String or list of strings specifying extra switches for svn diff under VC.
64If nil, use the value of `vc-diff-switches'.
65If you want to force an empty list of arguments, use t."
66 :type '(choice (const :tag "Unspecified" nil)
67 (const :tag "None" t)
1fd3454a
SM
68 (string :tag "Argument String")
69 (repeat :tag "Argument List"
70 :value ("")
71 string))
bf247b6e 72 :version "22.1"
1fd3454a
SM
73 :group 'vc)
74
75(defcustom vc-svn-header (or (cdr (assoc 'SVN vc-header-alist)) '("\$Id\$"))
76 "*Header keywords to be inserted by `vc-insert-headers'."
bf247b6e 77 :version "22.1"
1fd3454a
SM
78 :type '(repeat string)
79 :group 'vc)
80
fc2fb30c
SM
81;; We want to autoload it for use by the autoloaded version of
82;; vc-svn-registered, but we want the value to be compiled at startup, not
83;; at dump time.
84;; ;;;###autoload
85(defconst vc-svn-admin-directory
86 (cond ((and (memq system-type '(cygwin windows-nt ms-dos))
ace2fad9
CY
87 (getenv "SVN_ASP_DOT_NET_HACK"))
88 "_svn")
89 (t ".svn"))
90 "The name of the \".svn\" subdirectory or its equivalent.")
91
8cdd17b4
ER
92;;; Properties of the backend
93
94(defun vc-svn-revision-granularity ()
95 'repository)
1fd3454a
SM
96;;;
97;;; State-querying functions
98;;;
99
ace2fad9
CY
100;;; vc-svn-admin-directory is generally not defined when the
101;;; autoloaded function is called.
102
1fd3454a 103;;;###autoload (defun vc-svn-registered (f)
ace2fad9 104;;;###autoload (let ((admin-dir (cond ((and (eq system-type 'windows-nt)
fc2fb30c
SM
105;;;###autoload (getenv "SVN_ASP_DOT_NET_HACK"))
106;;;###autoload "_svn")
107;;;###autoload (t ".svn"))))
ace2fad9 108;;;###autoload (when (file-readable-p (expand-file-name
fc2fb30c
SM
109;;;###autoload (concat admin-dir "/entries")
110;;;###autoload (file-name-directory f)))
1fd3454a 111;;;###autoload (load "vc-svn")
ace2fad9 112;;;###autoload (vc-svn-registered f))))
1fd3454a 113
3bdc13e4
SM
114;;;###autoload
115(add-to-list 'completion-ignored-extensions ".svn/")
116
1fd3454a
SM
117(defun vc-svn-registered (file)
118 "Check if FILE is SVN registered."
ace2fad9
CY
119 (when (file-readable-p (expand-file-name (concat vc-svn-admin-directory
120 "/entries")
1fd3454a
SM
121 (file-name-directory file)))
122 (with-temp-buffer
123 (cd (file-name-directory file))
aaef169d 124 (let ((status
df4da7f4
SM
125 (condition-case nil
126 ;; Ignore all errors.
127 (vc-svn-command t t file "status" "-v")
128 ;; Some problem happened. E.g. We can't find an `svn'
129 ;; executable. We used to only catch `file-error' but when
130 ;; the process is run on a remote host via Tramp, the error
131 ;; is only reported via the exit status which is turned into
132 ;; an `error' by vc-do-command.
133 (error nil))))
134 (when (eq 0 status)
bc8c1bb4 135 (vc-svn-parse-status file))))))
1fd3454a
SM
136
137(defun vc-svn-state (file &optional localp)
138 "SVN-specific version of `vc-state'."
7ffc77d3 139 (setq localp (or localp (vc-stay-local-p file)))
1fd3454a
SM
140 (with-temp-buffer
141 (cd (file-name-directory file))
142 (vc-svn-command t 0 file "status" (if localp "-v" "-u"))
bc8c1bb4 143 (vc-svn-parse-status file)))
1fd3454a
SM
144
145(defun vc-svn-state-heuristic (file)
146 "SVN-specific state heuristic."
147 (vc-svn-state file 'local))
148
149(defun vc-svn-dir-state (dir &optional localp)
cdce374a 150 "Find the SVN state of all files in DIR and its subdirectories."
7ffc77d3 151 (setq localp (or localp (vc-stay-local-p dir)))
1fd3454a
SM
152 (let ((default-directory dir))
153 ;; Don't specify DIR in this command, the default-directory is
154 ;; enough. Otherwise it might fail with remote repositories.
155 (with-temp-buffer
18e1f249 156 (buffer-disable-undo) ;; Because these buffers can get huge
1fd3454a 157 (vc-svn-command t 0 nil "status" (if localp "-v" "-u"))
bc8c1bb4 158 (vc-svn-parse-status))))
1fd3454a 159
ac3f4c6f
ER
160(defun vc-svn-working-revision (file)
161 "SVN-specific version of `vc-working-revision'."
1fd3454a
SM
162 ;; There is no need to consult RCS headers under SVN, because we
163 ;; get the workfile version for free when we recognize that a file
164 ;; is registered in SVN.
165 (vc-svn-registered file)
ac3f4c6f 166 (vc-file-getprop file 'vc-working-revision))
1fd3454a
SM
167
168(defun vc-svn-checkout-model (file)
169 "SVN-specific version of `vc-checkout-model'."
170 ;; It looks like Subversion has no equivalent of CVSREAD.
171 'implicit)
172
5cc7cb96
SM
173;; vc-svn-mode-line-string doesn't exist because the default implementation
174;; works just fine.
175
1fd3454a
SM
176(defun vc-svn-dired-state-info (file)
177 "SVN-specific version of `vc-dired-state-info'."
fd140743
SM
178 (let ((svn-state (vc-state file)))
179 (cond ((eq svn-state 'edited)
ac3f4c6f 180 (if (equal (vc-working-revision file) "0")
fd140743 181 "(added)" "(modified)"))
0f67cc71
ER
182 (t
183 ;; fall back to the default VC representation
184 (vc-default-dired-state-info 'SVN file)))))
185
1fd3454a 186
5b5afd50 187(defun vc-svn-previous-revision (file rev)
cbbd2cd3
TTN
188 (let ((newrev (1- (string-to-number rev))))
189 (when (< 0 newrev)
190 (number-to-string newrev))))
191
5b5afd50 192(defun vc-svn-next-revision (file rev)
cbbd2cd3 193 (let ((newrev (1+ (string-to-number rev))))
5b5afd50 194 ;; The "working revision" is an uneasy conceptual fit under Subversion;
cbbd2cd3
TTN
195 ;; we use it as the upper bound until a better idea comes along. If the
196 ;; workfile version W coincides with the tree's latest revision R, then
197 ;; this check prevents a "no such revision: R+1" error. Otherwise, it
198 ;; inhibits showing of W+1 through R, which could be considered anywhere
199 ;; from gracious to impolite.
ac3f4c6f 200 (unless (< (string-to-number (vc-file-getprop file 'vc-working-revision))
cbbd2cd3
TTN
201 newrev)
202 (number-to-string newrev))))
203
1fd3454a
SM
204
205;;;
206;;; State-changing functions
207;;;
208
8cdd17b4
ER
209(defun vc-svn-create-repo ()
210 "Create a new SVN repository."
211 (vc-do-command nil 0 "svnadmin" '("create" "SVN"))
212 (vc-do-command nil 0 "svn" '(".")
213 "checkout" (concat "file://" default-directory "SVN")))
214
215(defun vc-svn-register (files &optional rev comment)
216 "Register FILES into the SVN version-control system.
217The COMMENT argument is ignored This does an add but not a commit.
1fd3454a
SM
218
219`vc-register-switches' and `vc-svn-register-switches' are passed to
220the SVN command (in that order)."
8cdd17b4 221 (apply 'vc-svn-command nil 0 files "add" (vc-switches 'SVN 'register)))
1fd3454a
SM
222
223(defun vc-svn-responsible-p (file)
224 "Return non-nil if SVN thinks it is responsible for FILE."
ace2fad9 225 (file-directory-p (expand-file-name vc-svn-admin-directory
1fd3454a
SM
226 (if (file-directory-p file)
227 file
228 (file-name-directory file)))))
229
230(defalias 'vc-svn-could-register 'vc-svn-responsible-p
231 "Return non-nil if FILE could be registered in SVN.
232This is only possible if SVN is responsible for FILE's directory.")
233
8cdd17b4 234(defun vc-svn-checkin (files rev comment)
1fd3454a 235 "SVN-specific version of `vc-backend-checkin'."
8cdd17b4 236 (if rev (error "Committing to a specific revision is unsupported in SVN."))
5129f10c 237 (let ((status (apply
8cdd17b4 238 'vc-svn-command nil 1 files "ci"
5129f10c 239 (nconc (list "-m" comment) (vc-switches 'SVN 'checkin)))))
1fd3454a
SM
240 (set-buffer "*vc*")
241 (goto-char (point-min))
242 (unless (equal status 0)
243 ;; Check checkin problem.
244 (cond
fd140743 245 ((search-forward "Transaction is out of date" nil t)
8cdd17b4
ER
246 (mapc (lambda (file) (vc-file-setprop file 'vc-state 'needs-merge))
247 files)
1fd3454a
SM
248 (error (substitute-command-keys
249 (concat "Up-to-date check failed: "
250 "type \\[vc-next-action] to merge in changes"))))
251 (t
252 (pop-to-buffer (current-buffer))
253 (goto-char (point-min))
254 (shrink-window-if-larger-than-buffer)
255 (error "Check-in failed"))))
256 ;; Update file properties
257 ;; (vc-file-setprop
ac3f4c6f 258 ;; file 'vc-working-revision
1fd3454a
SM
259 ;; (vc-parse-buffer "^\\(new\\|initial\\) revision: \\([0-9.]+\\)" 2))
260 ))
261
ac3f4c6f 262(defun vc-svn-find-revision (file rev buffer)
8cdd17b4 263 "SVN-specific retrieval of a specified version into a buffer."
1fd3454a
SM
264 (apply 'vc-svn-command
265 buffer 0 file
266 "cat"
267 (and rev (not (string= rev ""))
268 (concat "-r" rev))
fd140743 269 (vc-switches 'SVN 'checkout)))
1fd3454a
SM
270
271(defun vc-svn-checkout (file &optional editable rev)
272 (message "Checking out %s..." file)
273 (with-current-buffer (or (get-file-buffer file) (current-buffer))
fd140743 274 (vc-call update file editable rev (vc-switches 'SVN 'checkout)))
1fd3454a
SM
275 (vc-mode-line file)
276 (message "Checking out %s...done" file))
277
278(defun vc-svn-update (file editable rev switches)
279 (if (and (file-exists-p file) (not rev))
fc2fb30c
SM
280 ;; If no revision was specified, there's nothing to do.
281 nil
1fd3454a 282 ;; Check out a particular version (or recreate the file).
ac3f4c6f 283 (vc-file-setprop file 'vc-working-revision nil)
1fd3454a 284 (apply 'vc-svn-command nil 0 file
1fd3454a
SM
285 "update"
286 ;; default for verbose checkout: clear the sticky tag so
287 ;; that the actual update will get the head of the trunk
5cc7cb96
SM
288 (cond
289 ((null rev) "-rBASE")
290 ((or (eq rev t) (equal rev "")) nil)
291 (t (concat "-r" rev)))
1fd3454a
SM
292 switches)))
293
3bdc13e4
SM
294(defun vc-svn-delete-file (file)
295 (vc-svn-command nil 0 file "remove"))
296
2766aaaf
SM
297(defun vc-svn-rename-file (old new)
298 (vc-svn-command nil 0 new "move" (file-relative-name old)))
299
1fd3454a
SM
300(defun vc-svn-revert (file &optional contents-done)
301 "Revert FILE to the version it was based on."
302 (unless contents-done
fc2fb30c 303 (vc-svn-command nil 0 file "revert")))
1fd3454a
SM
304
305(defun vc-svn-merge (file first-version &optional second-version)
306 "Merge changes into current working copy of FILE.
307The changes are between FIRST-VERSION and SECOND-VERSION."
308 (vc-svn-command nil 0 file
c217cb04 309 "merge"
02610d0e 310 "-r" (if second-version
c217cb04
SM
311 (concat first-version ":" second-version)
312 first-version))
1fd3454a
SM
313 (vc-file-setprop file 'vc-state 'edited)
314 (with-current-buffer (get-buffer "*vc*")
315 (goto-char (point-min))
c217cb04
SM
316 (if (looking-at "C ")
317 1 ; signal conflict
1fd3454a
SM
318 0))) ; signal success
319
320(defun vc-svn-merge-news (file)
321 "Merge in any new changes made to FILE."
322 (message "Merging changes into %s..." file)
ac3f4c6f 323 ;; (vc-file-setprop file 'vc-working-revision nil)
1fd3454a
SM
324 (vc-file-setprop file 'vc-checkout-time 0)
325 (vc-svn-command nil 0 file "update")
326 ;; Analyze the merge result reported by SVN, and set
327 ;; file properties accordingly.
328 (with-current-buffer (get-buffer "*vc*")
329 (goto-char (point-min))
5b5afd50 330 ;; get new working revision
1fd3454a 331 (if (re-search-forward
1468d754 332 "^\\(Updated to\\|At\\) revision \\([0-9]+\\)" nil t)
ac3f4c6f
ER
333 (vc-file-setprop file 'vc-working-revision (match-string 2))
334 (vc-file-setprop file 'vc-working-revision nil))
1fd3454a 335 ;; get file status
1468d754 336 (goto-char (point-min))
1fd3454a 337 (prog1
1468d754 338 (if (looking-at "At revision")
1fd3454a
SM
339 0 ;; there were no news; indicate success
340 (if (re-search-forward
459b1fe4
SM
341 ;; Newer SVN clients have 3 columns of chars (one for the
342 ;; file's contents, then second for its properties, and the
343 ;; third for lock-grabbing info), before the 2 spaces.
344 ;; We also used to match the filename in column 0 without any
345 ;; meta-info before it, but I believe this can never happen.
346 (concat "^\\(\\([ACGDU]\\)\\(.[B ]\\)? \\)"
1468d754 347 (regexp-quote (file-name-nondirectory file)))
1fd3454a
SM
348 nil t)
349 (cond
350 ;; Merge successful, we are in sync with repository now
459b1fe4 351 ((string= (match-string 2) "U")
1fd3454a
SM
352 (vc-file-setprop file 'vc-state 'up-to-date)
353 (vc-file-setprop file 'vc-checkout-time
354 (nth 5 (file-attributes file)))
355 0);; indicate success to the caller
356 ;; Merge successful, but our own changes are still in the file
459b1fe4 357 ((string= (match-string 2) "G")
1fd3454a
SM
358 (vc-file-setprop file 'vc-state 'edited)
359 0);; indicate success to the caller
360 ;; Conflicts detected!
361 (t
362 (vc-file-setprop file 'vc-state 'edited)
363 1);; signal the error to the caller
364 )
365 (pop-to-buffer "*vc*")
366 (error "Couldn't analyze svn update result")))
367 (message "Merging changes into %s...done" file))))
368
369
370;;;
371;;; History functions
372;;;
373
8cdd17b4
ER
374(defun vc-svn-print-log (files &optional buffer)
375 "Get change log(s) associated with FILES."
1fd3454a 376 (save-current-buffer
b349012b 377 (vc-setup-buffer buffer)
1fd3454a
SM
378 (let ((inhibit-read-only t))
379 (goto-char (point-min))
13b56025
ER
380 (if files
381 (dolist (file files)
382 (insert "Working file: " file "\n")
383 (vc-svn-command
384 buffer
385 'async
386 ;; (if (and (= (length files) 1) (vc-stay-local-p file)) 'async 0)
387 (list file)
388 "log"
389 ;; By default Subversion only shows the log up to the
390 ;; working revision, whereas we also want the log of the
391 ;; subsequent commits. At least that's what the
392 ;; vc-cvs.el code does.
393 "-rHEAD:0"))
394 ;; Dump log for the entire directory.
395 (vc-svn-command buffer 0 nil "log" "-rHEAD:0")))))
8cdd17b4
ER
396
397(defun vc-svn-wash-log ()
398 "Remove all non-comment information from log output."
399 ;; FIXME: not implemented for SVN
400 nil)
401
402(defun vc-svn-diff (files &optional oldvers newvers buffer)
5b5afd50 403 "Get a difference report using SVN between two revisions of fileset FILES."
c62a495a
GM
404 (and oldvers
405 (catch 'no
406 (dolist (f files)
ac3f4c6f 407 (or (equal oldvers (vc-working-revision f))
c62a495a
GM
408 (throw 'no nil)))
409 t)
410 ;; Use nil rather than the current revision because svn handles
411 ;; it better (i.e. locally). Note that if _any_ of the files
412 ;; has a different revision, we fetch the lot, which is
413 ;; obviously sub-optimal.
414 (setq oldvers nil))
8cdd17b4 415 (let* ((switches
f9d1f3be
SM
416 (if vc-svn-diff-switches
417 (vc-switches 'SVN 'diff)
418 (list "-x" (mapconcat 'identity (vc-switches nil 'diff) " "))))
2d4e93b9 419 (async (and (not vc-disable-async-diff)
8cdd17b4 420 (vc-stay-local-p files)
fe1919ab 421 (or oldvers newvers)))) ; Svn diffs those locally.
b349012b 422 (apply 'vc-svn-command buffer
2766aaaf 423 (if async 'async 0)
8cdd17b4 424 files "diff"
2766aaaf 425 (append
f9d1f3be 426 switches
2766aaaf
SM
427 (when oldvers
428 (list "-r" (if newvers (concat oldvers ":" newvers)
429 oldvers)))))
fd140743
SM
430 (if async 1 ; async diff => pessimistic assumption
431 ;; For some reason `svn diff' does not return a useful
432 ;; status w.r.t whether the diff was empty or not.
8cdd17b4 433 (buffer-size (get-buffer buffer)))))
1fd3454a 434
1fd3454a
SM
435;;;
436;;; Snapshot system
437;;;
438
439(defun vc-svn-create-snapshot (dir name branchp)
5b5afd50 440 "Assign to DIR's current revision a given NAME.
1fd3454a 441If BRANCHP is non-nil, the name is created as a branch (and the current
5cc7cb96
SM
442workspace is immediately moved to that new branch).
443NAME is assumed to be a URL."
444 (vc-svn-command nil 0 dir "copy" name)
445 (when branchp (vc-svn-retrieve-snapshot dir name nil)))
1fd3454a
SM
446
447(defun vc-svn-retrieve-snapshot (dir name update)
448 "Retrieve a snapshot at and below DIR.
449NAME is the name of the snapshot; if it is empty, do a `svn update'.
5cc7cb96
SM
450If UPDATE is non-nil, then update (resynch) any affected buffers.
451NAME is assumed to be a URL."
452 (vc-svn-command nil 0 dir "switch" name)
453 ;; FIXME: parse the output and obey `update'.
454 )
1fd3454a
SM
455
456;;;
457;;; Miscellaneous
458;;;
459
460;; Subversion makes backups for us, so don't bother.
7ffc77d3 461;; (defalias 'vc-svn-make-version-backups-p 'vc-stay-local-p
1fd3454a
SM
462;; "Return non-nil if version backups should be made for FILE.")
463
464(defun vc-svn-check-headers ()
465 "Check if the current file has any headers in it."
466 (save-excursion
467 (goto-char (point-min))
468 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\
469\\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t)))
470
471
472;;;
473;;; Internal functions
474;;;
475
e4cc3f57
SM
476(defcustom vc-svn-program "svn"
477 "Name of the svn executable."
478 :type 'string
479 :group 'vc)
480
8cdd17b4 481(defun vc-svn-command (buffer okstatus file-or-list &rest flags)
1fd3454a
SM
482 "A wrapper around `vc-do-command' for use in vc-svn.el.
483The difference to vc-do-command is that this function always invokes `svn',
484and that it passes `vc-svn-global-switches' to it before FLAGS."
8cdd17b4 485 (apply 'vc-do-command buffer okstatus vc-svn-program file-or-list
1fd3454a
SM
486 (if (stringp vc-svn-global-switches)
487 (cons vc-svn-global-switches flags)
488 (append vc-svn-global-switches
489 flags))))
490
7ffc77d3
SM
491(defun vc-svn-repository-hostname (dirname)
492 (with-temp-buffer
493 (let ((coding-system-for-read
494 (or file-name-coding-system
495 default-file-name-coding-system)))
ace2fad9
CY
496 (vc-insert-file (expand-file-name (concat vc-svn-admin-directory
497 "/entries")
498 dirname)))
7ffc77d3
SM
499 (goto-char (point-min))
500 (when (re-search-forward
c45b3be3 501 ;; Old `svn' used name="svn:this_dir", newer use just name="".
17a5a301
SM
502 (concat "name=\"\\(?:svn:this_dir\\)?\"[\n\t ]*"
503 "\\(?:[-a-z]+=\"[^\"]*\"[\n\t ]*\\)*?"
0b0dad41
SM
504 "url=\"\\(?1:[^\"]+\\)\""
505 ;; Yet newer ones don't use XML any more.
506 "\\|^\ndir\n[0-9]+\n\\(?1:.*\\)") nil t)
17a5a301
SM
507 ;; This is not a hostname but a URL. This may actually be considered
508 ;; as a feature since it allows vc-svn-stay-local to specify different
509 ;; behavior for different modules on the same server.
510 (match-string 1))))
1fd3454a 511
1c67a814
SM
512(defun vc-svn-resolve-when-done ()
513 "Call \"svn resolved\" if the conflict markers have been removed."
514 (save-excursion
515 (goto-char (point-min))
516 (if (not (re-search-forward "^<<<<<<< " nil t))
517 (vc-svn-command nil 0 buffer-file-name "resolved"))))
518
519;; Inspired by vc-arch-find-file-hook.
520(defun vc-svn-find-file-hook ()
521 (when (eq ?C (vc-file-getprop buffer-file-name 'vc-svn-status))
522 ;; If the file is marked as "conflicted", then we should try and call
523 ;; "svn resolved" when applicable.
524 (if (save-excursion
525 (goto-char (point-min))
526 (re-search-forward "^<<<<<<< " nil t))
527 ;; There are conflict markers.
528 (progn
529 (smerge-mode 1)
530 (add-hook 'after-save-hook 'vc-svn-resolve-when-done nil t))
531 ;; There are no conflict markers. This is problematic: maybe it means
532 ;; the conflict has been resolved and we should immediately call "svn
533 ;; resolved", or it means that the file's type does not allow Svn to
534 ;; use conflict markers in which case we don't really know what to do.
535 ;; So let's just punt for now.
536 nil)
537 (message "There are unresolved conflicts in this file")))
538
bc8c1bb4 539(defun vc-svn-parse-status (&optional filename)
1fd3454a 540 "Parse output of \"svn status\" command in the current buffer.
bc8c1bb4
SM
541Set file properties accordingly. Unless FILENAME is non-nil, parse only
542information about FILENAME and return its status."
1fd3454a
SM
543 (let (file status)
544 (goto-char (point-min))
545 (while (re-search-forward
484c1b1f 546 ;; Ignore the files with status X.
abc61762 547 "^\\(\\?\\|[ ACDGIMR!~][ MC][ L][ +][ S]..\\([ *]\\) +\\([-0-9]+\\) +\\([0-9?]+\\) +\\([^ ]+\\)\\) +" nil t)
c45b3be3
SM
548 ;; If the username contains spaces, the output format is ambiguous,
549 ;; so don't trust the output's filename unless we have to.
550 (setq file (or filename
551 (expand-file-name
552 (buffer-substring (point) (line-end-position)))))
1fd3454a 553 (setq status (char-after (line-beginning-position)))
484c1b1f 554 (if (eq status ??)
4f07b9f2 555 (vc-file-setprop file 'vc-state 'unregistered)
bc8c1bb4
SM
556 ;; `vc-BACKEND-registered' must not set vc-backend,
557 ;; which is instead set in vc-registered.
4f07b9f2 558 (unless filename (vc-file-setprop file 'vc-backend 'SVN))
fd140743
SM
559 ;; Use the last-modified revision, so that searching in vc-print-log
560 ;; output works.
4f07b9f2 561 (vc-file-setprop file 'vc-working-revision (match-string 3))
1c67a814 562 ;; Remember Svn's own status.
4f07b9f2
ER
563 (vc-file-setprop file 'vc-svn-status status)
564 (vc-file-setprop
1fd3454a
SM
565 file 'vc-state
566 (cond
567 ((eq status ?\ )
568 (if (eq (char-after (match-beginning 1)) ?*)
569 'needs-patch
4f07b9f2 570 (vc-file-setprop file 'vc-checkout-time
1fd3454a
SM
571 (nth 5 (file-attributes file)))
572 'up-to-date))
573 ((eq status ?A)
fd140743 574 ;; If the file was actually copied, (match-string 2) is "-".
4f07b9f2
ER
575 (vc-file-setprop file 'vc-working-revision "0")
576 (vc-file-setprop file 'vc-checkout-time 0)
484c1b1f 577 'added)
1fd3454a
SM
578 ((memq status '(?M ?C))
579 (if (eq (char-after (match-beginning 1)) ?*)
580 'needs-merge
581 'edited))
722f037f 582 ((eq status ?I)
4f07b9f2 583 (vc-file-setprop file 'vc-state 'ignored))
484c1b1f 584 ((eq status ?R)
4f07b9f2 585 (vc-file-setprop file 'vc-state 'removed))
bc8c1bb4
SM
586 (t 'edited)))))
587 (if filename (vc-file-getprop filename 'vc-state))))
1fd3454a
SM
588
589(defun vc-svn-dir-state-heuristic (dir)
590 "Find the SVN state of all files in DIR, using only local information."
591 (vc-svn-dir-state dir 'local))
592
593(defun vc-svn-valid-symbolic-tag-name-p (tag)
594 "Return non-nil if TAG is a valid symbolic tag name."
595 ;; According to the SVN manual, a valid symbolic tag must start with
596 ;; an uppercase or lowercase letter and can contain uppercase and
597 ;; lowercase letters, digits, `-', and `_'.
598 (and (string-match "^[a-zA-Z]" tag)
599 (not (string-match "[^a-z0-9A-Z-_]" tag))))
600
5b5afd50
ER
601(defun vc-svn-valid-revision-number-p (tag)
602 "Return non-nil if TAG is a valid revision number."
1fd3454a
SM
603 (and (string-match "^[0-9]" tag)
604 (not (string-match "[^0-9]" tag))))
605
17a5a301
SM
606;; Support for `svn annotate'
607
608(defun vc-svn-annotate-command (file buf &optional rev)
609 (vc-svn-command buf 0 file "annotate" (if rev (concat "-r" rev))))
610
611(defun vc-svn-annotate-time-of-rev (rev)
612 ;; Arbitrarily assume 10 commmits per day.
613 (/ (string-to-number rev) 10.0))
614
615(defun vc-svn-annotate-current-time ()
616 (vc-svn-annotate-time-of-rev vc-annotate-parent-rev))
617
618(defconst vc-svn-annotate-re "[ \t]*\\([0-9]+\\)[ \t]+[^\t ]+ ")
619
620(defun vc-svn-annotate-time ()
621 (when (looking-at vc-svn-annotate-re)
622 (goto-char (match-end 0))
623 (vc-svn-annotate-time-of-rev (match-string 1))))
624
625(defun vc-svn-annotate-extract-revision-at-line ()
626 (save-excursion
627 (beginning-of-line)
628 (if (looking-at vc-svn-annotate-re) (match-string 1))))
629
1fd3454a
SM
630(provide 'vc-svn)
631
f9d1f3be 632;; arch-tag: 02f10c68-2b4d-453a-90fc-1eee6cfb268d
1fd3454a 633;;; vc-svn.el ends here