(line-move-visual): Handle null pixel position gracefully.
[bpt/emacs.git] / lisp / vc-mcvs.el
CommitLineData
3928b9a6
SM
1;;; vc-mcvs.el --- VC backend for the Meta-CVS version-control system
2
409cc4a3 3;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
3928b9a6
SM
4
5;; Author: FSF (see vc.el for full credits)
db86064f 6;; Maintainer: None
3928b9a6
SM
7
8;; This file is part of GNU Emacs.
9
eb3fa2cf 10;; GNU Emacs is free software: you can redistribute it and/or modify
3928b9a6 11;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
3928b9a6
SM
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
eb3fa2cf 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
3928b9a6
SM
22
23;;; Commentary:
24
51241d96 25;; The home page of the Meta-CVS version control system is at
cd227df3 26;;
51241d96 27;; http://users.footprints.net/~kaz/mcvs.html
cd227df3 28;;
3928b9a6
SM
29;; This is derived from vc-cvs.el as follows:
30;; - cp vc-cvs.el vc-mcvs.el
31;; - Replace CVS/ with MCVS/CVS/
32;; - Replace 'CVS with 'MCVS
33;; - Replace -cvs- with -mcvs-
34;; - Replace most of the rest of CVS to Meta-CVS
35;;
36;; Then of course started the hacking. Only a small part of the code
37;; has been touched and not much more than that was tested, so if
38;; you bump into a bug, don't be surprised: just report it to me.
39;;
40;; What has been partly tested:
41;; - C-x v v to start editing a file that was checked out with CVSREAD on.
42;; - C-x v v to commit a file
43;; - C-x v =
44;; - C-x v l
45;; - C-x v i
46;; - C-x v g
4a97caca 47;; - M-x vc-rename-file RET
3928b9a6
SM
48
49;;; Bugs:
50
370fded4 51;; - Retrieving tags doesn't filter `cvs update' output and thus
6dbeb3d8 52;; parses bogus filenames. Don't know if it harms.
3928b9a6
SM
53
54;;; Code:
55
56(eval-when-compile (require 'vc))
57(require 'vc-cvs)
58
59;;;
60;;; Customization options
61;;;
62
63(defcustom vc-mcvs-global-switches nil
64 "*Global switches to pass to any Meta-CVS command."
65 :type '(choice (const :tag "None" nil)
66 (string :tag "Argument String")
67 (repeat :tag "Argument List"
68 :value ("")
69 string))
bf247b6e 70 :version "22.1"
3928b9a6
SM
71 :group 'vc)
72
73(defcustom vc-mcvs-register-switches nil
74 "*Extra switches for registering a file into Meta-CVS.
75A string or list of strings passed to the checkin program by
76\\[vc-register]."
77 :type '(choice (const :tag "None" nil)
78 (string :tag "Argument String")
79 (repeat :tag "Argument List"
80 :value ("")
81 string))
bf247b6e 82 :version "22.1"
3928b9a6
SM
83 :group 'vc)
84
85(defcustom vc-mcvs-diff-switches nil
86 "*A string or list of strings specifying extra switches for cvs diff under VC."
87 :type '(choice (const :tag "None" nil)
88 (string :tag "Argument String")
89 (repeat :tag "Argument List"
90 :value ("")
91 string))
bf247b6e 92 :version "22.1"
3928b9a6
SM
93 :group 'vc)
94
95(defcustom vc-mcvs-header (or (cdr (assoc 'MCVS vc-header-alist))
96 vc-cvs-header)
97 "*Header keywords to be inserted by `vc-insert-headers'."
bf247b6e 98 :version "22.1"
3928b9a6
SM
99 :type '(repeat string)
100 :group 'vc)
101
102(defcustom vc-mcvs-use-edit vc-cvs-use-edit
103 "*Non-nil means to use `cvs edit' to \"check out\" a file.
104This is only meaningful if you don't use the implicit checkout model
105\(i.e. if you have $CVSREAD set)."
106 :type 'boolean
bf247b6e 107 :version "22.1"
3928b9a6
SM
108 :group 'vc)
109
8cdd17b4
ER
110;;; Properties of the backend
111
70e2f6c7
ER
112(defalias 'vc-mcvs-revision-granularity 'vc-cvs-revision-granularity)
113(defalias 'vc-mcvs-checkout-model 'vc-cvs-checkout-model)
8cdd17b4 114
3928b9a6
SM
115;;;
116;;; State-querying functions
117;;;
118
119;;;###autoload (defun vc-mcvs-registered (file)
58913dd3
SM
120;;;###autoload (if (vc-find-root file "MCVS/CVS")
121;;;###autoload (progn
122;;;###autoload (load "vc-mcvs")
123;;;###autoload (vc-mcvs-registered file))))
3928b9a6
SM
124
125(defun vc-mcvs-root (file)
126 "Return the root directory of a Meta-CVS project, if any."
15a45706 127 (or (vc-file-getprop file 'mcvs-root)
58913dd3 128 (vc-file-setprop file 'mcvs-root (vc-find-root file "MCVS/CVS"))))
3928b9a6
SM
129
130(defun vc-mcvs-read (file)
1207c9d2
SM
131 (if (file-readable-p file)
132 (with-temp-buffer
133 (insert-file-contents file)
134 (goto-char (point-min))
135 (read (current-buffer)))))
3928b9a6
SM
136
137(defun vc-mcvs-map-file (dir file)
138 (let ((map (vc-mcvs-read (expand-file-name "MCVS/MAP" dir)))
139 inode)
140 (dolist (x map inode)
141 (if (equal (nth 2 x) file) (setq inode (nth 1 x))))))
142
143(defun vc-mcvs-registered (file)
144 (let (root inode cvsfile)
145 (when (and (setq root (vc-mcvs-root file))
146 (setq inode (vc-mcvs-map-file
15a45706 147 root (file-relative-name file root))))
3928b9a6 148 (vc-file-setprop file 'mcvs-inode inode)
3928b9a6
SM
149 ;; Avoid calling `mcvs diff' in vc-workfile-unchanged-p.
150 (vc-file-setprop file 'vc-checkout-time
151 (if (vc-cvs-registered
152 (setq cvsfile (expand-file-name inode root)))
153 (vc-file-getprop cvsfile 'vc-checkout-time)
154 ;; The file might not be registered yet because
155 ;; of lazy-adding.
156 0))
157 t)))
158
3928b9a6
SM
159(defun vc-mcvs-state (file)
160 ;; This would assume the Meta-CVS sandbox is synchronized.
161 ;; (vc-mcvs-cvs state file))
162 "Meta-CVS-specific version of `vc-state'."
d699c8e2 163 (if (vc-stay-local-p file)
3928b9a6
SM
164 (let ((state (vc-file-getprop file 'vc-state)))
165 ;; If we should stay local, use the heuristic but only if
166 ;; we don't have a more precise state already available.
167 (if (memq state '(up-to-date edited))
168 (vc-mcvs-state-heuristic file)
169 state))
170 (with-temp-buffer
6dbeb3d8 171 (setq default-directory (vc-mcvs-root file))
3928b9a6
SM
172 (vc-mcvs-command t 0 file "status")
173 (vc-cvs-parse-status t))))
174
175
176(defalias 'vc-mcvs-state-heuristic 'vc-cvs-state-heuristic)
177
ac3f4c6f
ER
178(defun vc-mcvs-working-revision (file)
179 (vc-cvs-working-revision
b6c4e4e0
SM
180 (expand-file-name (vc-file-getprop file 'mcvs-inode)
181 (vc-file-getprop file 'mcvs-root))))
3928b9a6 182
3928b9a6
SM
183;;;
184;;; State-changing functions
185;;;
186
8cdd17b4
ER
187(defun vc-mcvs-register (files &optional rev comment)
188 "Register FILES into the Meta-CVS version-control system.
3928b9a6
SM
189COMMENT can be used to provide an initial description of FILE.
190
191`vc-register-switches' and `vc-mcvs-register-switches' are passed to
192the Meta-CVS command (in that order)."
8cdd17b4
ER
193 ;; FIXME: multiple-file case should be made to work
194 (if (> (length files) 1) (error "Registering filesets is not yet supported."))
59e9dbbc 195 (let* ((file (car files))
8cdd17b4 196 (filename (file-name-nondirectory file))
3928b9a6
SM
197 (extpos (string-match "\\." filename))
198 (ext (if extpos (substring filename (1+ extpos))))
199 (root (vc-mcvs-root file))
200 (types-file (expand-file-name "MCVS/TYPES" root))
201 (map-file (expand-file-name "MCVS/MAP" root))
202 (types (vc-mcvs-read types-file)))
203 ;; Make sure meta files like MCVS/MAP are not read-only (happens with
204 ;; CVSREAD) since Meta-CVS doesn't pay attention to it at all and goes
205 ;; belly-up.
206 (unless (file-writable-p map-file)
207 (vc-checkout map-file t))
15a45706 208 (unless (or (file-writable-p types-file) (not (file-exists-p types-file)))
3928b9a6
SM
209 (vc-checkout types-file t))
210 ;; Make sure the `mcvs add' will not fire up the CVSEDITOR
211 ;; to add a rule for the given file's extension.
212 (when (and ext (not (assoc ext types)))
5b76833f 213 (let ((type (completing-read "Type to use (default): "
3928b9a6
SM
214 '("default" "name-only" "keep-old"
215 "binary" "value-only")
216 nil t nil nil "default")))
217 (push (list ext (make-symbol (upcase (concat ":" type)))) types)
218 (setq types (sort types (lambda (x y) (string< (car x) (car y)))))
219 (with-current-buffer (find-file-noselect types-file)
3928b9a6
SM
220 (erase-buffer)
221 (pp types (current-buffer))
222 (save-buffer)
223 (unless (get-buffer-window (current-buffer) t)
59e9dbbc
GM
224 (kill-buffer (current-buffer))))))
225 ;; Now do the ADD.
226 (prog1 (apply 'vc-mcvs-command nil 0 file
227 "add"
228 (and comment (string-match "[^\t\n ]" comment)
229 (concat "-m" comment))
230 (vc-switches 'MCVS 'register))
231 ;; I'm not sure exactly why, but if we don't setup the inode and root
232 ;; prop of the file, things break later on in vc-mode-line that
233 ;; ends up calling vc-mcvs-working-revision.
234 ;; We also need to set vc-checkout-time so that vc-workfile-unchanged-p
235 ;; doesn't try to call `mcvs diff' on the file.
236 (vc-mcvs-registered file))))
3928b9a6
SM
237
238(defalias 'vc-mcvs-responsible-p 'vc-mcvs-root
239 "Return non-nil if CVS thinks it is responsible for FILE.")
240
241(defalias 'vc-cvs-could-register 'vc-cvs-responsible-p
242 "Return non-nil if FILE could be registered in Meta-CVS.
243This is only possible if Meta-CVS is responsible for FILE's directory.")
244
8cdd17b4 245(defun vc-mcvs-checkin (files rev comment)
3928b9a6 246 "Meta-CVS-specific version of `vc-backend-checkin'."
5b5afd50 247 (unless (or (not rev) (vc-mcvs-valid-revision-number-p rev))
d011ca0f
SM
248 (if (not (vc-mcvs-valid-symbolic-tag-name-p rev))
249 (error "%s is not a valid symbolic tag name" rev)
d699c8e2 250 ;; If the input revision is a valid symbolic tag name, we create it
d011ca0f 251 ;; as a branch, commit and switch to it.
6dbeb3d8
SM
252 ;; This file-specific form of branching is deprecated.
253 ;; We can't use `mcvs branch' and `mcvs switch' because they cannot
254 ;; be applied just to this one file.
8cdd17b4
ER
255 (apply 'vc-mcvs-command nil 0 files "tag" "-b" (list rev))
256 (apply 'vc-mcvs-command nil 0 files "update" "-r" (list rev))
3d1726ad
GM
257 (mapc (lambda (file) (vc-file-setprop file 'vc-mcvs-sticky-tag rev))
258 files)
d011ca0f 259 (setq rev nil)))
d699c8e2
SM
260 ;; This commit might cvs-commit several files (e.g. MAP and TYPES)
261 ;; so using numbered revs here is dangerous and somewhat meaningless.
262 (when rev (error "Cannot commit to a specific revision number"))
8cdd17b4 263 (let ((status (apply 'vc-mcvs-command nil 1 files
d699c8e2 264 "ci" "-m" comment
d011ca0f 265 (vc-switches 'MCVS 'checkin))))
3928b9a6
SM
266 (set-buffer "*vc*")
267 (goto-char (point-min))
268 (when (not (zerop status))
269 ;; Check checkin problem.
270 (cond
271 ((re-search-forward "Up-to-date check failed" nil t)
3d1726ad 272 (mapc (lambda (file) (vc-file-setprop file 'vc-state 'needs-merge))
8cdd17b4 273 files)
8c16bd8c 274 (error "%s" (substitute-command-keys
3928b9a6
SM
275 (concat "Up-to-date check failed: "
276 "type \\[vc-next-action] to merge in changes"))))
277 (t
278 (pop-to-buffer (current-buffer))
279 (goto-char (point-min))
280 (shrink-window-if-larger-than-buffer)
281 (error "Check-in failed"))))
5b5afd50 282 ;; Single-file commit? Then update the revision by parsing the buffer.
8cdd17b4
ER
283 ;; Otherwise we can't necessarily tell what goes with what; clear
284 ;; its properties so they have to be refetched.
285 (if (= (length files) 1)
286 (vc-file-setprop
ac3f4c6f 287 (car files) 'vc-working-revision
8cdd17b4
ER
288 (vc-parse-buffer "^\\(new\\|initial\\) revision: \\([0-9.]+\\)" 2))
289 (mapc (lambda (file) (vc-file-clearprops file)) files))
290 ;; Anyway, forget the checkout model of the file, because we might have
3928b9a6
SM
291 ;; guessed wrong when we found the file. After commit, we can
292 ;; tell it from the permissions of the file (see
293 ;; vc-mcvs-checkout-model).
8cdd17b4
ER
294 (mapc (lambda (file) (vc-file-setprop file 'vc-checkout-model nil))
295 files)
3928b9a6
SM
296
297 ;; if this was an explicit check-in (does not include creation of
298 ;; a branch), remove the sticky tag.
299 (if (and rev (not (vc-mcvs-valid-symbolic-tag-name-p rev)))
8cdd17b4 300 (vc-mcvs-command nil 0 files "update" "-A"))))
3928b9a6 301
ac3f4c6f 302(defun vc-mcvs-find-revision (file rev buffer)
3928b9a6
SM
303 (apply 'vc-mcvs-command
304 buffer 0 file
305 "-Q" ; suppress diagnostic output
306 "update"
307 (and rev (not (string= rev ""))
308 (concat "-r" rev))
309 "-p"
d011ca0f 310 (vc-switches 'MCVS 'checkout)))
3928b9a6
SM
311
312(defun vc-mcvs-checkout (file &optional editable rev)
313 (message "Checking out %s..." file)
314 (with-current-buffer (or (get-file-buffer file) (current-buffer))
a749e19d 315 (vc-mcvs-update file editable rev (vc-switches 'MCVS 'checkout)))
3928b9a6
SM
316 (vc-mode-line file)
317 (message "Checking out %s...done" file))
318
319(defun vc-mcvs-update (file editable rev switches)
320 (if (and (file-exists-p file) (not rev))
321 ;; If no revision was specified, just make the file writable
322 ;; if necessary (using `cvs-edit' if requested).
70e2f6c7 323 (and editable (not (eq (vc-mcvs-checkout-model (list file)) 'implicit))
3928b9a6
SM
324 (if vc-mcvs-use-edit
325 (vc-mcvs-command nil 0 file "edit")
326 (set-file-modes file (logior (file-modes file) 128))
327 (if (equal file buffer-file-name) (toggle-read-only -1))))
5b5afd50 328 ;; Check out a particular revision (or recreate the file).
ac3f4c6f 329 (vc-file-setprop file 'vc-working-revision nil)
3928b9a6
SM
330 (apply 'vc-mcvs-command nil 0 file
331 (if editable "-w")
332 "update"
333 ;; default for verbose checkout: clear the sticky tag so
334 ;; that the actual update will get the head of the trunk
335 (if (or (not rev) (string= rev ""))
336 "-A"
337 (concat "-r" rev))
338 switches)))
339
4a97caca
SM
340(defun vc-mcvs-rename-file (old new)
341 (vc-mcvs-command nil 0 new "move" (file-relative-name old)))
342
3928b9a6 343(defun vc-mcvs-revert (file &optional contents-done)
5b5afd50 344 "Revert FILE to the working revision it was based on."
de387896 345 (vc-default-revert 'MCVS file contents-done)
70e2f6c7 346 (unless (eq (vc-mcvs-checkout-model (list file)) 'implicit)
3928b9a6
SM
347 (if vc-mcvs-use-edit
348 (vc-mcvs-command nil 0 file "unedit")
349 ;; Make the file read-only by switching off all w-bits
350 (set-file-modes file (logand (file-modes file) 3950)))))
351
5b5afd50 352(defun vc-mcvs-merge (file first-revision &optional second-revision)
3928b9a6 353 "Merge changes into current working copy of FILE.
5b5afd50 354The changes are between FIRST-REVISION and SECOND-REVISION."
3928b9a6
SM
355 (vc-mcvs-command nil 0 file
356 "update" "-kk"
5b5afd50
ER
357 (concat "-j" first-revision)
358 (concat "-j" second-revision))
3928b9a6
SM
359 (vc-file-setprop file 'vc-state 'edited)
360 (with-current-buffer (get-buffer "*vc*")
361 (goto-char (point-min))
362 (if (re-search-forward "conflicts during merge" nil t)
363 1 ; signal error
364 0))) ; signal success
365
366(defun vc-mcvs-merge-news (file)
367 "Merge in any new changes made to FILE."
368 (message "Merging changes into %s..." file)
ac3f4c6f 369 ;; (vc-file-setprop file 'vc-working-revision nil)
3928b9a6
SM
370 (vc-file-setprop file 'vc-checkout-time 0)
371 (vc-mcvs-command nil 0 file "update")
372 ;; Analyze the merge result reported by Meta-CVS, and set
373 ;; file properties accordingly.
374 (with-current-buffer (get-buffer "*vc*")
375 (goto-char (point-min))
5b5afd50 376 ;; get new working revision
3928b9a6
SM
377 (if (re-search-forward
378 "^Merging differences between [0-9.]* and \\([0-9.]*\\) into" nil t)
ac3f4c6f
ER
379 (vc-file-setprop file 'vc-working-revision (match-string 1))
380 (vc-file-setprop file 'vc-working-revision nil))
3928b9a6
SM
381 ;; get file status
382 (prog1
383 (if (eq (buffer-size) 0)
384 0 ;; there were no news; indicate success
385 (if (re-search-forward
386 (concat "^\\([CMUP] \\)?"
387 ".*"
388 "\\( already contains the differences between \\)?")
389 nil t)
390 (cond
391 ;; Merge successful, we are in sync with repository now
392 ((or (match-string 2)
393 (string= (match-string 1) "U ")
394 (string= (match-string 1) "P "))
395 (vc-file-setprop file 'vc-state 'up-to-date)
396 (vc-file-setprop file 'vc-checkout-time
397 (nth 5 (file-attributes file)))
398 0);; indicate success to the caller
399 ;; Merge successful, but our own changes are still in the file
400 ((string= (match-string 1) "M ")
401 (vc-file-setprop file 'vc-state 'edited)
402 0);; indicate success to the caller
403 ;; Conflicts detected!
404 (t
405 (vc-file-setprop file 'vc-state 'edited)
406 1);; signal the error to the caller
407 )
408 (pop-to-buffer "*vc*")
409 (error "Couldn't analyze mcvs update result")))
410 (message "Merging changes into %s...done" file))))
411
9b64a7f0
ER
412(defun vc-mcvs-modify-change-comment (files rev comment)
413 "Modify the change comments for FILES on a specified REV.
414Will fail unless you have administrative privileges on the repo."
415 (vc-mcvs-command nil 0 files "rcs" (concat "-m" comment ":" rev)))
416
417
3928b9a6
SM
418;;;
419;;; History functions
420;;;
421
8cdd17b4
ER
422(defun vc-mcvs-print-log (files &optional buffer)
423 "Get change log associated with FILES."
424 (let ((default-directory (vc-mcvs-root (car files))))
6dbeb3d8
SM
425 ;; Run the command from the root dir so that `mcvs filt' returns
426 ;; valid relative names.
427 (vc-mcvs-command
138c4b3d 428 buffer
fe1919ab 429 (if (vc-stay-local-p files) 'async 0)
8cdd17b4
ER
430 files "log")))
431
432(defun vc-mcvs-diff (files &optional oldvers newvers buffer)
5b5afd50 433 "Get a difference report using Meta-CVS between two revisions of FILES."
fb7454e8 434 (let* ((async (and (not vc-disable-async-diff)
fe1919ab 435 (vc-stay-local-p files)))
6dbeb3d8
SM
436 ;; Run the command from the root dir so that `mcvs filt' returns
437 ;; valid relative names.
8cdd17b4 438 (default-directory (vc-mcvs-root (car files)))
d011ca0f 439 (status
138c4b3d 440 (apply 'vc-mcvs-command (or buffer "*vc-diff*")
d011ca0f 441 (if async 'async 1)
8cdd17b4 442 files "diff"
d011ca0f
SM
443 (and oldvers (concat "-r" oldvers))
444 (and newvers (concat "-r" newvers))
445 (vc-switches 'MCVS 'diff))))
8cdd17b4 446 (if async 1 status))) ; async diff, pessimistic assumption.
3928b9a6 447
5b5afd50 448(defun vc-mcvs-annotate-command (file buffer &optional revision)
3928b9a6 449 "Execute \"mcvs annotate\" on FILE, inserting the contents in BUFFER.
5b5afd50 450Optional arg REVISION is a revision to annotate from."
3928b9a6
SM
451 (vc-mcvs-command
452 buffer
fe1919ab 453 (if (vc-stay-local-p file) 'async 0)
5b5afd50 454 file "annotate" (if revision (concat "-r" revision)))
cd227df3
TTN
455 (with-current-buffer buffer
456 (goto-char (point-min))
457 (re-search-forward "^[0-9]")
458 (delete-region (point-min) (1- (point)))))
3928b9a6
SM
459
460(defalias 'vc-mcvs-annotate-current-time 'vc-cvs-annotate-current-time)
461(defalias 'vc-mcvs-annotate-time 'vc-cvs-annotate-time)
462
463;;;
370fded4 464;;; Tag system
3928b9a6
SM
465;;;
466
370fded4 467(defun vc-mcvs-create-tag (dir name branchp)
5b5afd50 468 "Assign to DIR's current revision a given NAME.
3928b9a6
SM
469If BRANCHP is non-nil, the name is created as a branch (and the current
470workspace is immediately moved to that new branch)."
6dbeb3d8
SM
471 (if (not branchp)
472 (vc-mcvs-command nil 0 dir "tag" "-c" name)
473 (vc-mcvs-command nil 0 dir "branch" name)
474 (vc-mcvs-command nil 0 dir "switch" name)))
3928b9a6 475
370fded4
ER
476(defun vc-mcvs-retrieve-tag (dir name update)
477 "Retrieve a tag at and below DIR.
478NAME is the name of the tag; if it is empty, do a `cvs update'.
3928b9a6
SM
479If UPDATE is non-nil, then update (resynch) any affected buffers."
480 (with-current-buffer (get-buffer-create "*vc*")
481 (let ((default-directory dir)
482 (sticky-tag))
483 (erase-buffer)
484 (if (or (not name) (string= name ""))
485 (vc-mcvs-command t 0 nil "update")
486 (vc-mcvs-command t 0 nil "update" "-r" name)
487 (setq sticky-tag name))
488 (when update
489 (goto-char (point-min))
490 (while (not (eobp))
491 (if (looking-at "\\([CMUP]\\) \\(.*\\)")
492 (let* ((file (expand-file-name (match-string 2) dir))
493 (state (match-string 1))
494 (buffer (find-buffer-visiting file)))
495 (when buffer
496 (cond
497 ((or (string= state "U")
498 (string= state "P"))
499 (vc-file-setprop file 'vc-state 'up-to-date)
ac3f4c6f 500 (vc-file-setprop file 'vc-working-revision nil)
3928b9a6
SM
501 (vc-file-setprop file 'vc-checkout-time
502 (nth 5 (file-attributes file))))
503 ((or (string= state "M")
504 (string= state "C"))
505 (vc-file-setprop file 'vc-state 'edited)
ac3f4c6f 506 (vc-file-setprop file 'vc-working-revision nil)
3928b9a6
SM
507 (vc-file-setprop file 'vc-checkout-time 0)))
508 (vc-file-setprop file 'vc-mcvs-sticky-tag sticky-tag)
509 (vc-resynch-buffer file t t))))
510 (forward-line 1))))))
511
512
513;;;
514;;; Miscellaneous
515;;;
516
d699c8e2 517(defalias 'vc-mcvs-make-version-backups-p 'vc-stay-local-p
3928b9a6
SM
518 "Return non-nil if version backups should be made for FILE.")
519(defalias 'vc-mcvs-check-headers 'vc-cvs-check-headers)
520
521
522;;;
523;;; Internal functions
524;;;
525
526(defun vc-mcvs-command (buffer okstatus file &rest flags)
527 "A wrapper around `vc-do-command' for use in vc-mcvs.el.
528The difference to vc-do-command is that this function always invokes `mcvs',
529and that it passes `vc-mcvs-global-switches' to it before FLAGS."
6dbeb3d8 530 (let ((args (append '("--error-terminate")
15a45706
SM
531 (if (stringp vc-mcvs-global-switches)
532 (cons vc-mcvs-global-switches flags)
6dbeb3d8
SM
533 (append vc-mcvs-global-switches flags)))))
534 (if (not (member (car flags) '("diff" "log" "status")))
535 ;; No need to filter: do it the easy way.
2888a97e 536 (apply 'vc-do-command (or buffer "*vc*") okstatus "mcvs" file args)
6dbeb3d8
SM
537 ;; We need to filter the output.
538 ;; The output of the filter uses filenames relative to the root,
539 ;; so we need to change the default-directory.
b6c4e4e0 540 ;; (assert (equal default-directory (vc-mcvs-root file)))
6dbeb3d8 541 (vc-do-command
2888a97e 542 (or buffer "*vc*") okstatus "sh" nil "-c"
6dbeb3d8
SM
543 (concat "mcvs "
544 (mapconcat
545 'shell-quote-argument
546 (append (remq nil args)
547 (if file (list (file-relative-name file))))
548 " ")
549 " | mcvs filt")))))
3928b9a6 550
d699c8e2
SM
551(defun vc-mcvs-repository-hostname (dirname)
552 (vc-cvs-repository-hostname (vc-mcvs-root dirname)))
3928b9a6
SM
553
554(defun vc-mcvs-dir-state-heuristic (dir)
555 "Find the Meta-CVS state of all files in DIR, using only local information."
556 (with-temp-buffer
557 (vc-cvs-get-entries dir)
558 (goto-char (point-min))
559 (while (not (eobp))
560 ;; Meta-MCVS-removed files are not taken under VC control.
561 (when (looking-at "/\\([^/]*\\)/[^/-]")
562 (let ((file (expand-file-name (match-string 1) dir)))
563 (unless (vc-file-getprop file 'vc-state)
564 (vc-cvs-parse-entry file t))))
565 (forward-line 1))))
566
567(defalias 'vc-mcvs-valid-symbolic-tag-name-p 'vc-cvs-valid-symbolic-tag-name-p)
5b5afd50 568(defalias 'vc-mcvs-valid-revision-number-p 'vc-cvs-valid-revision-number-p)
3928b9a6
SM
569
570(provide 'vc-mcvs)
ab5796a9 571
58913dd3 572;; arch-tag: a39c7c1c-5247-429d-88df-dd7187d2e704
3928b9a6 573;;; vc-mcvs.el ends here