Typo fix.
[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
SM
181 "(added)" "(modified)"))
182 ((eq svn-state 'needs-patch) "(patch)")
183 ((eq svn-state 'needs-merge) "(merge)"))))
1fd3454a 184
5b5afd50 185(defun vc-svn-previous-revision (file rev)
cbbd2cd3
TTN
186 (let ((newrev (1- (string-to-number rev))))
187 (when (< 0 newrev)
188 (number-to-string newrev))))
189
5b5afd50 190(defun vc-svn-next-revision (file rev)
cbbd2cd3 191 (let ((newrev (1+ (string-to-number rev))))
5b5afd50 192 ;; The "working revision" is an uneasy conceptual fit under Subversion;
cbbd2cd3
TTN
193 ;; we use it as the upper bound until a better idea comes along. If the
194 ;; workfile version W coincides with the tree's latest revision R, then
195 ;; this check prevents a "no such revision: R+1" error. Otherwise, it
196 ;; inhibits showing of W+1 through R, which could be considered anywhere
197 ;; from gracious to impolite.
ac3f4c6f 198 (unless (< (string-to-number (vc-file-getprop file 'vc-working-revision))
cbbd2cd3
TTN
199 newrev)
200 (number-to-string newrev))))
201
1fd3454a
SM
202
203;;;
204;;; State-changing functions
205;;;
206
8cdd17b4
ER
207(defun vc-svn-create-repo ()
208 "Create a new SVN repository."
209 (vc-do-command nil 0 "svnadmin" '("create" "SVN"))
210 (vc-do-command nil 0 "svn" '(".")
211 "checkout" (concat "file://" default-directory "SVN")))
212
213(defun vc-svn-register (files &optional rev comment)
214 "Register FILES into the SVN version-control system.
215The COMMENT argument is ignored This does an add but not a commit.
1fd3454a
SM
216
217`vc-register-switches' and `vc-svn-register-switches' are passed to
218the SVN command (in that order)."
8cdd17b4 219 (apply 'vc-svn-command nil 0 files "add" (vc-switches 'SVN 'register)))
1fd3454a
SM
220
221(defun vc-svn-responsible-p (file)
222 "Return non-nil if SVN thinks it is responsible for FILE."
ace2fad9 223 (file-directory-p (expand-file-name vc-svn-admin-directory
1fd3454a
SM
224 (if (file-directory-p file)
225 file
226 (file-name-directory file)))))
227
228(defalias 'vc-svn-could-register 'vc-svn-responsible-p
229 "Return non-nil if FILE could be registered in SVN.
230This is only possible if SVN is responsible for FILE's directory.")
231
8cdd17b4 232(defun vc-svn-checkin (files rev comment)
1fd3454a 233 "SVN-specific version of `vc-backend-checkin'."
8cdd17b4 234 (if rev (error "Committing to a specific revision is unsupported in SVN."))
5129f10c 235 (let ((status (apply
8cdd17b4 236 'vc-svn-command nil 1 files "ci"
5129f10c 237 (nconc (list "-m" comment) (vc-switches 'SVN 'checkin)))))
1fd3454a
SM
238 (set-buffer "*vc*")
239 (goto-char (point-min))
240 (unless (equal status 0)
241 ;; Check checkin problem.
242 (cond
fd140743 243 ((search-forward "Transaction is out of date" nil t)
8cdd17b4
ER
244 (mapc (lambda (file) (vc-file-setprop file 'vc-state 'needs-merge))
245 files)
1fd3454a
SM
246 (error (substitute-command-keys
247 (concat "Up-to-date check failed: "
248 "type \\[vc-next-action] to merge in changes"))))
249 (t
250 (pop-to-buffer (current-buffer))
251 (goto-char (point-min))
252 (shrink-window-if-larger-than-buffer)
253 (error "Check-in failed"))))
254 ;; Update file properties
255 ;; (vc-file-setprop
ac3f4c6f 256 ;; file 'vc-working-revision
1fd3454a
SM
257 ;; (vc-parse-buffer "^\\(new\\|initial\\) revision: \\([0-9.]+\\)" 2))
258 ))
259
ac3f4c6f 260(defun vc-svn-find-revision (file rev buffer)
8cdd17b4 261 "SVN-specific retrieval of a specified version into a buffer."
1fd3454a
SM
262 (apply 'vc-svn-command
263 buffer 0 file
264 "cat"
265 (and rev (not (string= rev ""))
266 (concat "-r" rev))
fd140743 267 (vc-switches 'SVN 'checkout)))
1fd3454a
SM
268
269(defun vc-svn-checkout (file &optional editable rev)
270 (message "Checking out %s..." file)
271 (with-current-buffer (or (get-file-buffer file) (current-buffer))
fd140743 272 (vc-call update file editable rev (vc-switches 'SVN 'checkout)))
1fd3454a
SM
273 (vc-mode-line file)
274 (message "Checking out %s...done" file))
275
276(defun vc-svn-update (file editable rev switches)
277 (if (and (file-exists-p file) (not rev))
fc2fb30c
SM
278 ;; If no revision was specified, there's nothing to do.
279 nil
1fd3454a 280 ;; Check out a particular version (or recreate the file).
ac3f4c6f 281 (vc-file-setprop file 'vc-working-revision nil)
1fd3454a 282 (apply 'vc-svn-command nil 0 file
1fd3454a
SM
283 "update"
284 ;; default for verbose checkout: clear the sticky tag so
285 ;; that the actual update will get the head of the trunk
5cc7cb96
SM
286 (cond
287 ((null rev) "-rBASE")
288 ((or (eq rev t) (equal rev "")) nil)
289 (t (concat "-r" rev)))
1fd3454a
SM
290 switches)))
291
3bdc13e4
SM
292(defun vc-svn-delete-file (file)
293 (vc-svn-command nil 0 file "remove"))
294
2766aaaf
SM
295(defun vc-svn-rename-file (old new)
296 (vc-svn-command nil 0 new "move" (file-relative-name old)))
297
1fd3454a
SM
298(defun vc-svn-revert (file &optional contents-done)
299 "Revert FILE to the version it was based on."
300 (unless contents-done
fc2fb30c 301 (vc-svn-command nil 0 file "revert")))
1fd3454a
SM
302
303(defun vc-svn-merge (file first-version &optional second-version)
304 "Merge changes into current working copy of FILE.
305The changes are between FIRST-VERSION and SECOND-VERSION."
306 (vc-svn-command nil 0 file
c217cb04 307 "merge"
02610d0e 308 "-r" (if second-version
c217cb04
SM
309 (concat first-version ":" second-version)
310 first-version))
1fd3454a
SM
311 (vc-file-setprop file 'vc-state 'edited)
312 (with-current-buffer (get-buffer "*vc*")
313 (goto-char (point-min))
c217cb04
SM
314 (if (looking-at "C ")
315 1 ; signal conflict
1fd3454a
SM
316 0))) ; signal success
317
318(defun vc-svn-merge-news (file)
319 "Merge in any new changes made to FILE."
320 (message "Merging changes into %s..." file)
ac3f4c6f 321 ;; (vc-file-setprop file 'vc-working-revision nil)
1fd3454a
SM
322 (vc-file-setprop file 'vc-checkout-time 0)
323 (vc-svn-command nil 0 file "update")
324 ;; Analyze the merge result reported by SVN, and set
325 ;; file properties accordingly.
326 (with-current-buffer (get-buffer "*vc*")
327 (goto-char (point-min))
5b5afd50 328 ;; get new working revision
1fd3454a 329 (if (re-search-forward
1468d754 330 "^\\(Updated to\\|At\\) revision \\([0-9]+\\)" nil t)
ac3f4c6f
ER
331 (vc-file-setprop file 'vc-working-revision (match-string 2))
332 (vc-file-setprop file 'vc-working-revision nil))
1fd3454a 333 ;; get file status
1468d754 334 (goto-char (point-min))
1fd3454a 335 (prog1
1468d754 336 (if (looking-at "At revision")
1fd3454a
SM
337 0 ;; there were no news; indicate success
338 (if (re-search-forward
459b1fe4
SM
339 ;; Newer SVN clients have 3 columns of chars (one for the
340 ;; file's contents, then second for its properties, and the
341 ;; third for lock-grabbing info), before the 2 spaces.
342 ;; We also used to match the filename in column 0 without any
343 ;; meta-info before it, but I believe this can never happen.
344 (concat "^\\(\\([ACGDU]\\)\\(.[B ]\\)? \\)"
1468d754 345 (regexp-quote (file-name-nondirectory file)))
1fd3454a
SM
346 nil t)
347 (cond
348 ;; Merge successful, we are in sync with repository now
459b1fe4 349 ((string= (match-string 2) "U")
1fd3454a
SM
350 (vc-file-setprop file 'vc-state 'up-to-date)
351 (vc-file-setprop file 'vc-checkout-time
352 (nth 5 (file-attributes file)))
353 0);; indicate success to the caller
354 ;; Merge successful, but our own changes are still in the file
459b1fe4 355 ((string= (match-string 2) "G")
1fd3454a
SM
356 (vc-file-setprop file 'vc-state 'edited)
357 0);; indicate success to the caller
358 ;; Conflicts detected!
359 (t
360 (vc-file-setprop file 'vc-state 'edited)
361 1);; signal the error to the caller
362 )
363 (pop-to-buffer "*vc*")
364 (error "Couldn't analyze svn update result")))
365 (message "Merging changes into %s...done" file))))
366
367
368;;;
369;;; History functions
370;;;
371
8cdd17b4
ER
372(defun vc-svn-print-log (files &optional buffer)
373 "Get change log(s) associated with FILES."
1fd3454a 374 (save-current-buffer
b349012b 375 (vc-setup-buffer buffer)
1fd3454a
SM
376 (let ((inhibit-read-only t))
377 (goto-char (point-min))
13b56025
ER
378 (if files
379 (dolist (file files)
380 (insert "Working file: " file "\n")
381 (vc-svn-command
382 buffer
383 'async
384 ;; (if (and (= (length files) 1) (vc-stay-local-p file)) 'async 0)
385 (list file)
386 "log"
387 ;; By default Subversion only shows the log up to the
388 ;; working revision, whereas we also want the log of the
389 ;; subsequent commits. At least that's what the
390 ;; vc-cvs.el code does.
391 "-rHEAD:0"))
392 ;; Dump log for the entire directory.
393 (vc-svn-command buffer 0 nil "log" "-rHEAD:0")))))
8cdd17b4
ER
394
395(defun vc-svn-wash-log ()
396 "Remove all non-comment information from log output."
397 ;; FIXME: not implemented for SVN
398 nil)
399
400(defun vc-svn-diff (files &optional oldvers newvers buffer)
5b5afd50 401 "Get a difference report using SVN between two revisions of fileset FILES."
c62a495a
GM
402 (and oldvers
403 (catch 'no
404 (dolist (f files)
ac3f4c6f 405 (or (equal oldvers (vc-working-revision f))
c62a495a
GM
406 (throw 'no nil)))
407 t)
408 ;; Use nil rather than the current revision because svn handles
409 ;; it better (i.e. locally). Note that if _any_ of the files
410 ;; has a different revision, we fetch the lot, which is
411 ;; obviously sub-optimal.
412 (setq oldvers nil))
8cdd17b4 413 (let* ((switches
f9d1f3be
SM
414 (if vc-svn-diff-switches
415 (vc-switches 'SVN 'diff)
416 (list "-x" (mapconcat 'identity (vc-switches nil 'diff) " "))))
2d4e93b9 417 (async (and (not vc-disable-async-diff)
8cdd17b4 418 (vc-stay-local-p files)
fe1919ab 419 (or oldvers newvers)))) ; Svn diffs those locally.
b349012b 420 (apply 'vc-svn-command buffer
2766aaaf 421 (if async 'async 0)
8cdd17b4 422 files "diff"
2766aaaf 423 (append
f9d1f3be 424 switches
2766aaaf
SM
425 (when oldvers
426 (list "-r" (if newvers (concat oldvers ":" newvers)
427 oldvers)))))
fd140743
SM
428 (if async 1 ; async diff => pessimistic assumption
429 ;; For some reason `svn diff' does not return a useful
430 ;; status w.r.t whether the diff was empty or not.
8cdd17b4 431 (buffer-size (get-buffer buffer)))))
1fd3454a 432
1fd3454a
SM
433;;;
434;;; Snapshot system
435;;;
436
437(defun vc-svn-create-snapshot (dir name branchp)
5b5afd50 438 "Assign to DIR's current revision a given NAME.
1fd3454a 439If BRANCHP is non-nil, the name is created as a branch (and the current
5cc7cb96
SM
440workspace is immediately moved to that new branch).
441NAME is assumed to be a URL."
442 (vc-svn-command nil 0 dir "copy" name)
443 (when branchp (vc-svn-retrieve-snapshot dir name nil)))
1fd3454a
SM
444
445(defun vc-svn-retrieve-snapshot (dir name update)
446 "Retrieve a snapshot at and below DIR.
447NAME is the name of the snapshot; if it is empty, do a `svn update'.
5cc7cb96
SM
448If UPDATE is non-nil, then update (resynch) any affected buffers.
449NAME is assumed to be a URL."
450 (vc-svn-command nil 0 dir "switch" name)
451 ;; FIXME: parse the output and obey `update'.
452 )
1fd3454a
SM
453
454;;;
455;;; Miscellaneous
456;;;
457
458;; Subversion makes backups for us, so don't bother.
7ffc77d3 459;; (defalias 'vc-svn-make-version-backups-p 'vc-stay-local-p
1fd3454a
SM
460;; "Return non-nil if version backups should be made for FILE.")
461
462(defun vc-svn-check-headers ()
463 "Check if the current file has any headers in it."
464 (save-excursion
465 (goto-char (point-min))
466 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\
467\\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t)))
468
469
470;;;
471;;; Internal functions
472;;;
473
e4cc3f57
SM
474(defcustom vc-svn-program "svn"
475 "Name of the svn executable."
476 :type 'string
477 :group 'vc)
478
8cdd17b4 479(defun vc-svn-command (buffer okstatus file-or-list &rest flags)
1fd3454a
SM
480 "A wrapper around `vc-do-command' for use in vc-svn.el.
481The difference to vc-do-command is that this function always invokes `svn',
482and that it passes `vc-svn-global-switches' to it before FLAGS."
8cdd17b4 483 (apply 'vc-do-command buffer okstatus vc-svn-program file-or-list
1fd3454a
SM
484 (if (stringp vc-svn-global-switches)
485 (cons vc-svn-global-switches flags)
486 (append vc-svn-global-switches
487 flags))))
488
7ffc77d3
SM
489(defun vc-svn-repository-hostname (dirname)
490 (with-temp-buffer
491 (let ((coding-system-for-read
492 (or file-name-coding-system
493 default-file-name-coding-system)))
ace2fad9
CY
494 (vc-insert-file (expand-file-name (concat vc-svn-admin-directory
495 "/entries")
496 dirname)))
7ffc77d3
SM
497 (goto-char (point-min))
498 (when (re-search-forward
c45b3be3 499 ;; Old `svn' used name="svn:this_dir", newer use just name="".
17a5a301
SM
500 (concat "name=\"\\(?:svn:this_dir\\)?\"[\n\t ]*"
501 "\\(?:[-a-z]+=\"[^\"]*\"[\n\t ]*\\)*?"
0b0dad41
SM
502 "url=\"\\(?1:[^\"]+\\)\""
503 ;; Yet newer ones don't use XML any more.
504 "\\|^\ndir\n[0-9]+\n\\(?1:.*\\)") nil t)
17a5a301
SM
505 ;; This is not a hostname but a URL. This may actually be considered
506 ;; as a feature since it allows vc-svn-stay-local to specify different
507 ;; behavior for different modules on the same server.
508 (match-string 1))))
1fd3454a 509
1c67a814
SM
510(defun vc-svn-resolve-when-done ()
511 "Call \"svn resolved\" if the conflict markers have been removed."
512 (save-excursion
513 (goto-char (point-min))
514 (if (not (re-search-forward "^<<<<<<< " nil t))
515 (vc-svn-command nil 0 buffer-file-name "resolved"))))
516
517;; Inspired by vc-arch-find-file-hook.
518(defun vc-svn-find-file-hook ()
519 (when (eq ?C (vc-file-getprop buffer-file-name 'vc-svn-status))
520 ;; If the file is marked as "conflicted", then we should try and call
521 ;; "svn resolved" when applicable.
522 (if (save-excursion
523 (goto-char (point-min))
524 (re-search-forward "^<<<<<<< " nil t))
525 ;; There are conflict markers.
526 (progn
527 (smerge-mode 1)
528 (add-hook 'after-save-hook 'vc-svn-resolve-when-done nil t))
529 ;; There are no conflict markers. This is problematic: maybe it means
530 ;; the conflict has been resolved and we should immediately call "svn
531 ;; resolved", or it means that the file's type does not allow Svn to
532 ;; use conflict markers in which case we don't really know what to do.
533 ;; So let's just punt for now.
534 nil)
535 (message "There are unresolved conflicts in this file")))
536
bc8c1bb4 537(defun vc-svn-parse-status (&optional filename)
1fd3454a 538 "Parse output of \"svn status\" command in the current buffer.
bc8c1bb4
SM
539Set file properties accordingly. Unless FILENAME is non-nil, parse only
540information about FILENAME and return its status."
1fd3454a
SM
541 (let (file status)
542 (goto-char (point-min))
543 (while (re-search-forward
c45b3be3
SM
544 ;; Ignore the files with status in [IX?].
545 "^[ ACDGMR!~][ MC][ L][ +][ S]..\\([ *]\\) +\\([-0-9]+\\) +\\([0-9?]+\\) +\\([^ ]+\\) +" nil t)
546 ;; If the username contains spaces, the output format is ambiguous,
547 ;; so don't trust the output's filename unless we have to.
548 (setq file (or filename
549 (expand-file-name
550 (buffer-substring (point) (line-end-position)))))
1fd3454a
SM
551 (setq status (char-after (line-beginning-position)))
552 (unless (eq status ??)
bc8c1bb4
SM
553 ;; `vc-BACKEND-registered' must not set vc-backend,
554 ;; which is instead set in vc-registered.
555 (unless filename (vc-file-setprop file 'vc-backend 'SVN))
fd140743
SM
556 ;; Use the last-modified revision, so that searching in vc-print-log
557 ;; output works.
ac3f4c6f 558 (vc-file-setprop file 'vc-working-revision (match-string 3))
1c67a814
SM
559 ;; Remember Svn's own status.
560 (vc-file-setprop file 'vc-svn-status status)
1fd3454a
SM
561 (vc-file-setprop
562 file 'vc-state
563 (cond
564 ((eq status ?\ )
565 (if (eq (char-after (match-beginning 1)) ?*)
566 'needs-patch
567 (vc-file-setprop file 'vc-checkout-time
568 (nth 5 (file-attributes file)))
569 'up-to-date))
570 ((eq status ?A)
fd140743 571 ;; If the file was actually copied, (match-string 2) is "-".
ac3f4c6f 572 (vc-file-setprop file 'vc-working-revision "0")
1fd3454a
SM
573 (vc-file-setprop file 'vc-checkout-time 0)
574 'edited)
575 ((memq status '(?M ?C))
576 (if (eq (char-after (match-beginning 1)) ?*)
577 'needs-merge
578 'edited))
bc8c1bb4
SM
579 (t 'edited)))))
580 (if filename (vc-file-getprop filename 'vc-state))))
1fd3454a
SM
581
582(defun vc-svn-dir-state-heuristic (dir)
583 "Find the SVN state of all files in DIR, using only local information."
584 (vc-svn-dir-state dir 'local))
585
586(defun vc-svn-valid-symbolic-tag-name-p (tag)
587 "Return non-nil if TAG is a valid symbolic tag name."
588 ;; According to the SVN manual, a valid symbolic tag must start with
589 ;; an uppercase or lowercase letter and can contain uppercase and
590 ;; lowercase letters, digits, `-', and `_'.
591 (and (string-match "^[a-zA-Z]" tag)
592 (not (string-match "[^a-z0-9A-Z-_]" tag))))
593
5b5afd50
ER
594(defun vc-svn-valid-revision-number-p (tag)
595 "Return non-nil if TAG is a valid revision number."
1fd3454a
SM
596 (and (string-match "^[0-9]" tag)
597 (not (string-match "[^0-9]" tag))))
598
17a5a301
SM
599;; Support for `svn annotate'
600
601(defun vc-svn-annotate-command (file buf &optional rev)
602 (vc-svn-command buf 0 file "annotate" (if rev (concat "-r" rev))))
603
604(defun vc-svn-annotate-time-of-rev (rev)
605 ;; Arbitrarily assume 10 commmits per day.
606 (/ (string-to-number rev) 10.0))
607
608(defun vc-svn-annotate-current-time ()
609 (vc-svn-annotate-time-of-rev vc-annotate-parent-rev))
610
611(defconst vc-svn-annotate-re "[ \t]*\\([0-9]+\\)[ \t]+[^\t ]+ ")
612
613(defun vc-svn-annotate-time ()
614 (when (looking-at vc-svn-annotate-re)
615 (goto-char (match-end 0))
616 (vc-svn-annotate-time-of-rev (match-string 1))))
617
618(defun vc-svn-annotate-extract-revision-at-line ()
619 (save-excursion
620 (beginning-of-line)
621 (if (looking-at vc-svn-annotate-re) (match-string 1))))
622
1fd3454a
SM
623(provide 'vc-svn)
624
f9d1f3be 625;; arch-tag: 02f10c68-2b4d-453a-90fc-1eee6cfb268d
1fd3454a 626;;; vc-svn.el ends here