2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
[emacs.git] / lisp / diff.el
blobb063c07b40f43161275e215d275f939b81ac2e56
1 ;;; diff.el --- run `diff' in compilation-mode
3 ;; Copyright (C) 1992, 1994, 1996, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: unix, tools
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
26 ;;; Commentary:
28 ;; This package helps you explore differences between files, using the
29 ;; UNIX command diff(1). The commands are `diff' and `diff-backup'.
30 ;; You can specify options with `diff-switches'.
32 ;;; Code:
34 (defgroup diff nil
35 "Comparing files with `diff'."
36 :group 'tools)
38 ;;;###autoload
39 (defcustom diff-switches "-c"
40 "*A string or list of strings specifying switches to be passed to diff."
41 :type '(choice string (repeat string))
42 :group 'diff)
44 ;;;###autoload
45 (defcustom diff-command "diff"
46 "*The command to use to run diff."
47 :type 'string
48 :group 'diff)
50 (defvar diff-old-temp-file nil
51 "This is the name of a temp file to be deleted after diff finishes.")
52 (defvar diff-new-temp-file nil
53 "This is the name of a temp file to be deleted after diff finishes.")
55 ;; prompt if prefix arg present
56 (defun diff-switches ()
57 (if current-prefix-arg
58 (read-string "Diff switches: "
59 (if (stringp diff-switches)
60 diff-switches
61 (mapconcat 'identity diff-switches " ")))))
63 (defun diff-sentinel (code)
64 "Code run when the diff process exits.
65 CODE is the exit code of the process. It should be 0 only if no diffs
66 were found."
67 (if diff-old-temp-file (delete-file diff-old-temp-file))
68 (if diff-new-temp-file (delete-file diff-new-temp-file))
69 (save-excursion
70 (goto-char (point-max))
71 (let ((inhibit-read-only t))
72 (insert (format "\nDiff finished%s. %s\n"
73 (if (equal 0 code) " (no differences)" "")
74 (current-time-string))))))
76 ;;;###autoload
77 (defun diff (old new &optional switches no-async)
78 "Find and display the differences between OLD and NEW files.
79 Interactively the current buffer's file name is the default for NEW
80 and a backup file for NEW is the default for OLD.
81 If NO-ASYNC is non-nil, call diff synchronously.
82 With prefix arg, prompt for diff switches."
83 (interactive
84 (let (oldf newf)
85 (setq newf (buffer-file-name)
86 newf (if (and newf (file-exists-p newf))
87 (read-file-name
88 (concat "Diff new file (default "
89 (file-name-nondirectory newf) "): ")
90 nil newf t)
91 (read-file-name "Diff new file: " nil nil t)))
92 (setq oldf (file-newest-backup newf)
93 oldf (if (and oldf (file-exists-p oldf))
94 (read-file-name
95 (concat "Diff original file (default "
96 (file-name-nondirectory oldf) "): ")
97 (file-name-directory oldf) oldf t)
98 (read-file-name "Diff original file: "
99 (file-name-directory newf) nil t)))
100 (list oldf newf (diff-switches))))
101 (setq new (expand-file-name new)
102 old (expand-file-name old))
103 (or switches (setq switches diff-switches)) ; If not specified, use default.
104 (let* ((old-alt (file-local-copy old))
105 (new-alt (file-local-copy new))
106 (command
107 (mapconcat 'identity
108 `(,diff-command
109 ;; Use explicitly specified switches
110 ,@(if (listp switches) switches (list switches))
111 ,@(if (or old-alt new-alt)
112 (list "-L" old "-L" new))
113 ,(shell-quote-argument (or old-alt old))
114 ,(shell-quote-argument (or new-alt new)))
115 " "))
116 (buf (get-buffer-create "*Diff*"))
117 (thisdir default-directory)
118 proc)
119 (save-excursion
120 (display-buffer buf)
121 (set-buffer buf)
122 (setq buffer-read-only nil)
123 (buffer-disable-undo (current-buffer))
124 (let ((inhibit-read-only t))
125 (erase-buffer))
126 (buffer-enable-undo (current-buffer))
127 (diff-mode)
128 ;; Use below 2 vars for backward-compatibility.
129 (set (make-local-variable 'diff-old-file) old)
130 (set (make-local-variable 'diff-new-file) new)
131 (set (make-local-variable 'diff-extra-args) (list switches no-async))
132 (set (make-local-variable 'revert-buffer-function)
133 (lambda (ignore-auto noconfirm)
134 (apply 'diff diff-old-file diff-new-file diff-extra-args)))
135 (set (make-local-variable 'diff-old-temp-file) old-alt)
136 (set (make-local-variable 'diff-new-temp-file) new-alt)
137 (setq default-directory thisdir)
138 (let ((inhibit-read-only t))
139 (insert command "\n"))
140 (if (and (not no-async) (fboundp 'start-process))
141 (progn
142 (setq proc (start-process "Diff" buf shell-file-name
143 shell-command-switch command))
144 (set-process-filter proc 'diff-process-filter)
145 (set-process-sentinel
146 proc (lambda (proc msg)
147 (with-current-buffer (process-buffer proc)
148 (diff-sentinel (process-exit-status proc))))))
149 ;; Async processes aren't available.
150 (let ((inhibit-read-only t))
151 (diff-sentinel
152 (call-process shell-file-name nil buf nil
153 shell-command-switch command)))))
154 buf))
156 (defun diff-process-filter (proc string)
157 (with-current-buffer (process-buffer proc)
158 (let ((moving (= (point) (process-mark proc))))
159 (save-excursion
160 ;; Insert the text, advancing the process marker.
161 (goto-char (process-mark proc))
162 (let ((inhibit-read-only t))
163 (insert string))
164 (set-marker (process-mark proc) (point)))
165 (if moving (goto-char (process-mark proc))))))
167 ;;;###autoload
168 (defun diff-backup (file &optional switches)
169 "Diff this file with its backup file or vice versa.
170 Uses the latest backup, if there are several numerical backups.
171 If this file is a backup, diff it with its original.
172 The backup file is the first file given to `diff'.
173 With prefix arg, prompt for diff switches."
174 (interactive (list (read-file-name "Diff (file with backup): ")
175 (diff-switches)))
176 (let (bak ori)
177 (if (backup-file-name-p file)
178 (setq bak file
179 ori (file-name-sans-versions file))
180 (setq bak (or (diff-latest-backup-file file)
181 (error "No backup found for %s" file))
182 ori file))
183 (diff bak ori switches)))
185 (defun diff-latest-backup-file (fn) ; actually belongs into files.el
186 "Return the latest existing backup of FILE, or nil."
187 (let ((handler (find-file-name-handler fn 'diff-latest-backup-file)))
188 (if handler
189 (funcall handler 'diff-latest-backup-file fn)
190 (file-newest-backup fn))))
192 (provide 'diff)
194 ;; arch-tag: 7de2c29b-7ea5-4b85-9b9d-72dd860de2bd
195 ;;; diff.el ends here