Second half of changes in version 1.4.
[bpt/emacs.git] / lisp / progmodes / executable.el
CommitLineData
58a4ff04 1;;; executable.el --- base functionality for executable interpreter scripts
b578f267
EN
2
3;; Copyright (C) 1994, 1995, 1996 by Free Software Foundation, Inc.
58a4ff04 4
0acdb863
RS
5;; Author: Daniel.Pfeiffer@Informatik.START.dbp.de
6;; fax (+49 69) 7588-2389
58a4ff04
KH
7;; Keywords: languages, unix
8
9;; This file is part of GNU Emacs.
10
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 2, or (at your option)
14;; any later version.
15
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.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
58a4ff04
KH
25
26;;; Commentary:
314001b5
RS
27
28;; executable.el is used by certain major modes to insert a suitable
29;; #! line at the beginning of the file, if the file does not already
30;; have one.
31
252ed276
RS
32;; Unless it has a magic number, a Unix file with executable mode is passed to
33;; a new instance of the running shell (or to a Bourne shell if a csh is
34;; running and the file starts with `:'). Only a shell can start such a file,
35;; exec() cannot, which is why it is important to have a magic number in every
36;; executable script. Such a magic number is made up by the characters `#!'
37;; the filename of an interpreter (in COFF, ELF or somesuch format) and one
38;; optional argument.
39
40;; This library is for certain major modes like sh-, awk-, perl-, tcl- or
41;; makefile-mode to insert or update a suitable #! line at the beginning of
42;; the file, if the file does not already have one and the file is not a
43;; default file of that interpreter (like .profile or makefile). It also
44;; makes the file executable if it wasn't, as soon as it's saved.
45
46;; It also allows debugging scripts, with an adaptation of compile, as far
47;; as interpreters give out meaningful error messages.
48
49;; Modes that use this should nconc `executable-map' to the end of their own
50;; keymap and `executable-font-lock-keywords' to the end of their own font
51;; lock keywords. Their mode-setting commands should call
52;; `executable-set-magic'.
4a789a51 53
58a4ff04
KH
54;;; Code:
55
bbf5eb28
RS
56(defgroup executable nil
57 "Base functionality for executable interpreter scripts"
58 :group 'processes)
59
60(defcustom executable-insert 'other
8d4e82b5
RS
61 "*Non-nil means offer to add a magic number to a file.
62This takes effect when you switch to certain major modes,
63including Shell-script mode (`sh-mode').
64When you type \\[executable-set-magic], it always offers to add or
bbf5eb28
RS
65update the magic number."
66 :type '(choice (const :tag "off" nil)
67 (const :tag "on" t)
68 symbol)
69 :group 'executable)
58a4ff04 70
58a4ff04 71
bbf5eb28
RS
72(defcustom executable-query 'function
73 "*If non-nil, ask user before changing an existing magic number.
74When this is `function', only ask when called non-interactively."
75 :type '(choice (const :tag "Don't Ask" nil)
76 (const :tag "Ask" t)
77 (const :tag "Ask when non-interactive" function))
78 :group 'executable)
58a4ff04 79
58a4ff04 80
bbf5eb28
RS
81(defcustom executable-magicless-file-regexp "/[Mm]akefile$\\|/\\.\\(z?profile\\|bash_profile\\|z?login\\|bash_login\\|z?logout\\|bash_logout\\|.+shrc\\|esrc\\|rcrc\\|[kz]shenv\\)$"
82 "*On files with this kind of name no magic is inserted or changed."
83 :type 'regexp
84 :group 'executable)
58a4ff04 85
58a4ff04 86
bbf5eb28
RS
87(defcustom executable-prefix "#! "
88 "*Interpreter magic number prefix inserted when there was no magic number."
89 :type 'string
90 :group 'executable)
58a4ff04
KH
91
92
bbf5eb28 93(defcustom executable-chmod 73
58a4ff04
KH
94 "*After saving, if the file is not executable, set this mode.
95This mode passed to `set-file-modes' is taken absolutely when negative, or
96relative to the files existing modes. Do nothing if this is nil.
bbf5eb28 97Typical values are 73 (+x) or -493 (rwxr-xr-x)."
9cbf5df2
RS
98 :type '(choice integer
99 (const nil))
bbf5eb28 100 :group 'executable)
58a4ff04
KH
101
102
103(defvar executable-command nil)
104
bbf5eb28 105(defcustom executable-self-display "tail"
58a4ff04 106 "*Command you use with argument `+2' to make text files self-display.
bbf5eb28
RS
107Note that the like of `more' doesn't work too well under Emacs \\[shell]."
108 :type 'string
109 :group 'executable)
58a4ff04
KH
110
111
112(defvar executable-font-lock-keywords
113 '(("\\`#!.*/\\([^ \t\n]+\\)" 1 font-lock-keyword-face t))
114 "*Rules for highlighting executable scripts' magic number.
115This can be included in `font-lock-keywords' by modes that call `executable'.")
116
117
118(defvar executable-error-regexp-alist
119 '(;; /bin/xyz: syntax error at line 14: `(' unexpected
120 ;; /bin/xyz[5]: syntax error at line 8 : ``' unmatched
121 ("^\\(.*[^[/]\\)\\(\\[[0-9]+\\]\\)?: .* error .* line \\([0-9]+\\)" 1 3)
122 ;; /bin/xyz[27]: ehco: not found
123 ("^\\(.*[^/]\\)\\[\\([0-9]+\\)\\]: .*: " 1 2)
124 ;; /bin/xyz: syntax error near unexpected token `)'
125 ;; /bin/xyz: /bin/xyz: line 2: `)'
126 ("^\\(.*[^/]\\): [^0-9\n]+\n\\1: \\1: line \\([0-9]+\\):" 1 2)
127 ;; /usr/bin/awk: syntax error at line 5 of file /bin/xyz
128 (" error .* line \\([0-9]+\\) of file \\(.+\\)$" 2 1)
129 ;; /usr/bin/awk: calling undefined function toto
130 ;; input record number 3, file awktestdata
131 ;; source line 4 of file /bin/xyz
132 ("^[^ ].+\n\\( .+\n\\)* line \\([0-9]+\\) of file \\(.+\\)$" 3 2)
133 ;; makefile:1: *** target pattern contains no `%'. Stop.
134 ("^\\(.+\\):\\([0-9]+\\): " 1 2))
135 "Alist of regexps used to match script errors.
136See `compilation-error-regexp-alist'.")
137
291c92b7
KH
138;; The C function openp slightly modified would do the trick fine
139(defun executable-find (command)
6ddc496f 140 "Search for COMMAND in exec-path and return the absolute file name.
77a039e2 141Return nil if COMMAND is not found anywhere in `exec-path'."
58a4ff04 142 (let ((list exec-path)
291c92b7 143 file)
58a4ff04 144 (while list
291c92b7
KH
145 (setq list (if (and (setq file (expand-file-name command (car list)))
146 (file-executable-p file)
147 (not (file-directory-p file)))
58a4ff04 148 nil
291c92b7 149 (setq file nil)
58a4ff04 150 (cdr list))))
291c92b7 151 file))
58a4ff04
KH
152
153
154(defun executable-chmod ()
155 "This gets called after saving a file to assure that it be executable.
156You can set the absolute or relative mode in variable `executable-chmod' for
157non-executable files."
158 (and executable-chmod
159 buffer-file-name
160 (or (file-executable-p buffer-file-name)
161 (set-file-modes buffer-file-name
162 (if (< executable-chmod 0)
163 (- executable-chmod)
164 (logior executable-chmod
165 (file-modes buffer-file-name)))))))
166
167
168(defun executable-interpret (command)
169 "Run script with user-specified args, and collect output in a buffer.
170While script runs asynchronously, you can use the \\[next-error] command
171to find the next error."
172 (interactive (list (read-string "Run script: "
173 (or executable-command
174 buffer-file-name))))
175 (require 'compile)
176 (save-some-buffers (not compilation-ask-about-save))
177 (make-local-variable 'executable-command)
178 (compile-internal (setq executable-command command)
179 "No more errors." "Interpretation"
180 ;; Give it a simpler regexp to match.
181 nil executable-error-regexp-alist))
182
183
184
185;;;###autoload
291c92b7
KH
186(defun executable-set-magic (interpreter &optional argument
187 no-query-flag insert-flag)
58a4ff04
KH
188 "Set this buffer's interpreter to INTERPRETER with optional ARGUMENT.
189The variables `executable-magicless-file-regexp', `executable-prefix',
190`executable-insert', `executable-query' and `executable-chmod' control
191when and how magic numbers are inserted or replaced and scripts made
192executable."
291c92b7
KH
193 (interactive
194 (let* ((name (read-string "Name or file name of interpreter: "))
195 (arg (read-string (format "Argument for %s: " name))))
196 (list name arg (eq executable-query 'function) t)))
58a4ff04
KH
197 (setq interpreter (if (file-name-absolute-p interpreter)
198 interpreter
291c92b7
KH
199 (or (executable-find interpreter)
200 (error "Interpreter %s not recognized" interpreter)))
58a4ff04
KH
201 argument (concat interpreter
202 (and argument (string< "" argument) " ")
203 argument))
204 (or buffer-read-only
205 (if buffer-file-name
206 (string-match executable-magicless-file-regexp
207 buffer-file-name))
291c92b7 208 (not (or insert-flag executable-insert))
58a4ff04 209 (> (point-min) 1)
291c92b7
KH
210 (save-excursion
211 (let ((point (point-marker))
212 (buffer-modified-p (buffer-modified-p)))
213 (goto-char (point-min))
214 (make-local-hook 'after-save-hook)
215 (add-hook 'after-save-hook 'executable-chmod nil t)
216 (if (looking-at "#![ \t]*\\(.*\\)$")
217 (and (goto-char (match-beginning 1))
77f76e3e
RS
218 ;; If the line ends in a space,
219 ;; don't offer to change it.
220 (not (= (char-after (1- (match-end 1))) ?\ ))
291c92b7
KH
221 (not (string= argument
222 (buffer-substring (point) (match-end 1))))
77f76e3e
RS
223 (if (or (not executable-query) no-query-flag
224 (save-window-excursion
225 ;; Make buffer visible before question.
226 (switch-to-buffer (current-buffer))
227 (y-or-n-p (concat "Replace magic number by `"
228 executable-prefix argument "'? "))))
229 (progn
230 (replace-match argument t t nil 1)
231 (message "Magic number changed to `%s'"
3fbe4759 232 (concat executable-prefix argument)))))
291c92b7
KH
233 (insert executable-prefix argument ?\n)
234 (message "Magic number changed to `%s'"
235 (concat executable-prefix argument)))
77f76e3e
RS
236;;; (or insert-flag
237;;; (eq executable-insert t)
238;;; (set-buffer-modified-p buffer-modified-p))
239 )))
58a4ff04
KH
240 interpreter)
241
242
243
244;;;###autoload
245(defun executable-self-display ()
246 "Turn a text file into a self-displaying Un*x command.
247The magic number of such a command displays all lines but itself."
248 (interactive)
249 (if (eq this-command 'executable-self-display)
250 (setq this-command 'executable-set-magic))
251 (executable-set-magic executable-self-display "+2"))
252
253
254
255(provide 'executable)
256
257;; executable.el ends here