* progmodes/cc-awk.el, cc-defs.el, cc-fonts.el, cc-langs.el,
[bpt/emacs.git] / lisp / progmodes / cc-awk.el
1 ;;; cc-awk.el --- AWK specific code within cc-mode.
2
3 ;; Copyright (C) 1988,94,96,2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
4 ;; Software Foundation, Inc.
5
6 ;; Author: Alan Mackenzie <acm@muc.de> (originally based on awk-mode.el)
7 ;; Maintainer: FSF
8 ;; Keywords: AWK, cc-mode, unix, languages
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with this program; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;;; Commentary:
28
29 ;; This file contains (most of) the adaptations to cc-mode required for the
30 ;; integration of AWK Mode.
31 ;; It is organised thusly, the sections being separated by page breaks:
32 ;; 1. The AWK Mode syntax table.
33 ;; 2. Regular expressions for analysing AWK code.
34 ;; 3. Indentation calculation stuff ("c-awk-NL-prop text-property").
35 ;; 4. Syntax-table property/font-locking stuff, including the
36 ;; font-lock-keywords setting.
37 ;; 5. The AWK Mode before/after-change-functions.
38 ;; 6. AWK Mode specific versions of commands like beginning-of-defun.
39 ;; The AWK Mode keymap, abbreviation table, and the mode function itself are
40 ;; in cc-mode.el.
41
42 ;;; Code:
43
44 (eval-when-compile
45 (let ((load-path
46 (if (and (boundp 'byte-compile-dest-file)
47 (stringp byte-compile-dest-file))
48 (cons (file-name-directory byte-compile-dest-file) load-path)
49 load-path)))
50 (load "cc-bytecomp" nil t)))
51
52 (cc-require 'cc-defs)
53
54 ;; Silence the byte compiler.
55 (cc-bytecomp-defvar font-lock-mode) ; Checked with boundp before use.
56
57 ;; Some functions in cc-engine that are used below. There's a cyclic
58 ;; dependency so it can't be required here. (Perhaps some functions
59 ;; could be moved to cc-engine to avoid it.)
60 (cc-bytecomp-defun c-backward-token-1)
61 (cc-bytecomp-defun c-beginning-of-statement-1)
62 (cc-bytecomp-defun c-backward-sws)
63
64 (defvar awk-mode-syntax-table
65 (let ((st (make-syntax-table)))
66 (modify-syntax-entry ?\\ "\\" st)
67 (modify-syntax-entry ?\n "> " st)
68 (modify-syntax-entry ?\r "> " st)
69 (modify-syntax-entry ?\f "> " st)
70 (modify-syntax-entry ?\# "< " st)
71 ;; / can delimit regexes or be a division operator. By default we assume
72 ;; that it is a division sign, and fix the regexp operator cases with
73 ;; `font-lock-syntactic-keywords'.
74 (modify-syntax-entry ?/ "." st) ; ACM 2002/4/27.
75 (modify-syntax-entry ?* "." st)
76 (modify-syntax-entry ?+ "." st)
77 (modify-syntax-entry ?- "." st)
78 (modify-syntax-entry ?= "." st)
79 (modify-syntax-entry ?% "." st)
80 (modify-syntax-entry ?< "." st)
81 (modify-syntax-entry ?> "." st)
82 (modify-syntax-entry ?& "." st)
83 (modify-syntax-entry ?| "." st)
84 (modify-syntax-entry ?_ "_" st)
85 (modify-syntax-entry ?\' "." st)
86 st)
87 "Syntax table in use in AWK Mode buffers.")
88
89 \f
90 ;; This section defines regular expressions used in the analysis of AWK code.
91
92 ;; N.B. In the following regexps, an EOL is either \n OR \r. This is because
93 ;; Emacs has in the past used \r to mark hidden lines in some fashion (and
94 ;; maybe still does).
95
96 (defconst c-awk-esc-pair-re "\\\\\\(.\\|\n\\|\r\\|\\'\\)")
97 ;; Matches any escaped (with \) character-pair, including an escaped newline.
98 (defconst c-awk-non-eol-esc-pair-re "\\\\\\(.\\|\\'\\)")
99 ;; Matches any escaped (with \) character-pair, apart from an escaped newline.
100 (defconst c-awk-comment-without-nl "#.*")
101 ;; Matches an AWK comment, not including the terminating NL (if any). Note
102 ;; that the "enclosing" (elisp) regexp must ensure the # is real.
103 (defconst c-awk-nl-or-eob "\\(\n\\|\r\\|\\'\\)")
104 ;; Matches a newline, or the end of buffer.
105
106 ;; "Space" regular expressions.
107 (eval-and-compile
108 (defconst c-awk-escaped-nl "\\\\[\n\r]"))
109 ;; Matches an escaped newline.
110 (defconst c-awk-escaped-nls* (concat "\\(" c-awk-escaped-nl "\\)*"))
111 ;; Matches a possibly empty sequence of escaped newlines. Used in
112 ;; awk-font-lock-keywords.
113 ;; (defconst c-awk-escaped-nls*-with-space*
114 ;; (concat "\\(" c-awk-escaped-nls* "\\|" "[ \t]+" "\\)*"))
115 ;; The above RE was very slow. It's runtime was doubling with each additional
116 ;; space :-( Reformulate it as below:
117 (eval-and-compile
118 (defconst c-awk-escaped-nls*-with-space*
119 (concat "\\(" c-awk-escaped-nl "\\|" "[ \t]" "\\)*")))
120 ;; Matches a possibly empty sequence of escaped newlines with optional
121 ;; interspersed spaces and tabs. Used in awk-font-lock-keywords.
122 (defconst c-awk-blank-or-comment-line-re
123 (concat "[ \t]*\\(#\\|\\\\?$\\)"))
124 ;; Matche (the tail of) a line containing at most either a comment or an
125 ;; escaped EOL.
126
127 ;; REGEXPS FOR "HARMLESS" STRINGS/LINES.
128 (defconst c-awk-harmless-char-re "[^_#/\"\\\\\n\r]")
129 ;; Matches any character but a _, #, /, ", \, or newline. N.B. _" starts a
130 ;; localisation string in gawk 3.1
131 (defconst c-awk-harmless-_ "_\\([^\"]\\|\\'\\)")
132 ;; Matches an underline NOT followed by ".
133 (defconst c-awk-harmless-string*-re
134 (concat "\\(" c-awk-harmless-char-re "\\|" c-awk-esc-pair-re "\\|" c-awk-harmless-_ "\\)*"))
135 ;; Matches a (possibly empty) sequence of chars without unescaped /, ", \,
136 ;; #, or newlines.
137 (defconst c-awk-harmless-string*-here-re
138 (concat "\\=" c-awk-harmless-string*-re))
139 ;; Matches the (possibly empty) sequence of chars without unescaped /, ", \,
140 ;; at point.
141 (defconst c-awk-harmless-line-re
142 (concat c-awk-harmless-string*-re
143 "\\(" c-awk-comment-without-nl "\\)?" c-awk-nl-or-eob))
144 ;; Matches (the tail of) an AWK \"logical\" line not containing an unescaped
145 ;; " or /. "logical" means "possibly containing escaped newlines". A comment
146 ;; is matched as part of the line even if it contains a " or a /. The End of
147 ;; buffer is also an end of line.
148 (defconst c-awk-harmless-lines+-here-re
149 (concat "\\=\\(" c-awk-harmless-line-re "\\)+"))
150 ;; Matches a sequence of (at least one) \"harmless-line\" at point.
151
152
153 ;; REGEXPS FOR AWK STRINGS.
154 (defconst c-awk-string-ch-re "[^\"\\\n\r]")
155 ;; Matches any character which can appear unescaped in a string.
156 (defconst c-awk-string-innards-re
157 (concat "\\(" c-awk-string-ch-re "\\|" c-awk-esc-pair-re "\\)*"))
158 ;; Matches the inside of an AWK string (i.e. without the enclosing quotes).
159 (defconst c-awk-string-without-end-here-re
160 (concat "\\=_?\"" c-awk-string-innards-re))
161 ;; Matches an AWK string at point up to, but not including, any terminator.
162 ;; A gawk 3.1+ string may look like _"localisable string".
163 (defconst c-awk-one-line-possibly-open-string-re
164 (concat "\"\\(" c-awk-string-ch-re "\\|" c-awk-non-eol-esc-pair-re "\\)*"
165 "\\(\"\\|\\\\?$\\|\\'\\)"))
166
167 ;; REGEXPS FOR AWK REGEXPS.
168 (defconst c-awk-regexp-normal-re "[^[/\\\n\r]")
169 ;; Matches any AWK regexp character which doesn't require special analysis.
170 (defconst c-awk-escaped-newlines*-re "\\(\\\\[\n\r]\\)*")
171 ;; Matches a (possibly empty) sequence of escaped newlines.
172
173 ;; NOTE: In what follows, "[asdf]" in a regexp will be called a "character
174 ;; list", and "[:alpha:]" inside a character list will be known as a
175 ;; "character class". These terms for these things vary between regexp
176 ;; descriptions .
177 (defconst c-awk-regexp-char-class-re
178 "\\[:[a-z]+:\\]")
179 ;; Matches a character class spec (e.g. [:alpha:]).
180 (defconst c-awk-regexp-char-list-re
181 (concat "\\[" c-awk-escaped-newlines*-re "^?" c-awk-escaped-newlines*-re "]?"
182 "\\(" c-awk-esc-pair-re "\\|" c-awk-regexp-char-class-re
183 "\\|" "[^]\n\r]" "\\)*" "\\(]\\|$\\)"))
184 ;; Matches a regexp char list, up to (but not including) EOL if the ] is
185 ;; missing.
186 (defconst c-awk-regexp-one-line-possibly-open-char-list-re
187 (concat "\\[\\]?\\(" c-awk-non-eol-esc-pair-re "\\|" "[^]\n\r]" "\\)*"
188 "\\(]\\|\\\\?$\\|\\'\\)"))
189 ;; Matches the head (or all) of a regexp char class, up to (but not
190 ;; including) the first EOL.
191 (defconst c-awk-regexp-innards-re
192 (concat "\\(" c-awk-esc-pair-re "\\|" c-awk-regexp-char-list-re
193 "\\|" c-awk-regexp-normal-re "\\)*"))
194 ;; Matches the inside of an AWK regexp (i.e. without the enclosing /s)
195 (defconst c-awk-regexp-without-end-re
196 (concat "/" c-awk-regexp-innards-re))
197 ;; Matches an AWK regexp up to, but not including, any terminating /.
198 (defconst c-awk-one-line-possibly-open-regexp-re
199 (concat "/\\(" c-awk-non-eol-esc-pair-re
200 "\\|" c-awk-regexp-one-line-possibly-open-char-list-re
201 "\\|" c-awk-regexp-normal-re "\\)*"
202 "\\(/\\|\\\\?$\\|\\'\\)"))
203 ;; Matches as much of the head of an AWK regexp which fits on one line,
204 ;; possibly all of it.
205
206 ;; REGEXPS used for scanning an AWK buffer in order to decide IF A '/' IS A
207 ;; REGEXP OPENER OR A DIVISION SIGN. By "state" in the following is meant
208 ;; whether a '/' at the current position would by a regexp opener or a
209 ;; division sign.
210 (defconst c-awk-neutral-re
211 ; "\\([{}@` \t]\\|\\+\\+\\|--\\|\\\\.\\)+") ; changed, 2003/6/7
212 "\\([{}@` \t]\\|\\+\\+\\|--\\|\\\\.\\)")
213 ;; A "neutral" char(pair). Doesn't change the "state" of a subsequent /.
214 ;; This is space/tab, braces, an auto-increment/decrement operator or an
215 ;; escaped character. Or one of the (illegal) characters @ or `. But NOT an
216 ;; end of line (even if escaped).
217 (defconst c-awk-neutrals*-re
218 (concat "\\(" c-awk-neutral-re "\\)*"))
219 ;; A (possibly empty) string of neutral characters (or character pairs).
220 (defconst c-awk-var-num-ket-re "[]\)0-9a-zA-Z_$.\x80-\xff]+")
221 ;; Matches a char which is a constituent of a variable or number, or a ket
222 ;; (i.e. closing bracKET), round or square. Assume that all characters \x80 to
223 ;; \xff are "letters".
224 (defconst c-awk-div-sign-re
225 (concat c-awk-var-num-ket-re c-awk-neutrals*-re "/"))
226 ;; Will match a piece of AWK buffer ending in / which is a division sign, in
227 ;; a context where an immediate / would be a regexp bracket. It follows a
228 ;; variable or number (with optional intervening "neutral" characters). This
229 ;; will only work when there won't be a preceding " or / before the sought /
230 ;; to foul things up.
231 (defconst c-awk-non-arith-op-bra-re
232 "[[\(&=:!><,?;'~|]")
233 ;; Matches an openeing BRAcket ,round or square, or any operator character
234 ;; apart from +,-,/,*,%. For the purpose at hand (detecting a / which is a
235 ;; regexp bracket) these arith ops are unnecessary and a pain, because of "++"
236 ;; and "--".
237 (defconst c-awk-regexp-sign-re
238 (concat c-awk-non-arith-op-bra-re c-awk-neutrals*-re "/"))
239 ;; Will match a piece of AWK buffer ending in / which is an opening regexp
240 ;; bracket, in a context where an immediate / would be a division sign. This
241 ;; will only work when there won't be a preceding " or / before the sought /
242 ;; to foul things up.
243
244 ;; REGEXPS USED FOR FINDING THE POSITION OF A "virtual semicolon"
245 (defconst c-awk-_-harmless-nonws-char-re "[^#/\"\\\\\n\r \t]")
246 ;;;; NEW VERSION! (which will be restricted to the current line)
247 (defconst c-awk-one-line-non-syn-ws*-re
248 (concat "\\([ \t]*"
249 "\\(" c-awk-_-harmless-nonws-char-re "\\|"
250 c-awk-non-eol-esc-pair-re "\\|"
251 c-awk-one-line-possibly-open-string-re "\\|"
252 c-awk-one-line-possibly-open-regexp-re
253 "\\)"
254 "\\)*"))
255
256 \f
257 ;; ACM, 2002/5/29:
258 ;;
259 ;; The next section of code is about determining whether or not an AWK
260 ;; statement is complete or not. We use this to indent the following line.
261 ;; The determination is pretty straightforward in C, where a statement ends
262 ;; with either a ; or a }. Only "while" really gives any trouble there, since
263 ;; it might be the end of a do-while. In AWK, on the other hand, semicolons
264 ;; are rarely used, and EOLs _usually_ act as "virtual semicolons". In
265 ;; addition, we have the complexity of escaped EOLs. The core of this
266 ;; analysis is in the middle of the function
267 ;; c-awk-calculate-NL-prop-prev-line, about 130 lines lower down.
268 ;;
269 ;; To avoid continually repeating this expensive analysis, we "cache" its
270 ;; result in a text-property, c-awk-NL-prop, whose value for a line is set on
271 ;; the EOL (if any) which terminates that line. Should the property be
272 ;; required for the very last line (which has no EOL), it is calculated as
273 ;; required but not cached. The c-awk-NL-prop property should be thought of
274 ;; as only really valid immediately after a buffer change, not a permanently
275 ;; set property. (By contrast, the syntax-table text properties (set by an
276 ;; after-change function) must be constantly updated for the mode to work
277 ;; properly).
278 ;;
279 ;; This text property is also used for "syntactic whitespace" movement, this
280 ;; being where the distinction between the values '$' and '}' is significant.
281 ;;
282 ;; The valid values for c-awk-NL-prop are:
283 ;;
284 ;; nil The property is not currently set for this line.
285 ;; '#' There is NO statement on this line (at most a comment), and no open
286 ;; statement from a previous line which could have been completed on this
287 ;; line.
288 ;; '{' There is an unfinished statement on this (or a previous) line which
289 ;; doesn't require \s to continue onto another line, e.g. the line ends
290 ;; with {, or the && operator, or "if (condition)". Note that even if the
291 ;; newline is redundantly escaped, it remains a '{' line.
292 ;; '\' There is an escaped newline at the end of this line and this '\' is
293 ;; essential to the syntax of the program. (i.e. if it had been a
294 ;; frivolous \, it would have been ignored and the line been given one of
295 ;; the other property values.)
296 ;; '$' A non-empty statement is terminated on the line by an EOL (a "virtual
297 ;; semicolon"). This might be a content-free line terminating a statement
298 ;; from the preceding (continued) line (which has property \).
299 ;; '}' A statement, being the last thing (aside from ws/comments) is
300 ;; explicitly terminated on this line by a closing brace (or sometimes a
301 ;; semicolon).
302 ;;
303 ;; This set of values has been chosen so that the property's value on a line
304 ;; is completely determined by the contents of the line and the property on
305 ;; the previous line, EXCEPT for where a "while" might be the closing
306 ;; statement of a do-while.
307
308 (defun c-awk-after-if-for-while-condition-p (&optional do-lim)
309 ;; Are we just after the ) in "if/for/while (<condition>)"?
310 ;;
311 ;; Note that the end of the ) in a do .... while (<condition>) doesn't
312 ;; count, since the purpose of this routine is essentially to decide
313 ;; whether to indent the next line.
314 ;;
315 ;; DO-LIM sets a limit on how far back we search for the "do" of a possible
316 ;; do-while.
317 ;;
318 ;; This function might do hidden buffer changes.
319 (and
320 (eq (char-before) ?\))
321 (save-excursion
322 (let ((par-pos (c-safe (scan-lists (point) -1 0))))
323 (when par-pos
324 (goto-char par-pos) ; back over "(...)"
325 (c-backward-token-1) ; BOB isn't a problem.
326 (or (looking-at "\\(if\\|for\\)\\>\\([^_]\\|$\\)")
327 (and (looking-at "while\\>\\([^_]\\|$\\)") ; Ensure this isn't a do-while.
328 (not (eq (c-beginning-of-statement-1 do-lim)
329 'beginning)))))))))
330
331 (defun c-awk-after-function-decl-param-list ()
332 ;; Are we just after the ) in "function foo (bar)" ?
333 ;;
334 ;; This function might do hidden buffer changes.
335 (and (eq (char-before) ?\))
336 (save-excursion
337 (let ((par-pos (c-safe (scan-lists (point) -1 0))))
338 (when par-pos
339 (goto-char par-pos) ; back over "(...)"
340 (c-backward-token-1) ; BOB isn't a problem
341 (and (looking-at "[_a-zA-Z][_a-zA-Z0-9]*\\>")
342 (progn (c-backward-token-1)
343 (looking-at "func\\(tion\\)?\\>"))))))))
344
345 ;; 2002/11/8: FIXME! Check c-backward-token-1/2 for success (0 return code).
346 (defun c-awk-after-continue-token ()
347 ;; Are we just after a token which can be continued onto the next line without
348 ;; a backslash?
349 ;;
350 ;; This function might do hidden buffer changes.
351 (save-excursion
352 (c-backward-token-1) ; FIXME 2002/10/27. What if this fails?
353 (if (and (looking-at "[&|]") (not (bobp)))
354 (backward-char)) ; c-backward-token-1 doesn't do this :-(
355 (looking-at "[,{?:]\\|&&\\|||\\|do\\>\\|else\\>")))
356
357 (defun c-awk-after-rbrace-or-statement-semicolon ()
358 ;; Are we just after a } or a ; which closes a statement?
359 ;; Be careful about ;s in for loop control bits. They don't count!
360 ;;
361 ;; This function might do hidden buffer changes.
362 (or (eq (char-before) ?\})
363 (and
364 (eq (char-before) ?\;)
365 (save-excursion
366 (let ((par-pos (c-safe (scan-lists (point) -1 1))))
367 (when par-pos
368 (goto-char par-pos) ; go back to containing (
369 (not (and (looking-at "(")
370 (c-backward-token-1) ; BOB isn't a problem
371 (looking-at "for\\>")))))))))
372
373 (defun c-awk-back-to-contentful-text-or-NL-prop ()
374 ;; Move back to just after the first found of either (i) an EOL which has
375 ;; the c-awk-NL-prop text-property set; or (ii) non-ws text; or (iii) BOB.
376 ;; We return either the value of c-awk-NL-prop (in case (i)) or nil.
377 ;; Calling functions can best distinguish cases (ii) and (iii) with (bolp).
378 ;;
379 ;; Note that an escaped eol counts as whitespace here.
380 ;;
381 ;; Kludge: If c-backward-syntactic-ws gets stuck at a BOL, it is likely
382 ;; that the previous line contains an unterminated string (without \). In
383 ;; this case, assume that the previous line's c-awk-NL-prop is a $.
384 ;;
385 ;; POINT MUST BE AT THE START OF A LINE when calling this function. This
386 ;; is to ensure that the various backward-comment functions will work
387 ;; properly.
388 ;;
389 ;; This function might do hidden buffer changes.
390 (let ((nl-prop nil)
391 bol-pos bsws-pos) ; starting pos for a backward-syntactic-ws call.
392 (while ;; We are at a BOL here. Go back one line each iteration.
393 (and
394 (not (bobp))
395 (not (setq nl-prop (c-get-char-property (1- (point)) 'c-awk-NL-prop)))
396 (progn (setq bol-pos (c-point 'bopl))
397 (setq bsws-pos (point))
398 ;; N.B. the following function will not go back past an EOL if
399 ;; there is an open string (without \) on the previous line.
400 ;; If we find such, set the c-awk-NL-prop on it, too
401 ;; (2004/3/29).
402 (c-backward-syntactic-ws bol-pos)
403 (or (/= (point) bsws-pos)
404 (progn (setq nl-prop ?\$)
405 (c-put-char-property (1- (point)) 'c-awk-NL-prop nl-prop)
406 nil)))
407 ;; If we had a backslash at EOL, c-backward-syntactic-ws will
408 ;; have gone backwards over it. Check the backslash was "real".
409 (progn
410 (if (looking-at "[ \t]*\\\\+$")
411 (if (progn
412 (end-of-line)
413 (search-backward-regexp
414 "\\(^\\|[^\\]\\)\\(\\\\\\\\\\)*\\\\$" ; ODD number of \s at EOL :-)
415 bol-pos t))
416 (progn (end-of-line) ; escaped EOL.
417 (backward-char)
418 (c-backward-syntactic-ws bol-pos))
419 (end-of-line))) ; The \ at eol is a fake.
420 (bolp))))
421 nl-prop))
422
423 (defun c-awk-calculate-NL-prop-prev-line (&optional do-lim)
424 ;; Calculate and set the value of the c-awk-NL-prop on the immediately
425 ;; preceding EOL. This may also involve doing the same for several
426 ;; preceding EOLs.
427 ;;
428 ;; NOTE that if the property was already set, we return it without
429 ;; recalculation. (This is by accident rather than design.)
430 ;;
431 ;; Return the property which got set (or was already set) on the previous
432 ;; line. Return nil if we hit BOB.
433 ;;
434 ;; See c-awk-after-if-for-while-condition-p for a description of DO-LIM.
435 ;;
436 ;; This function might do hidden buffer changes.
437 (save-excursion
438 (save-match-data
439 (beginning-of-line)
440 (let* ((pos (point))
441 (nl-prop (c-awk-back-to-contentful-text-or-NL-prop)))
442 ;; We are either (1) at a BOL (with nl-prop containing the previous
443 ;; line's c-awk-NL-prop) or (2) after contentful text on a line. At
444 ;; the BOB counts as case (1), so we test next for bolp rather than
445 ;; non-nil nl-prop.
446 (when (not (bolp))
447 (setq nl-prop
448 (cond
449 ;; Incomplete statement which doesn't require escaped EOL?
450 ((or (c-awk-after-if-for-while-condition-p do-lim)
451 (c-awk-after-function-decl-param-list)
452 (c-awk-after-continue-token))
453 ?\{)
454 ;; Escaped EOL (where there's also something to continue)?
455 ((and (looking-at "[ \t]*\\\\$")
456 (not (c-awk-after-rbrace-or-statement-semicolon)))
457 ?\\)
458 ;; A statement was completed on this line. How?
459 ((memq (char-before) '(?\; ?\})) ?\}) ; Real ; or }
460 (t ?\$))) ; A virtual semicolon.
461 (end-of-line)
462 (c-put-char-property (point) 'c-awk-NL-prop nl-prop)
463 (forward-line))
464
465 ;; We are now at a (possibly empty) sequence of content-free lines.
466 ;; Set c-awk-NL-prop on each of these lines's EOL.
467 (while (< (point) pos) ; one content-free line each iteration.
468 (cond ; recalculate nl-prop from previous line's value.
469 ((memq nl-prop '(?\} ?\$ nil)) (setq nl-prop ?\#))
470 ((eq nl-prop ?\\)
471 (if (not (looking-at "[ \t]*\\\\$")) (setq nl-prop ?\$)))
472 ;; ?\# (empty line) and ?\{ (open stmt) don't change.
473 )
474 (forward-line)
475 (c-put-char-property (1- (point)) 'c-awk-NL-prop nl-prop))
476 nl-prop))))
477
478 (defun c-awk-get-NL-prop-prev-line (&optional do-lim)
479 ;; Get the c-awk-NL-prop text-property from the previous line, calculating
480 ;; it if necessary. Return nil iff we're already at BOB.
481 ;; See c-awk-after-if-for-while-condition-p for a description of DO-LIM.
482 ;;
483 ;; This function might do hidden buffer changes.
484 (if (bobp)
485 nil
486 (or (c-get-char-property (c-point 'eopl) 'c-awk-NL-prop)
487 (c-awk-calculate-NL-prop-prev-line do-lim))))
488
489 (defun c-awk-get-NL-prop-cur-line (&optional do-lim)
490 ;; Get the c-awk-NL-prop text-property from the current line, calculating it
491 ;; if necessary. (As a special case, the property doesn't get set on an
492 ;; empty line at EOB (there's no position to set the property on), but the
493 ;; function returns the property value an EOL would have got.)
494 ;;
495 ;; See c-awk-after-if-for-while-condition-p for a description of DO-LIM.
496 ;;
497 ;; This function might do hidden buffer changes.
498 (save-excursion
499 (let ((extra-nl nil))
500 (end-of-line) ; Necessary for the following test to work.
501 (when (= (forward-line) 1) ; if we were on the last line....
502 (insert-char ?\n 1) ; ...artificial eol is needed for comment detection.
503 (setq extra-nl t))
504 (prog1 (c-awk-get-NL-prop-prev-line do-lim)
505 (if extra-nl (delete-backward-char 1))))))
506
507 (defsubst c-awk-prev-line-incomplete-p (&optional do-lim)
508 ;; Is there an incomplete statement at the end of the previous line?
509 ;; See c-awk-after-if-for-while-condition-p for a description of DO-LIM.
510 ;;
511 ;; This function might do hidden buffer changes.
512 (memq (c-awk-get-NL-prop-prev-line do-lim) '(?\\ ?\{)))
513
514 (defsubst c-awk-cur-line-incomplete-p (&optional do-lim)
515 ;; Is there an incomplete statement at the end of the current line?
516 ;; See c-awk-after-if-for-while-condition-p for a description of DO-LIM.
517 ;;
518 ;; This function might do hidden buffer changes.
519 (memq (c-awk-get-NL-prop-cur-line do-lim) '(?\\ ?\{)))
520
521 ;;;; NOTES ON "VIRTUAL SEMICOLONS"
522 ;;;;
523 ;;;; A "virtual semicolon" is what terminates a statement when there is no ;
524 ;;;; or } to do the job. Like point, it is considered to lie _between_ two
525 ;;;; characters. As from mid-March 2004, it is considered to lie just after
526 ;;;; the last non-syntactic-whitespace character on the line; (previously, it
527 ;;;; was considered an attribute of the EOL on the line). A real semicolon
528 ;;;; never counts as a virtual one.
529
530 (defun c-awk-at-vsemi-p (&optional pos)
531 ;; Is there a virtual semicolon at POS (or POINT)?
532 (save-excursion
533 (let (nl-prop
534 (pos-or-point (progn (if pos (goto-char pos)) (point))))
535 (forward-line 0)
536 (search-forward-regexp c-awk-one-line-non-syn-ws*-re)
537 (and (eq (point) pos-or-point)
538 (progn
539 (while (and (eq (setq nl-prop (c-awk-get-NL-prop-cur-line)) ?\\)
540 (eq (forward-line) 0)
541 (looking-at c-awk-blank-or-comment-line-re)))
542 (eq nl-prop ?\$))))))
543
544 (defun c-awk-vsemi-status-unknown-p ()
545 ;; Are we unsure whether there is a virtual semicolon on the current line?
546 ;; DO NOT under any circumstances attempt to calculate this; that would
547 ;; defeat the (admittedly kludgey) purpose of this function, which is to
548 ;; prevent an infinite recursion in c-beginning-of-statement-1 when point
549 ;; starts at a `while' token.
550 (not (c-get-char-property (c-point 'eol) 'c-awk-NL-prop)))
551
552 (defun c-awk-clear-NL-props (beg end)
553 ;; This function is run from before-change-hooks. It clears the
554 ;; c-awk-NL-prop text property from beg to the end of the buffer (The END
555 ;; parameter is ignored). This ensures that the indentation engine will
556 ;; never use stale values for this property.
557 ;;
558 ;; This function might do hidden buffer changes.
559 (save-restriction
560 (widen)
561 (c-clear-char-properties beg (point-max) 'c-awk-NL-prop)))
562
563 (defun c-awk-unstick-NL-prop ()
564 ;; Ensure that the text property c-awk-NL-prop is "non-sticky". Without
565 ;; this, a new newline inserted after an old newline (e.g. by C-j) would
566 ;; inherit any c-awk-NL-prop from the old newline. This would be a Bad
567 ;; Thing. This function's action is required by c-put-char-property.
568 (if (and (boundp 'text-property-default-nonsticky) ; doesn't exist in Xemacs
569 (not (assoc 'c-awk-NL-prop text-property-default-nonsticky)))
570 (setq text-property-default-nonsticky
571 (cons '(c-awk-NL-prop . t) text-property-default-nonsticky))))
572
573 ;; The following is purely a diagnostic command, to be commented out of the
574 ;; final release. ACM, 2002/6/1
575 ;; (defun NL-props ()
576 ;; (interactive)
577 ;; (let (pl-prop cl-prop)
578 ;; (message "Prev-line: %s Cur-line: %s"
579 ;; (if (setq pl-prop (c-get-char-property (c-point 'eopl) 'c-awk-NL-prop))
580 ;; (char-to-string pl-prop)
581 ;; "nil")
582 ;; (if (setq cl-prop (c-get-char-property (c-point 'eol) 'c-awk-NL-prop))
583 ;; (char-to-string cl-prop)
584 ;; "nil"))))
585 ;(define-key awk-mode-map [?\C-c ?\r] 'NL-props) ; commented out, 2002/8/31
586 ;for now. In the byte compiled version, this causes things to crash because
587 ;awk-mode-map isn't yet defined. :-(
588
589 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
590 \f
591 ;; The following section of the code is to do with font-locking. The biggest
592 ;; problem for font-locking is deciding whether a / is a regular expression
593 ;; delimiter or a division sign - determining precisely where strings and
594 ;; regular expressions start and stop is also troublesome. This is the
595 ;; purpose of the function c-awk-set-syntax-table-properties and the myriad
596 ;; elisp regular expressions it uses.
597 ;;
598 ;; Because AWK is a line oriented language, I felt the normal cc-mode strategy
599 ;; for font-locking unterminated strings (i.e. font-locking the buffer up to
600 ;; the next string delimiter as a string) was inappropriate. Instead,
601 ;; unbalanced string/regexp delimiters are given the warning font, being
602 ;; refonted with the string font as soon as the matching delimiter is entered.
603 ;;
604 ;; This requires the region processed by the current font-lock after-change
605 ;; function to have access to the start of the string/regexp, which may be
606 ;; several lines back. The elisp "advice" feature is used on these functions
607 ;; to allow this.
608
609 (defun c-awk-beginning-of-logical-line (&optional pos)
610 ;; Go back to the start of the (apparent) current line (or the start of the
611 ;; line containing POS), returning the buffer position of that point. I.e.,
612 ;; go back to the last line which doesn't have an escaped EOL before it.
613 ;;
614 ;; This is guaranteed to be "safe" for syntactic analysis, i.e. outwith any
615 ;; comment, string or regexp. IT MAY WELL BE that this function should not be
616 ;; executed on a narrowed buffer.
617 ;;
618 ;; This function might do hidden buffer changes.
619 (if pos (goto-char pos))
620 (forward-line 0)
621 (while (and (> (point) (point-min))
622 (eq (char-before (1- (point))) ?\\))
623 (forward-line -1))
624 (point))
625
626 (defun c-awk-end-of-logical-line (&optional pos)
627 ;; Go forward to the end of the (apparent) current logical line (or the end of
628 ;; the line containing POS), returning the buffer position of that point. I.e.,
629 ;; go to the end of the next line which doesn't have an escaped EOL.
630 ;;
631 ;; This is guaranteed to be "safe" for syntactic analysis, i.e. outwith any
632 ;; comment, string or regexp. IT MAY WELL BE that this function should not be
633 ;; executed on a narrowed buffer.
634 ;;
635 ;; This function might do hidden buffer changes.
636 (if pos (goto-char pos))
637 (end-of-line)
638 (while (and (< (point) (point-max))
639 (eq (char-before) ?\\))
640 (end-of-line 2))
641 (point))
642
643 ;; ACM, 2002/02/15: The idea of the next function is to put the "Error font"
644 ;; on strings/regexps which are missing their closing delimiter.
645 ;; 2002/4/28. The default syntax for / has been changed from "string" to
646 ;; "punctuation", to reduce hassle when this character appears within a string
647 ;; or comment.
648
649 (defun c-awk-set-string-regexp-syntax-table-properties (beg end)
650 ;; BEG and END bracket a (possibly unterminated) string or regexp. The
651 ;; opening delimiter is after BEG, and the closing delimiter, IF ANY, is AFTER
652 ;; END. Set the appropriate syntax-table properties on the delimiters and
653 ;; contents of this string/regex.
654 ;;
655 ;; "String" here can also mean a gawk 3.1 "localizable" string which starts
656 ;; with _". In this case, we step over the _ and ignore it; It will get it's
657 ;; font from an entry in awk-font-lock-keywords.
658 ;;
659 ;; If the closing delimiter is missing (i.e., there is an EOL there) set the
660 ;; STRING-FENCE property on the opening " or / and closing EOL.
661 ;;
662 ;; This function does hidden buffer changes.
663 (if (eq (char-after beg) ?_) (setq beg (1+ beg)))
664
665 ;; First put the properties on the delimiters.
666 (cond ((eq end (point-max)) ; string/regexp terminated by EOB
667 (c-put-char-property beg 'syntax-table '(15))) ; (15) = "string fence"
668 ((/= (char-after beg) (char-after end)) ; missing end delimiter
669 (c-put-char-property beg 'syntax-table '(15))
670 (c-put-char-property end 'syntax-table '(15)))
671 ((eq (char-after beg) ?/) ; Properly bracketed regexp
672 (c-put-char-property beg 'syntax-table '(7)) ; (7) = "string"
673 (c-put-char-property end 'syntax-table '(7)))
674 (t)) ; Properly bracketed string: Nothing to do.
675 ;; Now change the properties of any escaped "s in the string to punctuation.
676 (save-excursion
677 (goto-char (1+ beg))
678 (or (eobp)
679 (while (search-forward "\"" end t)
680 (c-put-char-property (1- (point)) 'syntax-table '(1))))))
681
682 (defun c-awk-syntax-tablify-string ()
683 ;; Point is at the opening " or _" of a string. Set the syntax-table
684 ;; properties on this string, leaving point just after the string.
685 ;;
686 ;; The result is nil if a / immediately after the string would be a regexp
687 ;; opener, t if it would be a division sign.
688 ;;
689 ;; This function does hidden buffer changes.
690 (search-forward-regexp c-awk-string-without-end-here-re nil t) ; a (possibly unterminated) string
691 (c-awk-set-string-regexp-syntax-table-properties
692 (match-beginning 0) (match-end 0))
693 (cond ((looking-at "\"")
694 (forward-char)
695 t) ; In AWK, ("15" / 5) gives 3 ;-)
696 ((looking-at "[\n\r]") ; Unterminated string with EOL.
697 (forward-char)
698 nil) ; / on next line would start a regexp
699 (t nil))) ; Unterminated string at EOB
700
701 (defun c-awk-syntax-tablify-/ (anchor anchor-state-/div)
702 ;; Point is at a /. Determine whether this is a division sign or a regexp
703 ;; opener, and if the latter, apply syntax-table properties to the entire
704 ;; regexp. Point is left immediately after the division sign or regexp, as
705 ;; the case may be.
706 ;;
707 ;; ANCHOR-STATE-/DIV identifies whether a / at ANCHOR would have been a
708 ;; division sign (value t) or a regexp opener (value nil). The idea is that
709 ;; we analyse the line from ANCHOR up till point to determine what the / at
710 ;; point is.
711 ;;
712 ;; The result is what ANCHOR-STATE-/DIV (see above) is where point is left.
713 ;;
714 ;; This function might do hidden buffer changes.
715 (let ((/point (point)))
716 (goto-char anchor)
717 ;; Analyse the line to find out what the / is.
718 (if (if anchor-state-/div
719 (not (search-forward-regexp c-awk-regexp-sign-re (1+ /point) t))
720 (search-forward-regexp c-awk-div-sign-re (1+ /point) t))
721 ;; A division sign.
722 (progn (goto-char (1+ /point)) nil)
723 ;; A regexp opener
724 ;; Jump over the regexp innards, setting the match data.
725 (goto-char /point)
726 (search-forward-regexp c-awk-regexp-without-end-re)
727 (c-awk-set-string-regexp-syntax-table-properties
728 (match-beginning 0) (match-end 0))
729 (cond ((looking-at "/") ; Terminating /
730 (forward-char)
731 t)
732 ((looking-at "[\n\r]") ; Incomplete regexp terminated by EOL
733 (forward-char)
734 nil) ; / on next line would start another regexp
735 (t nil))))) ; Unterminated regexp at EOB
736
737 (defun c-awk-set-syntax-table-properties (lim)
738 ;; Scan the buffer text between point and LIM, setting (and clearing) the
739 ;; syntax-table property where necessary.
740 ;;
741 ;; This function is designed to be called as the FUNCTION in a MATCHER in
742 ;; font-lock-syntactic-keywords, and it always returns NIL (to inhibit
743 ;; repeated calls from font-lock: See elisp info page "Search-based
744 ;; Fontification"). It also gets called, with a bit of glue, from
745 ;; after-change-functions when font-lock isn't active. Point is left
746 ;; "undefined" after this function exits. THE BUFFER SHOULD HAVE BEEN
747 ;; WIDENED, AND ANY PRECIOUS MATCH-DATA SAVED BEFORE CALLING THIS ROUTINE.
748 ;;
749 ;; We need to set/clear the syntax-table property on:
750 ;; (i) / - It is set to "string" on a / which is the opening or closing
751 ;; delimiter of the properly terminated regexp (and left unset on a
752 ;; division sign).
753 ;; (ii) the opener of an unterminated string/regexp, we set the property
754 ;; "generic string delimiter" on both the opening " or / and the end of the
755 ;; line where the closing delimiter is missing.
756 ;; (iii) "s inside strings/regexps (these will all be escaped "s). They are
757 ;; given the property "punctuation". This will later allow other routines
758 ;; to use the regexp "\\S\"*" to skip over the string innards.
759 ;; (iv) Inside a comment, all syntax-table properties are cleared.
760 ;;
761 ;; This function does hidden buffer changes.
762 (let (anchor
763 (anchor-state-/div nil)) ; t means a following / would be a div sign.
764 (c-awk-beginning-of-logical-line) ; ACM 2002/7/21. This is probably redundant.
765 (c-clear-char-properties (point) lim 'syntax-table)
766 ;; Once round the next loop for each string, regexp, or div sign
767 (while (progn
768 ;; Skip any "harmless" lines before the next tricky one.
769 (if (search-forward-regexp c-awk-harmless-lines+-here-re nil t)
770 (setq anchor-state-/div nil))
771 (< (point) lim))
772 (setq anchor (point))
773 (search-forward-regexp c-awk-harmless-string*-here-re nil t)
774 ;; We are now looking at either a " or a /.
775 ;; Do our thing on the string, regexp or divsion sign.
776 (setq anchor-state-/div
777 (if (looking-at "_?\"")
778 (c-awk-syntax-tablify-string)
779 (c-awk-syntax-tablify-/ anchor anchor-state-/div))))
780 nil))
781
782
783 ;; ACM, 2002/07/21: Thoughts: We need an AWK Mode after-change function to set
784 ;; the syntax-table properties even when font-lock isn't enabled, for the
785 ;; subsequent use of movement functions, etc. However, it seems that if font
786 ;; lock _is_ enabled, we can always leave it to do the job.
787 (defvar c-awk-old-EOLL 0)
788 (make-variable-buffer-local 'c-awk-old-EOLL)
789 ;; End of logical line following the region which is about to be changed. Set
790 ;; in c-awk-before-change and used in c-awk-after-change.
791
792 (defun c-awk-before-change (beg end)
793 ;; This function is called exclusively from the before-change-functions hook.
794 ;; It does two things: Finds the end of the (logical) line on which END lies,
795 ;; and clears c-awk-NL-prop text properties from this point onwards.
796 ;;
797 ;; This function might do hidden buffer changes.
798 (save-restriction
799 (save-excursion
800 (setq c-awk-old-EOLL (c-awk-end-of-logical-line end))
801 (c-save-buffer-state nil
802 (c-awk-clear-NL-props end (point-max))))))
803
804 (defun c-awk-end-of-change-region (beg end old-len)
805 ;; Find the end of the region which needs to be font-locked after a change.
806 ;; This is the end of the logical line on which the change happened, either
807 ;; as it was before the change, or as it is now, whichever is later.
808 ;; N.B. point is left undefined.
809 ;;
810 ;; This function might do hidden buffer changes.
811 (max (+ (- c-awk-old-EOLL old-len) (- end beg))
812 (c-awk-end-of-logical-line end)))
813
814 (defun c-awk-after-change (beg end old-len)
815 ;; This function is called exclusively as an after-change function in
816 ;; AWK Mode. It ensures that the syntax-table properties get set in the
817 ;; changed region. However, if font-lock is enabled, this function does
818 ;; nothing, since an enabled font-lock after-change function will always do
819 ;; this.
820 ;;
821 ;; This function might do hidden buffer changes.
822 (unless (and (boundp 'font-lock-mode) font-lock-mode)
823 (save-restriction
824 (save-excursion
825 (save-match-data
826 (setq end (c-awk-end-of-change-region beg end old-len))
827 (c-awk-beginning-of-logical-line beg)
828 (c-save-buffer-state nil ; So that read-only status isn't affected.
829 ; (e.g. when first loading the buffer)
830 (c-awk-set-syntax-table-properties end)))))))
831
832 ;; ACM 2002/5/25. When font-locking is invoked by a buffer change, the region
833 ;; specified by the font-lock after-change function must be expanded to
834 ;; include ALL of any string or regexp within the region. The simplest way to
835 ;; do this in practice is to use the beginning/end-of-logical-line functions.
836 ;; Don't overlook the possibility of the buffer change being the "recapturing"
837 ;; of a previously escaped newline.
838 (defmacro c-awk-advise-fl-for-awk-region (function)
839 `(defadvice ,function (before get-awk-region activate)
840 ;; When font-locking an AWK Mode buffer, make sure that any string/regexp is
841 ;; completely font-locked.
842 (when (eq major-mode 'awk-mode)
843 (save-excursion
844 (ad-set-arg 1 (c-awk-end-of-change-region
845 (ad-get-arg 0) ; beg
846 (ad-get-arg 1) ; end
847 (ad-get-arg 2))) ; old-len
848 (ad-set-arg 0 (c-awk-beginning-of-logical-line (ad-get-arg 0)))))))
849
850 (c-awk-advise-fl-for-awk-region font-lock-after-change-function)
851 (c-awk-advise-fl-for-awk-region jit-lock-after-change)
852 (c-awk-advise-fl-for-awk-region lazy-lock-defer-rest-after-change)
853 (c-awk-advise-fl-for-awk-region lazy-lock-defer-line-after-change)
854
855 ;; Awk regexps written with help from Peter Galbraith
856 ;; <galbraith@mixing.qc.dfo.ca>.
857 ;; Take GNU Emacs's 'words out of the following regexp-opts. They dont work
858 ;; in Xemacs 21.4.4. acm 2002/9/19.
859 (defconst awk-font-lock-keywords
860 (eval-when-compile
861 (list
862 ;; Function names.
863 '("^\\s *\\(func\\(tion\\)?\\)\\>\\s *\\(\\sw+\\)?"
864 (1 font-lock-keyword-face) (3 font-lock-function-name-face nil t))
865 ;;
866 ;; Variable names.
867 (cons
868 (concat "\\<"
869 (regexp-opt
870 '("ARGC" "ARGIND" "ARGV" "BINMODE" "CONVFMT" "ENVIRON"
871 "ERRNO" "FIELDWIDTHS" "FILENAME" "FNR" "FS" "IGNORECASE"
872 "LINT" "NF" "NR" "OFMT" "OFS" "ORS" "PROCINFO" "RLENGTH"
873 "RS" "RSTART" "RT" "SUBSEP" "TEXTDOMAIN") t) "\\>")
874 'font-lock-variable-name-face)
875
876 ;; Special file names. (acm, 2002/7/22)
877 ;; The following regexp was created by first evaluating this in GNU Emacs 21.1:
878 ;; (regexp-opt '("/dev/stdin" "/dev/stdout" "/dev/stderr" "/dev/fd/n" "/dev/pid"
879 ;; "/dev/ppid" "/dev/pgrpid" "/dev/user") 'words)
880 ;; , removing the "?:" from each "\\(?:" (for backward compatibility with older Emacsen)
881 ;; , replacing the "n" in "dev/fd/n" with "[0-9]+"
882 ;; , removing the unwanted \\< at the beginning, and finally filling out the
883 ;; regexp so that a " must come before, and either a " or heuristic stuff after.
884 ;; The surrounding quotes are fontified along with the filename, since, semantically,
885 ;; they are an indivisible unit.
886 '("\\(\"/dev/\\(fd/[0-9]+\\|p\\(\\(\\(gr\\)?p\\)?id\\)\\|\
887 std\\(err\\|in\\|out\\)\\|user\\)\\)\\>\
888 \\(\\(\"\\)\\|\\([^\"/\n\r][^\"\n\r]*\\)?$\\)"
889 (1 font-lock-variable-name-face t)
890 (8 font-lock-variable-name-face t t))
891 ;; Do the same (almost) with
892 ;; (regexp-opt '("/inet/tcp/lport/rhost/rport" "/inet/udp/lport/rhost/rport"
893 ;; "/inet/raw/lport/rhost/rport") 'words)
894 ;; This cannot be combined with the above pattern, because the match number
895 ;; for the (optional) closing \" would then exceed 9.
896 '("\\(\"/inet/\\(\\(raw\\|\\(tc\\|ud\\)p\\)/lport/rhost/rport\\)\\)\\>\
897 \\(\\(\"\\)\\|\\([^\"/\n\r][^\"\n\r]*\\)?$\\)"
898 (1 font-lock-variable-name-face t)
899 (6 font-lock-variable-name-face t t))
900
901 ;; Keywords.
902 (concat "\\<"
903 (regexp-opt
904 '("BEGIN" "END" "break" "continue" "delete" "do" "else"
905 "exit" "for" "getline" "if" "in" "next" "nextfile"
906 "return" "while")
907 t) "\\>")
908
909 ;; Builtins.
910 `(eval . (list
911 ,(concat
912 "\\<"
913 (regexp-opt
914 '("adump" "and" "asort" "atan2" "bindtextdomain" "close"
915 "compl" "cos" "dcgettext" "exp" "extension" "fflush"
916 "gensub" "gsub" "index" "int" "length" "log" "lshift"
917 "match" "mktime" "or" "print" "printf" "rand" "rshift"
918 "sin" "split" "sprintf" "sqrt" "srand" "stopme"
919 "strftime" "strtonum" "sub" "substr" "system"
920 "systime" "tolower" "toupper" "xor") t)
921 "\\>")
922 0 c-preprocessor-face-name))
923
924 ;; gawk debugging keywords. (acm, 2002/7/21)
925 ;; (Removed, 2003/6/6. These functions are now fontified as built-ins)
926 ;; (list (concat "\\<" (regexp-opt '("adump" "stopme") t) "\\>")
927 ;; 0 'font-lock-warning-face)
928
929 ;; User defined functions with an apparent spurious space before the
930 ;; opening parenthesis. acm, 2002/5/30.
931 `(,(concat "\\(\\w\\|_\\)" c-awk-escaped-nls* "\\s "
932 c-awk-escaped-nls*-with-space* "(")
933 (0 'font-lock-warning-face))
934
935 ;; Space after \ in what looks like an escaped newline. 2002/5/31
936 '("\\\\\\s +$" 0 font-lock-warning-face t)
937
938 ;; Unbalanced string (") or regexp (/) delimiters. 2002/02/16.
939 '("\\s|" 0 font-lock-warning-face t nil)
940 ;; gawk 3.1 localizable strings ( _"translate me!"). 2002/5/21
941 '("\\(_\\)\\s|" 1 font-lock-warning-face)
942 '("\\(_\\)\\s\"" 1 font-lock-string-face) ; FIXME! not for XEmacs. 2002/10/6
943 ))
944 "Default expressions to highlight in AWK mode.")
945 \f
946 ;; ACM 2002/9/29. Movement functions, e.g. for C-M-a and C-M-e
947
948 ;; The following three regexps differ from those earlier on in cc-awk.el in
949 ;; that they assume the syntax-table properties have been set. They are thus
950 ;; not useful for code which sets these properties.
951 (defconst c-awk-terminated-regexp-or-string-here-re "\\=\\s\"\\S\"*\\s\"")
952 ;; Matches a terminated string/regexp.
953
954 (defconst c-awk-unterminated-regexp-or-string-here-re "\\=\\s|\\S|*$")
955 ;; Matches an unterminated string/regexp, NOT including the eol at the end.
956
957 (defconst c-awk-harmless-pattern-characters*
958 (concat "\\([^{;#/\"\\\\\n\r]\\|" c-awk-esc-pair-re "\\)*"))
959 ;; Matches any "harmless" character in a pattern or an escaped character pair.
960
961 (defun c-awk-at-statement-end-p ()
962 ;; Point is not inside a comment or string. Is it AT the end of a
963 ;; statement? This means immediately after the last non-ws character of the
964 ;; statement. The caller is responsible for widening the buffer, if
965 ;; appropriate.
966 (and (not (bobp))
967 (save-excursion
968 (backward-char)
969 (or (looking-at "[};]")
970 (and (memq (c-awk-get-NL-prop-cur-line) '(?\$ ?\\))
971 (looking-at
972 (eval-when-compile
973 (concat "[^ \t\n\r\\]" c-awk-escaped-nls*-with-space*
974 "[#\n\r]"))))))))
975
976 (defun c-awk-beginning-of-defun (&optional arg)
977 "Move backward to the beginning of an AWK \"defun\". With ARG, do it that
978 many times. Negative arg -N means move forward to Nth following beginning of
979 defun. Returns t unless search stops due to beginning or end of buffer.
980
981 By a \"defun\" is meant either a pattern-action pair or a function. The start
982 of a defun is recognized as code starting at column zero which is neither a
983 closing brace nor a comment nor a continuation of the previous line. Unlike
984 in some other modes, having an opening brace at column 0 is neither necessary
985 nor helpful.
986
987 Note that this function might do hidden buffer changes. See the
988 comment at the start of cc-engine.el for more info."
989 (interactive "p")
990 (save-match-data
991 (c-save-buffer-state ; ensures the buffer is writable.
992 nil
993 (let ((found t)) ; Has the most recent regexp search found b-of-defun?
994 (if (>= arg 0)
995 ;; Go back one defun each time round the following loop. (For +ve arg)
996 (while (and found (> arg 0) (not (eq (point) (point-min))))
997 ;; Go back one "candidate" each time round the next loop until one
998 ;; is genuinely a beginning-of-defun.
999 (while (and (setq found (search-backward-regexp
1000 "^[^#} \t\n\r]" (point-min) 'stop-at-limit))
1001 (not (memq (c-awk-get-NL-prop-prev-line) '(?\$ ?\} ?\#)))))
1002 (setq arg (1- arg)))
1003 ;; The same for a -ve arg.
1004 (if (not (eq (point) (point-max))) (forward-char 1))
1005 (while (and found (< arg 0) (not (eq (point) (point-max)))) ; The same for -ve arg.
1006 (while (and (setq found (search-forward-regexp
1007 "^[^#} \t\n\r]" (point-max) 'stop-at-limit))
1008 (not (memq (c-awk-get-NL-prop-prev-line) '(?\$ ?\} ?\#)))))
1009 (setq arg (1+ arg)))
1010 (if found (goto-char (match-beginning 0))))
1011 (eq arg 0)))))
1012
1013 (defun c-awk-forward-awk-pattern ()
1014 ;; Point is at the start of an AWK pattern (which may be null) or function
1015 ;; declaration. Move to the pattern's end, and past any trailing space or
1016 ;; comment. Typically, we stop at the { which denotes the corresponding AWK
1017 ;; action/function body. Otherwise we stop at the EOL (or ;) marking the
1018 ;; absence of an explicit action.
1019 ;;
1020 ;; This function might do hidden buffer changes.
1021 (while
1022 (progn
1023 (search-forward-regexp c-awk-harmless-pattern-characters*)
1024 (if (looking-at "#") (end-of-line))
1025 (cond
1026 ((eobp) nil)
1027 ((looking-at "[{;]") nil) ; We've finished!
1028 ((eolp)
1029 (if (c-awk-cur-line-incomplete-p)
1030 (forward-line) ; returns non-nil
1031 nil))
1032 ((search-forward-regexp c-awk-terminated-regexp-or-string-here-re nil t))
1033 ((search-forward-regexp c-awk-unterminated-regexp-or-string-here-re nil t))
1034 ((looking-at "/") (forward-char) t))))) ; division sign.
1035
1036 (defun c-awk-end-of-defun1 ()
1037 ;; point is at the start of a "defun". Move to its end. Return end position.
1038 ;;
1039 ;; This function might do hidden buffer changes.
1040 (c-awk-forward-awk-pattern)
1041 (cond
1042 ((looking-at "{") (goto-char (scan-sexps (point) 1)))
1043 ((looking-at ";") (forward-char))
1044 ((eolp))
1045 (t (error "c-awk-end-of-defun1: Failure of c-awk-forward-awk-pattern")))
1046 (point))
1047
1048 (defun c-awk-beginning-of-defun-p ()
1049 ;; Are we already at the beginning of a defun? (i.e. at code in column 0
1050 ;; which isn't a }, and isn't a continuation line of any sort.
1051 ;;
1052 ;; This function might do hidden buffer changes.
1053 (and (looking-at "^[^#} \t\n\r]")
1054 (not (c-awk-prev-line-incomplete-p))))
1055
1056 (defun c-awk-end-of-defun (&optional arg)
1057 "Move forward to next end of defun. With argument, do it that many times.
1058 Negative argument -N means move back to Nth preceding end of defun.
1059
1060 An end of a defun occurs right after the closing brace that matches the
1061 opening brace at its start, or immediately after the AWK pattern when there is
1062 no explicit action; see function `c-awk-beginning-of-defun'.
1063
1064 Note that this function might do hidden buffer changes. See the
1065 comment at the start of cc-engine.el for more info."
1066 (interactive "p")
1067 (or arg (setq arg 1))
1068 (save-match-data
1069 (c-save-buffer-state
1070 nil
1071 (let ((start-point (point)) end-point)
1072 ;; Strategy: (For +ve ARG): If we're not already at a beginning-of-defun,
1073 ;; move backwards to one.
1074 ;; Repeat [(i) move forward to end-of-current-defun (see below);
1075 ;; (ii) If this isn't it, move forward to beginning-of-defun].
1076 ;; We start counting ARG only when step (i) has passed the original point.
1077 (when (> arg 0)
1078 ;; Try to move back to a beginning-of-defun, if not already at one.
1079 (if (not (c-awk-beginning-of-defun-p))
1080 (when (not (c-awk-beginning-of-defun 1)) ; No bo-defun before point.
1081 (goto-char start-point)
1082 (c-awk-beginning-of-defun -1))) ; if this fails, we're at EOB, tough!
1083 ;; Now count forward, one defun at a time
1084 (while (and (not (eobp))
1085 (c-awk-end-of-defun1)
1086 (if (> (point) start-point) (setq arg (1- arg)) t)
1087 (> arg 0)
1088 (c-awk-beginning-of-defun -1))))
1089
1090 (when (< arg 0)
1091 (setq end-point start-point)
1092 (while (and (not (bobp))
1093 (c-awk-beginning-of-defun 1)
1094 (if (< (setq end-point (if (bobp) (point)
1095 (save-excursion (c-awk-end-of-defun1))))
1096 start-point)
1097 (setq arg (1+ arg)) t)
1098 (< arg 0)))
1099 (goto-char (min start-point end-point)))))))
1100
1101 \f
1102 (cc-provide 'cc-awk) ; Changed from 'awk-mode, ACM 2002/5/21
1103
1104 ;;; arch-tag: c4836289-3aa4-4a59-9934-9ccc2bacccf3
1105 ;;; awk-mode.el ends here