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