(define-generic-mode): Add debug declaration. Add defcustom for the
[emacs.git] / lisp / generic.el
blob22fc8b012f39b07a011d152ee504b49db39856d2
1 ;;; generic.el --- defining simple major modes with comment and font-lock
2 ;;
3 ;; Copyright (C) 1997, 1999, 2004, 2005 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Peter Breton <pbreton@cs.umb.edu>
6 ;; Created: Fri Sep 27 1996
7 ;; Keywords: generic, comment, font-lock
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 2, 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., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;; Purpose:
28 ;; Meta-mode to create simple major modes
29 ;; with basic comment and font-lock support
31 ;;; Commentary:
33 ;; INTRODUCTION:
35 ;; Generic-mode is a meta-mode which can be used to define small modes
36 ;; which provide basic comment and font-lock support. These modes are
37 ;; intended for the many configuration files and such which are too
38 ;; small for a "real" mode, but still have a regular syntax, comment
39 ;; characters and the like.
41 ;; Each generic mode can define the following:
43 ;; * List of comment-characters. The entries in this list should be
44 ;; either a character, a one or two character string or a cons pair.
45 ;; If the entry is a character or a string, it is added to the
46 ;; mode's syntax table with `comment-start' syntax. If the entry is
47 ;; a cons pair, the elements of the pair are considered to be
48 ;; `comment-start' and `comment-end' respectively. (The latter
49 ;; should be nil if you want comments to end at end of line.)
50 ;; LIMITATIONS: Emacs does not support comment strings of more than
51 ;; two characters in length.
53 ;; * List of keywords to font-lock. Each keyword should be a string.
54 ;; If you have additional keywords which should be highlighted in a
55 ;; face different from `font-lock-keyword-face', you can use the
56 ;; convenience function `generic-make-keywords-list' (which see),
57 ;; and add the result to the following list:
59 ;; * Additional expressions to font-lock. This should be a list of
60 ;; expressions, each of which should be of the same form as those in
61 ;; `font-lock-keywords'.
63 ;; * List of regular expressions to be placed in auto-mode-alist.
65 ;; * List of functions to call to do some additional setup
67 ;; This should pretty much cover basic functionality; if you need much
68 ;; more than this, or you find yourself writing extensive customizations,
69 ;; perhaps you should be writing a major mode instead!
71 ;; LOCAL VARIABLES:
73 ;; To put a file into generic mode using local variables, use a line
74 ;; like this in a Local Variables block:
76 ;; mode: default-generic
78 ;; Do NOT use "mode: generic"!
79 ;; See also "AUTOMATICALLY ENTERING GENERIC MODE" below.
81 ;; DEFINING NEW GENERIC MODES:
83 ;; Use the `define-generic-mode' function to define new modes.
84 ;; For example:
86 ;; (define-generic-mode 'foo-generic-mode
87 ;; (list ?%)
88 ;; (list "keyword")
89 ;; nil
90 ;; (list "\\.FOO\\'")
91 ;; (list 'foo-setup-function))
93 ;; defines a new generic-mode `foo-generic-mode', which has '%' as a
94 ;; comment character, and "keyword" as a keyword. When files which
95 ;; end in '.FOO' are loaded, Emacs will go into foo-generic-mode and
96 ;; call foo-setup-function. You can also use the function
97 ;; `foo-generic-mode' (which is interactive) to put a buffer into
98 ;; foo-generic-mode.
100 ;; AUTOMATICALLY ENTERING GENERIC MODE:
102 ;; Generic-mode provides a hook which automatically puts a file into
103 ;; default-generic-mode if the first few lines of a file in
104 ;; fundamental mode start with a hash comment character. To disable
105 ;; this functionality, set the variable `generic-use-find-file-hook'
106 ;; to nil BEFORE loading generic-mode. See the variables
107 ;; `generic-lines-to-scan' and `generic-find-file-regexp' for
108 ;; customization options.
110 ;; GOTCHAS:
112 ;; Be careful that your font-lock definitions are correct. Getting
113 ;; them wrong can cause Emacs to continually attempt to fontify! This
114 ;; problem is not specific to generic-mode.
117 ;; Credit for suggestions, brainstorming, help with debugging:
118 ;; ACorreir@pervasive-sw.com (Alfred Correira)
119 ;; Extensive cleanup by:
120 ;; Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu)
122 ;;; Code:
124 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
125 ;; Internal Variables
126 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
128 (defvar generic-font-lock-keywords nil
129 "Keywords for `font-lock-defaults' in a generic mode.")
130 (make-variable-buffer-local 'generic-font-lock-keywords)
131 (defvaralias 'generic-font-lock-defaults 'generic-font-lock-keywords)
132 (make-obsolete-variable 'generic-font-lock-defaults 'generic-font-lock-keywords "22.1")
134 ;;;###autoload
135 (defvar generic-mode-list nil
136 "A list of mode names for `generic-mode'.
137 Do not add entries to this list directly; use `define-generic-mode'
138 instead (which see).")
140 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
141 ;; Customization Variables
142 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
144 (defgroup generic nil
145 "Define simple major modes with comment and font-lock support."
146 :prefix "generic-"
147 :group 'extensions)
149 (defcustom generic-use-find-file-hook t
150 "*If non-nil, add a hook to enter `default-generic-mode' automatically.
151 This is done if the first few lines of a file in fundamental mode
152 start with a hash comment character."
153 :group 'generic
154 :type 'boolean)
156 (defcustom generic-lines-to-scan 3
157 "*Number of lines that `generic-mode-find-file-hook' looks at.
158 Relevant when deciding whether to enter Default-Generic mode automatically.
159 This variable should be set to a small positive number."
160 :group 'generic
161 :type 'integer)
163 (defcustom generic-find-file-regexp "^#"
164 "*Regular expression used by `generic-mode-find-file-hook'.
165 Files in fundamental mode whose first few lines contain a match
166 for this regexp, should be put into Default-Generic mode instead.
167 The number of lines tested for the matches is specified by the
168 value of the variable `generic-lines-to-scan', which see."
169 :group 'generic
170 :type 'regexp)
172 (defcustom generic-ignore-files-regexp "[Tt][Aa][Gg][Ss]\\'"
173 "*Regular expression used by `generic-mode-find-file-hook'.
174 Files whose names match this regular expression should not be put
175 into Default-Generic mode, even if they have lines which match
176 the regexp in `generic-find-file-regexp'. If the value is nil,
177 `generic-mode-find-file-hook' does not check the file names."
178 :group 'generic
179 :type '(choice (const :tag "Don't check file names" nil) regexp))
181 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
182 ;; Functions
183 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
185 ;;;###autoload
186 (defmacro define-generic-mode (mode comment-list keyword-list
187 font-lock-list auto-mode-list
188 function-list &optional docstring)
189 "Create a new generic mode MODE.
191 MODE is the name of the command for the generic mode; it need not
192 be quoted. The optional DOCSTRING is the documentation for the
193 mode command. If you do not supply it, a default documentation
194 string will be used instead.
196 COMMENT-LIST is a list, whose entries are either a single
197 character, a one or two character string or a cons pair. If the
198 entry is a character or a string, it is added to the mode's
199 syntax table with `comment-start' syntax. If the entry is a cons
200 pair, the elements of the pair are considered to be
201 `comment-start' and `comment-end' respectively. (The latter
202 should be nil if you want comments to end at end of line.) Note
203 that Emacs has limitations regarding comment characters.
205 KEYWORD-LIST is a list of keywords to highlight with
206 `font-lock-keyword-face'. Each keyword should be a string.
208 FONT-LOCK-LIST is a list of additional expressions to highlight.
209 Each entry in the list should have the same form as an entry in
210 `font-lock-keywords'.
212 AUTO-MODE-LIST is a list of regular expressions to add to
213 `auto-mode-alist'. These regexps are added to `auto-mode-alist'
214 as soon as `define-generic-mode' is called.
216 FUNCTION-LIST is a list of functions to call to do some
217 additional setup.
219 See the file generic-x.el for some examples of `define-generic-mode'."
220 (declare (debug (sexp def-form def-form def-form form def-form &optional stringp)))
222 ;; Backward compatibility.
223 (when (eq (car-safe mode) 'quote)
224 (setq mode (eval mode)))
225 (let* ((mode-name (symbol-name mode))
226 (pretty-name (capitalize (replace-regexp-in-string
227 "-mode\\'" "" mode-name)))
228 (mode-hook (intern (concat mode-name "-hook"))))
230 `(progn
231 ;; Add a new entry.
232 (add-to-list 'generic-mode-list ,mode-name)
234 ;; Add it to auto-mode-alist
235 (dolist (re ,auto-mode-list)
236 (add-to-list 'auto-mode-alist (cons re ',mode)))
238 (defcustom ,mode-hook nil
239 ,(concat "Hook run when entering " pretty-name " mode.")
240 :type 'hook
241 :group (or (custom-current-group)
242 ',(intern (replace-regexp-in-string
243 "-mode\\'" "" mode-name))))
245 (defun ,mode ()
246 ,(or docstring
247 (concat pretty-name " mode.\n"
248 "This a generic mode defined with `define-generic-mode'."))
249 (interactive)
250 (generic-mode-internal ',mode ,comment-list ,keyword-list
251 ,font-lock-list ,function-list)))))
253 ;;;###autoload
254 (defun generic-mode-internal (mode comment-list keyword-list
255 font-lock-list function-list)
256 "Go into the generic mode MODE."
257 (let* ((mode-name (symbol-name mode))
258 (pretty-name (capitalize (replace-regexp-in-string
259 "-mode\\'" "" mode-name)))
260 (mode-hook (intern (concat mode-name "-hook"))))
262 (kill-all-local-variables)
264 (setq major-mode mode
265 mode-name pretty-name)
267 (generic-mode-set-comments comment-list)
269 ;; Font-lock functionality.
270 ;; Font-lock-defaults is always set even if there are no keywords
271 ;; or font-lock expressions, so comments can be highlighted.
272 (setq generic-font-lock-keywords
273 (append
274 (when keyword-list
275 (list (generic-make-keywords-list keyword-list
276 font-lock-keyword-face)))
277 font-lock-list))
278 (setq font-lock-defaults '(generic-font-lock-keywords nil))
280 ;; Call a list of functions
281 (mapcar 'funcall function-list)
283 (run-mode-hooks mode-hook)))
285 ;;;###autoload
286 (defun generic-mode (mode)
287 "Enter generic mode MODE.
289 Generic modes provide basic comment and font-lock functionality
290 for \"generic\" files. (Files which are too small to warrant their
291 own mode, but have comment characters, keywords, and the like.)
293 To define a generic-mode, use the function `define-generic-mode'.
294 Some generic modes are defined in `generic-x.el'."
295 (interactive
296 (list (completing-read "Generic mode: " generic-mode-list nil t)))
297 (funcall (intern mode)))
299 ;;; Comment Functionality
300 (defun generic-mode-set-comments (comment-list)
301 "Set up comment functionality for generic mode."
302 (let ((st (make-syntax-table))
303 (chars nil)
304 (comstyles))
305 (make-local-variable 'comment-start)
306 (make-local-variable 'comment-start-skip)
307 (make-local-variable 'comment-end)
309 ;; Go through all the comments
310 (dolist (start comment-list)
311 (let (end (comstyle ""))
312 ;; Normalize
313 (when (consp start)
314 (setq end (cdr start))
315 (setq start (car start)))
316 (when (char-valid-p start) (setq start (char-to-string start)))
317 (cond
318 ((char-valid-p end) (setq end (char-to-string end)))
319 ((zerop (length end)) (setq end "\n")))
321 ;; Setup the vars for `comment-region'
322 (if comment-start
323 ;; We have already setup a comment-style, so use style b
324 (progn
325 (setq comstyle "b")
326 (setq comment-start-skip
327 (concat comment-start-skip "\\|" (regexp-quote start) "+\\s-*")))
328 ;; First comment-style
329 (setq comment-start start)
330 (setq comment-end (if (string-equal end "\n") "" end))
331 (setq comment-start-skip (concat (regexp-quote start) "+\\s-*")))
333 ;; Reuse comstyles if necessary
334 (setq comstyle
335 (or (cdr (assoc start comstyles))
336 (cdr (assoc end comstyles))
337 comstyle))
338 (push (cons start comstyle) comstyles)
339 (push (cons end comstyle) comstyles)
341 ;; Setup the syntax table
342 (if (= (length start) 1)
343 (modify-syntax-entry (string-to-char start)
344 (concat "< " comstyle) st)
345 (let ((c0 (elt start 0)) (c1 (elt start 1)))
346 ;; Store the relevant info but don't update yet
347 (push (cons c0 (concat (cdr (assoc c0 chars)) "1")) chars)
348 (push (cons c1 (concat (cdr (assoc c1 chars))
349 (concat "2" comstyle))) chars)))
350 (if (= (length end) 1)
351 (modify-syntax-entry (string-to-char end)
352 (concat ">" comstyle) st)
353 (let ((c0 (elt end 0)) (c1 (elt end 1)))
354 ;; Store the relevant info but don't update yet
355 (push (cons c0 (concat (cdr (assoc c0 chars))
356 (concat "3" comstyle))) chars)
357 (push (cons c1 (concat (cdr (assoc c1 chars)) "4")) chars)))))
359 ;; Process the chars that were part of a 2-char comment marker
360 (dolist (cs (nreverse chars))
361 (modify-syntax-entry (car cs)
362 (concat (char-to-string (char-syntax (car cs)))
363 " " (cdr cs))
364 st))
365 (set-syntax-table st)))
367 (defun generic-bracket-support ()
368 "Imenu support for [KEYWORD] constructs found in INF, INI and Samba files."
369 (setq imenu-generic-expression
370 '((nil "^\\[\\(.*\\)\\]" 1))
371 imenu-case-fold-search t))
373 ;; This generic mode is always defined
374 (define-generic-mode default-generic-mode (list ?#) nil nil nil nil)
376 ;; A more general solution would allow us to enter generic-mode for
377 ;; *any* comment character, but would require us to synthesize a new
378 ;; generic-mode on the fly. I think this gives us most of what we
379 ;; want.
380 (defun generic-mode-find-file-hook ()
381 "Hook function to enter Default-Generic mode automatically.
383 Done if the first few lines of a file in Fundamental mode start
384 with a match for the regexp in `generic-find-file-regexp', unless
385 the file's name matches the regexp which is the value of the
386 variable `generic-ignore-files-regexp'.
388 This hook will be installed if the variable
389 `generic-use-find-file-hook' is non-nil. The variable
390 `generic-lines-to-scan' determines the number of lines to look at."
391 (when (and (eq major-mode 'fundamental-mode)
392 (or (null generic-ignore-files-regexp)
393 (not (string-match
394 generic-ignore-files-regexp
395 (file-name-sans-versions buffer-file-name)))))
396 (save-excursion
397 (goto-char (point-min))
398 (when (re-search-forward generic-find-file-regexp
399 (save-excursion
400 (forward-line generic-lines-to-scan)
401 (point)) t)
402 (goto-char (point-min))
403 (default-generic-mode)))))
405 (defun generic-mode-ini-file-find-file-hook ()
406 "Hook function to enter Default-Generic mode automatically for INI files.
407 Done if the first few lines of a file in Fundamental mode look like an
408 INI file. This hook is NOT installed by default."
409 (and (eq major-mode 'fundamental-mode)
410 (save-excursion
411 (goto-char (point-min))
412 (and (looking-at "^\\s-*\\[.*\\]")
413 (ini-generic-mode)))))
415 (and generic-use-find-file-hook
416 (add-hook 'find-file-hook 'generic-mode-find-file-hook))
418 ;;;###autoload
419 (defun generic-make-keywords-list (keywords-list face &optional prefix suffix)
420 "Return a regular expression matching the specified KEYWORDS-LIST.
421 The regexp is highlighted with FACE."
422 (unless (listp keywords-list)
423 (error "Keywords argument must be a list of strings"))
424 (list (concat prefix "\\_<"
425 ;; Use an optimized regexp.
426 (regexp-opt keywords-list t)
427 "\\_>" suffix)
429 face))
431 (provide 'generic)
433 ;; arch-tag: 239c1fc4-1303-48d9-9ac0-657d655669ea
434 ;;; generic.el ends here