Update for cal-persia name changes.
[bpt/emacs.git] / lisp / ediff-ptch.el
CommitLineData
fce30d79
MK
1;;; ediff-ptch.el --- Ediff's patch support
2
0d30b337 3;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002,
409cc4a3 4;; 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
fce30d79 5
50a07e18 6;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
fce30d79
MK
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)
fce30d79
MK
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.
fce30d79 24
3afbc435 25;;; Commentary:
fce30d79
MK
26
27;;; Code:
71296446 28
ddc90f39
MK
29
30(defgroup ediff-ptch nil
143b42a6 31 "Ediff patch support."
ddc90f39
MK
32 :tag "Patch"
33 :prefix "ediff-"
34 :group 'ediff)
35
36;; compiler pacifier
37(defvar ediff-window-A)
38(defvar ediff-window-B)
39(defvar ediff-window-C)
40(defvar ediff-use-last-dir)
41(defvar ediff-shell)
42
43(eval-when-compile
44 (let ((load-path (cons (expand-file-name ".") load-path)))
45 (or (featurep 'ediff-init)
7b193954 46 (load "ediff-init.el" nil t 'nosuffix))
743a79af 47 (or (featurep 'ediff-mult)
7b193954 48 (load "ediff-mult.el" nil t 'nosuffix))
ddc90f39 49 (or (featurep 'ediff)
7b193954 50 (load "ediff.el" nil t 'nosuffix))
ddc90f39
MK
51 ))
52;; end pacifier
fce30d79 53
4b45b44f
RS
54(require 'ediff-init)
55
1e70790f
MK
56(defcustom ediff-patch-program "patch"
57 "*Name of the program that applies patches.
58It is recommended to use GNU-compatible versions."
59 :type 'string
60 :group 'ediff-ptch)
61(defcustom ediff-patch-options "-f"
62 "*Options to pass to ediff-patch-program.
63
64Note: the `-b' option should be specified in `ediff-backup-specs'.
65
66It is recommended to pass the `-f' option to the patch program, so it won't ask
3af0304a 67questions. However, some implementations don't accept this option, in which
1e70790f
MK
68case the default value for this variable should be changed."
69 :type 'string
70 :group 'ediff-ptch)
71
fce30d79
MK
72(defvar ediff-last-dir-patch nil
73 "Last directory used by an Ediff command for file to patch.")
74
1e70790f
MK
75;; the default backup extension
76(defconst ediff-default-backup-extension
77 (if (memq system-type '(vax-vms axp-vms emx ms-dos))
78 "_orig" ".orig"))
71296446 79
1e70790f
MK
80
81(defcustom ediff-backup-extension ediff-default-backup-extension
92c51e07 82 "Backup extension used by the patch program.
1e70790f
MK
83See also `ediff-backup-specs'."
84 :type 'string
85 :group 'ediff-ptch)
92c51e07 86
bd698e98 87(defun ediff-test-patch-utility ()
d29a70fe 88 (condition-case nil
15502042 89 (cond ((eq 0 (call-process ediff-patch-program nil nil nil "-z." "-b"))
d29a70fe
RS
90 ;; GNU `patch' v. >= 2.2
91 'gnu)
15502042 92 ((eq 0 (call-process ediff-patch-program nil nil nil "-b"))
d29a70fe
RS
93 'posix)
94 (t 'traditional))
95 (file-error nil)))
bd698e98 96
71296446 97(defcustom ediff-backup-specs
bd698e98
MK
98 (let ((type (ediff-test-patch-utility)))
99 (cond ((eq type 'gnu)
100 ;; GNU `patch' v. >= 2.2
101 (format "-z%s -b" ediff-backup-extension))
102 ((eq type 'posix)
103 ;; POSIX `patch' -- ediff-backup-extension must be ".orig"
104 (setq ediff-backup-extension ediff-default-backup-extension)
105 "-b")
106 (t
107 ;; traditional `patch'
108 (format "-b %s" ediff-backup-extension))))
92c51e07
MK
109 "*Backup directives to pass to the patch program.
110Ediff requires that the old version of the file \(before applying the patch\)
3af0304a 111be saved in a file named `the-patch-file.extension'. Usually `extension' is
92c51e07
MK
112`.orig', but this can be changed by the user and may depend on the system.
113Therefore, Ediff needs to know the backup extension used by the patch program.
114
115Some versions of the patch program let you specify `-b backup-extension'.
1e70790f 116Other versions only permit `-b', which assumes the extension `.orig'
3af0304a 117\(in which case ediff-backup-extension MUST be also `.orig'\). The latest
1e70790f 118versions of GNU patch require `-b -z backup-extension'.
92c51e07
MK
119
120Note that both `ediff-backup-extension' and `ediff-backup-specs'
3af0304a 121must be set properly. If your patch program takes the option `-b',
92c51e07 122but not `-b extension', the variable `ediff-backup-extension' must
bd698e98
MK
123still be set so Ediff will know which extension to use.
124
3af0304a 125Ediff tries to guess the appropriate value for this variables. It is believed
bd698e98 126to be working for `traditional' patch, all versions of GNU patch, and for POSIX
3af0304a 127patch. So, don't change these variables, unless the default doesn't work."
ddc90f39
MK
128 :type 'string
129 :group 'ediff-ptch)
92c51e07 130
fce30d79 131
ddc90f39
MK
132(defcustom ediff-patch-default-directory nil
133 "*Default directory to look for patches."
134 :type '(choice (const nil) string)
135 :group 'ediff-ptch)
fce30d79 136
141f0c03
MK
137;; This context diff does not recognize spaces inside files, but removing ' '
138;; from [^ \t] breaks normal patches for some reason
ddc90f39 139(defcustom ediff-context-diff-label-regexp
fce30d79 140 (concat "\\(" ; context diff 2-liner
141f0c03 141 "^\\*\\*\\* +\\([^ \t]+\\)[^*]+[\t ]*\n--- +\\([^ \t]+\\)"
fce30d79 142 "\\|" ; GNU unified format diff 2-liner
141f0c03 143 "^--- +\\([^ \t]+\\)[\t ]+.*\n\\+\\+\\+ +\\([^ \t]+\\)"
77c57270 144 "\\)")
1e70790f
MK
145 "*Regexp matching filename 2-liners at the start of each context diff.
146You probably don't want to change that, unless you are using an obscure patch
147program."
ddc90f39
MK
148 :type 'regexp
149 :group 'ediff-ptch)
fce30d79 150
3af0304a 151;; The buffer of the patch file. Local to control buffer.
fce30d79
MK
152(ediff-defvar-local ediff-patchbufer nil "")
153
154;; The buffer where patch displays its diagnostics.
155(ediff-defvar-local ediff-patch-diagnostics nil "")
156
3af0304a 157;; Map of patch buffer. Has the form:
fce30d79
MK
158;; ((filename1 marker1 marker2) (filename2 marker1 marker2) ...)
159;; where filenames are files to which patch would have applied the patch;
160;; marker1 delimits the beginning of the corresponding patch and marker2 does
161;; it for the end.
162(ediff-defvar-local ediff-patch-map nil "")
163
164;; strip prefix from filename
165;; returns /dev/null, if can't strip prefix
166(defsubst ediff-file-name-sans-prefix (filename prefix)
15c77b9e
MK
167 (if prefix
168 (save-match-data
169 (if (string-match (concat "^" (if (stringp prefix)
170 (regexp-quote prefix)
171 ""))
172 filename)
173 (substring filename (match-end 0))
174 (concat "/null/" filename)))
175 filename)
176 )
fce30d79
MK
177
178
179
180;; no longer used
181;; return the number of matches of regexp in buf starting from the beginning
182(defun ediff-count-matches (regexp buf)
e756eb9f 183 (ediff-with-current-buffer buf
fce30d79
MK
184 (let ((count 0) opoint)
185 (save-excursion
186 (goto-char (point-min))
187 (while (and (not (eobp))
188 (progn (setq opoint (point))
189 (re-search-forward regexp nil t)))
190 (if (= opoint (point))
191 (forward-char 1)
192 (setq count (1+ count)))))
193 count)))
194
71296446 195;; Scan BUF (which is supposed to contain a patch) and make a list of the form
743a79af
MK
196;; ((nil nil filename-spec1 marker1 marker2)
197;; (nil nil filename-spec2 marker1 marker2) ...)
71296446 198;; where filename-spec[12] are files to which the `patch' program would
743a79af
MK
199;; have applied the patch.
200;; nin, nil are placeholders. See ediff-make-new-meta-list-element in
201;; ediff-meta.el for the explanations.
202;; In the beginning we don't know exactly which files need to be patched.
203;; We usually come up with two candidates and ediff-file-name-sans-prefix
204;; resolves this later.
205;;
206;; The marker `marker1' delimits the beginning of the corresponding patch and
207;; `marker2' does it for the end.
208;; The result of ediff-map-patch-buffer is a list, which is then assigned
209;; to ediff-patch-map.
210;; The function returns the number of elements in the list ediff-patch-map
fce30d79 211(defun ediff-map-patch-buffer (buf)
e756eb9f 212 (ediff-with-current-buffer buf
fce30d79
MK
213 (let ((count 0)
214 (mark1 (move-marker (make-marker) (point-min)))
215 (mark1-end (point-min))
216 (possible-file-names '("/dev/null" . "/dev/null"))
217 mark2-end mark2 filenames
218 beg1 beg2 end1 end2
219 patch-map opoint)
220 (save-excursion
221 (goto-char (point-min))
222 (setq opoint (point))
223 (while (and (not (eobp))
224 (re-search-forward ediff-context-diff-label-regexp nil t))
225 (if (= opoint (point))
226 (forward-char 1) ; ensure progress towards the end
227 (setq mark2 (move-marker (make-marker) (match-beginning 0))
228 mark2-end (match-end 0)
a8b7f4b9 229 beg1 (or (match-beginning 2) (match-beginning 4))
92c51e07
MK
230 end1 (or (match-end 2) (match-end 4))
231 beg2 (or (match-beginning 3) (match-beginning 5))
232 end2 (or (match-end 3) (match-end 5)))
fce30d79
MK
233 ;; possible-file-names is holding the new file names until we
234 ;; insert the old file name in the patch map
743a79af 235 ;; It is a pair
ac64a728 236 ;; (filename-from-1st-header-line . filename-from-2nd-line)
fce30d79
MK
237 (setq possible-file-names
238 (cons (if (and beg1 end1)
239 (buffer-substring beg1 end1)
240 "/dev/null")
241 (if (and beg2 end2)
242 (buffer-substring beg2 end2)
243 "/dev/null")))
244 ;; check for any `Index:' or `Prereq:' lines, but don't use them
245 (if (re-search-backward "^Index:" mark1-end 'noerror)
246 (move-marker mark2 (match-beginning 0)))
247 (if (re-search-backward "^Prereq:" mark1-end 'noerror)
248 (move-marker mark2 (match-beginning 0)))
249
250 (goto-char mark2-end)
71296446 251
fce30d79 252 (if filenames
743a79af
MK
253 (setq patch-map
254 (cons (ediff-make-new-meta-list-element
255 filenames mark1 mark2)
256 patch-map)))
fce30d79
MK
257 (setq mark1 mark2
258 mark1-end mark2-end
259 filenames possible-file-names))
260 (setq opoint (point)
261 count (1+ count))))
262 (setq mark2 (point-max-marker)
743a79af
MK
263 patch-map (cons (ediff-make-new-meta-list-element
264 possible-file-names mark1 mark2)
265 patch-map))
fce30d79
MK
266 (setq ediff-patch-map (nreverse patch-map))
267 count)))
268
269;; Fix up the file names in the list using the argument FILENAME
15c77b9e
MK
270;; Algorithm: find the files' directories in the patch and, if a directory is
271;; absolute, cut it out from the corresponding file name in the patch.
272;; Relative directories are not cut out.
273;; Prepend the directory of FILENAME to each resulting file (which came
274;; originally from the patch).
275;; In addition, the first file in the patch document is replaced by FILENAME.
276;; Each file is actually a pair of files found in the context diff header
277;; In the end, for each pair, we ask the user which file to patch.
fce30d79 278;; Note: Ediff doesn't recognize multi-file patches that are separated
3af0304a 279;; with the `Index:' line. It treats them as a single-file patch.
fce30d79
MK
280;;
281;; Executes inside the patch buffer
282(defun ediff-fixup-patch-map (filename)
283 (setq filename (expand-file-name filename))
284 (let ((actual-dir (if (file-directory-p filename)
285 ;; directory part of filename
286 (file-name-as-directory filename)
287 (file-name-directory filename)))
15c77b9e
MK
288 ;; In case 2 files are possible patch targets, the user will be offered
289 ;; to choose file1 or file2. In a multifile patch, if the user chooses
290 ;; 1 or 2, this choice is preserved to decide future alternatives.
291 chosen-alternative
fce30d79
MK
292 )
293
294 ;; chop off base-dirs
3f0f4f6f
JB
295 (mapc (lambda (session-info)
296 (let* ((proposed-file-names
297 ;; Filename-spec is objA; it is represented as
298 ;; (file1 . file2). Get it using ediff-get-session-objA.
299 (ediff-get-session-objA-name session-info))
300 ;; base-dir1 is the dir part of the 1st file in the patch
301 (base-dir1
302 (or (file-name-directory (car proposed-file-names))
303 ""))
304 ;; directory part of the 2nd file in the patch
305 (base-dir2
306 (or (file-name-directory (cdr proposed-file-names))
307 ""))
308 )
309 ;; If both base-dir1 and base-dir2 are relative and exist,
310 ;; assume that
311 ;; these dirs lead to the actual files starting at the present
312 ;; directory. So, we don't strip these relative dirs from the
313 ;; file names. This is a heuristic intended to improve guessing
314 (let ((default-directory (file-name-directory filename)))
315 (unless (or (file-name-absolute-p base-dir1)
316 (file-name-absolute-p base-dir2)
317 (not (file-exists-p base-dir1))
318 (not (file-exists-p base-dir2)))
319 (setq base-dir1 ""
320 base-dir2 "")))
321 (or (string= (car proposed-file-names) "/dev/null")
322 (setcar proposed-file-names
323 (ediff-file-name-sans-prefix
324 (car proposed-file-names) base-dir1)))
325 (or (string=
326 (cdr proposed-file-names) "/dev/null")
327 (setcdr proposed-file-names
328 (ediff-file-name-sans-prefix
329 (cdr proposed-file-names) base-dir2)))
330 ))
331 ediff-patch-map)
fce30d79
MK
332
333 ;; take the given file name into account
334 (or (file-directory-p filename)
335 (string= "/dev/null" filename)
743a79af
MK
336 (setcar (ediff-get-session-objA (car ediff-patch-map))
337 (cons (file-name-nondirectory filename)
338 (file-name-nondirectory filename))))
fce30d79
MK
339
340 ;; prepend actual-dir
3f0f4f6f
JB
341 (mapc (lambda (session-info)
342 (let ((proposed-file-names
343 (ediff-get-session-objA-name session-info)))
344 (if (and (string-match "^/null/" (car proposed-file-names))
345 (string-match "^/null/" (cdr proposed-file-names)))
346 ;; couldn't intuit the file name to patch, so
347 ;; something is amiss
348 (progn
349 (with-output-to-temp-buffer ediff-msg-buffer
350 (ediff-with-current-buffer standard-output
351 (fundamental-mode))
352 (princ
353 (format "
fce30d79
MK
354The patch file contains a context diff for
355 %s
356 %s
fce30d79 357However, Ediff cannot infer the name of the actual file
3af0304a 358to be patched on your system. If you know the correct file name,
fce30d79
MK
359please enter it now.
360
361If you don't know and still would like to apply patches to
362other files, enter /dev/null
363"
3f0f4f6f
JB
364 (substring (car proposed-file-names) 6)
365 (substring (cdr proposed-file-names) 6))))
366 (let ((directory t)
367 user-file)
368 (while directory
369 (setq user-file
370 (read-file-name
371 "Please enter file name: "
372 actual-dir actual-dir t))
373 (if (not (file-directory-p user-file))
374 (setq directory nil)
375 (setq directory t)
376 (beep)
377 (message "%s is a directory" user-file)
378 (sit-for 2)))
379 (setcar (ediff-get-session-objA session-info)
380 (cons user-file user-file))))
381 (setcar proposed-file-names
382 (expand-file-name
383 (concat actual-dir (car proposed-file-names))))
384 (setcdr proposed-file-names
385 (expand-file-name
386 (concat actual-dir (cdr proposed-file-names)))))
387 ))
388 ediff-patch-map)
e2de3a29
MK
389 ;; Check for the existing files in each pair and discard the nonexisting
390 ;; ones. If both exist, ask the user.
743a79af
MK
391 (mapcar (lambda (session-info)
392 (let* ((file1 (car (ediff-get-session-objA-name session-info)))
393 (file2 (cdr (ediff-get-session-objA-name session-info)))
394 (session-file-object
395 (ediff-get-session-objA session-info))
3af0304a
MK
396 (f1-exists (file-exists-p file1))
397 (f2-exists (file-exists-p file2)))
398 (cond
15c77b9e
MK
399 ((and
400 ;; The patch program prefers the shortest file as the patch
401 ;; target. However, this is a questionable heuristic. In an
402 ;; interactive program, like ediff, we can offer the user a
403 ;; choice.
404 ;; (< (length file2) (length file1))
405 (not f1-exists)
406 f2-exists)
743a79af
MK
407 ;; replace file-pair with the winning file2
408 (setcar session-file-object file2))
15c77b9e
MK
409 ((and
410 ;; (< (length file1) (length file2))
411 (not f2-exists)
412 f1-exists)
743a79af
MK
413 ;; replace file-pair with the winning file1
414 (setcar session-file-object file1))
3af0304a
MK
415 ((and f1-exists f2-exists
416 (string= file1 file2))
743a79af 417 (setcar session-file-object file1))
15c77b9e
MK
418 ((and f1-exists f2-exists (eq chosen-alternative 1))
419 (setcar session-file-object file1))
420 ((and f1-exists f2-exists (eq chosen-alternative 2))
421 (setcar session-file-object file2))
3af0304a
MK
422 ((and f1-exists f2-exists)
423 (with-output-to-temp-buffer ediff-msg-buffer
2acc9e43
DL
424 (ediff-with-current-buffer standard-output
425 (fundamental-mode))
3af0304a 426 (princ (format "
fce30d79
MK
427Ediff has inferred that
428 %s
429 %s
bd698e98 430are two possible targets for applying the patch.
fce30d79
MK
431Both files seem to be plausible alternatives.
432
433Please advice:
434 Type `y' to use %s as the target;
435 Type `n' to use %s as the target.
436"
15c77b9e 437 file1 file2 file1 file2)))
743a79af 438 (setcar session-file-object
15c77b9e
MK
439 (if (y-or-n-p (format "Use %s ? " file1))
440 (progn
441 (setq chosen-alternative 1)
442 file1)
443 (setq chosen-alternative 2)
444 file2))
445 )
743a79af
MK
446 (f2-exists (setcar session-file-object file2))
447 (f1-exists (setcar session-file-object file1))
3af0304a
MK
448 (t
449 (with-output-to-temp-buffer ediff-msg-buffer
2acc9e43
DL
450 (ediff-with-current-buffer standard-output
451 (fundamental-mode))
3af0304a
MK
452 (princ "\nEdiff has inferred that")
453 (if (string= file1 file2)
454 (princ (format "
fce30d79 455 %s
15c77b9e 456is assumed to be the target for this patch. However, this file does not exist."
3af0304a
MK
457 file1))
458 (princ (format "
fce30d79 459 %s
bd698e98 460 %s
3af0304a
MK
461are two possible targets for this patch. However, these files do not exist."
462 file1 file2)))
463 (princ "
bd698e98 464\nPlease enter an alternative patch target ...\n"))
3af0304a
MK
465 (let ((directory t)
466 target)
467 (while directory
71296446 468 (setq target (read-file-name
3af0304a
MK
469 "Please enter a patch target: "
470 actual-dir actual-dir t))
471 (if (not (file-directory-p target))
472 (setq directory nil)
473 (beep)
474 (message "%s is a directory" target)
475 (sit-for 2)))
743a79af 476 (setcar session-file-object target))))))
fce30d79
MK
477 ediff-patch-map)
478 ))
479
480(defun ediff-show-patch-diagnostics ()
481 (interactive)
482 (cond ((window-live-p ediff-window-A)
483 (set-window-buffer ediff-window-A ediff-patch-diagnostics))
484 ((window-live-p ediff-window-B)
485 (set-window-buffer ediff-window-B ediff-patch-diagnostics))
486 (t (display-buffer ediff-patch-diagnostics 'not-this-window))))
487
3af0304a
MK
488;; prompt for file, get the buffer
489(defun ediff-prompt-for-patch-file ()
15c77b9e
MK
490 (let ((dir (cond (ediff-use-last-dir ediff-last-dir-patch)
491 (ediff-patch-default-directory) ; try patch default dir
4960e757 492 (t default-directory)))
15c77b9e
MK
493 (coding-system-for-read ediff-coding-system-for-read)
494 patch-file-name)
495 (setq patch-file-name
496 (read-file-name
5b76833f 497 (format "Patch is in file%s: "
15c77b9e
MK
498 (cond ((and buffer-file-name
499 (equal (expand-file-name dir)
500 (file-name-directory buffer-file-name)))
501 (concat
502 " (default "
503 (file-name-nondirectory buffer-file-name)
504 ")"))
505 (t "")))
506 dir buffer-file-name 'must-match))
507 (if (file-directory-p patch-file-name)
508 (error "Patch file cannot be a directory: %s" patch-file-name)
509 (find-file-noselect patch-file-name))
3af0304a
MK
510 ))
511
512
513;; Try current buffer, then the other window's buffer. Else, give up.
514(defun ediff-prompt-for-patch-buffer ()
515 (get-buffer
516 (read-buffer
7261ece3 517 "Buffer that holds the patch: "
3af0304a
MK
518 (cond ((save-excursion
519 (goto-char (point-min))
520 (re-search-forward ediff-context-diff-label-regexp nil t))
521 (current-buffer))
522 ((save-window-excursion
523 (other-window 1)
524 (save-excursion
525 (goto-char (point-min))
526 (and (re-search-forward ediff-context-diff-label-regexp nil t)
527 (current-buffer)))))
528 ((save-window-excursion
529 (other-window -1)
530 (save-excursion
531 (goto-char (point-min))
532 (and (re-search-forward ediff-context-diff-label-regexp nil t)
533 (current-buffer)))))
4960e757 534 (t (ediff-other-buffer (current-buffer))))
3af0304a
MK
535 'must-match)))
536
537
538(defun ediff-get-patch-buffer (&optional arg patch-buf)
539 "Obtain patch buffer. If patch is already in a buffer---use it.
540Else, read patch file into a new buffer. If patch buffer is passed as an
541optional argument, then use it."
542 (let ((last-nonmenu-event t) ; Emacs: don't use dialog box
543 last-command-event) ; XEmacs: don't use dialog box
544
545 (cond ((ediff-buffer-live-p patch-buf))
546 ;; even prefix arg: patch in buffer
547 ((and (integerp arg) (eq 0 (mod arg 2)))
548 (setq patch-buf (ediff-prompt-for-patch-buffer)))
549 ;; odd prefix arg: get patch from a file
550 ((and (integerp arg) (eq 1 (mod arg 2)))
551 (setq patch-buf (ediff-prompt-for-patch-file)))
552 (t (setq patch-buf
553 (if (y-or-n-p "Is the patch already in a buffer? ")
554 (ediff-prompt-for-patch-buffer)
555 (ediff-prompt-for-patch-file)))))
71296446 556
e756eb9f 557 (ediff-with-current-buffer patch-buf
fce30d79
MK
558 (goto-char (point-min))
559 (or (ediff-get-visible-buffer-window patch-buf)
560 (progn
561 (pop-to-buffer patch-buf 'other-window)
562 (select-window (previous-window)))))
563 (ediff-map-patch-buffer patch-buf)
564 patch-buf))
565
566;; Dispatch the right patch file function: regular or meta-level,
567;; depending on how many patches are in the patch file.
568;; At present, there is no support for meta-level patches.
569;; Should return either the ctl buffer or the meta-buffer
570(defun ediff-dispatch-file-patching-job (patch-buf filename
571 &optional startup-hooks)
e756eb9f 572 (ediff-with-current-buffer patch-buf
fce30d79
MK
573 ;; relativize names in the patch with respect to source-file
574 (ediff-fixup-patch-map filename)
575 (if (< (length ediff-patch-map) 2)
576 (ediff-patch-file-internal
577 patch-buf
2acc9e43 578 (if (and ediff-patch-map
743a79af
MK
579 (not (string-match
580 "^/dev/null"
581 ;; this is the file to patch
582 (ediff-get-session-objA-name (car ediff-patch-map))))
71296446 583 (> (length
743a79af
MK
584 (ediff-get-session-objA-name (car ediff-patch-map)))
585 1))
586 (ediff-get-session-objA-name (car ediff-patch-map))
fce30d79
MK
587 filename)
588 startup-hooks)
589 (ediff-multi-patch-internal patch-buf startup-hooks))
590 ))
591
592
3af0304a 593;; When patching a buffer, never change the orig file. Instead, create a new
bd698e98
MK
594;; buffer, ***_patched, even if the buff visits a file.
595;; Users who want to actually patch the buffer should use
596;; ediff-patch-file, not ediff-patch-buffer.
597(defun ediff-patch-buffer-internal (patch-buf
598 buf-to-patch-name
599 &optional startup-hooks)
fce30d79 600 (let* ((buf-to-patch (get-buffer buf-to-patch-name))
bd698e98 601 (visited-file (if buf-to-patch (buffer-file-name buf-to-patch)))
fce30d79 602 (buf-mod-status (buffer-modified-p buf-to-patch))
e756eb9f 603 (multifile-patch-p (> (length (ediff-with-current-buffer patch-buf
fce30d79
MK
604 ediff-patch-map)) 1))
605 default-dir file-name ctl-buf)
bd698e98
MK
606 (if multifile-patch-p
607 (error
3af0304a 608 "To apply multi-file patches, please use `ediff-patch-file'"))
bd698e98
MK
609
610 ;; create a temp file to patch
611 (ediff-with-current-buffer buf-to-patch
612 (setq default-dir default-directory)
613 (setq file-name (ediff-make-temp-file buf-to-patch))
614 ;; temporarily switch visited file name, if any
615 (set-visited-file-name file-name)
616 ;; don't create auto-save file, if buff was visiting a file
617 (or visited-file
618 (setq buffer-auto-save-file-name nil))
619 ;; don't confuse the user with a new bufname
620 (rename-buffer buf-to-patch-name)
621 (set-buffer-modified-p nil)
622 (set-visited-file-modtime) ; sync buffer and temp file
623 (setq default-directory default-dir)
624 )
71296446 625
fce30d79
MK
626 ;; dispatch a patch function
627 (setq ctl-buf (ediff-dispatch-file-patching-job
628 patch-buf file-name startup-hooks))
71296446 629
bd698e98
MK
630 (ediff-with-current-buffer ctl-buf
631 (delete-file (buffer-file-name ediff-buffer-A))
632 (delete-file (buffer-file-name ediff-buffer-B))
633 (ediff-with-current-buffer ediff-buffer-A
634 (if default-dir (setq default-directory default-dir))
635 (set-visited-file-name visited-file) ; visited-file might be nil
636 (rename-buffer buf-to-patch-name)
637 (set-buffer-modified-p buf-mod-status))
638 (ediff-with-current-buffer ediff-buffer-B
639 (setq buffer-auto-save-file-name nil) ; don't create auto-save file
640 (if default-dir (setq default-directory default-dir))
641 (set-visited-file-name nil)
71296446 642 (rename-buffer (ediff-unique-buffer-name
bd698e98
MK
643 (concat buf-to-patch-name "_patched") ""))
644 (set-buffer-modified-p t)))
fce30d79
MK
645 ))
646
bd698e98
MK
647
648;; Traditional patch has weird return codes.
649;; GNU and Posix return 1 if some hanks failed and 2 in case of trouble.
650;; 0 is a good code in all cases.
651;; We'll do the concervative thing.
652(defun ediff-patch-return-code-ok (code)
653 (eq code 0))
654;;; (if (eq (ediff-test-patch-utility) 'traditional)
655;;; (eq code 0)
656;;; (not (eq code 2))))
657
fce30d79
MK
658(defun ediff-patch-file-internal (patch-buf source-filename
659 &optional startup-hooks)
660 (setq source-filename (expand-file-name source-filename))
71296446 661
92c51e07 662 (let* ((shell-file-name ediff-shell)
fce30d79
MK
663 (patch-diagnostics (get-buffer-create "*ediff patch diagnostics*"))
664 ;; ediff-find-file may use a temp file to do the patch
665 ;; so, we save source-filename and true-source-filename as a var
666 ;; that initially is source-filename but may be changed to a temp
667 ;; file for the purpose of patching.
668 (true-source-filename source-filename)
669 (target-filename source-filename)
4960e757
MK
670 ;; this ensures that the patch process gets patch buffer in the
671 ;; encoding that Emacs thinks is right for that type of text
71296446 672 (coding-system-for-write
4960e757 673 (if (boundp 'buffer-file-coding-system) buffer-file-coding-system))
71296446 674 target-buf buf-to-patch file-name-magic-p
e756eb9f 675 patch-return-code ctl-buf backup-style aux-wind)
71296446 676
bd698e98 677 (if (string-match "V" ediff-patch-options)
fce30d79
MK
678 (error
679 "Ediff doesn't take the -V option in `ediff-patch-options'--sorry"))
71296446 680
fce30d79
MK
681 ;; Make a temp file, if source-filename has a magic file handler (or if
682 ;; it is handled via auto-mode-alist and similar magic).
683 ;; Check if there is a buffer visiting source-filename and if they are in
684 ;; sync; arrange for the deletion of temp file.
685 (ediff-find-file 'true-source-filename 'buf-to-patch
686 'ediff-last-dir-patch 'startup-hooks)
687
688 ;; Check if source file name has triggered black magic, such as file name
689 ;; handlers or auto mode alist, and make a note of it.
690 ;; true-source-filename should be either the original name or a
691 ;; temporary file where we put the after-product of the file handler.
692 (setq file-name-magic-p (not (equal (file-truename true-source-filename)
693 (file-truename source-filename))))
71296446
JB
694
695 ;; Checkout orig file, if necessary, so that the patched file
bf5d92c5
MK
696 ;; could be checked back in.
697 (ediff-maybe-checkout buf-to-patch)
fce30d79 698
e756eb9f 699 (ediff-with-current-buffer patch-diagnostics
15c77b9e 700 (insert-buffer-substring patch-buf)
fce30d79
MK
701 (message "Applying patch ... ")
702 ;; fix environment for gnu patch, so it won't make numbered extensions
703 (setq backup-style (getenv "VERSION_CONTROL"))
704 (setenv "VERSION_CONTROL" nil)
92c51e07
MK
705 (setq patch-return-code
706 (call-process-region
707 (point-min) (point-max)
708 shell-file-name
709 t ; delete region (which contains the patch
710 t ; insert output (patch diagnostics) in current buffer
711 nil ; don't redisplay
712 shell-command-switch ; usually -c
713 (format "%s %s %s %s"
714 ediff-patch-program
715 ediff-patch-options
716 ediff-backup-specs
717 (expand-file-name true-source-filename))
718 ))
719
fce30d79
MK
720 ;; restore environment for gnu patch
721 (setenv "VERSION_CONTROL" backup-style))
722
723 (message "Applying patch ... done")
724 (message "")
725
726 (switch-to-buffer patch-diagnostics)
727 (sit-for 0) ; synchronize - let the user see diagnostics
71296446 728
bd698e98 729 (or (and (ediff-patch-return-code-ok patch-return-code)
92c51e07
MK
730 (file-exists-p
731 (concat true-source-filename ediff-backup-extension)))
732 (progn
733 (with-output-to-temp-buffer ediff-msg-buffer
2acc9e43
DL
734 (ediff-with-current-buffer standard-output
735 (fundamental-mode))
71296446 736 (princ (format
bd698e98
MK
737 "Patch program has failed due to a bad patch file,
738it couldn't apply all hunks, OR
739it couldn't create the backup for the file being patched.
92c51e07 740
1e70790f
MK
741The former could be caused by a corrupt patch file or because the %S
742program doesn't understand the format of the patch file in use.
92c51e07 743
1e70790f 744The second problem might be due to an incompatibility among these settings:
bd698e98
MK
745 ediff-patch-program = %S ediff-patch-options = %S
746 ediff-backup-extension = %S ediff-backup-specs = %S
92c51e07 747
92c51e07 748See Ediff on-line manual for more details on these variables.
71296446 749In particular, check the documentation for `ediff-backup-specs'.
bd698e98
MK
750
751In any of the above cases, Ediff doesn't compare files automatically.
752However, if the patch was applied partially and the backup file was created,
753you can still examine the changes via M-x ediff-files"
2acc9e43
DL
754 ediff-patch-program
755 ediff-patch-program
756 ediff-patch-options
757 ediff-backup-extension
758 ediff-backup-specs
759 )))
92c51e07
MK
760 (beep 1)
761 (if (setq aux-wind (get-buffer-window ediff-msg-buffer))
762 (progn
763 (select-window aux-wind)
764 (goto-char (point-max))))
1e70790f 765 (switch-to-buffer-other-window patch-diagnostics)
92c51e07 766 (error "Patch appears to have failed")))
71296446 767
fce30d79 768 ;; If black magic is involved, apply patch to a temp copy of the
3af0304a 769 ;; file. Otherwise, apply patch to the orig copy. If patch is applied
fce30d79 770 ;; to temp copy, we name the result old-name_patched for local files
3af0304a 771 ;; and temp-copy_patched for remote files. The orig file name isn't
fce30d79
MK
772 ;; changed, and the temp copy of the original is later deleted.
773 ;; Without magic, the original file is renamed (usually into
774 ;; old-name_orig) and the result of patching will have the same name as
775 ;; the original.
776 (if (not file-name-magic-p)
e756eb9f 777 (ediff-with-current-buffer buf-to-patch
92c51e07
MK
778 (set-visited-file-name
779 (concat source-filename ediff-backup-extension))
fce30d79 780 (set-buffer-modified-p nil))
71296446 781
fce30d79
MK
782 ;; Black magic in effect.
783 ;; If orig file was remote, put the patched file in the temp directory.
784 ;; If orig file is local, put the patched file in the directory of
785 ;; the orig file.
786 (setq target-filename
787 (concat
788 (if (ediff-file-remote-p (file-truename source-filename))
789 true-source-filename
790 source-filename)
791 "_patched"))
71296446 792
fce30d79 793 (rename-file true-source-filename target-filename t)
71296446 794
fce30d79 795 ;; arrange that the temp copy of orig will be deleted
92c51e07 796 (rename-file (concat true-source-filename ediff-backup-extension)
fce30d79 797 true-source-filename t))
71296446 798
fce30d79
MK
799 ;; make orig buffer read-only
800 (setq startup-hooks
801 (cons 'ediff-set-read-only-in-buf-A startup-hooks))
71296446 802
fce30d79
MK
803 ;; set up a buf for the patched file
804 (setq target-buf (find-file-noselect target-filename))
71296446 805
fce30d79
MK
806 (setq ctl-buf
807 (ediff-buffers-internal
808 buf-to-patch target-buf nil
809 startup-hooks 'epatch))
e756eb9f 810 (ediff-with-current-buffer ctl-buf
fce30d79
MK
811 (setq ediff-patchbufer patch-buf
812 ediff-patch-diagnostics patch-diagnostics))
71296446 813
fce30d79
MK
814 (bury-buffer patch-diagnostics)
815 (message "Type `P', if you need to see patch diagnostics")
816 ctl-buf))
817
818(defun ediff-multi-patch-internal (patch-buf &optional startup-hooks)
819 (let (meta-buf)
820 (setq startup-hooks
821 ;; this sets various vars in the meta buffer inside
822 ;; ediff-prepare-meta-buffer
086171bf
MK
823 (cons `(lambda ()
824 ;; tell what to do if the user clicks on a session record
825 (setq ediff-session-action-function
826 'ediff-patch-file-form-meta
827 ediff-meta-patchbufer patch-buf) )
fce30d79 828 startup-hooks))
71296446 829 (setq meta-buf (ediff-prepare-meta-buffer
fce30d79 830 'ediff-filegroup-action
e756eb9f 831 (ediff-with-current-buffer patch-buf
743a79af
MK
832 (cons (ediff-make-new-meta-list-header
833 nil ; regexp
834 (format "%S" patch-buf) ; obj A
835 nil nil ; objects B,C
836 nil ; merge-auto-store-dir
837 nil ; comparison-func
838 )
fce30d79
MK
839 ediff-patch-map))
840 "*Ediff Session Group Panel"
841 'ediff-redraw-directory-group-buffer
842 'ediff-multifile-patch
843 startup-hooks))
844 (ediff-show-meta-buffer meta-buf)
845 ))
846
71296446
JB
847
848
b6178721
MK
849(provide 'ediff-ptch)
850
fce30d79
MK
851
852;;; Local Variables:
853;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
e756eb9f
MK
854;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1)
855;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body))
fce30d79
MK
856;;; End:
857
ab5796a9 858;;; arch-tag: 2fe2161e-e116-469b-90fa-5cbb44c1bd1b
fce30d79 859;;; ediff-ptch.el ends here