2003-05-05 15:42:27 +00:00
|
|
|
;;; vc-svn.el --- non-resident support for Subversion version-control
|
|
|
|
|
2007-01-14 14:49:28 +00:00
|
|
|
;; Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
;; Author: FSF (see vc.el for full credits)
|
|
|
|
;; Maintainer: Stefan Monnier <monnier@gnu.org>
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2007-07-25 04:50:21 +00:00
|
|
|
;; the Free Software Foundation; either version 3, or (at your option)
|
2003-05-05 15:42:27 +00:00
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
2005-07-04 23:32:44 +00:00
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2007-10-09 16:54:40 +00:00
|
|
|
;; Sync'd with Subversion's vc-svn.el as of revision 5801. but this version
|
|
|
|
;; has been extensively modified since to handle filesets.
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
;;; Bugs:
|
|
|
|
|
2003-05-08 18:31:21 +00:00
|
|
|
;; - VC-dired is (really) slow.
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(eval-when-compile
|
|
|
|
(require 'vc))
|
|
|
|
|
|
|
|
;;;
|
|
|
|
;;; Customization options
|
|
|
|
;;;
|
|
|
|
|
|
|
|
(defcustom vc-svn-global-switches nil
|
|
|
|
"*Global switches to pass to any SVN command."
|
|
|
|
:type '(choice (const :tag "None" nil)
|
|
|
|
(string :tag "Argument String")
|
|
|
|
(repeat :tag "Argument List"
|
|
|
|
:value ("")
|
|
|
|
string))
|
2005-02-09 15:50:47 +00:00
|
|
|
:version "22.1"
|
2003-05-05 15:42:27 +00:00
|
|
|
:group 'vc)
|
|
|
|
|
|
|
|
(defcustom vc-svn-register-switches nil
|
|
|
|
"*Extra switches for registering a file into SVN.
|
|
|
|
A string or list of strings passed to the checkin program by
|
|
|
|
\\[vc-register]."
|
|
|
|
:type '(choice (const :tag "None" nil)
|
|
|
|
(string :tag "Argument String")
|
|
|
|
(repeat :tag "Argument List"
|
|
|
|
:value ("")
|
|
|
|
string))
|
2005-02-09 15:50:47 +00:00
|
|
|
:version "22.1"
|
2003-05-05 15:42:27 +00:00
|
|
|
:group 'vc)
|
|
|
|
|
2003-07-23 15:34:14 +00:00
|
|
|
(defcustom vc-svn-diff-switches
|
|
|
|
t ;`svn' doesn't support common args like -c or -b.
|
|
|
|
"String or list of strings specifying extra switches for svn diff under VC.
|
|
|
|
If nil, use the value of `vc-diff-switches'.
|
|
|
|
If you want to force an empty list of arguments, use t."
|
|
|
|
:type '(choice (const :tag "Unspecified" nil)
|
|
|
|
(const :tag "None" t)
|
2003-05-05 15:42:27 +00:00
|
|
|
(string :tag "Argument String")
|
|
|
|
(repeat :tag "Argument List"
|
|
|
|
:value ("")
|
|
|
|
string))
|
2005-02-09 15:50:47 +00:00
|
|
|
:version "22.1"
|
2003-05-05 15:42:27 +00:00
|
|
|
:group 'vc)
|
|
|
|
|
|
|
|
(defcustom vc-svn-header (or (cdr (assoc 'SVN vc-header-alist)) '("\$Id\$"))
|
|
|
|
"*Header keywords to be inserted by `vc-insert-headers'."
|
2005-02-09 15:50:47 +00:00
|
|
|
:version "22.1"
|
2003-05-05 15:42:27 +00:00
|
|
|
:type '(repeat string)
|
|
|
|
:group 'vc)
|
|
|
|
|
2007-02-19 19:42:10 +00:00
|
|
|
;; We want to autoload it for use by the autoloaded version of
|
|
|
|
;; vc-svn-registered, but we want the value to be compiled at startup, not
|
|
|
|
;; at dump time.
|
|
|
|
;; ;;;###autoload
|
|
|
|
(defconst vc-svn-admin-directory
|
|
|
|
(cond ((and (memq system-type '(cygwin windows-nt ms-dos))
|
2006-11-09 03:34:17 +00:00
|
|
|
(getenv "SVN_ASP_DOT_NET_HACK"))
|
|
|
|
"_svn")
|
|
|
|
(t ".svn"))
|
|
|
|
"The name of the \".svn\" subdirectory or its equivalent.")
|
|
|
|
|
2007-07-18 16:32:40 +00:00
|
|
|
;;; Properties of the backend
|
|
|
|
|
|
|
|
(defun vc-svn-revision-granularity ()
|
|
|
|
'repository)
|
2003-05-05 15:42:27 +00:00
|
|
|
;;;
|
|
|
|
;;; State-querying functions
|
|
|
|
;;;
|
|
|
|
|
2006-11-09 03:34:17 +00:00
|
|
|
;;; vc-svn-admin-directory is generally not defined when the
|
|
|
|
;;; autoloaded function is called.
|
|
|
|
|
2003-05-05 15:42:27 +00:00
|
|
|
;;;###autoload (defun vc-svn-registered (f)
|
2006-11-09 03:34:17 +00:00
|
|
|
;;;###autoload (let ((admin-dir (cond ((and (eq system-type 'windows-nt)
|
2007-02-19 19:42:10 +00:00
|
|
|
;;;###autoload (getenv "SVN_ASP_DOT_NET_HACK"))
|
|
|
|
;;;###autoload "_svn")
|
|
|
|
;;;###autoload (t ".svn"))))
|
2006-11-09 03:34:17 +00:00
|
|
|
;;;###autoload (when (file-readable-p (expand-file-name
|
2007-02-19 19:42:10 +00:00
|
|
|
;;;###autoload (concat admin-dir "/entries")
|
|
|
|
;;;###autoload (file-name-directory f)))
|
2003-05-05 15:42:27 +00:00
|
|
|
;;;###autoload (load "vc-svn")
|
2006-11-09 03:34:17 +00:00
|
|
|
;;;###autoload (vc-svn-registered f))))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
2003-05-14 19:38:39 +00:00
|
|
|
;;;###autoload
|
|
|
|
(add-to-list 'completion-ignored-extensions ".svn/")
|
|
|
|
|
2003-05-05 15:42:27 +00:00
|
|
|
(defun vc-svn-registered (file)
|
|
|
|
"Check if FILE is SVN registered."
|
2006-11-09 03:34:17 +00:00
|
|
|
(when (file-readable-p (expand-file-name (concat vc-svn-admin-directory
|
|
|
|
"/entries")
|
2003-05-05 15:42:27 +00:00
|
|
|
(file-name-directory file)))
|
|
|
|
(with-temp-buffer
|
|
|
|
(cd (file-name-directory file))
|
2006-02-06 15:23:23 +00:00
|
|
|
(let ((status
|
2005-12-13 22:25:24 +00:00
|
|
|
(condition-case nil
|
|
|
|
;; Ignore all errors.
|
|
|
|
(vc-svn-command t t file "status" "-v")
|
|
|
|
;; Some problem happened. E.g. We can't find an `svn'
|
|
|
|
;; executable. We used to only catch `file-error' but when
|
|
|
|
;; the process is run on a remote host via Tramp, the error
|
|
|
|
;; is only reported via the exit status which is turned into
|
|
|
|
;; an `error' by vc-do-command.
|
|
|
|
(error nil))))
|
|
|
|
(when (eq 0 status)
|
2006-10-20 07:56:20 +00:00
|
|
|
(vc-svn-parse-status file))))))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
(defun vc-svn-state (file &optional localp)
|
|
|
|
"SVN-specific version of `vc-state'."
|
2003-05-09 16:41:19 +00:00
|
|
|
(setq localp (or localp (vc-stay-local-p file)))
|
2003-05-05 15:42:27 +00:00
|
|
|
(with-temp-buffer
|
|
|
|
(cd (file-name-directory file))
|
|
|
|
(vc-svn-command t 0 file "status" (if localp "-v" "-u"))
|
2006-10-20 07:56:20 +00:00
|
|
|
(vc-svn-parse-status file)))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
(defun vc-svn-state-heuristic (file)
|
|
|
|
"SVN-specific state heuristic."
|
|
|
|
(vc-svn-state file 'local))
|
|
|
|
|
|
|
|
(defun vc-svn-dir-state (dir &optional localp)
|
|
|
|
"Find the SVN state of all files in DIR."
|
2003-05-09 16:41:19 +00:00
|
|
|
(setq localp (or localp (vc-stay-local-p dir)))
|
2003-05-05 15:42:27 +00:00
|
|
|
(let ((default-directory dir))
|
|
|
|
;; Don't specify DIR in this command, the default-directory is
|
|
|
|
;; enough. Otherwise it might fail with remote repositories.
|
|
|
|
(with-temp-buffer
|
|
|
|
(vc-svn-command t 0 nil "status" (if localp "-v" "-u"))
|
2006-10-20 07:56:20 +00:00
|
|
|
(vc-svn-parse-status))))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
2007-10-10 18:52:45 +00:00
|
|
|
(defun vc-svn-working-revision (file)
|
|
|
|
"SVN-specific version of `vc-working-revision'."
|
2003-05-05 15:42:27 +00:00
|
|
|
;; There is no need to consult RCS headers under SVN, because we
|
|
|
|
;; get the workfile version for free when we recognize that a file
|
|
|
|
;; is registered in SVN.
|
|
|
|
(vc-svn-registered file)
|
2007-10-10 18:52:45 +00:00
|
|
|
(vc-file-getprop file 'vc-working-revision))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
(defun vc-svn-checkout-model (file)
|
|
|
|
"SVN-specific version of `vc-checkout-model'."
|
|
|
|
;; It looks like Subversion has no equivalent of CVSREAD.
|
|
|
|
'implicit)
|
|
|
|
|
2003-07-04 22:21:45 +00:00
|
|
|
;; vc-svn-mode-line-string doesn't exist because the default implementation
|
|
|
|
;; works just fine.
|
|
|
|
|
2003-05-05 15:42:27 +00:00
|
|
|
(defun vc-svn-dired-state-info (file)
|
|
|
|
"SVN-specific version of `vc-dired-state-info'."
|
2003-05-08 18:31:21 +00:00
|
|
|
(let ((svn-state (vc-state file)))
|
|
|
|
(cond ((eq svn-state 'edited)
|
2007-10-10 18:52:45 +00:00
|
|
|
(if (equal (vc-working-revision file) "0")
|
2003-05-08 18:31:21 +00:00
|
|
|
"(added)" "(modified)"))
|
|
|
|
((eq svn-state 'needs-patch) "(patch)")
|
|
|
|
((eq svn-state 'needs-merge) "(merge)"))))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
2007-10-10 19:39:23 +00:00
|
|
|
(defun vc-svn-previous-revision (file rev)
|
2006-02-06 15:58:38 +00:00
|
|
|
(let ((newrev (1- (string-to-number rev))))
|
|
|
|
(when (< 0 newrev)
|
|
|
|
(number-to-string newrev))))
|
|
|
|
|
2007-10-10 19:39:23 +00:00
|
|
|
(defun vc-svn-next-revision (file rev)
|
2006-02-06 15:58:38 +00:00
|
|
|
(let ((newrev (1+ (string-to-number rev))))
|
2007-10-10 19:39:23 +00:00
|
|
|
;; The "working revision" is an uneasy conceptual fit under Subversion;
|
2006-02-06 15:58:38 +00:00
|
|
|
;; we use it as the upper bound until a better idea comes along. If the
|
|
|
|
;; workfile version W coincides with the tree's latest revision R, then
|
|
|
|
;; this check prevents a "no such revision: R+1" error. Otherwise, it
|
|
|
|
;; inhibits showing of W+1 through R, which could be considered anywhere
|
|
|
|
;; from gracious to impolite.
|
2007-10-10 18:52:45 +00:00
|
|
|
(unless (< (string-to-number (vc-file-getprop file 'vc-working-revision))
|
2006-02-06 15:58:38 +00:00
|
|
|
newrev)
|
|
|
|
(number-to-string newrev))))
|
|
|
|
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
;;;
|
|
|
|
;;; State-changing functions
|
|
|
|
;;;
|
|
|
|
|
2007-07-18 16:32:40 +00:00
|
|
|
(defun vc-svn-create-repo ()
|
|
|
|
"Create a new SVN repository."
|
|
|
|
(vc-do-command nil 0 "svnadmin" '("create" "SVN"))
|
|
|
|
(vc-do-command nil 0 "svn" '(".")
|
|
|
|
"checkout" (concat "file://" default-directory "SVN")))
|
|
|
|
|
|
|
|
(defun vc-svn-register (files &optional rev comment)
|
|
|
|
"Register FILES into the SVN version-control system.
|
|
|
|
The COMMENT argument is ignored This does an add but not a commit.
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
`vc-register-switches' and `vc-svn-register-switches' are passed to
|
|
|
|
the SVN command (in that order)."
|
2007-07-18 16:32:40 +00:00
|
|
|
(apply 'vc-svn-command nil 0 files "add" (vc-switches 'SVN 'register)))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
(defun vc-svn-responsible-p (file)
|
|
|
|
"Return non-nil if SVN thinks it is responsible for FILE."
|
2006-11-09 03:34:17 +00:00
|
|
|
(file-directory-p (expand-file-name vc-svn-admin-directory
|
2003-05-05 15:42:27 +00:00
|
|
|
(if (file-directory-p file)
|
|
|
|
file
|
|
|
|
(file-name-directory file)))))
|
|
|
|
|
|
|
|
(defalias 'vc-svn-could-register 'vc-svn-responsible-p
|
|
|
|
"Return non-nil if FILE could be registered in SVN.
|
|
|
|
This is only possible if SVN is responsible for FILE's directory.")
|
|
|
|
|
2007-07-18 16:32:40 +00:00
|
|
|
(defun vc-svn-checkin (files rev comment)
|
2003-05-05 15:42:27 +00:00
|
|
|
"SVN-specific version of `vc-backend-checkin'."
|
2007-07-18 16:32:40 +00:00
|
|
|
(if rev (error "Committing to a specific revision is unsupported in SVN."))
|
2004-06-04 04:37:10 +00:00
|
|
|
(let ((status (apply
|
2007-07-18 16:32:40 +00:00
|
|
|
'vc-svn-command nil 1 files "ci"
|
2004-06-04 04:37:10 +00:00
|
|
|
(nconc (list "-m" comment) (vc-switches 'SVN 'checkin)))))
|
2003-05-05 15:42:27 +00:00
|
|
|
(set-buffer "*vc*")
|
|
|
|
(goto-char (point-min))
|
|
|
|
(unless (equal status 0)
|
|
|
|
;; Check checkin problem.
|
|
|
|
(cond
|
2003-05-08 18:31:21 +00:00
|
|
|
((search-forward "Transaction is out of date" nil t)
|
2007-07-18 16:32:40 +00:00
|
|
|
(mapc (lambda (file) (vc-file-setprop file 'vc-state 'needs-merge))
|
|
|
|
files)
|
2003-05-05 15:42:27 +00:00
|
|
|
(error (substitute-command-keys
|
|
|
|
(concat "Up-to-date check failed: "
|
|
|
|
"type \\[vc-next-action] to merge in changes"))))
|
|
|
|
(t
|
|
|
|
(pop-to-buffer (current-buffer))
|
|
|
|
(goto-char (point-min))
|
|
|
|
(shrink-window-if-larger-than-buffer)
|
|
|
|
(error "Check-in failed"))))
|
|
|
|
;; Update file properties
|
|
|
|
;; (vc-file-setprop
|
2007-10-10 18:52:45 +00:00
|
|
|
;; file 'vc-working-revision
|
2003-05-05 15:42:27 +00:00
|
|
|
;; (vc-parse-buffer "^\\(new\\|initial\\) revision: \\([0-9.]+\\)" 2))
|
|
|
|
))
|
|
|
|
|
2007-10-10 18:52:45 +00:00
|
|
|
(defun vc-svn-find-revision (file rev buffer)
|
2007-07-18 16:32:40 +00:00
|
|
|
"SVN-specific retrieval of a specified version into a buffer."
|
2003-05-05 15:42:27 +00:00
|
|
|
(apply 'vc-svn-command
|
|
|
|
buffer 0 file
|
|
|
|
"cat"
|
|
|
|
(and rev (not (string= rev ""))
|
|
|
|
(concat "-r" rev))
|
2003-05-08 18:31:21 +00:00
|
|
|
(vc-switches 'SVN 'checkout)))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
(defun vc-svn-checkout (file &optional editable rev)
|
|
|
|
(message "Checking out %s..." file)
|
|
|
|
(with-current-buffer (or (get-file-buffer file) (current-buffer))
|
2003-05-08 18:31:21 +00:00
|
|
|
(vc-call update file editable rev (vc-switches 'SVN 'checkout)))
|
2003-05-05 15:42:27 +00:00
|
|
|
(vc-mode-line file)
|
|
|
|
(message "Checking out %s...done" file))
|
|
|
|
|
|
|
|
(defun vc-svn-update (file editable rev switches)
|
|
|
|
(if (and (file-exists-p file) (not rev))
|
2007-02-19 19:42:10 +00:00
|
|
|
;; If no revision was specified, there's nothing to do.
|
|
|
|
nil
|
2003-05-05 15:42:27 +00:00
|
|
|
;; Check out a particular version (or recreate the file).
|
2007-10-10 18:52:45 +00:00
|
|
|
(vc-file-setprop file 'vc-working-revision nil)
|
2003-05-05 15:42:27 +00:00
|
|
|
(apply 'vc-svn-command nil 0 file
|
|
|
|
"update"
|
|
|
|
;; default for verbose checkout: clear the sticky tag so
|
|
|
|
;; that the actual update will get the head of the trunk
|
2003-07-04 22:21:45 +00:00
|
|
|
(cond
|
|
|
|
((null rev) "-rBASE")
|
|
|
|
((or (eq rev t) (equal rev "")) nil)
|
|
|
|
(t (concat "-r" rev)))
|
2003-05-05 15:42:27 +00:00
|
|
|
switches)))
|
|
|
|
|
2003-05-14 19:38:39 +00:00
|
|
|
(defun vc-svn-delete-file (file)
|
|
|
|
(vc-svn-command nil 0 file "remove"))
|
|
|
|
|
2003-05-09 14:13:40 +00:00
|
|
|
(defun vc-svn-rename-file (old new)
|
|
|
|
(vc-svn-command nil 0 new "move" (file-relative-name old)))
|
|
|
|
|
2003-05-05 15:42:27 +00:00
|
|
|
(defun vc-svn-revert (file &optional contents-done)
|
|
|
|
"Revert FILE to the version it was based on."
|
|
|
|
(unless contents-done
|
2007-02-19 19:42:10 +00:00
|
|
|
(vc-svn-command nil 0 file "revert")))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
(defun vc-svn-merge (file first-version &optional second-version)
|
|
|
|
"Merge changes into current working copy of FILE.
|
|
|
|
The changes are between FIRST-VERSION and SECOND-VERSION."
|
|
|
|
(vc-svn-command nil 0 file
|
2003-05-05 16:13:04 +00:00
|
|
|
"merge"
|
2003-05-05 16:13:39 +00:00
|
|
|
"-r" (if second-version
|
2003-05-05 16:13:04 +00:00
|
|
|
(concat first-version ":" second-version)
|
|
|
|
first-version))
|
2003-05-05 15:42:27 +00:00
|
|
|
(vc-file-setprop file 'vc-state 'edited)
|
|
|
|
(with-current-buffer (get-buffer "*vc*")
|
|
|
|
(goto-char (point-min))
|
2003-05-05 16:13:04 +00:00
|
|
|
(if (looking-at "C ")
|
|
|
|
1 ; signal conflict
|
2003-05-05 15:42:27 +00:00
|
|
|
0))) ; signal success
|
|
|
|
|
|
|
|
(defun vc-svn-merge-news (file)
|
|
|
|
"Merge in any new changes made to FILE."
|
|
|
|
(message "Merging changes into %s..." file)
|
2007-10-10 18:52:45 +00:00
|
|
|
;; (vc-file-setprop file 'vc-working-revision nil)
|
2003-05-05 15:42:27 +00:00
|
|
|
(vc-file-setprop file 'vc-checkout-time 0)
|
|
|
|
(vc-svn-command nil 0 file "update")
|
|
|
|
;; Analyze the merge result reported by SVN, and set
|
|
|
|
;; file properties accordingly.
|
|
|
|
(with-current-buffer (get-buffer "*vc*")
|
|
|
|
(goto-char (point-min))
|
2007-10-10 19:39:23 +00:00
|
|
|
;; get new working revision
|
2003-05-05 15:42:27 +00:00
|
|
|
(if (re-search-forward
|
2003-05-05 16:06:10 +00:00
|
|
|
"^\\(Updated to\\|At\\) revision \\([0-9]+\\)" nil t)
|
2007-10-10 18:52:45 +00:00
|
|
|
(vc-file-setprop file 'vc-working-revision (match-string 2))
|
|
|
|
(vc-file-setprop file 'vc-working-revision nil))
|
2003-05-05 15:42:27 +00:00
|
|
|
;; get file status
|
2003-05-05 16:06:10 +00:00
|
|
|
(goto-char (point-min))
|
2003-05-05 15:42:27 +00:00
|
|
|
(prog1
|
2003-05-05 16:06:10 +00:00
|
|
|
(if (looking-at "At revision")
|
2003-05-05 15:42:27 +00:00
|
|
|
0 ;; there were no news; indicate success
|
|
|
|
(if (re-search-forward
|
2007-02-07 23:02:12 +00:00
|
|
|
;; Newer SVN clients have 3 columns of chars (one for the
|
|
|
|
;; file's contents, then second for its properties, and the
|
|
|
|
;; third for lock-grabbing info), before the 2 spaces.
|
|
|
|
;; We also used to match the filename in column 0 without any
|
|
|
|
;; meta-info before it, but I believe this can never happen.
|
|
|
|
(concat "^\\(\\([ACGDU]\\)\\(.[B ]\\)? \\)"
|
2003-05-05 16:06:10 +00:00
|
|
|
(regexp-quote (file-name-nondirectory file)))
|
2003-05-05 15:42:27 +00:00
|
|
|
nil t)
|
|
|
|
(cond
|
|
|
|
;; Merge successful, we are in sync with repository now
|
2007-02-07 23:02:12 +00:00
|
|
|
((string= (match-string 2) "U")
|
2003-05-05 15:42:27 +00:00
|
|
|
(vc-file-setprop file 'vc-state 'up-to-date)
|
|
|
|
(vc-file-setprop file 'vc-checkout-time
|
|
|
|
(nth 5 (file-attributes file)))
|
|
|
|
0);; indicate success to the caller
|
|
|
|
;; Merge successful, but our own changes are still in the file
|
2007-02-07 23:02:12 +00:00
|
|
|
((string= (match-string 2) "G")
|
2003-05-05 15:42:27 +00:00
|
|
|
(vc-file-setprop file 'vc-state 'edited)
|
|
|
|
0);; indicate success to the caller
|
|
|
|
;; Conflicts detected!
|
|
|
|
(t
|
|
|
|
(vc-file-setprop file 'vc-state 'edited)
|
|
|
|
1);; signal the error to the caller
|
|
|
|
)
|
|
|
|
(pop-to-buffer "*vc*")
|
|
|
|
(error "Couldn't analyze svn update result")))
|
|
|
|
(message "Merging changes into %s...done" file))))
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
;;; History functions
|
|
|
|
;;;
|
|
|
|
|
2007-07-18 16:32:40 +00:00
|
|
|
(defun vc-svn-print-log (files &optional buffer)
|
|
|
|
"Get change log(s) associated with FILES."
|
2003-05-05 15:42:27 +00:00
|
|
|
(save-current-buffer
|
2004-04-20 16:49:26 +00:00
|
|
|
(vc-setup-buffer buffer)
|
2003-05-05 15:42:27 +00:00
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
(goto-char (point-min))
|
|
|
|
;; Add a line to tell log-view-mode what file this is.
|
2007-09-03 06:25:50 +00:00
|
|
|
;; FIXME if there are multiple files, log-view-current-file
|
|
|
|
;; breaks. It's trivial to adapt log-view-file-re for the
|
|
|
|
;; changed prefix, but less trivial to make
|
|
|
|
;; log-view-current-file actually do the right thing in the
|
|
|
|
;; multiple file case.
|
|
|
|
(insert (format "Working file%s: "
|
|
|
|
(if (= (length files) 1)
|
|
|
|
""
|
|
|
|
"s"))
|
|
|
|
(vc-delistify (mapcar 'file-relative-name files)) "\n"))
|
2003-05-05 15:42:27 +00:00
|
|
|
(vc-svn-command
|
2004-04-20 16:49:26 +00:00
|
|
|
buffer
|
2007-07-18 16:32:40 +00:00
|
|
|
(if (and (= (length files) 1) (vc-stay-local-p (car files)) (fboundp 'start-process)) 'async 0)
|
|
|
|
files "log"
|
2007-10-10 19:39:23 +00:00
|
|
|
;; By default Subversion only shows the log upto the working revision,
|
2006-02-09 03:47:00 +00:00
|
|
|
;; whereas we also want the log of the subsequent commits. At least
|
|
|
|
;; that's what the vc-cvs.el code does.
|
2007-07-18 20:11:28 +00:00
|
|
|
"-rHEAD:0")))
|
2007-07-18 16:32:40 +00:00
|
|
|
|
|
|
|
(defun vc-svn-wash-log ()
|
|
|
|
"Remove all non-comment information from log output."
|
|
|
|
;; FIXME: not implemented for SVN
|
|
|
|
nil)
|
|
|
|
|
|
|
|
(defun vc-svn-diff (files &optional oldvers newvers buffer)
|
2007-10-10 19:39:23 +00:00
|
|
|
"Get a difference report using SVN between two revisions of fileset FILES."
|
2007-08-27 07:04:45 +00:00
|
|
|
(and oldvers
|
|
|
|
(catch 'no
|
|
|
|
(dolist (f files)
|
2007-10-10 18:52:45 +00:00
|
|
|
(or (equal oldvers (vc-working-revision f))
|
2007-08-27 07:04:45 +00:00
|
|
|
(throw 'no nil)))
|
|
|
|
t)
|
|
|
|
;; Use nil rather than the current revision because svn handles
|
|
|
|
;; it better (i.e. locally). Note that if _any_ of the files
|
|
|
|
;; has a different revision, we fetch the lot, which is
|
|
|
|
;; obviously sub-optimal.
|
|
|
|
(setq oldvers nil))
|
2007-07-18 16:32:40 +00:00
|
|
|
(let* ((switches
|
2004-08-23 18:23:52 +00:00
|
|
|
(if vc-svn-diff-switches
|
|
|
|
(vc-switches 'SVN 'diff)
|
|
|
|
(list "-x" (mapconcat 'identity (vc-switches nil 'diff) " "))))
|
2005-01-09 21:30:56 +00:00
|
|
|
(async (and (not vc-disable-async-diff)
|
2007-07-18 16:32:40 +00:00
|
|
|
(vc-stay-local-p files)
|
2003-05-08 18:31:21 +00:00
|
|
|
(or oldvers newvers) ; Svn diffs those locally.
|
2003-05-09 14:13:40 +00:00
|
|
|
(fboundp 'start-process))))
|
2004-04-20 16:49:26 +00:00
|
|
|
(apply 'vc-svn-command buffer
|
2003-05-09 14:13:40 +00:00
|
|
|
(if async 'async 0)
|
2007-07-18 16:32:40 +00:00
|
|
|
files "diff"
|
2003-05-09 14:13:40 +00:00
|
|
|
(append
|
2004-08-23 18:23:52 +00:00
|
|
|
switches
|
2003-05-09 14:13:40 +00:00
|
|
|
(when oldvers
|
|
|
|
(list "-r" (if newvers (concat oldvers ":" newvers)
|
|
|
|
oldvers)))))
|
2003-05-08 18:31:21 +00:00
|
|
|
(if async 1 ; async diff => pessimistic assumption
|
|
|
|
;; For some reason `svn diff' does not return a useful
|
|
|
|
;; status w.r.t whether the diff was empty or not.
|
2007-07-18 16:32:40 +00:00
|
|
|
(buffer-size (get-buffer buffer)))))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
;;;
|
|
|
|
;;; Snapshot system
|
|
|
|
;;;
|
|
|
|
|
|
|
|
(defun vc-svn-create-snapshot (dir name branchp)
|
2007-10-10 19:39:23 +00:00
|
|
|
"Assign to DIR's current revision a given NAME.
|
2003-05-05 15:42:27 +00:00
|
|
|
If BRANCHP is non-nil, the name is created as a branch (and the current
|
2003-07-04 22:21:45 +00:00
|
|
|
workspace is immediately moved to that new branch).
|
|
|
|
NAME is assumed to be a URL."
|
|
|
|
(vc-svn-command nil 0 dir "copy" name)
|
|
|
|
(when branchp (vc-svn-retrieve-snapshot dir name nil)))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
(defun vc-svn-retrieve-snapshot (dir name update)
|
|
|
|
"Retrieve a snapshot at and below DIR.
|
|
|
|
NAME is the name of the snapshot; if it is empty, do a `svn update'.
|
2003-07-04 22:21:45 +00:00
|
|
|
If UPDATE is non-nil, then update (resynch) any affected buffers.
|
|
|
|
NAME is assumed to be a URL."
|
|
|
|
(vc-svn-command nil 0 dir "switch" name)
|
|
|
|
;; FIXME: parse the output and obey `update'.
|
|
|
|
)
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
;;;
|
|
|
|
;;; Miscellaneous
|
|
|
|
;;;
|
|
|
|
|
|
|
|
;; Subversion makes backups for us, so don't bother.
|
2003-05-09 16:41:19 +00:00
|
|
|
;; (defalias 'vc-svn-make-version-backups-p 'vc-stay-local-p
|
2003-05-05 15:42:27 +00:00
|
|
|
;; "Return non-nil if version backups should be made for FILE.")
|
|
|
|
|
|
|
|
(defun vc-svn-check-headers ()
|
|
|
|
"Check if the current file has any headers in it."
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
|
|
|
(re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\
|
|
|
|
\\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t)))
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
;;; Internal functions
|
|
|
|
;;;
|
|
|
|
|
2007-06-11 18:41:09 +00:00
|
|
|
(defcustom vc-svn-program "svn"
|
|
|
|
"Name of the svn executable."
|
|
|
|
:type 'string
|
|
|
|
:group 'vc)
|
|
|
|
|
2007-07-18 16:32:40 +00:00
|
|
|
(defun vc-svn-command (buffer okstatus file-or-list &rest flags)
|
2003-05-05 15:42:27 +00:00
|
|
|
"A wrapper around `vc-do-command' for use in vc-svn.el.
|
|
|
|
The difference to vc-do-command is that this function always invokes `svn',
|
|
|
|
and that it passes `vc-svn-global-switches' to it before FLAGS."
|
2007-07-18 16:32:40 +00:00
|
|
|
(apply 'vc-do-command buffer okstatus vc-svn-program file-or-list
|
2003-05-05 15:42:27 +00:00
|
|
|
(if (stringp vc-svn-global-switches)
|
|
|
|
(cons vc-svn-global-switches flags)
|
|
|
|
(append vc-svn-global-switches
|
|
|
|
flags))))
|
|
|
|
|
2003-05-09 16:41:19 +00:00
|
|
|
(defun vc-svn-repository-hostname (dirname)
|
|
|
|
(with-temp-buffer
|
|
|
|
(let ((coding-system-for-read
|
|
|
|
(or file-name-coding-system
|
|
|
|
default-file-name-coding-system)))
|
2006-11-09 03:34:17 +00:00
|
|
|
(vc-insert-file (expand-file-name (concat vc-svn-admin-directory
|
|
|
|
"/entries")
|
|
|
|
dirname)))
|
2003-05-09 16:41:19 +00:00
|
|
|
(goto-char (point-min))
|
|
|
|
(when (re-search-forward
|
2007-01-14 14:49:28 +00:00
|
|
|
;; Old `svn' used name="svn:this_dir", newer use just name="".
|
2004-12-13 06:30:40 +00:00
|
|
|
(concat "name=\"\\(?:svn:this_dir\\)?\"[\n\t ]*"
|
|
|
|
"\\(?:[-a-z]+=\"[^\"]*\"[\n\t ]*\\)*?"
|
2007-06-26 16:39:58 +00:00
|
|
|
"url=\"\\(?1:[^\"]+\\)\""
|
|
|
|
;; Yet newer ones don't use XML any more.
|
|
|
|
"\\|^\ndir\n[0-9]+\n\\(?1:.*\\)") nil t)
|
2004-12-13 06:30:40 +00:00
|
|
|
;; This is not a hostname but a URL. This may actually be considered
|
|
|
|
;; as a feature since it allows vc-svn-stay-local to specify different
|
|
|
|
;; behavior for different modules on the same server.
|
|
|
|
(match-string 1))))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
2007-09-28 18:45:43 +00:00
|
|
|
(defun vc-svn-resolve-when-done ()
|
|
|
|
"Call \"svn resolved\" if the conflict markers have been removed."
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
|
|
|
(if (not (re-search-forward "^<<<<<<< " nil t))
|
|
|
|
(vc-svn-command nil 0 buffer-file-name "resolved"))))
|
|
|
|
|
|
|
|
;; Inspired by vc-arch-find-file-hook.
|
|
|
|
(defun vc-svn-find-file-hook ()
|
|
|
|
(when (eq ?C (vc-file-getprop buffer-file-name 'vc-svn-status))
|
|
|
|
;; If the file is marked as "conflicted", then we should try and call
|
|
|
|
;; "svn resolved" when applicable.
|
|
|
|
(if (save-excursion
|
|
|
|
(goto-char (point-min))
|
|
|
|
(re-search-forward "^<<<<<<< " nil t))
|
|
|
|
;; There are conflict markers.
|
|
|
|
(progn
|
|
|
|
(smerge-mode 1)
|
|
|
|
(add-hook 'after-save-hook 'vc-svn-resolve-when-done nil t))
|
|
|
|
;; There are no conflict markers. This is problematic: maybe it means
|
|
|
|
;; the conflict has been resolved and we should immediately call "svn
|
|
|
|
;; resolved", or it means that the file's type does not allow Svn to
|
|
|
|
;; use conflict markers in which case we don't really know what to do.
|
|
|
|
;; So let's just punt for now.
|
|
|
|
nil)
|
|
|
|
(message "There are unresolved conflicts in this file")))
|
|
|
|
|
2006-10-20 07:56:20 +00:00
|
|
|
(defun vc-svn-parse-status (&optional filename)
|
2003-05-05 15:42:27 +00:00
|
|
|
"Parse output of \"svn status\" command in the current buffer.
|
2006-10-20 07:56:20 +00:00
|
|
|
Set file properties accordingly. Unless FILENAME is non-nil, parse only
|
|
|
|
information about FILENAME and return its status."
|
2003-05-05 15:42:27 +00:00
|
|
|
(let (file status)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(while (re-search-forward
|
2007-01-14 14:49:28 +00:00
|
|
|
;; Ignore the files with status in [IX?].
|
|
|
|
"^[ ACDGMR!~][ MC][ L][ +][ S]..\\([ *]\\) +\\([-0-9]+\\) +\\([0-9?]+\\) +\\([^ ]+\\) +" nil t)
|
|
|
|
;; If the username contains spaces, the output format is ambiguous,
|
|
|
|
;; so don't trust the output's filename unless we have to.
|
|
|
|
(setq file (or filename
|
|
|
|
(expand-file-name
|
|
|
|
(buffer-substring (point) (line-end-position)))))
|
2003-05-05 15:42:27 +00:00
|
|
|
(setq status (char-after (line-beginning-position)))
|
|
|
|
(unless (eq status ??)
|
2006-10-20 07:56:20 +00:00
|
|
|
;; `vc-BACKEND-registered' must not set vc-backend,
|
|
|
|
;; which is instead set in vc-registered.
|
|
|
|
(unless filename (vc-file-setprop file 'vc-backend 'SVN))
|
2003-05-08 18:31:21 +00:00
|
|
|
;; Use the last-modified revision, so that searching in vc-print-log
|
|
|
|
;; output works.
|
2007-10-10 18:52:45 +00:00
|
|
|
(vc-file-setprop file 'vc-working-revision (match-string 3))
|
2007-09-28 18:45:43 +00:00
|
|
|
;; Remember Svn's own status.
|
|
|
|
(vc-file-setprop file 'vc-svn-status status)
|
2003-05-05 15:42:27 +00:00
|
|
|
(vc-file-setprop
|
|
|
|
file 'vc-state
|
|
|
|
(cond
|
|
|
|
((eq status ?\ )
|
|
|
|
(if (eq (char-after (match-beginning 1)) ?*)
|
|
|
|
'needs-patch
|
|
|
|
(vc-file-setprop file 'vc-checkout-time
|
|
|
|
(nth 5 (file-attributes file)))
|
|
|
|
'up-to-date))
|
|
|
|
((eq status ?A)
|
2003-05-08 18:31:21 +00:00
|
|
|
;; If the file was actually copied, (match-string 2) is "-".
|
2007-10-10 18:52:45 +00:00
|
|
|
(vc-file-setprop file 'vc-working-revision "0")
|
2003-05-05 15:42:27 +00:00
|
|
|
(vc-file-setprop file 'vc-checkout-time 0)
|
|
|
|
'edited)
|
|
|
|
((memq status '(?M ?C))
|
|
|
|
(if (eq (char-after (match-beginning 1)) ?*)
|
|
|
|
'needs-merge
|
|
|
|
'edited))
|
2006-10-20 07:56:20 +00:00
|
|
|
(t 'edited)))))
|
|
|
|
(if filename (vc-file-getprop filename 'vc-state))))
|
2003-05-05 15:42:27 +00:00
|
|
|
|
|
|
|
(defun vc-svn-dir-state-heuristic (dir)
|
|
|
|
"Find the SVN state of all files in DIR, using only local information."
|
|
|
|
(vc-svn-dir-state dir 'local))
|
|
|
|
|
|
|
|
(defun vc-svn-valid-symbolic-tag-name-p (tag)
|
|
|
|
"Return non-nil if TAG is a valid symbolic tag name."
|
|
|
|
;; According to the SVN manual, a valid symbolic tag must start with
|
|
|
|
;; an uppercase or lowercase letter and can contain uppercase and
|
|
|
|
;; lowercase letters, digits, `-', and `_'.
|
|
|
|
(and (string-match "^[a-zA-Z]" tag)
|
|
|
|
(not (string-match "[^a-z0-9A-Z-_]" tag))))
|
|
|
|
|
2007-10-10 19:39:23 +00:00
|
|
|
(defun vc-svn-valid-revision-number-p (tag)
|
|
|
|
"Return non-nil if TAG is a valid revision number."
|
2003-05-05 15:42:27 +00:00
|
|
|
(and (string-match "^[0-9]" tag)
|
|
|
|
(not (string-match "[^0-9]" tag))))
|
|
|
|
|
2004-12-13 06:30:40 +00:00
|
|
|
;; Support for `svn annotate'
|
|
|
|
|
|
|
|
(defun vc-svn-annotate-command (file buf &optional rev)
|
|
|
|
(vc-svn-command buf 0 file "annotate" (if rev (concat "-r" rev))))
|
|
|
|
|
|
|
|
(defun vc-svn-annotate-time-of-rev (rev)
|
|
|
|
;; Arbitrarily assume 10 commmits per day.
|
|
|
|
(/ (string-to-number rev) 10.0))
|
|
|
|
|
|
|
|
(defun vc-svn-annotate-current-time ()
|
|
|
|
(vc-svn-annotate-time-of-rev vc-annotate-parent-rev))
|
|
|
|
|
|
|
|
(defconst vc-svn-annotate-re "[ \t]*\\([0-9]+\\)[ \t]+[^\t ]+ ")
|
|
|
|
|
|
|
|
(defun vc-svn-annotate-time ()
|
|
|
|
(when (looking-at vc-svn-annotate-re)
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
(vc-svn-annotate-time-of-rev (match-string 1))))
|
|
|
|
|
|
|
|
(defun vc-svn-annotate-extract-revision-at-line ()
|
|
|
|
(save-excursion
|
|
|
|
(beginning-of-line)
|
|
|
|
(if (looking-at vc-svn-annotate-re) (match-string 1))))
|
|
|
|
|
2003-05-05 15:42:27 +00:00
|
|
|
(provide 'vc-svn)
|
|
|
|
|
2004-08-23 18:23:52 +00:00
|
|
|
;; arch-tag: 02f10c68-2b4d-453a-90fc-1eee6cfb268d
|
2003-05-05 15:42:27 +00:00
|
|
|
;;; vc-svn.el ends here
|