* idlwave.el (idlwave-scan-user-lib-files, idlwave-write-paths): Simplify
[bpt/emacs.git] / lisp / progmodes / idlwave.el
1 ;; idlwave.el --- IDL editing mode for GNU Emacs
2
3 ;; Copyright (C) 1999-2013 Free Software Foundation, Inc.
4
5 ;; Authors: J.D. Smith <jdsmith@as.arizona.edu>
6 ;; Carsten Dominik <dominik@science.uva.nl>
7 ;; Chris Chase <chase@att.com>
8 ;; Maintainer: J.D. Smith <jdsmith@as.arizona.edu>
9 ;; Version: 6.1.22
10 ;; Keywords: languages
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26
27 ;;; Commentary:
28
29 ;; IDLWAVE enables feature-rich development and interaction with IDL,
30 ;; the Interactive Data Language. It provides a compelling,
31 ;; full-featured alternative to the IDLDE development environment
32 ;; bundled with IDL.
33
34 ;; In the remotely distant past, based on pascal.el, though bears
35 ;; little resemblance to it now.
36 ;;
37 ;; Incorporates many ideas, such as abbrevs, action routines, and
38 ;; continuation line indenting, from wave.el.
39 ;; wave.el original written by Lubos Pochman, Precision Visuals, Boulder.
40 ;;
41 ;; See the mode description ("C-h m" in idlwave-mode or "C-h f idlwave-mode")
42 ;; for features, key bindings, and info.
43 ;; Also, Info format documentation is available with `M-x idlwave-info'
44 ;;
45 ;; New versions of IDLWAVE, documentation, and more information
46 ;; available from:
47 ;; http://idlwave.org
48 ;;
49 ;; INSTALLATION
50 ;; ============
51 ;;
52 ;; Follow the instructions in the INSTALL file of the distribution.
53 ;; In short, put this file on your load path and add the following
54 ;; lines to your init file:
55 ;;
56 ;; (autoload 'idlwave-mode "idlwave" "IDLWAVE Mode" t)
57 ;; (autoload 'idlwave-shell "idlw-shell" "IDLWAVE Shell" t)
58 ;; (setq auto-mode-alist (cons '("\\.pro\\'" . idlwave-mode) auto-mode-alist))
59 ;;
60 ;;
61 ;; SOURCE
62 ;; ======
63 ;;
64 ;; The newest version of this file is available from the maintainer's
65 ;; Webpage:
66 ;;
67 ;; http://idlwave.org
68 ;;
69 ;; DOCUMENTATION
70 ;; =============
71 ;;
72 ;; IDLWAVE is documented online in info format. A printable version
73 ;; of the documentation is available from the maintainers webpage (see
74 ;; SOURCE).
75 ;;
76 ;;
77 ;; ACKNOWLEDGMENTS
78 ;; ===============
79 ;;
80 ;; Thanks to the following people for their contributions and comments:
81 ;;
82 ;; Ulrik Dickow <dickow_at_nbi.dk>
83 ;; Eric E. Dors <edors_at_lanl.gov>
84 ;; Stein Vidar H. Haugan <s.v.h.haugan_at_astro.uio.no>
85 ;; David Huenemoerder <dph_at_space.mit.edu>
86 ;; Kevin Ivory <Kevin.Ivory_at_linmpi.mpg.de>
87 ;; Dick Jackson <dick_at_d-jackson.com>
88 ;; Xuyong Liu <liu_at_stsci.edu>
89 ;; Simon Marshall <Simon.Marshall_at_esrin.esa.it>
90 ;; Laurent Mugnier <mugnier_at_onera.fr>
91 ;; Lubos Pochman <lubos_at_rsinc.com>
92 ;; Bob Portmann <portmann_at_al.noaa.gov>
93 ;; Patrick M. Ryan <pat_at_jaameri.gsfc.nasa.gov>
94 ;; Marty Ryba <ryba_at_ll.mit.edu>
95 ;; Paul Sorenson <aardvark62_at_msn.com>
96 ;; Phil Sterne <sterne_at_dublin.llnl.gov>
97 ;; Phil Williams <williams_at_irc.chmcc.org>
98 ;;
99 ;; CUSTOMIZATION:
100 ;; =============
101 ;;
102 ;; IDLWAVE has extensive customize support; to learn about the
103 ;; variables which control the mode's behavior, use `M-x
104 ;; idlwave-customize'.
105 ;;
106 ;; You can set your own preferred values with Customize, or with Lisp
107 ;; code in .emacs. For an example of what to put into .emacs, check
108 ;; the TexInfo documentation or see a complete .emacs available at the
109 ;; website.
110 ;;
111 ;; KNOWN PROBLEMS:
112 ;; ==============
113 ;;
114 ;; IDLWAVE support for the IDL-derived PV-WAVE CL language of Visual
115 ;; Numerics, Inc. is growing less and less complete as the two
116 ;; languages grow increasingly apart. The mode probably shouldn't
117 ;; even have "WAVE" in its title, but it's catchy, and was required
118 ;; to avoid conflict with the CORBA idl.el mode. Caveat WAVEor.
119 ;;
120 ;; Moving the point backwards in conjunction with abbrev expansion
121 ;; does not work as I would like it, but this is a problem with
122 ;; emacs abbrev expansion done by the self-insert-command. It ends
123 ;; up inserting the character that expanded the abbrev after moving
124 ;; point backward, e.g., "\cl" expanded with a space becomes
125 ;; "LONG( )" with point before the close paren. This is solved by
126 ;; using a temporary function in `post-command-hook' - not pretty,
127 ;; but it works.
128 ;;
129 ;; Tabs and spaces are treated equally as whitespace when filling a
130 ;; comment paragraph. To accomplish this, tabs are permanently
131 ;; replaced by spaces in the text surrounding the paragraph, which
132 ;; may be an undesirable side-effect. Replacing tabs with spaces is
133 ;; limited to comments only and occurs only when a comment
134 ;; paragraph is filled via `idlwave-fill-paragraph'.
135 ;;
136 ;; Muti-statement lines (using "&") on block begin and end lines can
137 ;; ruin the formatting. For example, multiple end statements on a
138 ;; line: endif & endif. Using "&" outside of block begin/end lines
139 ;; should be okay.
140 ;;
141 ;; Determining the expression at point for printing and other
142 ;; examination commands is somewhat rough: currently only fairly
143 ;; simple entities are found. You can always drag-select or examine
144 ;; a pre-selected region.
145 ;;
146 ;; When forcing completion of method keywords, the initial
147 ;; query for a method has multiple entries for some methods. Would
148 ;; be too difficult to fix this hardly used case.
149 ;;
150 \f
151 ;;; Code:
152
153
154 (eval-when-compile (require 'cl))
155 (require 'idlw-help)
156
157 ;; For XEmacs
158 (unless (fboundp 'line-beginning-position)
159 (defalias 'line-beginning-position 'point-at-bol))
160 (unless (fboundp 'line-end-position)
161 (defalias 'line-end-position 'point-at-eol))
162 (unless (fboundp 'char-valid-p)
163 (defalias 'char-valid-p 'characterp))
164 (unless (fboundp 'match-string-no-properties)
165 (defalias 'match-string-no-properties 'match-string))
166
167 (if (not (fboundp 'cancel-timer))
168 (condition-case nil
169 (require 'timer)
170 (error nil)))
171
172 (declare-function idlwave-shell-get-path-info "idlw-shell")
173 (declare-function idlwave-shell-temp-file "idlw-shell")
174 (declare-function idlwave-shell-is-running "idlw-shell")
175 (declare-function widget-value "wid-edit" (widget))
176 (declare-function comint-dynamic-complete-filename "comint" ())
177
178 (defgroup idlwave nil
179 "Major mode for editing IDL .pro files."
180 :tag "IDLWAVE"
181 :link '(url-link :tag "Home Page"
182 "http://idlwave.org")
183 :link '(emacs-commentary-link :tag "Commentary in idlw-shell.el"
184 "idlw-shell.el")
185 :link '(emacs-commentary-link :tag "Commentary in idlwave.el" "idlwave.el")
186 :link '(custom-manual "(idlwave)Top")
187 :prefix "idlwave"
188 :group 'languages)
189
190
191 ;;; Variables for indentation behavior ---------------------------------------
192
193 (defgroup idlwave-code-formatting nil
194 "Indentation and formatting options for IDLWAVE mode."
195 :group 'idlwave)
196
197 (defcustom idlwave-main-block-indent 2
198 "Extra indentation for the main block of code.
199 That is the block between the FUNCTION/PRO statement and the END
200 statement for that program unit."
201 :group 'idlwave-code-formatting
202 :type 'integer)
203
204 (defcustom idlwave-block-indent 3
205 "Extra indentation applied to block lines.
206 If you change this, you probably also want to change `idlwave-end-offset'."
207 :group 'idlwave-code-formatting
208 :type 'integer)
209
210 (defcustom idlwave-end-offset -3
211 "Extra indentation applied to block END lines.
212 A value equal to negative `idlwave-block-indent' will make END lines
213 line up with the block BEGIN lines."
214 :group 'idlwave-code-formatting
215 :type 'integer)
216
217 (defcustom idlwave-continuation-indent 3
218 "Extra indentation applied to continuation lines.
219 This extra offset applies to the first of a set of continuation lines.
220 The following lines receive the same indentation as the first."
221 :group 'idlwave-code-formatting
222 :type 'integer)
223
224 (defcustom idlwave-max-extra-continuation-indent 40
225 "Maximum additional indentation for special continuation indent.
226 Several special indentations are tried to help line up continuation
227 lines in routine calls or definitions, other statements with
228 parentheses, or assignment statements. This variable specifies a
229 maximum amount by which this special indentation can exceed the
230 standard continuation indentation, otherwise defaulting to a fixed
231 offset. Set to 0 to effectively disable all special continuation
232 indentation, or to a large number (like 100) to enable it in all
233 cases. See also `idlwave-indent-to-open-paren', which can override
234 this variable."
235 :group 'idlwave-code-formatting
236 :type 'integer)
237
238 (defcustom idlwave-indent-to-open-paren t
239 "Non-nil means, indent continuation lines to innermost open parenthesis.
240 This indentation occurs even if otherwise disallowed by
241 `idlwave-max-extra-continuation-indent'. Matching parens and the
242 interleaving args are lined up. Example:
243
244 x = function_a(function_b(function_c( a, b, [1,2,3, $
245 4,5,6 $
246 ], $
247 c, d $
248 )))
249
250 When this variable is nil, paren alignment may still occur, based on
251 the value of `idlwave-max-extra-continuation-indent', which, if zero,
252 would yield:
253
254 x = function_a(function_b(function_c( a, b, [1,2,3, $
255 4,5,6 $
256 ], $
257 c, d $
258 )))"
259 :group 'idlwave-code-formatting
260 :type 'boolean)
261
262 (defcustom idlwave-indent-parens-nested nil
263 "Non-nil means, indent continuation lines with parens by nesting
264 lines at consecutively deeper levels."
265 :group 'idlwave-code-formatting
266 :type 'boolean)
267
268
269 (defcustom idlwave-hanging-indent t
270 "If set non-nil then comment paragraphs are indented under the
271 hanging indent given by `idlwave-hang-indent-regexp' match in the first line
272 of the paragraph."
273 :group 'idlwave-code-formatting
274 :type 'boolean)
275
276 (defcustom idlwave-hang-indent-regexp "- "
277 "Regular expression matching the position of the hanging indent
278 in the first line of a comment paragraph. The size of the indent
279 extends to the end of the match for the regular expression."
280 :group 'idlwave-code-formatting
281 :type 'regexp)
282
283 (defcustom idlwave-use-last-hang-indent nil
284 "If non-nil then use last match on line for `idlwave-indent-regexp'."
285 :group 'idlwave-code-formatting
286 :type 'boolean)
287
288 (defcustom idlwave-fill-comment-line-only t
289 "If non-nil then auto fill will only operate on comment lines."
290 :group 'idlwave-code-formatting
291 :type 'boolean)
292
293 (defcustom idlwave-auto-fill-split-string t
294 "If non-nil then auto fill will split strings with the IDL `+' operator.
295 When the line end falls within a string, string concatenation with the
296 '+' operator will be used to distribute a long string over lines.
297 If nil and a string is split then a terminal beep and warning are issued.
298
299 This variable is ignored when `idlwave-fill-comment-line-only' is
300 non-nil, since in this case code is not auto-filled."
301 :group 'idlwave-code-formatting
302 :type 'boolean)
303
304 (defcustom idlwave-split-line-string t
305 "If non-nil then `idlwave-split-line' will split strings with `+'.
306 When the splitting point of a line falls inside a string, split the string
307 using the `+' string concatenation operator. If nil and a string is
308 split then a terminal beep and warning are issued."
309 :group 'idlwave-code-formatting
310 :type 'boolean)
311
312 (defcustom idlwave-no-change-comment ";;;"
313 "The indentation of a comment that starts with this regular
314 expression will not be changed. Note that the indentation of a comment
315 at the beginning of a line is never changed."
316 :group 'idlwave-code-formatting
317 :type 'string)
318
319 (defcustom idlwave-begin-line-comment nil
320 "A comment anchored at the beginning of line.
321 A comment matching this regular expression will not have its
322 indentation changed. If nil the default is \"^;\", i.e., any line
323 beginning with a \";\". Expressions for comments at the beginning of
324 the line should begin with \"^\"."
325 :group 'idlwave-code-formatting
326 :type '(choice (const :tag "Any line beginning with `;'" nil)
327 'regexp))
328
329 (defcustom idlwave-code-comment ";;[^;]"
330 "A comment that starts with this regular expression on a line by
331 itself is indented as if it is a part of IDL code. As a result if
332 the comment is not preceded by whitespace it is unchanged."
333 :group 'idlwave-code-formatting
334 :type 'regexp)
335
336 ;; Comments not matching any of the above will be indented as a
337 ;; right-margin comment, i.e., to a minimum of `comment-column'.
338
339 ;;; Routine Info and Completion ---------------------------------------
340
341 (defgroup idlwave-routine-info nil
342 "Routine Info options for IDLWAVE mode."
343 :group 'idlwave)
344
345 (defcustom idlwave-use-library-catalogs t
346 "Non-nil means search the IDL path for library catalog files.
347
348 These files, named .idlwave_catalog, document routine information for
349 individual directories and libraries of IDL .pro files. Many popular
350 libraries come with catalog files by default, so leaving this on is
351 usually a good idea."
352 :group 'idlwave-routine-info
353 :type 'boolean)
354
355 (defcustom idlwave-init-rinfo-when-idle-after 10
356 "Seconds of idle time before routine info is automatically initialized.
357 Initializing the routine info can take a long time, in particular if a
358 large number of library catalogs are involved. When Emacs is idle for
359 more than the number of seconds specified by this variable, it starts
360 the initialization. The process is split into five steps, in order to
361 keep work interruption as short as possible. If one of the steps
362 finishes, and no user input has arrived in the mean time, initialization
363 proceeds immediately to the next step. A good value for this variable
364 is about 1/3 of the time initialization take in your setup. So if you
365 have a fast machine and no problems with a slow network connection,
366 don't hesitate to set this to 2 seconds. A value of 0 means, don't
367 initialize automatically, but instead wait until routine information is
368 needed, and initialize then."
369 :group 'idlwave-routine-info
370 :type 'number)
371
372 (defcustom idlwave-scan-all-buffers-for-routine-info t
373 "Non-nil means, scan buffers for IDL programs when updating info.
374 The scanning is done by the command `idlwave-update-routine-info'.
375 The following values are allowed:
376
377 nil Don't scan any buffers.
378 t Scan all `idlwave-mode' buffers in the current editing session.
379 current Scan only the current buffer, but no other buffers."
380 :group 'idlwave-routine-info
381 :type '(choice
382 (const :tag "No buffer" nil)
383 (const :tag "All buffers" t)
384 (const :tag "Current buffer only" 'current)))
385
386 (defcustom idlwave-query-shell-for-routine-info t
387 "Non-nil means query the shell for info about compiled routines.
388 Querying the shell is useful to get information about compiled modules,
389 and it is turned on by default. However, when you have a complete library
390 scan, this is not necessary."
391 :group 'idlwave-routine-info
392 :type 'boolean)
393
394 (defcustom idlwave-auto-routine-info-updates
395 '(find-file save-buffer kill-buffer compile-buffer)
396 "Controls under what circumstances routine info is updated automatically.
397 Possible values:
398 nil Never
399 t All available
400 \(...) A list of circumstances. Allowed members are:
401 find-file Add info for new IDLWAVE buffers.
402 save-buffer Update buffer info when buffer is saved
403 kill-buffer Remove buffer info when buffer gets killed
404 compile-buffer Update shell info after `idlwave-shell-save-and...'"
405 :group 'idlwave-routine-info
406 :type '(choice
407 (const :tag "Never" nil)
408 (const :tag "As often as possible" t)
409 (set :tag "Checklist" :greedy t
410 (const :tag "When visiting a file" find-file)
411 (const :tag "When saving a buffer" save-buffer)
412 (const :tag "After a buffer was killed" kill-buffer)
413 (const :tag "After a buffer was compiled successfully, update shell info" compile-buffer))))
414
415 (defcustom idlwave-rinfo-max-source-lines 5
416 "Maximum number of source files displayed in the Routine Info window.
417 When an integer, it is the maximum number of source files displayed.
418 A value of t means to show all source files."
419 :group 'idlwave-routine-info
420 :type 'integer)
421
422 (defcustom idlwave-library-path nil
423 "Library path for Windows and MacOS (OS9). Not needed under UNIX.
424 When selecting the directories to scan for IDL user catalog routine
425 info, IDLWAVE can, under UNIX, query the shell for the exact search
426 path \(the value of !PATH). However, under Windows and MacOS
427 \(pre-OSX), the IDLWAVE shell does not work. In this case, this
428 variable can be set to specify the paths where IDLWAVE can find PRO
429 files. The shell will only be asked for a list of paths when this
430 variable is nil. The value is a list of directories. A directory
431 preceded by a `+' will be searched recursively. If you set this
432 variable on a UNIX system, the shell will not be queried. See also
433 `idlwave-system-directory'."
434 :group 'idlwave-routine-info
435 :type '(repeat (directory)))
436
437 (defcustom idlwave-system-directory ""
438 "The IDL system directory for Windows and MacOS. Not needed under
439 UNIX. Set this to the value of the `!DIR' system variable in IDL.
440 IDLWAVE uses this to find out which of the library routines belong to
441 the official system library. All files inside the `lib' subdirectory
442 are considered system library files - so don't install private stuff
443 in this directory. On UNIX systems, IDLWAVE queries the shell for the
444 value of `!DIR'. See also `idlwave-library-path'."
445 :group 'idlwave-routine-info
446 :type 'directory)
447
448 ;; Configuration files
449 (defcustom idlwave-config-directory
450 (locate-user-emacs-file "idlwave" ".idlwave")
451 "Directory for configuration files and user-library catalog."
452 :group 'idlwave-routine-info
453 :type 'file)
454
455 (defvar idlwave-user-catalog-file "idlusercat.el")
456 (defvar idlwave-xml-system-rinfo-converted-file "idl_xml_rinfo.el")
457 (defvar idlwave-path-file "idlpath.el")
458
459 (defcustom idlwave-special-lib-alist nil
460 "Alist of regular expressions matching special library directories.
461 When listing routine source locations, IDLWAVE gives a short hint where
462 the file defining the routine is located. By default it lists `SystemLib'
463 for routines in the system library `!DIR/lib' and `Library' for anything
464 else. This variable can define additional types. The car of each entry
465 is a regular expression matching the file name (they normally will match
466 on the path). The cdr is the string to be used as identifier. Max 10
467 chars are allowed."
468 :group 'idlwave-routine-info
469 :type '(repeat
470 (cons regexp string)))
471
472 (defcustom idlwave-auto-write-paths t
473 "Write out path (!PATH) and system directory (!DIR) info automatically.
474 Path info is needed to locate library catalog files. If non-nil,
475 whenever the path-list changes as a result of shell-query, etc., it is
476 written to file. Otherwise, the menu option \"Write Paths\" can be
477 used to force a write."
478 :group 'idlwave-routine-info
479 :type 'boolean)
480
481 (defgroup idlwave-completion nil
482 "Completion options for IDLWAVE mode."
483 :prefix "idlwave"
484 :group 'idlwave)
485
486 (eval-and-compile
487 (defconst idlwave-tmp
488 '(choice :tag "by applying the function"
489 (const upcase)
490 (const downcase)
491 (const capitalize)
492 (const preserve)
493 (symbol :tag "Other"))))
494
495 (defcustom idlwave-completion-case '((routine . upcase)
496 (keyword . upcase)
497 (class . preserve)
498 (method . preserve))
499 "Association list setting the case of completed words.
500
501 This variable determines the case (UPPER/lower/Capitalized...) of
502 words inserted into the buffer by completion. The preferred case can
503 be specified separately for routine names, keywords, classes and
504 methods.
505 This alist should therefore have entries for `routine' (normal
506 functions and procedures, i.e. non-methods), `keyword', `class', and
507 `method'. Plausible values are
508
509 upcase upcase whole word, like `BOX_CURSOR'
510 downcase downcase whole word, like `read_ppm'
511 capitalize capitalize each part, like `Widget_Control'
512 preserve preserve case as is, like `IDLgrView'
513
514 The value can also be any Emacs Lisp function which transforms the
515 case of characters in a string.
516
517 A value of `preserve' means that the case of the completed word is
518 identical to the way it was written in the definition statement of the
519 routine. This was implemented to allow for mixed-case completion, in
520 particular of object classes and methods.
521 If a completable word is defined in multiple locations, the meaning of
522 `preserve' is not unique since the different definitions might be
523 cased differently. Therefore IDLWAVE always takes the case of the
524 *first* definition it encounters during routine info collection and
525 uses the case derived from it consistently.
526
527 Note that a lowercase-only string in the buffer will always be completed in
528 lower case (but see the variable `idlwave-completion-force-default-case').
529
530 After changing this variable, you need to either restart Emacs or press
531 `C-u C-c C-i' to update the internal lists."
532 :group 'idlwave-completion
533 :type `(repeat
534 (cons (symbol :tag "Derive completion case for")
535 ,idlwave-tmp)))
536
537 (defcustom idlwave-completion-force-default-case nil
538 "Non-nil means, completion will always honor `idlwave-completion-case'.
539 When nil, only the completion of a mixed case or upper case string
540 will honor the default settings in `idlwave-completion-case', while
541 the completion of lower case strings will be completed entirely in
542 lower case."
543 :group 'idlwave-completion
544 :type 'boolean)
545
546 (defcustom idlwave-complete-empty-string-as-lower-case nil
547 "Non-nil means, the empty string is considered downcase for completion.
548 The case of what is already in the buffer determines the case of completions.
549 When this variable is non-nil, the empty string is considered to be downcase.
550 Completing on the empty string then offers downcase versions of the possible
551 completions."
552 :group 'idlwave-completion
553 :type 'boolean)
554
555 (defcustom idlwave-buffer-case-takes-precedence nil
556 "Non-nil means, the case of tokens in buffers dominates over system stuff.
557 To make this possible, we need to re-case everything each time we update
558 the routine info from the buffers. This is slow.
559 The default is to consider the case given in the system and library files
560 first which makes updating much faster."
561 :group 'idlwave-completion
562 :type 'boolean)
563
564 (defcustom idlwave-highlight-help-links-in-completion t
565 "Non-nil means, highlight completions for which system help is available.
566 Help can then be accessed with mouse-3.
567 This option is only effective when the online help system is installed."
568 :group 'idlwave-completion
569 :type 'boolean)
570
571 (defcustom idlwave-support-inheritance t
572 "Non-nil means, treat inheritance with completion, online help etc.
573 When nil, IDLWAVE only knows about the native methods and tags of a class,
574 not about inherited ones."
575 :group 'idlwave-routine-info
576 :type 'boolean)
577
578 (defcustom idlwave-keyword-class-inheritance '("^[gs]etproperty$" "^init$")
579 "List of regular expressions for class-driven keyword inheritance.
580 Keyword inheritance is often tied to class inheritance by \"chaining\"
581 up the class tree. While it cannot be assumed that the presence of an
582 _EXTRA or _REF_EXTRA symbol guarantees such chaining will occur, for
583 certain methods this assumption is almost always true. The methods
584 for which to assume this can be set here."
585 :group 'idlwave-routine-info
586 :type '(repeat (regexp :tag "Match method:")))
587
588
589 (defcustom idlwave-completion-show-classes 1
590 "Number of classes to show when completing object methods and keywords.
591 When completing methods or keywords for an object with unknown class,
592 the *Completions* buffer will show the valid classes for each completion
593 like this:
594
595 MyMethod <Class1,Class2,Class3>
596
597 The value of this variable may be nil to inhibit display, or an integer to
598 indicate the maximum number of classes to display.
599
600 On XEmacs, a full list of classes will also be placed into a `help-echo'
601 property on the completion items, so that the list of classes for the current
602 item is displayed in the echo area. If the value of this variable is a
603 negative integer, the `help-echo' property will be suppressed."
604 :group 'idlwave-completion
605 :type '(choice (const :tag "Don't show" nil)
606 (integer :tag "Number of classes shown" 1)))
607
608 (defcustom idlwave-completion-fontify-classes t
609 "Non-nil means, fontify the classes in completions buffer.
610 This makes it easier to distinguish the completion items from the extra
611 class info listed. See `idlwave-completion-show-classes'."
612 :group 'idlwave-completion
613 :type 'boolean)
614
615 (defcustom idlwave-query-class '((method-default . nil)
616 (keyword-default . nil))
617 "Association list governing specification of object classes for completion.
618
619 When IDLWAVE tries to complete object-oriented methods, it usually
620 cannot determine the class of a given object from context. In order
621 to provide the user with a correct list of methods or keywords, it
622 needs to determine the appropriate class. IDLWAVE has two ways of
623 doing this (well, three ways if you count the shell... see
624 `idlwave-shell-query-for-class'):
625
626 1. Combine the items of all available classes which contain this
627 method for the purpose of completion. So when completing a method,
628 all methods of all known classes are available, and when completing
629 a keyword, all keywords allowed for this method in any class are
630 shown. This behavior is very much like normal completion and is
631 therefore the default. It works much better than one might think -
632 only for the INIT, GETPROPERTY and SETPROPERTY the keyword lists
633 become uncomfortably long. See also
634 `idlwave-completion-show-classes'.
635
636 2. The second possibility is to ask the user on each occasion. To
637 make this less interruptive, IDLWAVE can store the class as a text
638 property on the object operator `->'. For a given object in the
639 source code, class selection will then be needed only once
640 - for example to complete the method. Keywords to the method can
641 then be completed directly, because the class is already known.
642 You will have to turn on the storage of the selected class
643 explicitly with the variable `idlwave-store-inquired-class'.
644
645 This variable allows you to configure IDLWAVE's method and
646 method-keyword completion behavior. Its value is an alist, which
647 should contain at least two elements: (method-default . VALUE) and
648 \(keyword-default . VALUE), where VALUE is either t or nil. These
649 specify if the class should be found during method and keyword
650 completion, respectively.
651
652 The alist may have additional entries specifying exceptions from the
653 keyword completion rule for specific methods, like INIT or
654 GETPROPERTY. In order to turn on class specification for the INIT
655 method, add an entry (\"INIT\" . t). The method name must be ALL-CAPS."
656 :group 'idlwave-completion
657 :type '(list
658 (cons (const method-default)
659 (boolean :tag "Determine class when completing METHODS "))
660 (cons (const keyword-default)
661 (boolean :tag "Determine class when completing KEYWORDS "))
662 (repeat
663 :tag "Exceptions to defaults"
664 :inline t
665 (cons (string :tag "MODULE" :value "")
666 (boolean :tag "Determine class for this method")))))
667
668 (defcustom idlwave-store-inquired-class t
669 "Non-nil means, store class of a method call as text property on `->'.
670 IDLWAVE sometimes has to ask the user for the class associated with a
671 particular object method call. This happens during the commands
672 `idlwave-routine-info' and `idlwave-complete', depending upon the
673 value of the variable `idlwave-query-class'.
674
675 When you specify a class, this information can be stored as a text
676 property on the `->' arrow in the source code, so that during the same
677 editing session, IDLWAVE will not have to ask again. When this
678 variable is non-nil, IDLWAVE will store and reuse the class information.
679 The class stored can be checked and removed with `\\[idlwave-routine-info]'
680 on the arrow.
681
682 The default of this variable is nil, since the result of commands then
683 is more predictable. However, if you know what you are doing, it can
684 be nice to turn this on.
685
686 An arrow which knows the class will be highlighted with
687 `idlwave-class-arrow-face'. The command \\[idlwave-routine-info]
688 displays (with prefix arg: deletes) the class stored on the arrow
689 at point."
690 :group 'idlwave-completion
691 :type 'boolean)
692
693 (defcustom idlwave-class-arrow-face 'bold
694 "Face to highlight object operator arrows `->' which carry a class property.
695 When IDLWAVE stores a class name as text property on an object arrow
696 \(see variable `idlwave-store-inquired-class', it highlights the arrow
697 with this font in order to remind the user that this arrow is special."
698 :group 'idlwave-completion
699 :type 'symbol)
700
701 (defcustom idlwave-resize-routine-help-window t
702 "Non-nil means, resize the Routine-info *Help* window to fit the content."
703 :group 'idlwave-completion
704 :type 'boolean)
705
706 (defcustom idlwave-keyword-completion-adds-equal t
707 "Non-nil means, completion automatically adds `=' after completed keywords."
708 :group 'idlwave-completion
709 :type 'boolean)
710
711 (defcustom idlwave-function-completion-adds-paren t
712 "Non-nil means, completion automatically adds `(' after completed function.
713 nil means, don't add anything.
714 A value of `2' means, also add the closing parenthesis and position cursor
715 between the two."
716 :group 'idlwave-completion
717 :type '(choice (const :tag "Nothing" nil)
718 (const :tag "(" t)
719 (const :tag "()" 2)))
720
721 (defcustom idlwave-completion-restore-window-configuration t
722 "Non-nil means, try to restore the window configuration after completion.
723 When completion is not unique, Emacs displays a list of completions.
724 This messes up your window configuration. With this variable set, IDLWAVE
725 restores the old configuration after successful completion."
726 :group 'idlwave-completion
727 :type 'boolean)
728
729 ;;; Variables for abbrev and action behavior -----------------------------
730
731 (defgroup idlwave-abbrev-and-indent-action nil
732 "IDLWAVE performs actions when expanding abbreviations or indenting lines.
733 The variables in this group govern this."
734 :group 'idlwave)
735
736 (defcustom idlwave-do-actions nil
737 "Non-nil means performs actions when indenting.
738 The actions that can be performed are listed in `idlwave-indent-action-table'."
739 :group 'idlwave-abbrev-and-indent-action
740 :type 'boolean)
741
742 (defcustom idlwave-abbrev-start-char "\\"
743 "A single character string used to start abbreviations in abbrev mode.
744 Possible characters to chose from: ~`\%
745 or even '?'. '.' is not a good choice because it can make structure
746 field names act like abbrevs in certain circumstances.
747
748 Changes to this in `idlwave-mode-hook' will have no effect. Instead a user
749 must set it directly using `setq' in the init file before idlwave.el
750 is loaded."
751 :group 'idlwave-abbrev-and-indent-action
752 :type 'string)
753
754 (defcustom idlwave-surround-by-blank nil
755 "Non-nil means, enable `idlwave-surround'.
756 If non-nil, `=',`<',`>',`&',`,', `->' are surrounded with spaces by
757 `idlwave-surround'.
758 See help for `idlwave-indent-action-table' for symbols using `idlwave-surround'.
759
760 Also see the default key bindings for keys using `idlwave-surround'.
761 Keys are bound and made into actions calling `idlwave-surround' with
762 `idlwave-action-and-binding'.
763 See help for `idlwave-action-and-binding' for examples.
764
765 Also see help for `idlwave-surround'."
766 :group 'idlwave-abbrev-and-indent-action
767 :type 'boolean)
768
769 (defcustom idlwave-pad-keyword t
770 "Non-nil means pad '=' in keywords (routine calls or defs) like assignment.
771 Whenever `idlwave-surround' is non-nil then this affects how '=' is
772 padded for keywords and for variables. If t, pad the same as for
773 assignments. If nil then spaces are removed. With any other value,
774 spaces are left unchanged."
775 :group 'idlwave-abbrev-and-indent-action
776 :type '(choice
777 (const :tag "Pad like assignments" t)
778 (const :tag "Remove space near `='" nil)
779 (const :tag "Keep space near `='" 'keep)))
780
781 (defcustom idlwave-show-block t
782 "Non-nil means point blinks to block beginning for `idlwave-show-begin'."
783 :group 'idlwave-abbrev-and-indent-action
784 :type 'boolean)
785
786 (defcustom idlwave-expand-generic-end nil
787 "Non-nil means expand generic END to ENDIF/ENDELSE/ENDWHILE etc."
788 :group 'idlwave-abbrev-and-indent-action
789 :type 'boolean)
790
791 (defcustom idlwave-reindent-end t
792 "Non-nil means re-indent line after END was typed."
793 :group 'idlwave-abbrev-and-indent-action
794 :type 'boolean)
795
796 (defcustom idlwave-abbrev-move t
797 "Non-nil means the abbrev hook can move point.
798 Set to nil by `idlwave-expand-region-abbrevs'. To see the abbrev
799 definitions, use the command `list-abbrevs', for abbrevs that move
800 point. Moving point is useful, for example, to place point between
801 parentheses of expanded functions.
802
803 See `idlwave-check-abbrev'."
804 :group 'idlwave-abbrev-and-indent-action
805 :type 'boolean)
806
807 (defcustom idlwave-abbrev-change-case nil
808 "Non-nil means all abbrevs will be forced to either upper or lower case.
809 If the value t, all expanded abbrevs will be upper case.
810 If the value is 'down then abbrevs will be forced to lower case.
811 If nil, the case will not change.
812 If `idlwave-reserved-word-upcase' is non-nil, reserved words will always be
813 upper case, regardless of this variable."
814 :group 'idlwave-abbrev-and-indent-action
815 :type 'boolean)
816
817 (defcustom idlwave-reserved-word-upcase nil
818 "Non-nil means, reserved words will be made upper case via abbrev expansion.
819 If nil case of reserved words is controlled by `idlwave-abbrev-change-case'.
820 Has effect only if in abbrev-mode."
821 :group 'idlwave-abbrev-and-indent-action
822 :type 'boolean)
823
824 ;;; Action/Expand Tables.
825 ;;
826 ;; The average user may have difficulty modifying this directly. It
827 ;; can be modified/set in idlwave-mode-hook, but it is easier to use
828 ;; idlwave-action-and-binding. See help for idlwave-action-and-binding for
829 ;; examples of how to add an action.
830 ;;
831 ;; The action table is used by `idlwave-indent-line' whereas both the
832 ;; action and expand tables are used by `idlwave-indent-and-action'. In
833 ;; general, the expand table is only used when a line is explicitly
834 ;; indented. Whereas, in addition to being used when the expand table
835 ;; is used, the action table is used when a line is indirectly
836 ;; indented via line splitting, auto-filling or a new line creation.
837 ;;
838 ;; Example actions:
839 ;;
840 ;; Capitalize system vars
841 ;; (idlwave-action-and-binding idlwave-sysvar '(capitalize-word 1) t)
842 ;;
843 ;; Capitalize procedure name
844 ;; (idlwave-action-and-binding "\\<\\(pro\\|function\\)\\>[ \t]*\\<"
845 ;; '(capitalize-word 1) t)
846 ;;
847 ;; Capitalize common block name
848 ;; (idlwave-action-and-binding "\\<common\\>[ \t]+\\<"
849 ;; '(capitalize-word 1) t)
850 ;; Capitalize label
851 ;; (idlwave-action-and-binding (concat "^[ \t]*" idlwave-label)
852 ;; '(capitalize-word -1) t)
853
854 (defvar idlwave-indent-action-table nil
855 "Associated array containing action lists of search string (car),
856 and function as a cdr. This table is used by `idlwave-indent-line'.
857 See documentation for `idlwave-do-action' for a complete description of
858 the action lists.
859
860 Additions to the table are made with `idlwave-action-and-binding' when a
861 binding is not requested.
862 See help on `idlwave-action-and-binding' for examples.")
863
864 (defvar idlwave-indent-expand-table nil
865 "Associated array containing action lists of search string (car),
866 and function as a cdr. The table is used by the
867 `idlwave-indent-and-action' function. See documentation for
868 `idlwave-do-action' for a complete description of the action lists.
869
870 Additions to the table are made with `idlwave-action-and-binding' when a
871 binding is requested.
872 See help on `idlwave-action-and-binding' for examples.")
873
874 ;;; Documentation header and history keyword ---------------------------------
875
876 (defgroup idlwave-documentation nil
877 "Options for documenting IDLWAVE files."
878 :group 'idlwave)
879
880 ;; FIXME: make defcustom?
881 (defvar idlwave-file-header
882 (list nil
883 ";+
884 ; NAME:
885 ;
886 ;
887 ;
888 ; PURPOSE:
889 ;
890 ;
891 ;
892 ; CATEGORY:
893 ;
894 ;
895 ;
896 ; CALLING SEQUENCE:
897 ;
898 ;
899 ;
900 ; INPUTS:
901 ;
902 ;
903 ;
904 ; OPTIONAL INPUTS:
905 ;
906 ;
907 ;
908 ; KEYWORD PARAMETERS:
909 ;
910 ;
911 ;
912 ; OUTPUTS:
913 ;
914 ;
915 ;
916 ; OPTIONAL OUTPUTS:
917 ;
918 ;
919 ;
920 ; COMMON BLOCKS:
921 ;
922 ;
923 ;
924 ; SIDE EFFECTS:
925 ;
926 ;
927 ;
928 ; RESTRICTIONS:
929 ;
930 ;
931 ;
932 ; PROCEDURE:
933 ;
934 ;
935 ;
936 ; EXAMPLE:
937 ;
938 ;
939 ;
940 ; MODIFICATION HISTORY:
941 ;
942 ;-
943 ")
944 "A list (PATHNAME STRING) specifying the doc-header template to use for
945 summarizing a file. If PATHNAME is non-nil then this file will be included.
946 Otherwise STRING is used. If nil, the file summary will be omitted.
947 For example you might set PATHNAME to the path for the
948 lib_template.pro file included in the IDL distribution.")
949
950 (defcustom idlwave-header-to-beginning-of-file t
951 "Non-nil means, the documentation header will always be at start of file.
952 When nil, the header is positioned between the PRO/FUNCTION line of
953 the current routine and the code, allowing several routine headers in
954 a file."
955 :group 'idlwave-documentation
956 :type 'boolean)
957
958 (defcustom idlwave-timestamp-hook 'idlwave-default-insert-timestamp
959 "The hook function used to update the timestamp of a function."
960 :group 'idlwave-documentation
961 :type 'function)
962
963 (defcustom idlwave-doc-modifications-keyword "HISTORY"
964 "The modifications keyword to use with the log documentation commands.
965 A ':' is added to the keyword end.
966 Inserted by doc-header and used to position logs by doc-modification.
967 If nil it will not be inserted."
968 :group 'idlwave-documentation
969 :type 'string)
970
971 (defcustom idlwave-doclib-start "^;+\\+"
972 "Regexp matching the start of a document library header."
973 :group 'idlwave-documentation
974 :type 'regexp)
975
976 (defcustom idlwave-doclib-end "^;+-"
977 "Regexp matching the end of a document library header."
978 :group 'idlwave-documentation
979 :type 'regexp)
980
981 ;;; External Programs -------------------------------------------------------
982
983 (defgroup idlwave-external-programs nil
984 "Path locations of external commands used by IDLWAVE."
985 :group 'idlwave)
986
987 (defcustom idlwave-shell-explicit-file-name "idl"
988 "If non-nil, this is the command to run IDL.
989 Should be an absolute file path or path relative to the current environment
990 execution search path. If you want to specify command line switches
991 for the IDL program, use `idlwave-shell-command-line-options'.
992
993 I know the name of this variable is badly chosen, but I cannot change
994 it without compromising backwards-compatibility."
995 :group 'idlwave-external-programs
996 :type 'string)
997
998 (defcustom idlwave-shell-command-line-options nil
999 "A list of command line options for calling the IDL program.
1000 Since IDL is executed directly without going through a shell like /bin/sh,
1001 this should be a list of strings like '(\"-rt=file\" \"-nw\") with a separate
1002 string for each argument. But you may also give a single string which
1003 contains the options whitespace-separated. Emacs will be kind enough to
1004 split it for you."
1005 :type '(choice
1006 string
1007 (repeat (string :value "")))
1008 :group 'idlwave-external-programs)
1009
1010 (defcustom idlwave-help-application "idlhelp"
1011 "The external application providing reference help for programming.
1012 Obsolete, if the IDL Assistant is being used for help."
1013 :group 'idlwave-external-programs
1014 :type 'string)
1015
1016 ;;; Some Shell variables which must be defined here.-----------------------
1017
1018 (defcustom idlwave-shell-debug-modifiers '()
1019 "List of modifiers to be used for the debugging commands.
1020 Will be used to bind debugging commands in the shell buffer and in all
1021 source buffers. These are additional convenience bindings, the debugging
1022 commands are always available with the `C-c C-d' prefix.
1023 If you set this to '(control shift), this means setting a breakpoint will
1024 be on `C-S-b', compiling a source file on `C-S-c' etc. Possible modifiers
1025 are `control', `meta', `super', `hyper', `alt', and `shift'."
1026 :group 'idlwave-shell-general-setup
1027 :type '(set :tag "Specify modifiers"
1028 (const control)
1029 (const meta)
1030 (const super)
1031 (const hyper)
1032 (const alt)
1033 (const shift)))
1034
1035 (defcustom idlwave-shell-automatic-start nil
1036 "If non-nil attempt invoke `idlwave-shell' if not already running.
1037 This is checked when an attempt to send a command to an
1038 IDL process is made."
1039 :group 'idlwave-shell-general-setup
1040 :type 'boolean)
1041
1042 ;;; Miscellaneous variables -------------------------------------------------
1043
1044 (defgroup idlwave-misc nil
1045 "Miscellaneous options for IDLWAVE mode."
1046 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
1047 :group 'idlwave)
1048
1049 (defcustom idlwave-startup-message t
1050 "Non-nil displays a startup message when `idlwave-mode' is first called."
1051 :group 'idlwave-misc
1052 :type 'boolean)
1053
1054 (defcustom idlwave-default-font-lock-items
1055 '(pros-and-functions batch-files idlwave-idl-keywords label goto
1056 common-blocks class-arrows)
1057 "Items which should be fontified on the default fontification level 2.
1058 IDLWAVE defines 3 levels of fontification. Level 1 is very little, level 3
1059 is everything and level 2 is specified by this list.
1060 This variable must be set before IDLWAVE gets loaded.
1061 It is a list of symbols; the following symbols are allowed:
1062
1063 pros-and-functions Procedure and Function definitions
1064 batch-files Batch Files
1065 idlwave-idl-keywords IDL Keywords
1066 label Statement Labels
1067 goto Goto Statements
1068 common-blocks Common Blocks
1069 keyword-parameters Keyword Parameters in routine definitions and calls
1070 system-variables System Variables
1071 fixme FIXME: Warning in comments (on XEmacs only v. 21.0 and up)
1072 class-arrows Object Arrows with class property"
1073 :group 'idlwave-misc
1074 :type '(set
1075 :inline t :greedy t
1076 (const :tag "Procedure and Function definitions" pros-and-functions)
1077 (const :tag "Batch Files" batch-files)
1078 (const :tag "IDL Keywords (reserved words)" idlwave-idl-keywords)
1079 (const :tag "Statement Labels" label)
1080 (const :tag "Goto Statements" goto)
1081 (const :tag "Tags in Structure Definition" structtag)
1082 (const :tag "Structure Name" structname)
1083 (const :tag "Common Blocks" common-blocks)
1084 (const :tag "Keyword Parameters" keyword-parameters)
1085 (const :tag "System Variables" system-variables)
1086 (const :tag "FIXME: Warning" fixme)
1087 (const :tag "Object Arrows with class property " class-arrows)))
1088
1089 (defcustom idlwave-mode-hook nil
1090 "Normal hook. Executed when a buffer is put into `idlwave-mode'."
1091 :group 'idlwave-misc
1092 :type 'hook)
1093
1094 (defcustom idlwave-load-hook nil
1095 "Normal hook. Executed when idlwave.el is loaded."
1096 :group 'idlwave-misc
1097 :type 'hook)
1098
1099 (defvar idlwave-experimental nil
1100 "Non-nil means turn on a few experimental features.
1101 This variable is only for the maintainer, to test difficult stuff,
1102 while still distributing stable releases.
1103 As a user, you should not set this to t.")
1104
1105 ;;;
1106 ;;; End customization variables section
1107 ;;;
1108
1109 ;;; Non customization variables
1110
1111 ;;; font-lock mode - Additions by Phil Williams, Ulrik Dickow and
1112 ;;; Simon Marshall <simon_at_gnu.ai.mit.edu>
1113 ;;; and Carsten Dominik...
1114
1115 ;; The following are the reserved words in IDL. Maybe we should
1116 ;; highlight some more stuff as well?
1117 ;; Procedure declarations. Fontify keyword plus procedure name.
1118 (defvar idlwave-idl-keywords
1119 ;; To update this regexp, update the list of keywords and
1120 ;; evaluate the form.
1121 ;; (insert
1122 ;; (prin1-to-string
1123 ;; (concat
1124 ;; "\\<\\("
1125 ;; (regexp-opt
1126 ;; '("||" "&&" "and" "or" "xor" "not"
1127 ;; "eq" "ge" "gt" "le" "lt" "ne"
1128 ;; "for" "do" "endfor"
1129 ;; "if" "then" "endif" "else" "endelse"
1130 ;; "case" "of" "endcase"
1131 ;; "switch" "break" "continue" "endswitch"
1132 ;; "begin" "end"
1133 ;; "repeat" "until" "endrep"
1134 ;; "while" "endwhile"
1135 ;; "goto" "return"
1136 ;; "inherits" "mod"
1137 ;; "compile_opt" "forward_function"
1138 ;; "on_error" "on_ioerror")) ; on_error is not officially reserved
1139 ;; "\\)\\>")))
1140 "\\<\\(&&\\|and\\|b\\(egin\\|reak\\)\\|c\\(ase\\|o\\(mpile_opt\\|ntinue\\)\\)\\|do\\|e\\(lse\\|nd\\(case\\|else\\|for\\|if\\|rep\\|switch\\|while\\)?\\|q\\)\\|for\\(ward_function\\)?\\|g\\(oto\\|[et]\\)\\|i\\(f\\|nherits\\)\\|l[et]\\|mod\\|n\\(e\\|ot\\)\\|o\\(n_\\(error\\|ioerror\\)\\|[fr]\\)\\|re\\(peat\\|turn\\)\\|switch\\|then\\|until\\|while\\|xor\\|||\\)\\>")
1141
1142
1143 (let* (;; Procedure declarations. Fontify keyword plus procedure name.
1144 ;; Function declarations. Fontify keyword plus function name.
1145 (pros-and-functions
1146 '("\\<\\(function\\|pro\\)\\>[ \t]+\\(\\sw+\\(::\\sw+\\)?\\)"
1147 (1 font-lock-keyword-face)
1148 (2 font-lock-function-name-face nil t)))
1149
1150 ;; Common blocks
1151 (common-blocks
1152 '("\\<\\(common\\)\\>[ \t]*\\(\\sw+\\)?[ \t]*,?"
1153 (1 font-lock-keyword-face) ; "common"
1154 (2 font-lock-constant-face nil t) ; block name
1155 ("[ \t]*\\(\\sw+\\)[ ,]*"
1156 ;; Start with point after block name and comma
1157 (goto-char (match-end 0)) ; needed for XEmacs, could be nil
1158 nil
1159 (1 font-lock-variable-name-face) ; variable names
1160 )))
1161
1162 ;; Batch files
1163 (batch-files
1164 '("^[ \t]*\\(@[^ \t\n]+\\)" (1 font-lock-string-face)))
1165
1166 ;; FIXME warning.
1167 (fixme
1168 '("\\<FIXME:" (0 font-lock-warning-face t)))
1169
1170 ;; Labels
1171 (label
1172 '("^[ \t]*\\([a-zA-Z]\\sw*:\\)" (1 font-lock-constant-face)))
1173
1174 ;; The goto statement and its label
1175 (goto
1176 '("\\(goto\\)[ \t]*,[ \t]*\\([a-zA-Z]\\sw*\\)"
1177 (1 font-lock-keyword-face)
1178 (2 font-lock-constant-face)))
1179
1180 ;; Tags in structure definitions. Note that this definition
1181 ;; actually collides with labels, so we have to use the same
1182 ;; face. It also matches named subscript ranges,
1183 ;; e.g. vec{bottom:top]. No good way around this.
1184 (structtag
1185 '("\\<\\([a-zA-Z][a-zA-Z0-9_]*:\\)[^:]" (1 font-lock-constant-face)))
1186
1187 ;; Structure names
1188 (structname
1189 '("\\({\\|\\<inherits\\s-\\)\\s-*\\([a-zA-Z][a-zA-Z0-9_]*\\)[},\t \n]"
1190 (2 font-lock-function-name-face)))
1191
1192 ;; Keyword parameters, like /xlog or ,xrange=[]
1193 ;; This is anchored to the comma preceding the keyword.
1194 ;; Treats continuation lines, works only during whole buffer
1195 ;; fontification. Slow, use it only in fancy fontification.
1196 (keyword-parameters
1197 '("\\(,\\|[a-zA-Z0-9_](\\)[ \t]*\\(\\$[ \t]*\\(;.*\\)?\n\\([ \t]*\\(;.*\\)?\n\\)*[ \t]*\\)?\\(/[a-zA-Z_]\\sw*\\|[a-zA-Z_]\\sw*[ \t]*=\\)"
1198 (6 font-lock-constant-face)))
1199
1200 ;; System variables start with a bang.
1201 (system-variables
1202 '("\\(![a-zA-Z_0-9]+\\(\\.\\sw+\\)?\\)"
1203 (1 font-lock-variable-name-face)))
1204
1205 ;; Special and unusual operators (not used because too noisy)
1206 ;; (special-operators
1207 ;; '("[<>#]" (0 font-lock-keyword-face)))
1208
1209 ;; All operators (not used because too noisy)
1210 ;; (all-operators
1211 ;; '("[-*^#+<>/]" (0 font-lock-keyword-face)))
1212
1213 ;; Arrows with text property `idlwave-class'
1214 (class-arrows
1215 '(idlwave-match-class-arrows (0 idlwave-class-arrow-face))))
1216
1217 (defconst idlwave-font-lock-keywords-1
1218 (list pros-and-functions batch-files)
1219 "Subdued level highlighting for IDLWAVE mode.")
1220
1221 (defconst idlwave-font-lock-keywords-2
1222 (mapcar 'symbol-value idlwave-default-font-lock-items)
1223 "Medium level highlighting for IDLWAVE mode.")
1224
1225 (defconst idlwave-font-lock-keywords-3
1226 (list pros-and-functions
1227 batch-files
1228 idlwave-idl-keywords
1229 label goto
1230 structtag
1231 structname
1232 common-blocks
1233 keyword-parameters
1234 system-variables
1235 class-arrows)
1236 "Gaudy level highlighting for IDLWAVE mode."))
1237
1238 (defun idlwave-match-class-arrows (limit)
1239 ;; Match an object arrow with class property
1240 (and idlwave-store-inquired-class
1241 (re-search-forward "->" limit 'limit)
1242 (get-text-property (match-beginning 0) 'idlwave-class)))
1243
1244 (defvar idlwave-font-lock-keywords idlwave-font-lock-keywords-2
1245 "Default expressions to highlight in IDLWAVE mode.")
1246
1247 (defvar idlwave-font-lock-defaults
1248 '((idlwave-font-lock-keywords
1249 idlwave-font-lock-keywords-1
1250 idlwave-font-lock-keywords-2
1251 idlwave-font-lock-keywords-3)
1252 nil t
1253 ((?$ . "w") (?_ . "w") (?. . "w") (?| . "w") (?& . "w"))
1254 beginning-of-line))
1255
1256 (put 'idlwave-mode 'font-lock-defaults
1257 idlwave-font-lock-defaults) ; XEmacs
1258
1259 (defconst idlwave-comment-line-start-skip "^[ \t]*;"
1260 "Regexp to match the start of a full-line comment.
1261 That is the _beginning_ of a line containing a comment delimiter `;' preceded
1262 only by whitespace.")
1263
1264 (defconst idlwave-begin-block-reg
1265 "\\<\\(pro\\|function\\|begin\\|case\\|switch\\)\\>"
1266 "Regular expression to find the beginning of a block.
1267 The case does not matter. The search skips matches in comments.")
1268
1269 (defconst idlwave-begin-unit-reg "^\\s-*\\(pro\\|function\\)\\>\\|\\`"
1270 "Regular expression to find the beginning of a unit.
1271 The case does not matter.")
1272
1273 (defconst idlwave-end-unit-reg "^\\s-*\\(pro\\|function\\)\\>\\|\\'"
1274 "Regular expression to find the line that indicates the end of unit.
1275 This line is the end of buffer or the start of another unit.
1276 The case does not matter. The search skips matches in comments.")
1277
1278 (defconst idlwave-continue-line-reg "\\<\\$"
1279 "Regular expression to match a continued line.")
1280
1281 (defconst idlwave-end-block-reg
1282 "\\<end\\(\\|case\\|switch\\|else\\|for\\|if\\|rep\\|while\\)\\>"
1283 "Regular expression to find the end of a block.
1284 The case does not matter. The search skips matches in comments.")
1285
1286 (defconst idlwave-block-matches
1287 '(("pro" . "end")
1288 ("function" . "end")
1289 ("case" . "endcase")
1290 ("else" . "endelse")
1291 ("for" . "endfor")
1292 ("then" . "endif")
1293 ("repeat" . "endrep")
1294 ("switch" . "endswitch")
1295 ("while" . "endwhile"))
1296 "Matches between statements and the corresponding END variant.
1297 The cars are the reserved words starting a block. If the block really
1298 begins with BEGIN, the cars are the reserved words before the begin
1299 which can be used to identify the block type.
1300 This is used to check for the correct END type, to close blocks and
1301 to expand generic end statements to their detailed form.")
1302
1303 (defconst idlwave-block-match-regexp
1304 "\\<\\(else\\|for\\|then\\|repeat\\|while\\)\\>"
1305 "Regular expression matching reserved words which can stand before
1306 blocks starting with a BEGIN statement. The matches must have associations
1307 `idlwave-block-matches'.")
1308
1309 (defconst idlwave-identifier "[a-zA-Z_][a-zA-Z0-9$_]*"
1310 "Regular expression matching an IDL identifier.")
1311
1312 (defconst idlwave-sysvar (concat "!" idlwave-identifier)
1313 "Regular expression matching IDL system variables.")
1314
1315 (defconst idlwave-variable (concat idlwave-identifier "\\|" idlwave-sysvar)
1316 "Regular expression matching IDL variable names.")
1317
1318 (defconst idlwave-label (concat idlwave-identifier ":")
1319 "Regular expression matching IDL labels.")
1320
1321 (defconst idlwave-method-call (concat idlwave-identifier "\\s *->"
1322 "\\(\\s *" idlwave-identifier "::\\)?"
1323 ))
1324
1325 (defconst idlwave-statement-match
1326 (list
1327 ;; "endif else" is the only possible "end" that can be
1328 ;; followed by a statement on the same line.
1329 '(endelse . ("end\\(\\|if\\)\\s +else" "end\\(\\|if\\)\\s +else"))
1330 ;; all other "end"s can not be followed by a statement.
1331 (cons 'end (list idlwave-end-block-reg nil))
1332 '(if . ("if\\>" "then"))
1333 '(for . ("for\\>" "do"))
1334 '(begin . ("begin\\>" nil))
1335 '(pdef . ("pro\\>\\|function\\>" nil))
1336 '(while . ("while\\>" "do"))
1337 '(repeat . ("repeat\\>" "repeat"))
1338 '(goto . ("goto\\>" nil))
1339 '(case . ("case\\>" nil))
1340 '(switch . ("switch\\>" nil))
1341 (cons 'call (list (concat "\\(" idlwave-variable "\\) *= *"
1342 "\\(" idlwave-method-call "\\s *\\)?"
1343 idlwave-identifier
1344 "\\s *(") nil))
1345 (cons 'call (list (concat
1346 "\\(" idlwave-method-call "\\s *\\)?"
1347 idlwave-identifier
1348 "\\( *\\($\\|\\$\\)\\|\\s *,\\)") nil))
1349 (cons 'assign (list (concat
1350 "\\(" idlwave-variable "\\) *=") nil)))
1351
1352 "Associated list of statement matching regular expressions.
1353 Each regular expression matches the start of an IDL statement.
1354 The first element of each association is a symbol giving the statement
1355 type. The associated value is a list. The first element of this list
1356 is a regular expression matching the start of an IDL statement for
1357 identifying the statement type. The second element of this list is a
1358 regular expression for finding a substatement for the type. The
1359 substatement starts after the end of the found match modulo
1360 whitespace. If it is nil then the statement has no substatement. The
1361 list order matters since matching an assignment statement exactly is
1362 not possible without parsing. Thus assignment statement become just
1363 the leftover unidentified statements containing an equal sign.")
1364
1365 ;; FIXME: This var seems to only ever be set, but never actually used!
1366 (defvar idlwave-fill-function 'auto-fill-function
1367 "IDL mode auto fill function.")
1368
1369 (defvar idlwave-comment-indent-function 'comment-indent-function
1370 "IDL mode comment indent function.")
1371
1372 ;; Note that this is documented in the v18 manuals as being a string
1373 ;; of length one rather than a single character.
1374 ;; The code in this file accepts either format for compatibility.
1375 (defvar idlwave-comment-indent-char ?\
1376 "Character to be inserted for IDL comment indentation.
1377 Normally a space.")
1378
1379 (defconst idlwave-continuation-char ?$
1380 "Character which is inserted as a last character on previous line by
1381 \\[idlwave-split-line] to begin a continuation line. Normally $.")
1382
1383 (defconst idlwave-mode-version "6.1_em22")
1384
1385 (defmacro idlwave-keyword-abbrev (&rest args)
1386 "Creates a function for abbrev hooks to call `idlwave-check-abbrev' with args."
1387 `(quote (lambda ()
1388 ,(append '(idlwave-check-abbrev) args))))
1389
1390 ;; If I take the time I can replace idlwave-keyword-abbrev with
1391 ;; idlwave-code-abbrev and remove the quoted abbrev check from
1392 ;; idlwave-check-abbrev. Then, e.g, (idlwave-keyword-abbrev 0 t) becomes
1393 ;; (idlwave-code-abbrev idlwave-check-abbrev 0 t). In fact I should change
1394 ;; the name of idlwave-check-abbrev to something like idlwave-modify-abbrev.
1395
1396 (defmacro idlwave-code-abbrev (&rest args)
1397 "Creates a function for abbrev hooks that ensures abbrevs are not quoted.
1398 Specifically, if the abbrev is in a comment or string it is unexpanded.
1399 Otherwise ARGS forms a list that is evaluated."
1400 ;; FIXME: it would probably be better to rely on the new :enable-function
1401 ;; to enforce the "don't expand in comments or strings".
1402 `(lambda ()
1403 ,(prin1-to-string args) ;; Puts the code in the doc string
1404 (if (idlwave-quoted)
1405 (progn (unexpand-abbrev) nil)
1406 ,(append args))))
1407
1408 (autoload 'idlwave-shell "idlw-shell"
1409 "Run an inferior IDL, with I/O through buffer `(idlwave-shell-buffer)'." t)
1410 (autoload 'idlwave-shell-send-command "idlw-shell")
1411 (autoload 'idlwave-shell-recenter-shell-window "idlw-shell"
1412 "Run `idlwave-shell' and switch back to current window" t)
1413 (autoload 'idlwave-shell-save-and-run "idlw-shell"
1414 "Save and run buffer under the shell." t)
1415 (autoload 'idlwave-shell-break-here "idlw-shell"
1416 "Set breakpoint in current line." t)
1417 (autoload 'idlwave-shell-run-region "idlw-shell"
1418 "Compile and run the region." t)
1419
1420 (fset 'idlwave-debug-map (make-sparse-keymap))
1421
1422 (defvar idlwave-mode-map
1423 (let ((map (make-sparse-keymap)))
1424 (define-key map "\C-c " 'idlwave-hard-tab)
1425 (define-key map [(control tab)] 'idlwave-hard-tab)
1426 ;;(define-key map "\C-c\C- " 'idlwave-hard-tab)
1427 (define-key map "'" 'idlwave-show-matching-quote)
1428 (define-key map "\"" 'idlwave-show-matching-quote)
1429 (define-key map "\C-g" 'idlwave-keyboard-quit)
1430 (define-key map "\C-c;" 'idlwave-toggle-comment-region)
1431 (define-key map "\C-\M-a" 'idlwave-beginning-of-subprogram)
1432 (define-key map "\C-\M-e" 'idlwave-end-of-subprogram)
1433 (define-key map "\C-c{" 'idlwave-beginning-of-block)
1434 (define-key map "\C-c}" 'idlwave-end-of-block)
1435 (define-key map "\C-c]" 'idlwave-close-block)
1436 (define-key map [(meta control h)] 'idlwave-mark-subprogram)
1437 (define-key map "\M-\C-n" 'idlwave-forward-block)
1438 (define-key map "\M-\C-p" 'idlwave-backward-block)
1439 (define-key map "\M-\C-d" 'idlwave-down-block)
1440 (define-key map "\M-\C-u" 'idlwave-backward-up-block)
1441 (define-key map "\M-\r" 'idlwave-split-line)
1442 (define-key map "\M-\C-q" 'idlwave-indent-subprogram)
1443 (define-key map "\C-c\C-p" 'idlwave-previous-statement)
1444 (define-key map "\C-c\C-n" 'idlwave-next-statement)
1445 ;; (define-key map "\r" 'idlwave-newline)
1446 ;; (define-key map "\t" 'idlwave-indent-line)
1447 (define-key map [(shift iso-lefttab)] 'idlwave-indent-statement)
1448 (define-key map "\C-c\C-a" 'idlwave-auto-fill-mode)
1449 (define-key map "\M-q" 'idlwave-fill-paragraph)
1450 (define-key map "\M-s" 'idlwave-edit-in-idlde)
1451 (define-key map "\C-c\C-h" 'idlwave-doc-header)
1452 (define-key map "\C-c\C-m" 'idlwave-doc-modification)
1453 (define-key map "\C-c\C-c" 'idlwave-case)
1454 (define-key map "\C-c\C-d" 'idlwave-debug-map)
1455 (when (and (listp idlwave-shell-debug-modifiers)
1456 (not (equal idlwave-shell-debug-modifiers '())))
1457 ;; Bind the debug commands also with the special modifiers.
1458 (let ((shift (memq 'shift idlwave-shell-debug-modifiers))
1459 (mods-noshift
1460 (delq 'shift (copy-sequence idlwave-shell-debug-modifiers))))
1461 (define-key map
1462 (vector (append mods-noshift (list (if shift ?C ?c))))
1463 'idlwave-shell-save-and-run)
1464 (define-key map
1465 (vector (append mods-noshift (list (if shift ?B ?b))))
1466 'idlwave-shell-break-here)
1467 (define-key map
1468 (vector (append mods-noshift (list (if shift ?E ?e))))
1469 'idlwave-shell-run-region)))
1470 (define-key map "\C-c\C-d\C-c" 'idlwave-shell-save-and-run)
1471 (define-key map "\C-c\C-d\C-b" 'idlwave-shell-break-here)
1472 (define-key map "\C-c\C-d\C-e" 'idlwave-shell-run-region)
1473 (define-key map "\C-c\C-f" 'idlwave-for)
1474 ;; (define-key map "\C-c\C-f" 'idlwave-function)
1475 ;; (define-key map "\C-c\C-p" 'idlwave-procedure)
1476 (define-key map "\C-c\C-r" 'idlwave-repeat)
1477 (define-key map "\C-c\C-w" 'idlwave-while)
1478 (define-key map "\C-c\C-k" 'idlwave-kill-autoloaded-buffers)
1479 (define-key map "\C-c\C-s" 'idlwave-shell)
1480 (define-key map "\C-c\C-l" 'idlwave-shell-recenter-shell-window)
1481 (define-key map "\C-c\C-b" 'idlwave-list-buffer-load-path-shadows)
1482 (define-key map "\C-c\C-v" 'idlwave-find-module)
1483 (define-key map "\C-c\C-t" 'idlwave-find-module-this-file)
1484 (define-key map "\C-c?" 'idlwave-routine-info)
1485 (define-key map "\M-?" 'idlwave-context-help)
1486 (define-key map [(control meta ?\?)]
1487 'idlwave-help-assistant-help-with-topic)
1488 ;; Pickup both forms of Esc/Meta binding
1489 (define-key map [(meta tab)] 'idlwave-complete)
1490 (define-key map [?\e?\t] 'idlwave-complete)
1491 (define-key map "\M-\C-i" 'idlwave-complete)
1492 (define-key map "\C-c\C-i" 'idlwave-update-routine-info)
1493 (define-key map "\C-c=" 'idlwave-resolve)
1494 (define-key map
1495 (if (featurep 'xemacs) [(shift button3)] [(shift mouse-3)])
1496 'idlwave-mouse-context-help)
1497 map)
1498 "Keymap used in IDL mode.")
1499
1500 (defvar idlwave-mode-syntax-table
1501 (let ((st (make-syntax-table)))
1502 (modify-syntax-entry ?+ "." st)
1503 (modify-syntax-entry ?- "." st)
1504 (modify-syntax-entry ?* "." st)
1505 (modify-syntax-entry ?/ "." st)
1506 (modify-syntax-entry ?^ "." st)
1507 (modify-syntax-entry ?# "." st)
1508 (modify-syntax-entry ?= "." st)
1509 (modify-syntax-entry ?% "." st)
1510 (modify-syntax-entry ?< "." st)
1511 (modify-syntax-entry ?> "." st)
1512 (modify-syntax-entry ?\' "\"" st)
1513 (modify-syntax-entry ?\" "\"" st)
1514 (modify-syntax-entry ?\\ "." st)
1515 (modify-syntax-entry ?_ "_" st)
1516 (modify-syntax-entry ?{ "(}" st)
1517 (modify-syntax-entry ?} "){" st)
1518 (modify-syntax-entry ?$ "_" st)
1519 (modify-syntax-entry ?. "." st)
1520 (modify-syntax-entry ?\; "<" st)
1521 (modify-syntax-entry ?\n ">" st)
1522 (modify-syntax-entry ?\f ">" st)
1523 st)
1524 "Syntax table in use in `idlwave-mode' buffers.")
1525
1526 (defvar idlwave-find-symbol-syntax-table
1527 (let ((st (copy-syntax-table idlwave-mode-syntax-table)))
1528 (modify-syntax-entry ?$ "w" st)
1529 (modify-syntax-entry ?_ "w" st)
1530 (modify-syntax-entry ?! "w" st)
1531 (modify-syntax-entry ?. "w" st)
1532 st)
1533 "Syntax table that treats symbol characters as word characters.")
1534
1535 (defmacro idlwave-with-special-syntax (&rest body)
1536 "Execute BODY with a different syntax table."
1537 `(let ((saved-syntax (syntax-table)))
1538 (unwind-protect
1539 (progn
1540 (set-syntax-table idlwave-find-symbol-syntax-table)
1541 ,@body)
1542 (set-syntax-table saved-syntax))))
1543
1544 ;(defmacro idlwave-with-special-syntax1 (&rest body)
1545 ; "Execute BODY with a different syntax table."
1546 ; `(let ((saved-syntax (syntax-table)))
1547 ; (unwind-protect
1548 ; (progn
1549 ; (set-syntax-table idlwave-find-symbol-syntax-table)
1550 ; ,@body)
1551 ; (set-syntax-table saved-syntax))))
1552
1553 (defun idlwave-action-and-binding (key cmd &optional select)
1554 "KEY and CMD are made into a key binding and an indent action.
1555 KEY is a string - same as for the `define-key' function. CMD is a
1556 function of no arguments or a list to be evaluated. CMD is bound to
1557 KEY in `idlwave-mode-map' by defining an anonymous function calling
1558 `self-insert-command' followed by CMD. If KEY contains more than one
1559 character a binding will only be set if SELECT is 'both.
1560
1561 \(KEY . CMD\) is also placed in the `idlwave-indent-expand-table',
1562 replacing any previous value for KEY. If a binding is not set then it
1563 will instead be placed in `idlwave-indent-action-table'.
1564
1565 If the optional argument SELECT is nil then an action and binding are
1566 created. If SELECT is 'noaction, then a binding is always set and no
1567 action is created. If SELECT is 'both then an action and binding
1568 will both be created even if KEY contains more than one character.
1569 Otherwise, if SELECT is non-nil then only an action is created.
1570
1571 Some examples:
1572 No spaces before and 1 after a comma
1573 (idlwave-action-and-binding \",\" '(idlwave-surround 0 1))
1574 A minimum of 1 space before and after `=' (see `idlwave-expand-equal').
1575 (idlwave-action-and-binding \"=\" '(idlwave-expand-equal -1 -1))
1576 Capitalize system variables - action only
1577 (idlwave-action-and-binding idlwave-sysvar '(capitalize-word 1) t)"
1578 (if (not (equal select 'noaction))
1579 ;; Add action
1580 (let* ((table (if select 'idlwave-indent-action-table
1581 'idlwave-indent-expand-table))
1582 (table-key (regexp-quote key))
1583 (cell (assoc table-key (eval table))))
1584 (if cell
1585 ;; Replace action command
1586 (setcdr cell cmd)
1587 ;; New action
1588 (set table (append (eval table) (list (cons table-key cmd)))))))
1589 ;; Make key binding for action
1590 (if (or (and (null select) (= (length key) 1))
1591 (equal select 'noaction)
1592 (equal select 'both))
1593 (define-key idlwave-mode-map key
1594 `(lambda ()
1595 (interactive)
1596 (self-insert-command 1)
1597 ,(if (listp cmd) cmd (list cmd))))))
1598
1599 ;; Set action and key bindings.
1600 ;; See description of the function `idlwave-action-and-binding'.
1601 ;; Automatically add spaces for the following characters
1602
1603 ;; Actions for & are complicated by &&
1604 (idlwave-action-and-binding "&" 'idlwave-custom-ampersand-surround)
1605
1606 ;; Automatically add spaces to equal sign if not keyword. This needs
1607 ;; to go ahead of > and <, so >= and <= will be treated correctly
1608 (idlwave-action-and-binding "=" '(idlwave-expand-equal -1 -1))
1609
1610 ;; Actions for > and < are complicated by >=, <=, and ->...
1611 (idlwave-action-and-binding "<" '(idlwave-custom-ltgtr-surround nil))
1612 (idlwave-action-and-binding ">" '(idlwave-custom-ltgtr-surround 'gtr))
1613
1614 (idlwave-action-and-binding "," '(idlwave-surround 0 -1 1))
1615
1616
1617 ;;;
1618 ;;; Abbrev Section
1619 ;;;
1620 ;;; When expanding abbrevs and the abbrev hook moves backward, an extra
1621 ;;; space is inserted (this is the space typed by the user to expanded
1622 ;;; the abbrev).
1623 ;;;
1624 (defvar idlwave-mode-abbrev-table nil
1625 "Abbreviation table used for IDLWAVE mode.")
1626 (define-abbrev-table 'idlwave-mode-abbrev-table ())
1627
1628 (defun idlwave-define-abbrev (name expansion hook &optional noprefix table)
1629 "Define-abbrev with backward compatibility.
1630
1631 If NOPREFIX is non-nil, don't prepend prefix character. Installs into
1632 `idlwave-mode-abbrev-table' unless TABLE is non-nil."
1633 (let ((abbrevs-changed nil) ;; mask the current value to avoid save
1634 (args (list (or table idlwave-mode-abbrev-table)
1635 (if noprefix name (concat idlwave-abbrev-start-char name))
1636 expansion
1637 hook)))
1638 (condition-case nil
1639 (apply 'define-abbrev (append args '(0 t)))
1640 (error (apply 'define-abbrev args)))))
1641
1642 (condition-case nil
1643 (modify-syntax-entry (string-to-char idlwave-abbrev-start-char)
1644 "w" idlwave-mode-syntax-table)
1645 (error nil))
1646
1647 ;;
1648 ;; Templates
1649 ;;
1650 (idlwave-define-abbrev "c" "" (idlwave-code-abbrev idlwave-case))
1651 (idlwave-define-abbrev "sw" "" (idlwave-code-abbrev idlwave-switch))
1652 (idlwave-define-abbrev "f" "" (idlwave-code-abbrev idlwave-for))
1653 (idlwave-define-abbrev "fu" "" (idlwave-code-abbrev idlwave-function))
1654 (idlwave-define-abbrev "pr" "" (idlwave-code-abbrev idlwave-procedure))
1655 (idlwave-define-abbrev "r" "" (idlwave-code-abbrev idlwave-repeat))
1656 (idlwave-define-abbrev "w" "" (idlwave-code-abbrev idlwave-while))
1657 (idlwave-define-abbrev "i" "" (idlwave-code-abbrev idlwave-if))
1658 (idlwave-define-abbrev "elif" "" (idlwave-code-abbrev idlwave-elif))
1659 ;;
1660 ;; Keywords, system functions, conversion routines
1661 ;;
1662 (idlwave-define-abbrev "ap" "arg_present()" (idlwave-keyword-abbrev 1))
1663 (idlwave-define-abbrev "b" "begin" (idlwave-keyword-abbrev 0 t))
1664 (idlwave-define-abbrev "co" "common" (idlwave-keyword-abbrev 0 t))
1665 (idlwave-define-abbrev "cb" "byte()" (idlwave-keyword-abbrev 1))
1666 (idlwave-define-abbrev "cx" "fix()" (idlwave-keyword-abbrev 1))
1667 (idlwave-define-abbrev "cl" "long()" (idlwave-keyword-abbrev 1))
1668 (idlwave-define-abbrev "cf" "float()" (idlwave-keyword-abbrev 1))
1669 (idlwave-define-abbrev "cs" "string()" (idlwave-keyword-abbrev 1))
1670 (idlwave-define-abbrev "cc" "complex()" (idlwave-keyword-abbrev 1))
1671 (idlwave-define-abbrev "cd" "double()" (idlwave-keyword-abbrev 1))
1672 (idlwave-define-abbrev "e" "else" (idlwave-keyword-abbrev 0 t))
1673 (idlwave-define-abbrev "ec" "endcase" 'idlwave-show-begin)
1674 (idlwave-define-abbrev "es" "endswitch" 'idlwave-show-begin)
1675 (idlwave-define-abbrev "ee" "endelse" 'idlwave-show-begin)
1676 (idlwave-define-abbrev "ef" "endfor" 'idlwave-show-begin)
1677 (idlwave-define-abbrev "ei" "endif else if" 'idlwave-show-begin)
1678 (idlwave-define-abbrev "el" "endif else" 'idlwave-show-begin)
1679 (idlwave-define-abbrev "en" "endif" 'idlwave-show-begin)
1680 (idlwave-define-abbrev "er" "endrep" 'idlwave-show-begin)
1681 (idlwave-define-abbrev "ew" "endwhile" 'idlwave-show-begin)
1682 (idlwave-define-abbrev "g" "goto," (idlwave-keyword-abbrev 0 t))
1683 (idlwave-define-abbrev "h" "help," (idlwave-keyword-abbrev 0))
1684 (idlwave-define-abbrev "k" "keyword_set()" (idlwave-keyword-abbrev 1))
1685 (idlwave-define-abbrev "n" "n_elements()" (idlwave-keyword-abbrev 1))
1686 (idlwave-define-abbrev "on" "on_error," (idlwave-keyword-abbrev 0))
1687 (idlwave-define-abbrev "oi" "on_ioerror," (idlwave-keyword-abbrev 0 1))
1688 (idlwave-define-abbrev "ow" "openw," (idlwave-keyword-abbrev 0))
1689 (idlwave-define-abbrev "or" "openr," (idlwave-keyword-abbrev 0))
1690 (idlwave-define-abbrev "ou" "openu," (idlwave-keyword-abbrev 0))
1691 (idlwave-define-abbrev "p" "print," (idlwave-keyword-abbrev 0))
1692 (idlwave-define-abbrev "pt" "plot," (idlwave-keyword-abbrev 0))
1693 (idlwave-define-abbrev "re" "read," (idlwave-keyword-abbrev 0))
1694 (idlwave-define-abbrev "rf" "readf," (idlwave-keyword-abbrev 0))
1695 (idlwave-define-abbrev "ru" "readu," (idlwave-keyword-abbrev 0))
1696 (idlwave-define-abbrev "rt" "return" (idlwave-keyword-abbrev 0))
1697 (idlwave-define-abbrev "sc" "strcompress()" (idlwave-keyword-abbrev 1))
1698 (idlwave-define-abbrev "sn" "strlen()" (idlwave-keyword-abbrev 1))
1699 (idlwave-define-abbrev "sl" "strlowcase()" (idlwave-keyword-abbrev 1))
1700 (idlwave-define-abbrev "su" "strupcase()" (idlwave-keyword-abbrev 1))
1701 (idlwave-define-abbrev "sm" "strmid()" (idlwave-keyword-abbrev 1))
1702 (idlwave-define-abbrev "sp" "strpos()" (idlwave-keyword-abbrev 1))
1703 (idlwave-define-abbrev "st" "strput()" (idlwave-keyword-abbrev 1))
1704 (idlwave-define-abbrev "sr" "strtrim()" (idlwave-keyword-abbrev 1))
1705 (idlwave-define-abbrev "t" "then" (idlwave-keyword-abbrev 0 t))
1706 (idlwave-define-abbrev "u" "until" (idlwave-keyword-abbrev 0 t))
1707 (idlwave-define-abbrev "wu" "writeu," (idlwave-keyword-abbrev 0))
1708 (idlwave-define-abbrev "iap" "if arg_present() then" (idlwave-keyword-abbrev 6))
1709 (idlwave-define-abbrev "ik" "if keyword_set() then" (idlwave-keyword-abbrev 6))
1710 (idlwave-define-abbrev "ine" "if n_elements() eq 0 then" (idlwave-keyword-abbrev 11))
1711 (idlwave-define-abbrev "inn" "if n_elements() ne 0 then" (idlwave-keyword-abbrev 11))
1712 (idlwave-define-abbrev "np" "n_params()" (idlwave-keyword-abbrev 0))
1713 (idlwave-define-abbrev "s" "size()" (idlwave-keyword-abbrev 1))
1714 (idlwave-define-abbrev "wi" "widget_info()" (idlwave-keyword-abbrev 1))
1715 (idlwave-define-abbrev "wc" "widget_control," (idlwave-keyword-abbrev 0))
1716 (idlwave-define-abbrev "pv" "ptr_valid()" (idlwave-keyword-abbrev 1))
1717 (idlwave-define-abbrev "ipv" "if ptr_valid() then" (idlwave-keyword-abbrev 6))
1718
1719 ;; This section is reserved words only. (From IDL user manual)
1720 ;;
1721 (idlwave-define-abbrev "and" "and" (idlwave-keyword-abbrev 0 t) t)
1722 (idlwave-define-abbrev "begin" "begin" (idlwave-keyword-abbrev 0 t) t)
1723 (idlwave-define-abbrev "break" "break" (idlwave-keyword-abbrev 0 t) t)
1724 (idlwave-define-abbrev "case" "case" (idlwave-keyword-abbrev 0 t) t)
1725 (idlwave-define-abbrev "common" "common" (idlwave-keyword-abbrev 0 t) t)
1726 (idlwave-define-abbrev "continue" "continue" (idlwave-keyword-abbrev 0 t) t)
1727 (idlwave-define-abbrev "do" "do" (idlwave-keyword-abbrev 0 t) t)
1728 (idlwave-define-abbrev "else" "else" (idlwave-keyword-abbrev 0 t) t)
1729 (idlwave-define-abbrev "end" "end" 'idlwave-show-begin-check t)
1730 (idlwave-define-abbrev "endcase" "endcase" 'idlwave-show-begin-check t)
1731 (idlwave-define-abbrev "endelse" "endelse" 'idlwave-show-begin-check t)
1732 (idlwave-define-abbrev "endfor" "endfor" 'idlwave-show-begin-check t)
1733 (idlwave-define-abbrev "endif" "endif" 'idlwave-show-begin-check t)
1734 (idlwave-define-abbrev "endrep" "endrep" 'idlwave-show-begin-check t)
1735 (idlwave-define-abbrev "endswitch" "endswitch" 'idlwave-show-begin-check t)
1736 (idlwave-define-abbrev "endwhi" "endwhi" 'idlwave-show-begin-check t)
1737 (idlwave-define-abbrev "endwhile" "endwhile" 'idlwave-show-begin-check t)
1738 (idlwave-define-abbrev "eq" "eq" (idlwave-keyword-abbrev 0 t) t)
1739 (idlwave-define-abbrev "for" "for" (idlwave-keyword-abbrev 0 t) t)
1740 (idlwave-define-abbrev "function" "function" (idlwave-keyword-abbrev 0 t) t)
1741 (idlwave-define-abbrev "ge" "ge" (idlwave-keyword-abbrev 0 t) t)
1742 (idlwave-define-abbrev "goto" "goto" (idlwave-keyword-abbrev 0 t) t)
1743 (idlwave-define-abbrev "gt" "gt" (idlwave-keyword-abbrev 0 t) t)
1744 (idlwave-define-abbrev "if" "if" (idlwave-keyword-abbrev 0 t) t)
1745 (idlwave-define-abbrev "le" "le" (idlwave-keyword-abbrev 0 t) t)
1746 (idlwave-define-abbrev "lt" "lt" (idlwave-keyword-abbrev 0 t) t)
1747 (idlwave-define-abbrev "mod" "mod" (idlwave-keyword-abbrev 0 t) t)
1748 (idlwave-define-abbrev "ne" "ne" (idlwave-keyword-abbrev 0 t) t)
1749 (idlwave-define-abbrev "not" "not" (idlwave-keyword-abbrev 0 t) t)
1750 (idlwave-define-abbrev "of" "of" (idlwave-keyword-abbrev 0 t) t)
1751 (idlwave-define-abbrev "on_ioerror" "on_ioerror" (idlwave-keyword-abbrev 0 t) t)
1752 (idlwave-define-abbrev "or" "or" (idlwave-keyword-abbrev 0 t) t)
1753 (idlwave-define-abbrev "pro" "pro" (idlwave-keyword-abbrev 0 t) t)
1754 (idlwave-define-abbrev "repeat" "repeat" (idlwave-keyword-abbrev 0 t) t)
1755 (idlwave-define-abbrev "switch" "switch" (idlwave-keyword-abbrev 0 t) t)
1756 (idlwave-define-abbrev "then" "then" (idlwave-keyword-abbrev 0 t) t)
1757 (idlwave-define-abbrev "until" "until" (idlwave-keyword-abbrev 0 t) t)
1758 (idlwave-define-abbrev "while" "while" (idlwave-keyword-abbrev 0 t) t)
1759 (idlwave-define-abbrev "xor" "xor" (idlwave-keyword-abbrev 0 t) t)
1760
1761 (defvar imenu-create-index-function)
1762 (defvar extract-index-name-function)
1763 (defvar prev-index-position-function)
1764 (defvar imenu-extract-index-name-function)
1765 (defvar imenu-prev-index-position-function)
1766 ;; defined later - so just make the compiler hush
1767 (defvar idlwave-mode-menu)
1768 (defvar idlwave-mode-debug-menu)
1769
1770 ;;;###autoload
1771 (define-derived-mode idlwave-mode prog-mode "IDLWAVE"
1772 "Major mode for editing IDL source files (version 6.1_em22).
1773
1774 The main features of this mode are
1775
1776 1. Indentation and Formatting
1777 --------------------------
1778 Like other Emacs programming modes, C-j inserts a newline and indents.
1779 TAB is used for explicit indentation of the current line.
1780
1781 To start a continuation line, use \\[idlwave-split-line]. This
1782 function can also be used in the middle of a line to split the line
1783 at that point. When used inside a long constant string, the string
1784 is split at that point with the `+' concatenation operator.
1785
1786 Comments are indented as follows:
1787
1788 `;;;' Indentation remains unchanged.
1789 `;;' Indent like the surrounding code
1790 `;' Indent to a minimum column.
1791
1792 The indentation of comments starting in column 0 is never changed.
1793
1794 Use \\[idlwave-fill-paragraph] to refill a paragraph inside a
1795 comment. The indentation of the second line of the paragraph
1796 relative to the first will be retained. Use
1797 \\[idlwave-auto-fill-mode] to toggle auto-fill mode for these
1798 comments. When the variable `idlwave-fill-comment-line-only' is
1799 nil, code can also be auto-filled and auto-indented.
1800
1801 To convert pre-existing IDL code to your formatting style, mark the
1802 entire buffer with \\[mark-whole-buffer] and execute
1803 \\[idlwave-expand-region-abbrevs]. Then mark the entire buffer
1804 again followed by \\[indent-region] (`indent-region').
1805
1806 2. Routine Info
1807 ------------
1808 IDLWAVE displays information about the calling sequence and the
1809 accepted keyword parameters of a procedure or function with
1810 \\[idlwave-routine-info]. \\[idlwave-find-module] jumps to the
1811 source file of a module. These commands know about system
1812 routines, all routines in idlwave-mode buffers and (when the
1813 idlwave-shell is active) about all modules currently compiled under
1814 this shell. It also makes use of pre-compiled or custom-scanned
1815 user and library catalogs many popular libraries ship with by
1816 default. Use \\[idlwave-update-routine-info] to update this
1817 information, which is also used for completion (see item 4).
1818
1819 3. Online IDL Help
1820 ---------------
1821
1822 \\[idlwave-context-help] displays the IDL documentation relevant
1823 for the system variable, keyword, or routines at point. A single
1824 key stroke gets you directly to the right place in the docs. See
1825 the manual to configure where and how the HTML help is displayed.
1826
1827 4. Completion
1828 ----------
1829 \\[idlwave-complete] completes the names of procedures, functions
1830 class names, keyword parameters, system variables and tags, class
1831 tags, structure tags, filenames and much more. It is context
1832 sensitive and figures out what is expected at point. Lower case
1833 strings are completed in lower case, other strings in mixed or
1834 upper case.
1835
1836 5. Code Templates and Abbreviations
1837 --------------------------------
1838 Many Abbreviations are predefined to expand to code fragments and templates.
1839 The abbreviations start generally with a `\\`. Some examples:
1840
1841 \\pr PROCEDURE template
1842 \\fu FUNCTION template
1843 \\c CASE statement template
1844 \\sw SWITCH statement template
1845 \\f FOR loop template
1846 \\r REPEAT Loop template
1847 \\w WHILE loop template
1848 \\i IF statement template
1849 \\elif IF-ELSE statement template
1850 \\b BEGIN
1851
1852 For a full list, use \\[idlwave-list-abbrevs]. Some templates also
1853 have direct keybindings - see the list of keybindings below.
1854
1855 \\[idlwave-doc-header] inserts a documentation header at the
1856 beginning of the current program unit (pro, function or main).
1857 Change log entries can be added to the current program unit with
1858 \\[idlwave-doc-modification].
1859
1860 6. Automatic Case Conversion
1861 -------------------------
1862 The case of reserved words and some abbrevs is controlled by
1863 `idlwave-reserved-word-upcase' and `idlwave-abbrev-change-case'.
1864
1865 7. Automatic END completion
1866 ------------------------
1867 If the variable `idlwave-expand-generic-end' is non-nil, each END typed
1868 will be converted to the specific version, like ENDIF, ENDFOR, etc.
1869
1870 8. Hooks
1871 -----
1872 Loading idlwave.el runs `idlwave-load-hook'.
1873 Turning on `idlwave-mode' runs `idlwave-mode-hook'.
1874
1875 9. Documentation and Customization
1876 -------------------------------
1877 Info documentation for this package is available. Use
1878 \\[idlwave-info] to display (complain to your sysadmin if that does
1879 not work). For Postscript, PDF, and HTML versions of the
1880 documentation, check IDLWAVE's homepage at URL `http://idlwave.org'.
1881 IDLWAVE has customize support - see the group `idlwave'.
1882
1883 10.Keybindings
1884 -----------
1885 Here is a list of all keybindings of this mode.
1886 If some of the key bindings below show with ??, use \\[describe-key]
1887 followed by the key sequence to see what the key sequence does.
1888
1889 \\{idlwave-mode-map}"
1890 :abbrev-table idlwave-mode-abbrev-table
1891 (if idlwave-startup-message
1892 (message "Emacs IDLWAVE mode version %s." idlwave-mode-version))
1893 (setq idlwave-startup-message nil)
1894
1895 (set (make-local-variable 'indent-line-function) 'idlwave-indent-and-action)
1896
1897 (set (make-local-variable idlwave-comment-indent-function)
1898 #'idlwave-comment-hook)
1899
1900 (set (make-local-variable 'comment-start-skip) ";+[ \t]*")
1901 (set (make-local-variable 'comment-start) ";")
1902 (set (make-local-variable 'comment-add) 1) ; ";;" for new and regions
1903 (set (make-local-variable 'abbrev-all-caps) t)
1904 (set (make-local-variable 'indent-tabs-mode) nil)
1905 (set (make-local-variable 'completion-ignore-case) t)
1906
1907 (when (featurep 'easymenu)
1908 (easy-menu-add idlwave-mode-menu idlwave-mode-map)
1909 (easy-menu-add idlwave-mode-debug-menu idlwave-mode-map))
1910
1911 (setq abbrev-mode t)
1912
1913 (set (make-local-variable idlwave-fill-function) 'idlwave-auto-fill)
1914 (setq comment-end "")
1915 (set (make-local-variable 'comment-multi-line) nil)
1916 (set (make-local-variable 'paragraph-separate)
1917 "[ \t\f]*$\\|[ \t]*;+[ \t]*$\\|;+[+=-_*]+$")
1918 (set (make-local-variable 'paragraph-start) "[ \t\f]\\|[ \t]*;+[ \t]")
1919 (set (make-local-variable 'paragraph-ignore-fill-prefix) nil)
1920 (set (make-local-variable 'parse-sexp-ignore-comments) t)
1921
1922 ;; ChangeLog
1923 (set (make-local-variable 'add-log-current-defun-function)
1924 'idlwave-current-routine-fullname)
1925
1926 ;; Set tag table list to use IDLTAGS as file name.
1927 (if (boundp 'tag-table-alist)
1928 (add-to-list 'tag-table-alist '("\\.pro$" . "IDLTAGS")))
1929
1930 ;; Font-lock additions
1931 ;; Following line is for Emacs - XEmacs uses the corresponding property
1932 ;; on the `idlwave-mode' symbol.
1933 (set (make-local-variable 'font-lock-defaults) idlwave-font-lock-defaults)
1934 (set (make-local-variable 'font-lock-mark-block-function)
1935 'idlwave-mark-subprogram)
1936 (set (make-local-variable 'font-lock-fontify-region-function)
1937 'idlwave-font-lock-fontify-region)
1938
1939 ;; Imenu setup
1940 (set (make-local-variable 'imenu-create-index-function)
1941 'imenu-default-create-index-function)
1942 (set (make-local-variable 'imenu-extract-index-name-function)
1943 'idlwave-unit-name)
1944 (set (make-local-variable 'imenu-prev-index-position-function)
1945 'idlwave-prev-index-position)
1946
1947 ;; HideShow setup
1948 (add-to-list 'hs-special-modes-alist
1949 (list 'idlwave-mode
1950 idlwave-begin-block-reg
1951 idlwave-end-block-reg
1952 ";"
1953 'idlwave-forward-block nil))
1954
1955 ;; Make a local post-command-hook and add our hook to it
1956 ;; NB: `make-local-hook' needed for older/alternative Emacs compatibility
1957 ;; (make-local-hook 'post-command-hook)
1958 (add-hook 'post-command-hook 'idlwave-command-hook nil 'local)
1959
1960 ;; Make local hooks for buffer updates
1961 ;; NB: `make-local-hook' needed for older/alternative Emacs compatibility
1962 ;; (make-local-hook 'kill-buffer-hook)
1963 (add-hook 'kill-buffer-hook 'idlwave-kill-buffer-update nil 'local)
1964 ;; (make-local-hook 'after-save-hook)
1965 (add-hook 'after-save-hook 'idlwave-save-buffer-update nil 'local)
1966 (add-hook 'after-save-hook 'idlwave-revoke-license-to-kill nil 'local)
1967
1968 ;; Setup directories and file, if necessary
1969 (idlwave-setup)
1970
1971 ;; Update the routine info with info about current buffer?
1972 (idlwave-new-buffer-update)
1973
1974 ;; Check help location
1975 (idlwave-help-check-locations))
1976
1977 (defvar idlwave-setup-done nil)
1978 (defun idlwave-setup ()
1979 (unless idlwave-setup-done
1980 (if (not (file-directory-p idlwave-config-directory))
1981 (make-directory idlwave-config-directory))
1982 (setq
1983 idlwave-user-catalog-file (expand-file-name
1984 idlwave-user-catalog-file
1985 idlwave-config-directory)
1986 idlwave-xml-system-rinfo-converted-file
1987 (expand-file-name
1988 idlwave-xml-system-rinfo-converted-file
1989 idlwave-config-directory)
1990 idlwave-path-file (expand-file-name
1991 idlwave-path-file
1992 idlwave-config-directory))
1993 (idlwave-read-paths) ; we may need these early
1994 (setq idlwave-setup-done t)))
1995
1996 (defun idlwave-font-lock-fontify-region (beg end &optional verbose)
1997 "Fontify continuation lines correctly."
1998 (let (pos)
1999 (save-excursion
2000 (goto-char beg)
2001 (forward-line -1)
2002 (when (setq pos (idlwave-is-continuation-line))
2003 (goto-char pos)
2004 (idlwave-beginning-of-statement)
2005 (setq beg (point)))))
2006 (font-lock-default-fontify-region beg end verbose))
2007
2008 ;;
2009 ;; Code Formatting ----------------------------------------------------
2010 ;;
2011
2012 (defun idlwave-hard-tab ()
2013 "Insert TAB in buffer in current position."
2014 (interactive)
2015 (insert "\t"))
2016
2017 ;;; This stuff is experimental
2018
2019 (defvar idlwave-command-hook nil
2020 "If non-nil, a list that can be evaluated using `eval'.
2021 It is evaluated in the lisp function `idlwave-command-hook' which is
2022 placed in `post-command-hook'.")
2023
2024 (defun idlwave-command-hook ()
2025 "Command run after every command.
2026 Evaluates a non-nil value of the *variable* `idlwave-command-hook' and
2027 sets the variable to zero afterwards."
2028 (and idlwave-command-hook
2029 (listp idlwave-command-hook)
2030 (condition-case nil
2031 (eval idlwave-command-hook)
2032 (error nil)))
2033 (setq idlwave-command-hook nil))
2034
2035 ;;; End experiment
2036
2037 ;; It would be better to use expand.el for better abbrev handling and
2038 ;; versatility.
2039
2040 (defun idlwave-check-abbrev (arg &optional reserved)
2041 "Reverse abbrev expansion if in comment or string.
2042 Argument ARG is the number of characters to move point
2043 backward if `idlwave-abbrev-move' is non-nil.
2044 If optional argument RESERVED is non-nil then the expansion
2045 consists of reserved words, which will be capitalized if
2046 `idlwave-reserved-word-upcase' is non-nil.
2047 Otherwise, the abbrev will be capitalized if `idlwave-abbrev-change-case'
2048 is non-nil, unless its value is \`down in which case the abbrev will be
2049 made into all lowercase.
2050 Returns non-nil if abbrev is left expanded."
2051 (if (idlwave-quoted)
2052 (progn (unexpand-abbrev)
2053 nil)
2054 (if (and reserved idlwave-reserved-word-upcase)
2055 (upcase-region last-abbrev-location (point))
2056 (cond
2057 ((equal idlwave-abbrev-change-case 'down)
2058 (downcase-region last-abbrev-location (point)))
2059 (idlwave-abbrev-change-case
2060 (upcase-region last-abbrev-location (point)))))
2061 (if (and idlwave-abbrev-move (> arg 0))
2062 (if (boundp 'post-command-hook)
2063 (setq idlwave-command-hook (list 'backward-char (1+ arg)))
2064 (backward-char arg)))
2065 t))
2066
2067 (defun idlwave-in-comment ()
2068 "Return t if point is inside a comment, nil otherwise."
2069 (save-excursion
2070 (let ((here (point)))
2071 (and (idlwave-goto-comment) (> here (point))))))
2072
2073 (defun idlwave-goto-comment ()
2074 "Move to start of comment delimiter on current line.
2075 Moves to end of line if there is no comment delimiter.
2076 Ignores comment delimiters in strings.
2077 Returns point if comment found and nil otherwise."
2078 (let ((eos (point-at-eol))
2079 (data (match-data))
2080 found)
2081 ;; Look for first comment delimiter not in a string
2082 (beginning-of-line)
2083 (setq found (search-forward comment-start eos 'lim))
2084 (while (and found (idlwave-in-quote))
2085 (setq found (search-forward comment-start eos 'lim)))
2086 (store-match-data data)
2087 (and found (not (idlwave-in-quote))
2088 (progn
2089 (backward-char 1)
2090 (point)))))
2091
2092 (defun idlwave-region-active-p ()
2093 "Should we operate on an active region?"
2094 (if (fboundp 'use-region-p)
2095 (use-region-p)
2096 (region-active-p)))
2097
2098 (defun idlwave-show-matching-quote ()
2099 "Insert quote and show matching quote if this is end of a string."
2100 (interactive)
2101 (let ((bq (idlwave-in-quote))
2102 (inq last-command-event))
2103 (if (and bq (not (idlwave-in-comment)))
2104 (let ((delim (char-after bq)))
2105 (insert inq)
2106 (if (eq inq delim)
2107 (save-excursion
2108 (goto-char bq)
2109 (sit-for 1))))
2110 ;; Not the end of a string
2111 (insert inq))))
2112
2113 (defun idlwave-show-begin-check ()
2114 "Ensure that the previous word was a token before `idlwave-show-begin'.
2115 An END token must be preceded by whitespace."
2116 (if (not (idlwave-quoted))
2117 (if
2118 (save-excursion
2119 (backward-word 1)
2120 (backward-char 1)
2121 (looking-at "[ \t\n\f]"))
2122 (idlwave-show-begin))))
2123
2124 (defun idlwave-show-begin ()
2125 "Find the start of current block and blinks to it for a second.
2126 Also checks if the correct END statement has been used."
2127 ;; All end statements are reserved words
2128 ;; Re-indent end line
2129 ;;(insert-char ?\ 1) ;; So indent, etc. work well
2130 ;;(backward-char 1)
2131 (let* ((pos (point-marker))
2132 (last-abbrev-marker (copy-marker last-abbrev-location))
2133 (eol-pos (point-at-eol))
2134 begin-pos end-pos end end1 )
2135 (if idlwave-reindent-end (idlwave-indent-line))
2136 (setq last-abbrev-location (marker-position last-abbrev-marker))
2137 (when (and (idlwave-check-abbrev 0 t)
2138 idlwave-show-block)
2139 (save-excursion
2140 ;; Move inside current block
2141 (goto-char last-abbrev-marker)
2142 (idlwave-block-jump-out -1 'nomark)
2143 (setq begin-pos (point))
2144 (idlwave-block-jump-out 1 'nomark)
2145 (setq end-pos (point))
2146 (if (> end-pos eol-pos)
2147 (setq end-pos pos))
2148 (goto-char end-pos)
2149 (setq end (buffer-substring
2150 (progn
2151 (skip-chars-backward "a-zA-Z")
2152 (point))
2153 end-pos))
2154 (goto-char begin-pos)
2155 (when (setq end1 (cdr (idlwave-block-master)))
2156 (cond
2157 ((null end1)) ; no-operation
2158 ((string= (downcase end) (downcase end1))
2159 (sit-for 1))
2160 ((string= (downcase end) "end")
2161 ;; A generic end
2162 (if idlwave-expand-generic-end
2163 (save-excursion
2164 (goto-char pos)
2165 (backward-char 3)
2166 (insert (if (string= end "END") (upcase end1) end1))
2167 (delete-char 3)))
2168 (sit-for 1))
2169 (t
2170 (beep)
2171 (message "Warning: Shouldn't this be \"%s\" instead of \"%s\"?"
2172 end1 end)
2173 (sit-for 1))))))))
2174 ;;(delete-char 1))
2175
2176 (defun idlwave-block-master ()
2177 (let ((case-fold-search t))
2178 (save-excursion
2179 (cond
2180 ((looking-at "pro\\|case\\|switch\\|function\\>")
2181 (assoc (downcase (match-string 0)) idlwave-block-matches))
2182 ((looking-at "begin\\>")
2183 (let ((limit (save-excursion
2184 (idlwave-beginning-of-statement)
2185 (point))))
2186 (cond
2187 ((re-search-backward ":[ \t]*\\=" limit t)
2188 ;; seems to be a case thing
2189 '("begin" . "end"))
2190 ((re-search-backward idlwave-block-match-regexp limit t)
2191 (assoc (downcase (match-string 1))
2192 idlwave-block-matches))
2193 (t
2194 ;; Just a normal block
2195 '("begin" . "end")))))
2196 (t nil)))))
2197
2198 (defun idlwave-close-block ()
2199 "Terminate the current block with the correct END statement."
2200 (interactive)
2201 ;; Start new line if we are not in a new line
2202 (unless (save-excursion
2203 (skip-chars-backward " \t")
2204 (bolp))
2205 (let ((idlwave-show-block nil))
2206 (newline-and-indent)))
2207 (let ((last-abbrev-location (point))) ; for upcasing
2208 (insert "end")
2209 (idlwave-show-begin)))
2210
2211 (defun idlwave-custom-ampersand-surround (&optional is-action)
2212 "Surround &, leaving room for && (which surround as well)."
2213 (let* ((prev-char (char-after (- (point) 2)))
2214 (next-char (char-after (point)))
2215 (amp-left (eq prev-char ?&))
2216 (amp-right (eq next-char ?&))
2217 (len (if amp-left 2 1)))
2218 (unless amp-right ;no need to do it twice, amp-left will catch it.
2219 (idlwave-surround -1 (if (or is-action amp-left) -1) len))))
2220
2221 (defun idlwave-custom-ltgtr-surround (gtr &optional is-action)
2222 "Surround > and < by blanks, leaving room for >= and <=, and considering ->."
2223 (let* ((prev-char (char-after (- (point) 2)))
2224 (next-char (char-after (point)))
2225 (method-invoke (and gtr (eq prev-char ?-)))
2226 (len (if method-invoke 2 1)))
2227 (unless (eq next-char ?=)
2228 ;; Key binding: pad only on left, to save for possible >=/<=
2229 (idlwave-surround -1 (if (or is-action method-invoke) -1) len))))
2230
2231 (defun idlwave-surround (&optional before after length is-action)
2232 "Surround the LENGTH characters before point with blanks.
2233 LENGTH defaults to 1.
2234 Optional arguments BEFORE and AFTER affect the behavior before and
2235 after the characters (see also description of `idlwave-make-space'):
2236
2237 nil do nothing
2238 0 force no spaces
2239 integer > 0 force exactly n spaces
2240 integer < 0 at least |n| spaces
2241
2242 The function does nothing if any of the following conditions is true:
2243 - `idlwave-surround-by-blank' is nil
2244 - the character before point is inside a string or comment"
2245 (when (and idlwave-surround-by-blank (not (idlwave-quoted)))
2246 (let ((length (or length 1))) ; establish a default for LENGTH
2247 (backward-char length)
2248 (save-restriction
2249 (let ((here (point)))
2250 (skip-chars-backward " \t")
2251 (if (bolp)
2252 ;; avoid clobbering indent
2253 (progn
2254 (move-to-column (idlwave-calculate-indent))
2255 (if (<= (point) here)
2256 (narrow-to-region (point) here))
2257 (goto-char here)))
2258 (idlwave-make-space before))
2259 (skip-chars-forward " \t"))
2260 (forward-char length)
2261 (idlwave-make-space after)
2262 ;; Check to see if the line should auto wrap
2263 (if (and (equal (char-after (1- (point))) ?\ )
2264 (> (current-column) fill-column))
2265 (funcall auto-fill-function)))))
2266
2267 (defun idlwave-make-space (n)
2268 "Make space at point.
2269 The space affected is all the spaces and tabs around point.
2270 If n is non-nil then point is left abs(n) spaces from the beginning of
2271 the contiguous space.
2272 The amount of space at point is determined by N.
2273 If the value of N is:
2274 nil - do nothing.
2275 > 0 - exactly N spaces.
2276 < 0 - a minimum of -N spaces, i.e., do not change if there are
2277 already -N spaces.
2278 0 - no spaces (i.e. remove any existing space)."
2279 (if (integerp n)
2280 (let
2281 ((start-col (progn (skip-chars-backward " \t") (current-column)))
2282 (left (point))
2283 (end-col (progn (skip-chars-forward " \t") (current-column))))
2284 (delete-horizontal-space)
2285 (cond
2286 ((> n 0)
2287 (idlwave-indent-to (+ start-col n))
2288 (goto-char (+ left n)))
2289 ((< n 0)
2290 (idlwave-indent-to end-col (- n))
2291 (goto-char (- left n)))
2292 ;; n = 0, done
2293 ))))
2294
2295 (defun idlwave-newline ()
2296 "Insert a newline and indent the current and previous line."
2297 (interactive)
2298 ;;
2299 ;; Handle unterminated single and double quotes
2300 ;; If not in a comment and in a string then insertion of a newline
2301 ;; will mean unbalanced quotes.
2302 ;;
2303 (if (and (not (idlwave-in-comment)) (idlwave-in-quote))
2304 (progn (beep)
2305 (message "Warning: unbalanced quotes?")))
2306 (newline)
2307 ;;
2308 ;; The current line is being split, the cursor should be at the
2309 ;; beginning of the new line skipping the leading indentation.
2310 ;;
2311 ;; The reason we insert the new line before indenting is that the
2312 ;; indenting could be confused by keywords (e.g. END) on the line
2313 ;; after the split point. This prevents us from just using
2314 ;; `indent-for-tab-command' followed by `newline-and-indent'.
2315 ;;
2316 (beginning-of-line 0)
2317 (idlwave-indent-line)
2318 (forward-line)
2319 (idlwave-indent-line))
2320
2321 ;;
2322 ;; Use global variable 'comment-column' to set parallel comment
2323 ;;
2324 ;; Modeled on lisp.el
2325 ;; Emacs Lisp and IDL (Wave CL) have identical comment syntax
2326 (defun idlwave-comment-hook ()
2327 "Compute indent for the beginning of the IDL comment delimiter."
2328 (if (or (looking-at idlwave-no-change-comment)
2329 (looking-at (or idlwave-begin-line-comment "^;")))
2330 (current-column)
2331 (if (looking-at idlwave-code-comment)
2332 (if (save-excursion (skip-chars-backward " \t") (bolp))
2333 ;; On line by itself, indent as code
2334 (let ((tem (idlwave-calculate-indent)))
2335 (if (listp tem) (car tem) tem))
2336 ;; after code - do not change
2337 (current-column))
2338 (skip-chars-backward " \t")
2339 (max (if (bolp) 0 (1+ (current-column)))
2340 comment-column))))
2341
2342 (defun idlwave-split-line ()
2343 "Continue line by breaking line at point and indent the lines.
2344 For a code line insert continuation marker. If the line is a line comment
2345 then the new line will contain a comment with the same indentation.
2346 Splits strings with the IDL operator `+' if `idlwave-split-line-string' is
2347 non-nil."
2348 (interactive)
2349 ;; Expand abbreviation, just like normal RET would.
2350 (and abbrev-mode (expand-abbrev))
2351 (let (beg)
2352 (if (not (idlwave-in-comment))
2353 ;; For code line add continuation.
2354 ;; Check if splitting a string.
2355 (progn
2356 (if (setq beg (idlwave-in-quote))
2357 (if idlwave-split-line-string
2358 ;; Split the string.
2359 (progn (insert (setq beg (char-after beg)) " + "
2360 idlwave-continuation-char beg)
2361 (backward-char 1)
2362 (newline-and-indent)
2363 (forward-char 1))
2364 ;; Do not split the string.
2365 (beep)
2366 (message "Warning: continuation inside string!!")
2367 (insert " " idlwave-continuation-char))
2368 ;; Not splitting a string.
2369 (if (not (member (char-before) '(?\ ?\t)))
2370 (insert " "))
2371 (insert idlwave-continuation-char)
2372 (newline-and-indent)))
2373 (indent-new-comment-line))
2374 ;; Indent previous line
2375 (setq beg (- (point-max) (point)))
2376 (forward-line -1)
2377 (idlwave-indent-line)
2378 (goto-char (- (point-max) beg))
2379 ;; Reindent new line
2380 (idlwave-indent-line)))
2381
2382 (defun idlwave-beginning-of-subprogram (&optional nomark)
2383 "Move point to the beginning of the current program unit.
2384 If NOMARK is non-nil, do not push mark."
2385 (interactive)
2386 (idlwave-find-key idlwave-begin-unit-reg -1 nomark))
2387
2388 (defun idlwave-end-of-subprogram (&optional nomark)
2389 "Move point to the start of the next program unit.
2390 If NOMARK is non-nil, do not push mark."
2391 (interactive)
2392 (idlwave-end-of-statement)
2393 (idlwave-find-key idlwave-end-unit-reg 1 nomark))
2394
2395 (defun idlwave-mark-statement ()
2396 "Mark current IDL statement."
2397 (interactive)
2398 (idlwave-end-of-statement)
2399 (let ((end (point)))
2400 (idlwave-beginning-of-statement)
2401 (push-mark end nil t)))
2402
2403 (defun idlwave-mark-block ()
2404 "Mark containing block."
2405 (interactive)
2406 (idlwave-end-of-statement)
2407 (idlwave-backward-up-block -1)
2408 (idlwave-end-of-statement)
2409 (let ((end (point)))
2410 (idlwave-backward-block)
2411 (idlwave-beginning-of-statement)
2412 (push-mark end nil t)))
2413
2414
2415 (defun idlwave-mark-subprogram ()
2416 "Put mark at beginning of program, point at end.
2417 The marks are pushed."
2418 (interactive)
2419 (idlwave-end-of-statement)
2420 (idlwave-beginning-of-subprogram)
2421 (let ((beg (point)))
2422 (idlwave-forward-block)
2423 (push-mark beg nil t))
2424 (exchange-point-and-mark))
2425
2426 (defun idlwave-backward-up-block (&optional arg)
2427 "Move to beginning of enclosing block if prefix ARG >= 0.
2428 If prefix ARG < 0 then move forward to enclosing block end."
2429 (interactive "p")
2430 (idlwave-block-jump-out (- arg) 'nomark))
2431
2432 (defun idlwave-beginning-of-block ()
2433 "Go to the beginning of the current block."
2434 (interactive)
2435 (idlwave-block-jump-out -1 'nomark)
2436 (forward-word 1))
2437
2438 (defun idlwave-end-of-block ()
2439 "Go to the beginning of the current block."
2440 (interactive)
2441 (idlwave-block-jump-out 1 'nomark)
2442 (backward-word 1))
2443
2444 (defun idlwave-forward-block (&optional arg)
2445 "Move across next nested block."
2446 (interactive)
2447 (let ((arg (or arg 1)))
2448 (if (idlwave-down-block arg)
2449 (idlwave-block-jump-out arg 'nomark))))
2450
2451 (defun idlwave-backward-block ()
2452 "Move backward across previous nested block."
2453 (interactive)
2454 (if (idlwave-down-block -1)
2455 (idlwave-block-jump-out -1 'nomark)))
2456
2457 (defun idlwave-down-block (&optional arg)
2458 "Go down a block.
2459 With ARG: ARG >= 0 go forwards, ARG < 0 go backwards.
2460 Returns non-nil if successful."
2461 (interactive "p")
2462 (let (status)
2463 (if (< arg 0)
2464 ;; Backward
2465 (let ((eos (save-excursion
2466 (idlwave-block-jump-out -1 'nomark)
2467 (point))))
2468 (if (setq status (idlwave-find-key
2469 idlwave-end-block-reg -1 'nomark eos))
2470 (idlwave-beginning-of-statement)
2471 (message "No nested block before beginning of containing block.")))
2472 ;; Forward
2473 (let ((eos (save-excursion
2474 (idlwave-block-jump-out 1 'nomark)
2475 (point))))
2476 (if (setq status (idlwave-find-key
2477 idlwave-begin-block-reg 1 'nomark eos))
2478 (idlwave-end-of-statement)
2479 (message "No nested block before end of containing block."))))
2480 status))
2481
2482 (defun idlwave-mark-doclib ()
2483 "Put point at beginning of doc library header, mark at end.
2484 The marks are pushed."
2485 (interactive)
2486 (let (beg
2487 (here (point)))
2488 (goto-char (point-max))
2489 (if (re-search-backward idlwave-doclib-start nil t)
2490 (progn
2491 (setq beg (progn (beginning-of-line) (point)))
2492 (if (re-search-forward idlwave-doclib-end nil t)
2493 (progn
2494 (forward-line 1)
2495 (push-mark beg nil t)
2496 (message "Could not find end of doc library header.")))
2497 (message "Could not find doc library header start.")
2498 (goto-char here)))))
2499
2500 (defun idlwave-current-routine-fullname ()
2501 (let ((name (idlwave-current-routine)))
2502 (idlwave-make-full-name (nth 2 name) (car name))))
2503
2504 (defun idlwave-current-routine ()
2505 "Return (NAME TYPE CLASS) of current routine."
2506 (idlwave-routines)
2507 (save-excursion
2508 (idlwave-beginning-of-subprogram 'nomark)
2509 (if (looking-at "[ \t]*\\<\\(pro\\|function\\)\\>\\s-+\\(\\([a-zA-Z0-9$_]+\\)::\\)?\\([a-zA-Z0-9$_]+\\)")
2510 (let* ((type (if (string= (downcase (match-string 1)) "pro")
2511 'pro 'function))
2512 (class (idlwave-sintern-class (match-string 3)))
2513 (name (idlwave-sintern-routine-or-method (match-string 4) class)))
2514 (list name type class)))))
2515
2516 (defvar idlwave-shell-prompt-pattern)
2517 (defun idlwave-beginning-of-statement ()
2518 "Move to beginning of the current statement.
2519 Skips back past statement continuations.
2520 Point is placed at the beginning of the line whether or not this is an
2521 actual statement."
2522 (interactive)
2523 (cond
2524 ((derived-mode-p 'idlwave-shell-mode)
2525 (if (re-search-backward idlwave-shell-prompt-pattern nil t)
2526 (goto-char (match-end 0))))
2527 (t
2528 (if (save-excursion (forward-line -1) (idlwave-is-continuation-line))
2529 (idlwave-previous-statement)
2530 (beginning-of-line)))))
2531
2532 (defun idlwave-previous-statement ()
2533 "Move point to beginning of the previous statement.
2534 Returns t if the current line before moving is the beginning of
2535 the first non-comment statement in the file, and nil otherwise."
2536 (interactive)
2537 (let (first-statement)
2538 (if (not (= (forward-line -1) 0))
2539 ;; first line in file
2540 t
2541 ;; skip blank lines, label lines, include lines and line comments
2542 (while (and
2543 ;; The current statement is the first statement until we
2544 ;; reach another statement.
2545 (setq first-statement
2546 (or
2547 (looking-at idlwave-comment-line-start-skip)
2548 (looking-at "[ \t]*$")
2549 (looking-at (concat "[ \t]*" idlwave-label "[ \t]*$"))
2550 (looking-at "^@")))
2551 (= (forward-line -1) 0)))
2552 ;; skip continuation lines
2553 (while (and
2554 (save-excursion
2555 (forward-line -1)
2556 (idlwave-is-continuation-line))
2557 (= (forward-line -1) 0)))
2558 first-statement)))
2559
2560 (defun idlwave-end-of-statement ()
2561 "Move point to the end of the current IDL statement.
2562 If not in a statement just moves to end of line. Returns position."
2563 (interactive)
2564 (while (and (idlwave-is-continuation-line)
2565 (= (forward-line 1) 0))
2566 (while (and (idlwave-is-comment-or-empty-line)
2567 (= (forward-line 1) 0))))
2568 (end-of-line)
2569 (point))
2570
2571 (defun idlwave-end-of-statement0 ()
2572 "Move point to the end of the current IDL statement.
2573 If not in a statement just moves to end of line. Returns position."
2574 (interactive)
2575 (while (and (idlwave-is-continuation-line)
2576 (= (forward-line 1) 0)))
2577 (end-of-line)
2578 (point))
2579
2580 (defun idlwave-next-statement ()
2581 "Move point to beginning of the next IDL statement.
2582 Returns t if that statement is the last non-comment IDL statement
2583 in the file, and nil otherwise."
2584 (interactive)
2585 (let (last-statement)
2586 (idlwave-end-of-statement)
2587 ;; skip blank lines, label lines, include lines and line comments
2588 (while (and (= (forward-line 1) 0)
2589 ;; The current statement is the last statement until
2590 ;; we reach a new statement.
2591 (setq last-statement
2592 (or
2593 (looking-at idlwave-comment-line-start-skip)
2594 (looking-at "[ \t]*$")
2595 (looking-at (concat "[ \t]*" idlwave-label "[ \t]*$"))
2596 (looking-at "^@")))))
2597 last-statement))
2598
2599 (defun idlwave-skip-multi-commands (&optional lim)
2600 "Skip past multiple commands on a line (with `&')."
2601 (let ((save-point (point)))
2602 (when (re-search-forward ".*&" lim t)
2603 (goto-char (match-end 0))
2604 (if (idlwave-quoted)
2605 (goto-char save-point)
2606 (if (eq (char-after (- (point) 2)) ?&) (goto-char save-point))))
2607 (point)))
2608
2609 (defun idlwave-skip-label-or-case ()
2610 "Skip label or case statement element.
2611 Returns position after label.
2612 If there is no label point is not moved and nil is returned."
2613 ;; Case expressions and labels are terminated by a colon.
2614 ;; So we find the first colon in the line and make sure
2615 ;; - no `?' is before it (might be a ? b : c)
2616 ;; - it is not in a comment
2617 ;; - not in a string constant
2618 ;; - not in parenthesis (like a[0:3])
2619 ;; - not followed by another ":" in explicit class, ala a->b::c
2620 ;; As many in this mode, this function is heuristic and not an exact
2621 ;; parser.
2622 (let* ((start (point))
2623 (eos (save-excursion (idlwave-end-of-statement) (point)))
2624 (end (idlwave-find-key ":" 1 'nomark eos)))
2625 (if (and end
2626 (= (nth 0 (parse-partial-sexp start end)) 0)
2627 (not (string-match "\\?" (buffer-substring start end)))
2628 (not (string-match "^::" (buffer-substring end eos))))
2629 (progn
2630 (forward-char)
2631 (point))
2632 (goto-char start)
2633 nil)))
2634
2635 (defun idlwave-start-of-substatement (&optional pre)
2636 "Move to start of next IDL substatement after point.
2637 Uses the type of the current IDL statement to determine if the next
2638 statement is on a new line or is a subpart of the current statement.
2639 Returns point at start of substatement modulo whitespace.
2640 If optional argument is non-nil move to beginning of current
2641 substatement."
2642 (let ((orig (point))
2643 (eos (idlwave-end-of-statement))
2644 (ifnest 0)
2645 st nst last)
2646 (idlwave-beginning-of-statement)
2647 (idlwave-skip-label-or-case)
2648 (if (< (point) orig)
2649 (idlwave-skip-multi-commands orig))
2650 (setq last (point))
2651 ;; Continue looking for substatements until we are past orig
2652 (while (and (<= (point) orig) (not (eobp)))
2653 (setq last (point))
2654 (setq nst (nth 1 (cdr (setq st (car (idlwave-statement-type))))))
2655 (if (equal (car st) 'if) (setq ifnest (1+ ifnest)))
2656 (cond ((and nst
2657 (idlwave-find-key nst 1 'nomark eos))
2658 (goto-char (match-end 0)))
2659 ((and (> ifnest 0) (idlwave-find-key "\\<else\\>" 1 'nomark eos))
2660 (setq ifnest (1- ifnest))
2661 (goto-char (match-end 0)))
2662 (t (setq ifnest 0)
2663 (idlwave-next-statement))))
2664 (if pre (goto-char last))
2665 ;; If a continuation line starts here, move to next line
2666 (if (looking-at "[ \t]*\\$\\([ \t]*\\(;\\|$\\)\\)")
2667 (beginning-of-line 2))
2668 (point)))
2669
2670 (defun idlwave-statement-type ()
2671 "Return the type of the current IDL statement.
2672 Uses `idlwave-statement-match' to return a cons of (type . point) with
2673 point the ending position where the type was determined. Type is the
2674 association from `idlwave-statement-match', i.e. the cons cell from the
2675 list not just the type symbol. Returns nil if not an identifiable
2676 statement."
2677 (save-excursion
2678 ;; Skip whitespace within a statement which is spaces, tabs, continuations
2679 ;; and possibly comments
2680 (while (looking-at "[ \t]*\\$")
2681 (forward-line 1))
2682 (skip-chars-forward " \t")
2683 (let ((st idlwave-statement-match)
2684 (case-fold-search t))
2685 (while (and (not (looking-at (nth 0 (cdr (car st)))))
2686 (setq st (cdr st))))
2687 (if st
2688 (append st (match-end 0))))))
2689
2690 (defun idlwave-expand-equal (&optional before after is-action)
2691 "Pad '=' with spaces.
2692 Two cases: Assignment statement, and keyword assignment.
2693 Which case is determined using `idlwave-start-of-substatement' and
2694 `idlwave-statement-type'. The equal sign will be surrounded by BEFORE
2695 and AFTER blanks. If `idlwave-pad-keyword' is t then keyword assignment
2696 is treated just like assignment statements. When nil, spaces are
2697 removed for keyword assignment. Any other value keeps the current space
2698 around the `='. Limits in for loops are treated as keyword assignment.
2699
2700 Starting with IDL 6.0, a number of op= assignments are available.
2701 Since ambiguities of the form:
2702
2703 r and= b
2704 rand= b
2705
2706 can occur, alphanumeric operator assignment will never be pre-padded,
2707 only post-padded. You must use a space before these to disambiguate
2708 \(not just for padding, but for proper parsing by IDL too!). Other
2709 operators, such as ##=, ^=, etc., will be pre-padded.
2710
2711 IS-ACTION is ignored.
2712
2713 See `idlwave-surround'."
2714 (if idlwave-surround-by-blank
2715 (let
2716 ((non-an-ops "\\(##\\|\\*\\|\\+\\|-\\|/\\|<\\|>\\|\\^\\)\\=")
2717 (an-ops
2718 "\\s-\\(AND\\|EQ\\|GE\\|GT\\|LE\\|LT\\|MOD\\|NE\\|OR\\|XOR\\)\\=")
2719 (len 1))
2720
2721 (save-excursion
2722 (let ((case-fold-search t))
2723 (backward-char)
2724 (if (or
2725 (re-search-backward non-an-ops nil t)
2726 ;; Why doesn't ##? work for both?
2727 (re-search-backward "\\(#\\)\\=" nil t))
2728 (setq len (1+ (length (match-string 1))))
2729 (when (re-search-backward an-ops nil t)
2730 ;(setq begin nil) ; won't modify begin
2731 (setq len (1+ (length (match-string 1))))))))
2732
2733 (if (eq t idlwave-pad-keyword)
2734 ;; Everything gets padded equally
2735 (idlwave-surround before after len)
2736 ;; Treating keywords/for variables specially...
2737 (let ((st (save-excursion ; To catch "for" variables
2738 (idlwave-start-of-substatement t)
2739 (idlwave-statement-type)))
2740 (what (save-excursion ; To catch keywords
2741 (skip-chars-backward "= \t")
2742 (nth 2 (idlwave-where)))))
2743 (cond ((or (memq what '(function-keyword procedure-keyword))
2744 (memq (caar st) '(for pdef)))
2745 (cond
2746 ((null idlwave-pad-keyword)
2747 (idlwave-surround 0 0)
2748 ) ; remove space
2749 (t))) ; leave any spaces alone
2750 (t (idlwave-surround before after len))))))))
2751
2752
2753 (defun idlwave-indent-and-action (&optional arg)
2754 "Call `idlwave-indent-line' and do expand actions.
2755 With prefix ARG non-nil, indent the entire sub-statement."
2756 (interactive "p")
2757 (save-excursion
2758 (if (and idlwave-expand-generic-end
2759 (re-search-backward "\\<\\(end\\)\\s-*\\="
2760 (max 0 (- (point) 10)) t)
2761 (looking-at "\\(end\\)\\([ \n\t]\\|\\'\\)"))
2762 (progn (goto-char (match-end 1))
2763 ;;Expand the END abbreviation, just as RET or Space would have.
2764 (if abbrev-mode (expand-abbrev)
2765 (idlwave-show-begin)))))
2766 (when (and (not arg) current-prefix-arg)
2767 (setq arg current-prefix-arg)
2768 (setq current-prefix-arg nil))
2769 (if arg
2770 (idlwave-indent-statement)
2771 (idlwave-indent-line t)))
2772
2773 (defun idlwave-indent-line (&optional expand)
2774 "Indent current IDL line as code or as a comment.
2775 The actions in `idlwave-indent-action-table' are performed.
2776 If the optional argument EXPAND is non-nil then the actions in
2777 `idlwave-indent-expand-table' are performed."
2778 (interactive)
2779 ;; Move point out of left margin.
2780 (if (save-excursion
2781 (skip-chars-backward " \t")
2782 (bolp))
2783 (skip-chars-forward " \t"))
2784 (let ((mloc (point-marker)))
2785 (save-excursion
2786 (beginning-of-line)
2787 (if (looking-at idlwave-comment-line-start-skip)
2788 ;; Indentation for a line comment
2789 (progn
2790 (skip-chars-forward " \t")
2791 (idlwave-indent-left-margin (idlwave-comment-hook)))
2792 ;;
2793 ;; Code Line
2794 ;;
2795 ;; Before indenting, run action routines.
2796 ;;
2797 (if (and expand idlwave-do-actions)
2798 (mapc 'idlwave-do-action idlwave-indent-expand-table))
2799 ;;
2800 (if idlwave-do-actions
2801 (mapc 'idlwave-do-action idlwave-indent-action-table))
2802 ;;
2803 ;; No longer expand abbrevs on the line. The user can do this
2804 ;; manually using expand-region-abbrevs.
2805 ;;
2806 ;; Indent for code line
2807 ;;
2808 (beginning-of-line)
2809 (if (or
2810 ;; a label line
2811 (looking-at (concat "^" idlwave-label "[ \t]*$"))
2812 ;; a batch command
2813 (looking-at "^[ \t]*@"))
2814 ;; leave flush left
2815 nil
2816 ;; indent the line
2817 (idlwave-indent-left-margin (idlwave-calculate-indent)))
2818 ;; Adjust parallel comment
2819 (end-of-line)
2820 (if (idlwave-in-comment)
2821 ;; Emacs 21 is too smart with fill-column on comment indent
2822 (let ((fill-column (if (fboundp 'comment-indent-new-line)
2823 (1- (frame-width))
2824 fill-column)))
2825 (indent-for-comment)))))
2826 (goto-char mloc)
2827 ;; Get rid of marker
2828 (set-marker mloc nil)))
2829
2830 (defun idlwave-do-action (action)
2831 "Perform an action repeatedly on a line.
2832 ACTION is a list (REG . FUNC). REG is a regular expression. FUNC is
2833 either a function name to be called with `funcall' or a list to be
2834 evaluated with `eval'. The action performed by FUNC should leave
2835 point after the match for REG - otherwise an infinite loop may be
2836 entered. FUNC is always passed a final argument of 'is-action, so it
2837 can discriminate between being run as an action, or a key binding."
2838 (let ((action-key (car action))
2839 (action-routine (cdr action)))
2840 (beginning-of-line)
2841 (while (idlwave-look-at action-key)
2842 (if (listp action-routine)
2843 (eval (append action-routine '('is-action)))
2844 (funcall action-routine 'is-action)))))
2845
2846 (defun idlwave-indent-to (col &optional min)
2847 "Indent from point with spaces until column COL.
2848 Inserts space before markers at point."
2849 (if (not min) (setq min 0))
2850 (insert-before-markers
2851 (make-string (max min (- col (current-column))) ?\ )))
2852
2853 (defun idlwave-indent-left-margin (col)
2854 "Indent the current line to column COL.
2855 Indents such that first non-whitespace character is at column COL
2856 Inserts spaces before markers at point."
2857 (save-excursion
2858 (beginning-of-line)
2859 (delete-horizontal-space)
2860 (idlwave-indent-to col)))
2861
2862 (defun idlwave-indent-subprogram ()
2863 "Indent program unit which contains point."
2864 (interactive)
2865 (save-excursion
2866 (idlwave-end-of-statement)
2867 (idlwave-beginning-of-subprogram)
2868 (let ((beg (point)))
2869 (idlwave-forward-block)
2870 (message "Indenting subprogram...")
2871 (indent-region beg (point) nil))
2872 (message "Indenting subprogram...done.")))
2873
2874 (defun idlwave-indent-statement ()
2875 "Indent current statement, including all continuation lines."
2876 (interactive)
2877 (save-excursion
2878 (idlwave-beginning-of-statement)
2879 (let ((beg (point)))
2880 (idlwave-end-of-statement)
2881 (indent-region beg (point) nil))))
2882
2883 (defun idlwave-calculate-indent ()
2884 "Return appropriate indentation for current line as IDL code."
2885 (save-excursion
2886 (beginning-of-line)
2887 (cond
2888 ;; Check for beginning of unit - main (beginning of buffer), pro, or
2889 ;; function
2890 ((idlwave-look-at idlwave-begin-unit-reg)
2891 0)
2892 ;; Check for continuation line
2893 ((save-excursion
2894 (and (= (forward-line -1) 0)
2895 (idlwave-is-continuation-line)))
2896 (idlwave-calculate-cont-indent))
2897 ;; calculate indent based on previous and current statements
2898 (t (let* (beg-prev-pos
2899 (the-indent
2900 ;; calculate indent based on previous statement
2901 (save-excursion
2902 (cond
2903 ;; Beginning of file
2904 ((prog1
2905 (idlwave-previous-statement)
2906 (setq beg-prev-pos (point)))
2907 0)
2908 ;; Main block
2909 ((idlwave-look-at idlwave-begin-unit-reg t)
2910 (+ (idlwave-current-statement-indent)
2911 idlwave-main-block-indent))
2912 ;; Begin block
2913 ((idlwave-look-at idlwave-begin-block-reg t)
2914 (+ (idlwave-min-current-statement-indent)
2915 idlwave-block-indent))
2916 ;; End Block
2917 ((idlwave-look-at idlwave-end-block-reg t)
2918 (progn
2919 ;; Match to the *beginning* of the block opener
2920 (goto-char beg-prev-pos)
2921 (idlwave-block-jump-out -1 'nomark) ; go to begin block
2922 (idlwave-min-current-statement-indent)))
2923 ;; idlwave-end-offset
2924 ;; idlwave-block-indent))
2925
2926 ;; Default to current indent
2927 ((idlwave-current-statement-indent))))))
2928 ;; adjust the indentation based on the current statement
2929 (cond
2930 ;; End block
2931 ((idlwave-look-at idlwave-end-block-reg)
2932 (+ the-indent idlwave-end-offset))
2933 (the-indent)))))))
2934
2935 ;;
2936 ;; Parentheses indent
2937 ;;
2938
2939 (defun idlwave-calculate-paren-indent (beg-reg end-reg close-exp)
2940 "Calculate the continuation indent inside a paren group.
2941 Returns a cons-cell with (open . indent), where open is the
2942 location of the open paren."
2943 (let ((open (nth 1 (parse-partial-sexp beg-reg end-reg))))
2944 ;; Found an innermost open paren.
2945 (when open
2946 (goto-char open)
2947 ;; Line up with next word unless this is a closing paren.
2948 (cons open
2949 (cond
2950 ;; Plain Kernighan-style nested indent
2951 (idlwave-indent-parens-nested
2952 (+ idlwave-continuation-indent (idlwave-current-indent)))
2953
2954 ;; This is a closed paren - line up under open paren.
2955 (close-exp
2956 (current-column))
2957
2958 ;; Empty (or just comment) follows -- revert to basic indent
2959 ((progn
2960 ;; Skip paren
2961 (forward-char 1)
2962 (looking-at "[ \t$]*\\(;.*\\)?$"))
2963 nil)
2964
2965 ;; Line up with first word after any blank space
2966 ((progn
2967 (skip-chars-forward " \t")
2968 (current-column))))))))
2969
2970 (defun idlwave-calculate-cont-indent ()
2971 "Calculates the IDL continuation indent column from the previous statement.
2972 Note that here previous statement usually means the beginning of the
2973 current statement if this statement is a continuation of the previous
2974 line. Various special types of continuations, including assignments,
2975 routine definitions, and parenthetical groupings, are treated separately."
2976 (save-excursion
2977 (let* ((case-fold-search t)
2978 (end-reg (progn (beginning-of-line) (point)))
2979 (beg-last-statement (save-excursion (idlwave-previous-statement)
2980 (point)))
2981 (beg-reg (progn (idlwave-start-of-substatement 'pre)
2982 (if (eq (line-beginning-position) end-reg)
2983 (goto-char beg-last-statement)
2984 (point))))
2985 (basic-indent (+ (idlwave-min-current-statement-indent end-reg)
2986 idlwave-continuation-indent))
2987 fancy-nonparen-indent fancy-paren-indent)
2988 (cond
2989 ;; Align then with its matching if, etc.
2990 ((let ((matchers '(("\\<if\\>" . "[ \t]*then")
2991 ("\\<\\(if\\|end\\(if\\)?\\)\\>" . "[ \t]*else")
2992 ("\\<\\(for\\|while\\)\\>" . "[ \t]*do")
2993 ("\\<\\(repeat\\|end\\(rep\\)?\\)\\>" .
2994 "[ \t]*until")
2995 ("\\<case\\>" . "[ \t]*of")))
2996 match cont-re)
2997 (goto-char end-reg)
2998 (and
2999 (setq cont-re
3000 (catch 'exit
3001 (while (setq match (car matchers))
3002 (if (looking-at (cdr match))
3003 (throw 'exit (car match)))
3004 (setq matchers (cdr matchers)))))
3005 (idlwave-find-key cont-re -1 'nomark beg-last-statement)))
3006 (if (looking-at "end") ;; that one's special
3007 (- (idlwave-current-indent)
3008 (+ idlwave-block-indent idlwave-end-offset))
3009 (idlwave-current-indent)))
3010
3011 ;; Indent in from the previous line for continuing statements
3012 ((let ((matchers '("\\<then\\>"
3013 "\\<do\\>"
3014 "\\<repeat\\>"
3015 "\\<else\\>"))
3016 match)
3017 (catch 'exit
3018 (goto-char end-reg)
3019 (if (/= (forward-line -1) 0)
3020 (throw 'exit nil))
3021 (while (setq match (car matchers))
3022 (if (looking-at (concat ".*" match "[ \t]*\\$[ \t]*"
3023 "\\(;.*\\)?$"))
3024 (throw 'exit t))
3025 (setq matchers (cdr matchers)))))
3026 (+ idlwave-continuation-indent (idlwave-current-indent)))
3027
3028 ;; Parenthetical indent, either traditional or Kernighan style
3029 ((setq fancy-paren-indent
3030 (let* ((end-reg end-reg)
3031 (close-exp (progn
3032 (goto-char end-reg)
3033 (skip-chars-forward " \t")
3034 (looking-at "\\s)")))
3035 indent-cons)
3036 (catch 'loop
3037 (while (setq indent-cons (idlwave-calculate-paren-indent
3038 beg-reg end-reg close-exp))
3039 ;; First permitted containing paren
3040 (if (or
3041 idlwave-indent-to-open-paren
3042 idlwave-indent-parens-nested
3043 (null (cdr indent-cons))
3044 (< (- (cdr indent-cons) basic-indent)
3045 idlwave-max-extra-continuation-indent))
3046 (throw 'loop (cdr indent-cons)))
3047 (setq end-reg (car indent-cons))))))
3048 fancy-paren-indent)
3049
3050 ;; A continued assignment, or procedure call/definition
3051 ((and
3052 (> idlwave-max-extra-continuation-indent 0)
3053 (setq fancy-nonparen-indent
3054 (progn
3055 (goto-char beg-reg)
3056 (while (idlwave-look-at "&")) ; skip continued statements
3057 (cond
3058 ;; A continued Procedure call or definition
3059 ((progn
3060 (idlwave-look-at "^[ \t]*\\(pro\\|function\\)") ;skip over
3061 (looking-at "[ \t]*\\([a-zA-Z0-9.$_]+[ \t]*->[ \t]*\\)?[a-zA-Z][:a-zA-Z0-9$_]*[ \t]*\\(,\\)[ \t]*"))
3062 (goto-char (match-end 0))
3063 ;; Comment only, or blank line with "$"? Basic indent.
3064 (if (save-match-data (looking-at "[ \t$]*\\(;.*\\)?$"))
3065 nil
3066 (current-column)))
3067
3068 ;; Continued assignment (with =):
3069 ((catch 'assign ;
3070 (while (looking-at "[^=\n\r]*\\(=\\)[ \t]*")
3071 (goto-char (match-end 0))
3072 (if (null (idlwave-what-function beg-reg))
3073 (throw 'assign t))))
3074 (unless (or
3075 (idlwave-in-quote)
3076 (looking-at "[ \t$]*\\(;.*\\)?$") ; use basic
3077 (save-excursion
3078 (goto-char beg-last-statement)
3079 (eq (caar (idlwave-statement-type)) 'for)))
3080 (current-column))))))
3081 (< (- fancy-nonparen-indent basic-indent)
3082 idlwave-max-extra-continuation-indent))
3083 (if fancy-paren-indent ;calculated but disallowed paren indent
3084 (+ fancy-nonparen-indent idlwave-continuation-indent)
3085 fancy-nonparen-indent))
3086
3087 ;; Basic indent, by default
3088 (t basic-indent)))))
3089
3090
3091
3092 (defun idlwave-find-key (key-re &optional dir nomark limit)
3093 "Move to next match of the regular expression KEY-RE.
3094 Matches inside comments or string constants will be ignored.
3095 If DIR is negative, the search will be backwards.
3096 At a successful match, the mark is pushed unless NOMARK is non-nil.
3097 Searches are limited to LIMIT.
3098 Searches are case-insensitive and use a special syntax table which
3099 treats `$' and `_' as word characters.
3100 Return value is the beginning of the match or (in case of failure) nil."
3101 (setq dir (or dir 0))
3102 (let ((case-fold-search t)
3103 (search-func (if (> dir 0) 're-search-forward 're-search-backward))
3104 found)
3105 (idlwave-with-special-syntax
3106 (save-excursion
3107 (catch 'exit
3108 (while (funcall search-func key-re limit t)
3109 (if (not (idlwave-quoted))
3110 (throw 'exit (setq found (match-beginning 0)))
3111 (if (or (and (> dir 0) (eobp))
3112 (and (< dir 0) (bobp)))
3113 (throw 'exit nil)))))))
3114 (if found
3115 (progn
3116 (if (not nomark) (push-mark))
3117 (goto-char found)
3118 found)
3119 nil)))
3120
3121 (defun idlwave-block-jump-out (&optional dir nomark)
3122 "When optional argument DIR is non-negative, move forward to end of
3123 current block using the `idlwave-begin-block-reg' and `idlwave-end-block-reg'
3124 regular expressions. When DIR is negative, move backwards to block beginning.
3125 Recursively calls itself to skip over nested blocks. DIR defaults to
3126 forward. Calls `push-mark' unless the optional argument NOMARK is
3127 non-nil. Movement is limited by the start of program units because of
3128 possibility of unbalanced blocks."
3129 (interactive "P")
3130 (or dir (setq dir 0))
3131 (let* ((here (point))
3132 (case-fold-search t)
3133 (limit (if (>= dir 0) (point-max) (point-min)))
3134 (block-limit (if (>= dir 0)
3135 idlwave-begin-block-reg
3136 idlwave-end-block-reg))
3137 found
3138 (block-reg (concat idlwave-begin-block-reg "\\|"
3139 idlwave-end-block-reg))
3140 (unit-limit (or (save-excursion
3141 (if (< dir 0)
3142 (idlwave-find-key
3143 idlwave-begin-unit-reg dir t limit)
3144 (end-of-line)
3145 (idlwave-find-key
3146 idlwave-end-unit-reg dir t limit)))
3147 limit)))
3148 (if (>= dir 0) (end-of-line)) ;Make sure we are in current block
3149 (if (setq found (idlwave-find-key block-reg dir t unit-limit))
3150 (while (and found (looking-at block-limit))
3151 (if (>= dir 0) (forward-word 1))
3152 (idlwave-block-jump-out dir t)
3153 (setq found (idlwave-find-key block-reg dir t unit-limit))))
3154 (if (not nomark) (push-mark here))
3155 (if (not found) (goto-char unit-limit)
3156 (if (>= dir 0) (forward-word 1)))))
3157
3158 (defun idlwave-min-current-statement-indent (&optional end-reg)
3159 "The minimum indent in the current statement."
3160 (idlwave-beginning-of-statement)
3161 (if (not (idlwave-is-continuation-line))
3162 (idlwave-current-indent)
3163 (let ((min (idlwave-current-indent)) comm-or-empty)
3164 (while (and (= (forward-line 1) 0)
3165 (or (setq comm-or-empty (idlwave-is-comment-or-empty-line))
3166 (idlwave-is-continuation-line))
3167 (or (null end-reg) (< (point) end-reg)))
3168 (unless comm-or-empty (setq min (min min (idlwave-current-indent)))))
3169 (if (or comm-or-empty (and end-reg (>= (point) end-reg)))
3170 min
3171 (min min (idlwave-current-indent))))))
3172
3173 (defun idlwave-current-statement-indent (&optional last-line)
3174 "Return indentation of the current statement.
3175 If in a statement, moves to beginning of statement before finding indent."
3176 (if last-line
3177 (idlwave-end-of-statement)
3178 (idlwave-beginning-of-statement))
3179 (idlwave-current-indent))
3180
3181 (defun idlwave-current-indent ()
3182 "Return the column of the indentation of the current line.
3183 Skips any whitespace. Returns 0 if the end-of-line follows the whitespace."
3184 (save-excursion
3185 (beginning-of-line)
3186 (skip-chars-forward " \t")
3187 ;; if we are at the end of blank line return 0
3188 (cond ((eolp) 0)
3189 ((current-column)))))
3190
3191 (defun idlwave-is-continuation-line ()
3192 "Test if current line is continuation line.
3193 Blank or comment-only lines following regular continuation lines (with
3194 `$') count as continuations too."
3195 (let (p)
3196 (save-excursion
3197 (or
3198 (idlwave-look-at "\\<\\$")
3199 (catch 'loop
3200 (while (and (looking-at "^[ \t]*\\(;.*\\)?$")
3201 (eq (forward-line -1) 0))
3202 (if (setq p (idlwave-look-at "\\<\\$")) (throw 'loop p))))))))
3203
3204 (defun idlwave-is-comment-line ()
3205 "Test if the current line is a comment line."
3206 (save-excursion
3207 (beginning-of-line 1)
3208 (looking-at "[ \t]*;")))
3209
3210 (defun idlwave-is-comment-or-empty-line ()
3211 "Test if the current line is a comment line."
3212 (save-excursion
3213 (beginning-of-line 1)
3214 (looking-at "[ \t]*[;\n]")))
3215
3216 (defun idlwave-look-at (regexp &optional cont beg)
3217 "Search current line from current point for REGEXP.
3218 If optional argument CONT is non-nil, searches to the end of
3219 the current statement.
3220 If optional arg BEG is non-nil, search starts from the beginning of the
3221 current statement.
3222 Ignores matches that end in a comment or inside a string expression.
3223 Returns point if successful, nil otherwise.
3224 This function produces unexpected results if REGEXP contains quotes or
3225 a comment delimiter. The search is case insensitive.
3226 If successful leaves point after the match, otherwise, does not move point."
3227 (let ((here (point))
3228 (case-fold-search t)
3229 (eos (save-excursion
3230 (if cont (idlwave-end-of-statement) (end-of-line))
3231 (point)))
3232 found)
3233 (idlwave-with-special-syntax
3234 (if beg (idlwave-beginning-of-statement))
3235 (while (and (setq found (re-search-forward regexp eos t))
3236 (idlwave-quoted))))
3237 (if (not found) (goto-char here))
3238 found))
3239
3240 (defun idlwave-fill-paragraph (&optional nohang)
3241 "Fill paragraphs in comments.
3242 A paragraph is made up of all contiguous lines having the same comment
3243 leader (the leading whitespace before the comment delimiter and the
3244 comment delimiter). In addition, paragraphs are separated by blank
3245 line comments. The indentation is given by the hanging indent of the
3246 first line, otherwise by the minimum indentation of the lines after
3247 the first line. The indentation of the first line does not change.
3248 Does not effect code lines. Does not fill comments on the same line
3249 with code. The hanging indent is given by the end of the first match
3250 matching `idlwave-hang-indent-regexp' on the paragraph's first line.
3251 If the optional argument NOHANG is non-nil then the hanging indent is
3252 ignored."
3253 (interactive "P")
3254 ;; check if this is a line comment
3255 (if (save-excursion
3256 (beginning-of-line)
3257 (skip-chars-forward " \t")
3258 (looking-at comment-start))
3259 (let
3260 ((indent 999)
3261 pre here diff fill-prefix-reg bcl first-indent
3262 hang start end)
3263 ;; Change tabs to spaces in the surrounding paragraph.
3264 ;; The surrounding paragraph will be the largest containing block of
3265 ;; contiguous line comments. Thus, we may be changing tabs in
3266 ;; a much larger area than is needed, but this is the easiest
3267 ;; brute force way to do it.
3268 ;;
3269 ;; This has the undesirable side effect of replacing the tabs
3270 ;; permanently without the user's request or knowledge.
3271 (save-excursion
3272 (backward-paragraph)
3273 (setq start (point)))
3274 (save-excursion
3275 (forward-paragraph)
3276 (setq end (point)))
3277 (untabify start end)
3278 ;;
3279 (setq here (point))
3280 (beginning-of-line)
3281 (setq bcl (point))
3282 (re-search-forward (concat "^[ \t]*" comment-start "+")
3283 (point-at-eol) t)
3284 ;; Get the comment leader on the line and its length
3285 (setq pre (current-column))
3286 ;; the comment leader is the indentation plus exactly the
3287 ;; number of consecutive ";".
3288 (setq fill-prefix-reg
3289 (concat
3290 (setq fill-prefix
3291 (regexp-quote (buffer-substring (point-at-bol) (point))))
3292 "[^;]"))
3293
3294 ;; Mark the beginning and end of the paragraph
3295 (goto-char bcl)
3296 (while (and (looking-at fill-prefix-reg)
3297 (not (looking-at paragraph-separate))
3298 (not (bobp)))
3299 (forward-line -1))
3300 ;; Move to first line of paragraph
3301 (if (/= (point) bcl)
3302 (forward-line 1))
3303 (setq start (point))
3304 (goto-char bcl)
3305 (while (and (looking-at fill-prefix-reg)
3306 (not (looking-at paragraph-separate))
3307 (not (eobp)))
3308 (forward-line 1))
3309 (beginning-of-line)
3310 (if (or (not (looking-at fill-prefix-reg))
3311 (looking-at paragraph-separate))
3312 (forward-line -1))
3313 (end-of-line)
3314 ;; if at end of buffer add a newline (need this because
3315 ;; fill-region needs END to be at the beginning of line after
3316 ;; the paragraph or it will add a line).
3317 (if (eobp)
3318 (progn (insert ?\n) (backward-char 1)))
3319 ;; Set END to the beginning of line after the paragraph
3320 ;; END is calculated as distance from end of buffer
3321 (setq end (- (point-max) (point) 1))
3322 ;;
3323 ;; Calculate the indentation for the paragraph.
3324 ;;
3325 ;; In the following while statements, after one iteration
3326 ;; point will be at the beginning of a line in which case
3327 ;; the while will not be executed for the
3328 ;; the first paragraph line and thus will not affect the
3329 ;; indentation.
3330 ;;
3331 ;; First check to see if indentation is based on hanging indent.
3332 (if (and (not nohang) idlwave-hanging-indent
3333 (setq hang
3334 (save-excursion
3335 (goto-char start)
3336 (idlwave-calc-hanging-indent))))
3337 ;; Adjust lines of paragraph by inserting spaces so that
3338 ;; each line's indent is at least as great as the hanging
3339 ;; indent. This is needed for fill-paragraph to work with
3340 ;; a fill-prefix.
3341 (progn
3342 (setq indent hang)
3343 (beginning-of-line)
3344 (while (> (point) start)
3345 (re-search-forward comment-start-skip (point-at-eol) t)
3346 (if (> (setq diff (- indent (current-column))) 0)
3347 (progn
3348 (if (>= here (point))
3349 ;; adjust the original location for the
3350 ;; inserted text.
3351 (setq here (+ here diff)))
3352 (insert (make-string diff ?\ ))))
3353 (forward-line -1))
3354 )
3355
3356 ;; No hang. Instead find minimum indentation of paragraph
3357 ;; after first line.
3358 ;; For the following while statement, since START is at the
3359 ;; beginning of line and END is at the end of line
3360 ;; point is greater than START at least once (which would
3361 ;; be the case for a single line paragraph).
3362 (while (> (point) start)
3363 (beginning-of-line)
3364 (setq indent
3365 (min indent
3366 (progn
3367 (re-search-forward comment-start-skip (point-at-eol) t)
3368 (current-column))))
3369 (forward-line -1)))
3370 (setq fill-prefix (concat fill-prefix
3371 (make-string (- indent pre)
3372 ?\ )))
3373 ;; first-line indent
3374 (setq first-indent
3375 (max
3376 (progn
3377 (re-search-forward comment-start-skip (point-at-eol) t)
3378 (current-column))
3379 indent))
3380
3381 ;; try to keep point at its original place
3382 (goto-char here)
3383
3384 ;; In place of the more modern fill-region-as-paragraph, a hack
3385 ;; to keep whitespace untouched on the first line within the
3386 ;; indent length and to preserve any indent on the first line
3387 ;; (first indent).
3388 (save-excursion
3389 (setq diff
3390 (buffer-substring start (+ start first-indent -1)))
3391 (subst-char-in-region start (+ start first-indent -1) ?\ ?~ nil)
3392 (fill-region-as-paragraph
3393 start
3394 (- (point-max) end)
3395 (current-justification)
3396 nil)
3397 (delete-region start (+ start first-indent -1))
3398 (goto-char start)
3399 (insert diff))
3400 ;; When we want the point at the beginning of the comment
3401 ;; body fill-region will put it at the beginning of the line.
3402 (if (bolp) (skip-chars-forward (concat " \t" comment-start)))
3403 (setq fill-prefix nil))))
3404
3405 (defun idlwave-calc-hanging-indent ()
3406 "Calculate the position of the hanging indent for the comment paragraph.
3407 The hanging indent position is given by the first match with the
3408 `idlwave-hang-indent-regexp'. If `idlwave-use-last-hang-indent' is
3409 non-nil then use last occurrence matching `idlwave-hang-indent-regexp'
3410 on the line.
3411 If not found returns nil."
3412 (if idlwave-use-last-hang-indent
3413 (save-excursion
3414 (end-of-line)
3415 (if (re-search-backward idlwave-hang-indent-regexp (point-at-bol) t)
3416 (+ (current-column) (length idlwave-hang-indent-regexp))))
3417 (save-excursion
3418 (beginning-of-line)
3419 (if (re-search-forward idlwave-hang-indent-regexp (point-at-eol) t)
3420 (current-column)))))
3421
3422 (defun idlwave-auto-fill ()
3423 "Called to break lines in auto fill mode.
3424 Only fills non-comment lines if `idlwave-fill-comment-line-only' is
3425 non-nil. Places a continuation character at the end of the line if
3426 not in a comment. Splits strings with IDL concatenation operator `+'
3427 if `idlwave-auto-fill-split-string' is non-nil."
3428 (if (<= (current-column) fill-column)
3429 nil ; do not to fill
3430 (if (or (not idlwave-fill-comment-line-only)
3431 (save-excursion
3432 ;; Check for comment line
3433 (beginning-of-line)
3434 (looking-at idlwave-comment-line-start-skip)))
3435 (let (beg)
3436 (idlwave-indent-line)
3437 ;; Prevent actions do-auto-fill which calls indent-line-function.
3438 (let (idlwave-do-actions
3439 (paragraph-separate ".")
3440 (fill-nobreak-predicate
3441 (if (and (idlwave-in-quote)
3442 idlwave-auto-fill-split-string)
3443 (lambda () ;; We'll need 5 spaces for " ' + $"
3444 (<= (- fill-column (current-column)) 5)
3445 ))))
3446 (do-auto-fill))
3447 (save-excursion
3448 (end-of-line 0)
3449 ;; Indent the split line
3450 (idlwave-indent-line))
3451 (if (save-excursion
3452 (beginning-of-line)
3453 (looking-at idlwave-comment-line-start-skip))
3454 ;; A continued line comment
3455 ;; We treat continued line comments as part of a comment
3456 ;; paragraph. So we check for a hanging indent.
3457 (if idlwave-hanging-indent
3458 (let ((here (- (point-max) (point)))
3459 (indent
3460 (save-excursion
3461 (forward-line -1)
3462 (idlwave-calc-hanging-indent))))
3463 (when indent
3464 ;; Remove whitespace between comment delimiter and
3465 ;; text, insert spaces for appropriate indentation.
3466 (beginning-of-line)
3467 (re-search-forward comment-start-skip (point-at-eol) t)
3468 (delete-horizontal-space)
3469 (idlwave-indent-to indent)
3470 (goto-char (- (point-max) here)))))
3471 ;; Split code or comment?
3472 (if (save-excursion
3473 (end-of-line 0)
3474 (idlwave-in-comment))
3475 ;; Splitting a non-full-line comment.
3476 ;; Insert the comment delimiter from split line
3477 (progn
3478 (save-excursion
3479 (beginning-of-line)
3480 (skip-chars-forward " \t")
3481 ;; Insert blank to keep off beginning of line
3482 (insert " "
3483 (save-excursion
3484 (forward-line -1)
3485 (buffer-substring (idlwave-goto-comment)
3486 (progn
3487 (skip-chars-forward "; ")
3488 (point))))))
3489 (idlwave-indent-line))
3490 ;; Split code line - add continuation character
3491 (save-excursion
3492 (end-of-line 0)
3493 ;; Check to see if we split a string
3494 (if (and (setq beg (idlwave-in-quote))
3495 idlwave-auto-fill-split-string)
3496 ;; Split the string and concatenate.
3497 ;; The first extra space is for the space
3498 ;; the line was split. That space was removed.
3499 (insert " " (char-after beg) " +"))
3500 (insert " $"))
3501 (if beg
3502 (if idlwave-auto-fill-split-string
3503 ;; Make the second part of continued string
3504 (save-excursion
3505 (beginning-of-line)
3506 (skip-chars-forward " \t")
3507 (insert (char-after beg)))
3508 ;; Warning
3509 (beep)
3510 (message "Warning: continuation inside a string.")))
3511 ;; Although do-auto-fill (via indent-new-comment-line) calls
3512 ;; idlwave-indent-line for the new line, re-indent again
3513 ;; because of the addition of the continuation character.
3514 (idlwave-indent-line))
3515 )))))
3516
3517 (defun idlwave-auto-fill-mode (arg)
3518 "Toggle auto-fill mode for IDL mode.
3519 With arg, turn auto-fill mode on if arg is positive.
3520 In auto-fill mode, inserting a space at a column beyond `fill-column'
3521 automatically breaks the line at a previous space."
3522 (interactive "P")
3523 (prog1 (set idlwave-fill-function
3524 (if (if (null arg)
3525 (not (symbol-value idlwave-fill-function))
3526 (> (prefix-numeric-value arg) 0))
3527 'idlwave-auto-fill
3528 nil))
3529 ;; update mode-line
3530 (set-buffer-modified-p (buffer-modified-p))))
3531
3532 ;(defun idlwave-fill-routine-call ()
3533 ; "Fill a routine definition or statement, indenting appropriately."
3534 ; (let ((where (idlwave-where)))))
3535
3536
3537 (defun idlwave-doc-header (&optional nomark)
3538 "Insert a documentation header at the beginning of the unit.
3539 Inserts the value of the variable `idlwave-file-header'. Sets mark
3540 before moving to do insertion unless the optional prefix argument
3541 NOMARK is non-nil."
3542 (interactive "P")
3543 (or nomark (push-mark))
3544 ;; make sure we catch the current line if it begins the unit
3545 (if idlwave-header-to-beginning-of-file
3546 (goto-char (point-min))
3547 (end-of-line)
3548 (idlwave-beginning-of-subprogram)
3549 (beginning-of-line)
3550 ;; skip function or procedure line
3551 (if (idlwave-look-at "\\<\\(pro\\|function\\)\\>")
3552 (progn
3553 (idlwave-end-of-statement)
3554 (if (> (forward-line 1) 0) (insert "\n")))))
3555 (let ((pos (point)))
3556 (if idlwave-file-header
3557 (cond ((car idlwave-file-header)
3558 (insert-file-contents (car idlwave-file-header)))
3559 ((stringp (car (cdr idlwave-file-header)))
3560 (insert (car (cdr idlwave-file-header))))))
3561 (goto-char pos)))
3562
3563 (defun idlwave-default-insert-timestamp ()
3564 "Default timestamp insertion function."
3565 (insert (current-time-string))
3566 (insert ", " (user-full-name))
3567 (if (boundp 'user-mail-address)
3568 (insert " <" user-mail-address ">")
3569 (insert " <" (user-login-name) "@" (system-name) ">"))
3570 ;; Remove extra spaces from line
3571 (idlwave-fill-paragraph)
3572 ;; Insert a blank line comment to separate from the date entry -
3573 ;; will keep the entry from flowing onto date line if re-filled.
3574 (insert "\n;\n;\t\t"))
3575
3576 (defun idlwave-doc-modification ()
3577 "Insert a brief modification log at the beginning of the current program.
3578 Looks for an occurrence of the value of user variable
3579 `idlwave-doc-modifications-keyword' if non-nil. Inserts time and user
3580 name and places the point for the user to add a log. Before moving, saves
3581 location on mark ring so that the user can return to previous point."
3582 (interactive)
3583 (push-mark)
3584 (let* (beg end)
3585 (if (and (or (re-search-backward idlwave-doclib-start nil t)
3586 (progn
3587 (goto-char (point-min))
3588 (re-search-forward idlwave-doclib-start nil t)))
3589 (setq beg (match-beginning 0))
3590 (re-search-forward idlwave-doclib-end nil t)
3591 (setq end (match-end 0)))
3592 (progn
3593 (goto-char beg)
3594 (if (re-search-forward
3595 (concat idlwave-doc-modifications-keyword ":")
3596 end t)
3597 (end-of-line)
3598 (goto-char end)
3599 (end-of-line -1)
3600 (insert "\n" comment-start "\n")
3601 (insert comment-start " " idlwave-doc-modifications-keyword ":"))
3602 (insert "\n;\n;\t")
3603 (run-hooks 'idlwave-timestamp-hook))
3604 (error "No valid DOCLIB header"))))
3605
3606
3607 ;; CJC 3/16/93
3608 ;; Interface to expand-region-abbrevs which did not work when the
3609 ;; abbrev hook associated with an abbrev moves point backwards
3610 ;; after abbrev expansion, e.g., as with the abbrev '.n'.
3611 ;; The original would enter an infinite loop in attempting to expand
3612 ;; .n (it would continually expand and unexpand the abbrev without expanding
3613 ;; because the point would keep going back to the beginning of the
3614 ;; abbrev instead of to the end of the abbrev). We now keep the
3615 ;; abbrev hook from moving backwards.
3616 ;;;
3617 (defun idlwave-expand-region-abbrevs (start end)
3618 "Expand each abbrev occurrence in the region.
3619 Calling from a program, arguments are START END."
3620 (interactive "r")
3621 (save-excursion
3622 (goto-char (min start end))
3623 (let ((idlwave-show-block nil) ;Do not blink
3624 (idlwave-abbrev-move nil)) ;Do not move
3625 (expand-region-abbrevs start end 'noquery))))
3626
3627 (defun idlwave-quoted ()
3628 "Return t if point is in a comment or quoted string.
3629 Returns nil otherwise."
3630 (or (idlwave-in-comment) (idlwave-in-quote)))
3631
3632 (defun idlwave-in-quote ()
3633 "Return location of the opening quote
3634 if point is in a IDL string constant, nil otherwise.
3635 Ignores comment delimiters on the current line.
3636 Properly handles nested quotation marks and octal
3637 constants - a double quote followed by an octal digit."
3638 ;; Treat an octal inside an apostrophe to be a normal string. Treat a
3639 ;; double quote followed by an octal digit to be an octal constant
3640 ;; rather than a string. Therefore, there is no terminating double
3641 ;; quote.
3642 (save-excursion
3643 ;; Because single and double quotes can quote each other we must
3644 ;; search for the string start from the beginning of line.
3645 (let* ((start (point))
3646 (eol (point-at-eol))
3647 (bq (progn (beginning-of-line) (point)))
3648 (endq (point))
3649 (data (match-data))
3650 delim
3651 found)
3652 (while (< endq start)
3653 ;; Find string start
3654 ;; Don't find an octal constant beginning with a double quote
3655 (if (re-search-forward "[\"']" eol 'lim)
3656 ;; Find the string end.
3657 ;; In IDL, two consecutive delimiters after the start of a
3658 ;; string act as an
3659 ;; escape for the delimiter in the string.
3660 ;; Two consecutive delimiters alone (i.e., not after the
3661 ;; start of a string) is the null string.
3662 (progn
3663 ;; Move to position after quote
3664 (goto-char (1+ (match-beginning 0)))
3665 (setq bq (1- (point)))
3666 ;; Get the string delimiter
3667 (setq delim (char-to-string (preceding-char)))
3668 ;; Check for null string
3669 (if (looking-at delim)
3670 (progn (setq endq (point)) (forward-char 1))
3671 ;; Look for next unpaired delimiter
3672 (setq found (search-forward delim eol 'lim))
3673 (while (looking-at delim)
3674 (forward-char 1)
3675 (setq found (search-forward delim eol 'lim)))
3676 (setq endq (if found (1- (point)) (point)))
3677 ))
3678 (progn (setq bq (point)) (setq endq (point)))))
3679 (store-match-data data)
3680 ;; return string beginning position or nil
3681 (if (> start bq) bq))))
3682
3683 (defun idlwave-is-pointer-dereference (&optional limit)
3684 "Determine if the character after point is a pointer dereference *."
3685 (and
3686 (eq (char-after) ?\*)
3687 (not (idlwave-in-quote))
3688 (save-excursion
3689 (forward-char)
3690 (re-search-backward (concat "\\(" idlwave-idl-keywords
3691 "\\|[[(*+-/=,^><]\\)\\s-*\\*") limit t))))
3692
3693
3694 ;; Statement templates
3695
3696 ;; Replace these with a general template function, something like
3697 ;; expand.el (I think there was also something with a name similar to
3698 ;; dmacro.el)
3699
3700 (defun idlwave-template (s1 s2 &optional prompt noindent)
3701 "Build a template with optional prompt expression.
3702
3703 Opens a line if point is not followed by a newline modulo intervening
3704 whitespace. S1 and S2 are strings. S1 is inserted at point followed
3705 by S2. Point is inserted between S1 and S2. The case of S1 and S2 is
3706 adjusted according to `idlwave-abbrev-change-case'. If optional
3707 argument PROMPT is a string then it is displayed as a message in the
3708 minibuffer. The PROMPT serves as a reminder to the user of an
3709 expression to enter.
3710
3711 The lines containing S1 and S2 are reindented using `indent-region'
3712 unless the optional second argument NOINDENT is non-nil."
3713 (if (derived-mode-p 'idlwave-shell-mode)
3714 ;; This is a gross hack to avoit template abbrev expansion
3715 ;; in the shell. FIXME: This is a dirty hack.
3716 (if (and (eq this-command 'self-insert-command)
3717 (equal last-abbrev-location (point)))
3718 (insert last-abbrev-text)
3719 (error "No templates in idlwave-shell"))
3720 (cond ((eq idlwave-abbrev-change-case 'down)
3721 (setq s1 (downcase s1) s2 (downcase s2)))
3722 (idlwave-abbrev-change-case
3723 (setq s1 (upcase s1) s2 (upcase s2))))
3724 (let ((beg (point-at-bol))
3725 end)
3726 (if (not (looking-at "\\s-*\n"))
3727 (open-line 1))
3728 (insert s1)
3729 (save-excursion
3730 (insert s2)
3731 (setq end (point)))
3732 (if (not noindent)
3733 (indent-region beg end nil))
3734 (if (stringp prompt)
3735 (message "%s" prompt)))))
3736
3737 (defun idlwave-rw-case (string)
3738 "Make STRING have the case required by `idlwave-reserved-word-upcase'."
3739 (if idlwave-reserved-word-upcase
3740 (upcase string)
3741 string))
3742
3743 (defun idlwave-elif ()
3744 "Build skeleton IDL if-else block."
3745 (interactive)
3746 (idlwave-template
3747 (idlwave-rw-case "if")
3748 (idlwave-rw-case " then begin\n\nendif else begin\n\nendelse")
3749 "Condition expression"))
3750
3751 (defun idlwave-case ()
3752 "Build skeleton IDL case statement."
3753 (interactive)
3754 (idlwave-template
3755 (idlwave-rw-case "case")
3756 (idlwave-rw-case " of\n\nendcase")
3757 "Selector expression"))
3758
3759 (defun idlwave-switch ()
3760 "Build skeleton IDL switch statement."
3761 (interactive)
3762 (idlwave-template
3763 (idlwave-rw-case "switch")
3764 (idlwave-rw-case " of\n\nendswitch")
3765 "Selector expression"))
3766
3767 (defun idlwave-for ()
3768 "Build skeleton IDL loop statement."
3769 (interactive)
3770 (idlwave-template
3771 (idlwave-rw-case "for")
3772 (idlwave-rw-case " do begin\n\nendfor")
3773 "Loop expression"))
3774
3775 (defun idlwave-if ()
3776 "Build skeleton IDL if statement."
3777 (interactive)
3778 (idlwave-template
3779 (idlwave-rw-case "if")
3780 (idlwave-rw-case " then begin\n\nendif")
3781 "Scalar logical expression"))
3782
3783 (defun idlwave-procedure ()
3784 (interactive)
3785 (idlwave-template
3786 (idlwave-rw-case "pro")
3787 (idlwave-rw-case "\n\nreturn\nend")
3788 "Procedure name"))
3789
3790 (defun idlwave-function ()
3791 (interactive)
3792 (idlwave-template
3793 (idlwave-rw-case "function")
3794 (idlwave-rw-case "\n\nreturn\nend")
3795 "Function name"))
3796
3797 (defun idlwave-repeat ()
3798 (interactive)
3799 (idlwave-template
3800 (idlwave-rw-case "repeat begin\n\nendrep until")
3801 (idlwave-rw-case "")
3802 "Exit condition"))
3803
3804 (defun idlwave-while ()
3805 (interactive)
3806 (idlwave-template
3807 (idlwave-rw-case "while")
3808 (idlwave-rw-case " do begin\n\nendwhile")
3809 "Entry condition"))
3810
3811 (defun idlwave-split-string (string &optional pattern)
3812 "Return a list of substrings of STRING which are separated by PATTERN.
3813 If PATTERN is omitted, it defaults to \"[ \\f\\t\\n\\r\\v]+\"."
3814 (or pattern
3815 (setq pattern "[ \f\t\n\r\v]+"))
3816 (let (parts (start 0))
3817 (while (string-match pattern string start)
3818 (setq parts (cons (substring string start (match-beginning 0)) parts)
3819 start (match-end 0)))
3820 (nreverse (cons (substring string start) parts))))
3821
3822 (defun idlwave-replace-string (string replace_string replace_with)
3823 (let* ((start 0)
3824 (last (length string))
3825 (ret_string "")
3826 end)
3827 (while (setq end (string-match replace_string string start))
3828 (setq ret_string
3829 (concat ret_string (substring string start end) replace_with))
3830 (setq start (match-end 0)))
3831 (setq ret_string (concat ret_string (substring string start last)))))
3832
3833 (defun idlwave-get-buffer-visiting (file)
3834 ;; Return the buffer currently visiting FILE
3835 (cond
3836 ((boundp 'find-file-compare-truenames) ; XEmacs
3837 (let ((find-file-compare-truenames t))
3838 (get-file-buffer file)))
3839 ((fboundp 'find-buffer-visiting) ; Emacs
3840 (find-buffer-visiting file))
3841 (t (error "This should not happen (idlwave-get-buffer-visiting)"))))
3842
3843 (defvar idlwave-outlawed-buffers nil
3844 "List of buffers pulled up by IDLWAVE for special reasons.
3845 Buffers in this list may be killed by `idlwave-kill-autoloaded-buffers'.")
3846
3847 (defun idlwave-find-file-noselect (file &optional why)
3848 ;; Return a buffer visiting file.
3849 (or (idlwave-get-buffer-visiting file)
3850 (let ((buf (find-file-noselect file)))
3851 (if why (add-to-list 'idlwave-outlawed-buffers (cons buf why)))
3852 buf)))
3853
3854 (defun idlwave-kill-autoloaded-buffers ()
3855 "Kill buffers created automatically by IDLWAVE.
3856 Function prompts for a letter to identify the buffers to kill.
3857 Possible letters are:
3858
3859 f Buffers created by the command \\[idlwave-find-module] or mouse
3860 clicks in the routine info window.
3861 s Buffers created by the IDLWAVE Shell to display where execution
3862 stopped or an error was found.
3863 a Both of the above.
3864
3865 Buffers containing unsaved changes require confirmation before they are killed."
3866 (interactive)
3867 (if (null idlwave-outlawed-buffers)
3868 (error "No IDLWAVE-created buffers available")
3869 (princ (format "Kill IDLWAVE-created buffers: [f]ind source(%d), [s]hell display(%d), [a]ll ? "
3870 (idlwave-count-outlawed-buffers 'find)
3871 (idlwave-count-outlawed-buffers 'shell)))
3872 (let ((c (read-char)))
3873 (cond
3874 ((member c '(?f ?\C-f))
3875 (idlwave-do-kill-autoloaded-buffers 'find))
3876 ((member c '(?s ?\C-s))
3877 (idlwave-do-kill-autoloaded-buffers 'shell))
3878 ((member c '(?a ?\C-a))
3879 (idlwave-do-kill-autoloaded-buffers t))
3880 (t (error "Abort"))))))
3881
3882 (defun idlwave-count-outlawed-buffers (tag)
3883 "How many outlawed buffers have tag TAG?"
3884 (length (delq nil
3885 (mapcar
3886 (lambda (x) (eq (cdr x) tag))
3887 idlwave-outlawed-buffers))))
3888
3889 (defun idlwave-do-kill-autoloaded-buffers (&rest reasons)
3890 "Kill all buffers pulled up by IDLWAVE matching REASONS."
3891 (let* ((list (copy-sequence idlwave-outlawed-buffers))
3892 (cnt 0)
3893 entry)
3894 (while (setq entry (pop list))
3895 (if (buffer-live-p (car entry))
3896 (and (or (memq t reasons)
3897 (memq (cdr entry) reasons))
3898 (kill-buffer (car entry))
3899 (incf cnt)
3900 (setq idlwave-outlawed-buffers
3901 (delq entry idlwave-outlawed-buffers)))
3902 (setq idlwave-outlawed-buffers
3903 (delq entry idlwave-outlawed-buffers))))
3904 (message "%d buffer%s killed" cnt (if (= cnt 1) "" "s"))))
3905
3906 (defun idlwave-revoke-license-to-kill ()
3907 "Remove BUFFER from the buffers which may be killed.
3908 Killing would be done by `idlwave-do-kill-autoloaded-buffers'.
3909 Intended for `after-save-hook'."
3910 (let* ((buf (current-buffer))
3911 (entry (assq buf idlwave-outlawed-buffers)))
3912 ;; Revoke license
3913 (if entry
3914 (setq idlwave-outlawed-buffers
3915 (delq entry idlwave-outlawed-buffers)))
3916 ;; Remove this function from the hook.
3917 (remove-hook 'after-save-hook 'idlwave-revoke-license-to-kill 'local)))
3918
3919 (defvar idlwave-path-alist)
3920 (defun idlwave-locate-lib-file (file)
3921 ;; Find FILE on the scanned lib path and return a buffer visiting it
3922 (let* ((dirs idlwave-path-alist)
3923 dir efile)
3924 (catch 'exit
3925 (while (setq dir (car (pop dirs)))
3926 (if (file-regular-p
3927 (setq efile (expand-file-name file dir)))
3928 (throw 'exit efile))))))
3929
3930 (defun idlwave-expand-lib-file-name (file)
3931 ;; Find FILE on the scanned lib path and return a buffer visiting it
3932 ;; This is for, e.g., finding source with no user catalog
3933 (cond
3934 ((null file) nil)
3935 ((file-name-absolute-p file) file)
3936 (t (idlwave-locate-lib-file file))))
3937
3938 (defun idlwave-make-tags ()
3939 "Create the IDL tags file IDLTAGS in the current directory from
3940 the list of directories specified in the minibuffer. Directories may be
3941 for example: . /usr/local/rsi/idl/lib. All the subdirectories of the
3942 specified top directories are searched if the directory name is prefixed
3943 by @. Specify @ directories with care, it may take a long, long time if
3944 you specify /."
3945 (interactive)
3946 (let (directory directories cmd append status numdirs dir getsubdirs
3947 buffer save_buffer files numfiles item errbuf)
3948
3949 ;;
3950 ;; Read list of directories
3951 (setq directory (read-string "Tag Directories: " "."))
3952 (setq directories (idlwave-split-string directory "[ \t]+"))
3953 ;;
3954 ;; Set etags command, vars
3955 (setq cmd "etags --output=IDLTAGS --language=none --regex='/[
3956 \\t]*[pP][Rr][Oo][ \\t]+\\([^ \\t,]+\\)/' --regex='/[
3957 \\t]*[Ff][Uu][Nn][Cc][Tt][Ii][Oo][Nn][ \\t]+\\([^ \\t,]+\\)/' ")
3958 (setq append " ")
3959 (setq status 0)
3960 ;;
3961 ;; For each directory
3962 (setq numdirs 0)
3963 (setq dir (nth numdirs directories))
3964 (while (and dir)
3965 ;;
3966 ;; Find the subdirectories
3967 (if (string-match "^[@]\\(.+\\)$" dir)
3968 (setq getsubdirs t) (setq getsubdirs nil))
3969 (if (and getsubdirs) (setq dir (substring dir 1 (length dir))))
3970 (setq dir (expand-file-name dir))
3971 (if (file-directory-p dir)
3972 (progn
3973 (if (and getsubdirs)
3974 (progn
3975 (setq buffer (get-buffer-create "*idltags*"))
3976 (call-process "sh" nil buffer nil "-c"
3977 (concat "find " dir " -type d -print"))
3978 (setq save_buffer (current-buffer))
3979 (set-buffer buffer)
3980 (setq files (idlwave-split-string
3981 (idlwave-replace-string
3982 (buffer-substring 1 (point-max))
3983 "\n" "/*.pro ")
3984 "[ \t]+"))
3985 (set-buffer save_buffer)
3986 (kill-buffer buffer))
3987 (setq files (list (concat dir "/*.pro"))))
3988 ;;
3989 ;; For each subdirectory
3990 (setq numfiles 0)
3991 (setq item (nth numfiles files))
3992 (while (and item)
3993 ;;
3994 ;; Call etags
3995 (if (not (string-match "^[ \\t]*$" item))
3996 (progn
3997 (message "%s" (concat "Tagging " item "..."))
3998 (setq errbuf (get-buffer-create "*idltags-error*"))
3999 (setq status (+ status
4000 (if (eq 0 (call-process
4001 "sh" nil errbuf nil "-c"
4002 (concat cmd append item)))
4003 0
4004 1)))
4005 ;;
4006 ;; Append additional tags
4007 (setq append " --append ")
4008 (setq numfiles (1+ numfiles))
4009 (setq item (nth numfiles files)))
4010 (progn
4011 (setq numfiles (1+ numfiles))
4012 (setq item (nth numfiles files))
4013 )))
4014
4015 (setq numdirs (1+ numdirs))
4016 (setq dir (nth numdirs directories)))
4017 (progn
4018 (setq numdirs (1+ numdirs))
4019 (setq dir (nth numdirs directories)))))
4020
4021 (setq errbuf (get-buffer-create "*idltags-error*"))
4022 (if (= status 0)
4023 (kill-buffer errbuf))
4024 (message "")
4025 ))
4026
4027 (defun idlwave-toggle-comment-region (beg end &optional n)
4028 "Comment the lines in the region if the first non-blank line is
4029 commented, and conversely, uncomment region. If optional prefix arg
4030 N is non-nil, then for N positive, add N comment delimiters or for N
4031 negative, remove N comment delimiters.
4032 Uses `comment-region' which does not place comment delimiters on
4033 blank lines."
4034 (interactive "r\nP")
4035 (if n
4036 (comment-region beg end (prefix-numeric-value n))
4037 (save-excursion
4038 (goto-char beg)
4039 (beginning-of-line)
4040 ;; skip blank lines
4041 (skip-chars-forward " \t\n")
4042 (if (looking-at (concat "[ \t]*\\(" comment-start "+\\)"))
4043 (if (fboundp 'uncomment-region)
4044 (uncomment-region beg end)
4045 (comment-region beg end
4046 (- (length (buffer-substring
4047 (match-beginning 1)
4048 (match-end 1))))))
4049 (comment-region beg end)))))
4050
4051
4052 ;; ----------------------------------------------------------------------------
4053 ;; ----------------------------------------------------------------------------
4054 ;; ----------------------------------------------------------------------------
4055 ;; ----------------------------------------------------------------------------
4056 ;;
4057 ;; Completion and Routine Info
4058 ;;
4059
4060 ;; String "intern" functions
4061
4062 ;; For the completion and routine info function, we want to normalize
4063 ;; the case of procedure names etc. We do this by "interning" these
4064 ;; string is a hand-crafted way. Hashes are used to map the downcase
4065 ;; version of the strings to the cased versions. Most *-sint-*
4066 ;; variables consist of *two* hashes, a buffer+shell, followed by a
4067 ;; system hash. The former is re-scanned, and the latter takes case
4068 ;; precedence.
4069 ;;
4070 ;; Since these cased versions are really lisp objects, we can use `eq'
4071 ;; to search, which is a large performance boost. All new strings
4072 ;; need to be "sinterned". We do this as early as possible after
4073 ;; getting these strings from completion or buffer substrings. So
4074 ;; most of the code can simply assume to deal with "sinterned"
4075 ;; strings. The only exception is that the functions which scan whole
4076 ;; buffers for routine information do not intern the grabbed strings.
4077 ;; This is only done afterwards. Therefore in these functions it is
4078 ;; *not* safe to assume the strings can be compared with `eq' and be
4079 ;; fed into the routine assq functions.
4080
4081 ;; Here we define the hashing functions.
4082
4083 ;; The variables which hold the hashes.
4084 (defvar idlwave-sint-routines '(nil))
4085 (defvar idlwave-sint-keywords '(nil))
4086 (defvar idlwave-sint-methods '(nil))
4087 (defvar idlwave-sint-classes '(nil))
4088 (defvar idlwave-sint-dirs '(nil))
4089 (defvar idlwave-sint-libnames '(nil))
4090
4091 (defun idlwave-reset-sintern (&optional what)
4092 "Reset all sintern hashes."
4093 ;; Make sure the hash functions are accessible.
4094 (unless (and (fboundp 'gethash)
4095 (fboundp 'puthash))
4096 (require 'cl)
4097 (or (fboundp 'puthash)
4098 (defalias 'puthash 'cl-puthash)))
4099 (let ((entries '((idlwave-sint-routines 1000 10)
4100 (idlwave-sint-keywords 1000 10)
4101 (idlwave-sint-methods 100 10)
4102 (idlwave-sint-classes 10 10))))
4103
4104 ;; Make sure these are lists
4105 (loop for entry in entries
4106 for var = (car entry)
4107 do (if (not (consp (symbol-value var))) (set var (list nil))))
4108
4109 ;; Reset the system & library hash
4110 (when (or (eq what t) (eq what 'syslib)
4111 (null (cdr idlwave-sint-routines)))
4112 (loop for entry in entries
4113 for var = (car entry) for size = (nth 1 entry)
4114 do (setcdr (symbol-value var)
4115 (make-hash-table ':size size ':test 'equal)))
4116 (setq idlwave-sint-dirs nil
4117 idlwave-sint-libnames nil))
4118
4119 ;; Reset the buffer & shell hash
4120 (when (or (eq what t) (eq what 'bufsh)
4121 (null (car idlwave-sint-routines)))
4122 (loop for entry in entries
4123 for var = (car entry) for size = (nth 1 entry)
4124 do (setcar (symbol-value var)
4125 (make-hash-table ':size size ':test 'equal))))))
4126
4127 (defun idlwave-sintern-routine-or-method (name &optional class set)
4128 (if class
4129 (idlwave-sintern-method name set)
4130 (idlwave-sintern-routine name set)))
4131
4132 (defun idlwave-sintern (stype &rest args)
4133 (apply (intern (concat "idlwave-sintern-" (symbol-name stype))) args))
4134
4135 ;;(defmacro idlwave-sintern (type var)
4136 ;; `(cond ((not (stringp name)) name)
4137 ;; ((gethash (downcase name) (cdr ,var)))
4138 ;; ((gethash (downcase name) (car ,var)))
4139 ;; (set (idlwave-sintern-set name ,type ,var set))
4140 ;; (name)))
4141
4142 (defun idlwave-sintern-routine (name &optional set)
4143 (cond ((not (stringp name)) name)
4144 ((gethash (downcase name) (cdr idlwave-sint-routines)))
4145 ((gethash (downcase name) (car idlwave-sint-routines)))
4146 (set (idlwave-sintern-set name 'routine idlwave-sint-routines set))
4147 (name)))
4148 (defun idlwave-sintern-keyword (name &optional set)
4149 (cond ((not (stringp name)) name)
4150 ((gethash (downcase name) (cdr idlwave-sint-keywords)))
4151 ((gethash (downcase name) (car idlwave-sint-keywords)))
4152 (set (idlwave-sintern-set name 'keyword idlwave-sint-keywords set))
4153 (name)))
4154 (defun idlwave-sintern-method (name &optional set)
4155 (cond ((not (stringp name)) name)
4156 ((gethash (downcase name) (cdr idlwave-sint-methods)))
4157 ((gethash (downcase name) (car idlwave-sint-methods)))
4158 (set (idlwave-sintern-set name 'method idlwave-sint-methods set))
4159 (name)))
4160 (defun idlwave-sintern-class (name &optional set)
4161 (cond ((not (stringp name)) name)
4162 ((gethash (downcase name) (cdr idlwave-sint-classes)))
4163 ((gethash (downcase name) (car idlwave-sint-classes)))
4164 (set (idlwave-sintern-set name 'class idlwave-sint-classes set))
4165 (name)))
4166
4167 (defun idlwave-sintern-dir (dir &optional set)
4168 (car (or (member dir idlwave-sint-dirs)
4169 (setq idlwave-sint-dirs (cons dir idlwave-sint-dirs)))))
4170 (defun idlwave-sintern-libname (name &optional set)
4171 (car (or (member name idlwave-sint-libnames)
4172 (setq idlwave-sint-libnames (cons name idlwave-sint-libnames)))))
4173
4174 (defun idlwave-sintern-set (name type tables set)
4175 (let* ((func (or (cdr (assq type idlwave-completion-case))
4176 'identity))
4177 (iname (funcall (if (eq func 'preserve) 'identity func) name))
4178 (table (if (eq set 'sys) (cdr tables) (car tables))))
4179 (puthash (downcase name) iname table)
4180 iname))
4181
4182 (defun idlwave-sintern-keyword-list (kwd-list &optional set)
4183 "Sintern a set of keywords (file (key . link) (key2 . link2) ...)"
4184 (mapc (lambda(x)
4185 (setcar x (idlwave-sintern-keyword (car x) set)))
4186 (cdr kwd-list))
4187 kwd-list)
4188
4189 (defun idlwave-sintern-rinfo-list (list &optional set default-dir)
4190 "Sintern all strings in the rinfo LIST.
4191 With optional parameter SET: also set new patterns. Probably this
4192 will always have to be t. If DEFAULT-DIR is passed, it is used as
4193 the base of the directory."
4194 (let (entry name type class kwds res source call new)
4195 (while list
4196 (setq entry (car list)
4197 list (cdr list)
4198 name (car entry)
4199 type (nth 1 entry)
4200 class (nth 2 entry)
4201 source (nth 3 entry)
4202 call (nth 4 entry)
4203 kwds (nthcdr 5 entry))
4204
4205 ;; The class and name
4206 (if class
4207 (progn
4208 (if (symbolp class) (setq class (symbol-name class)))
4209 (setq class (idlwave-sintern-class class set))
4210 (setq name (idlwave-sintern-method name set)))
4211 (setq name (idlwave-sintern-routine name set)))
4212
4213 ;; The source
4214 (let ((source-type (car source))
4215 (source-file (nth 1 source))
4216 (source-dir (if default-dir
4217 (file-name-as-directory default-dir)
4218 (nth 2 source)))
4219 (source-lib (nth 3 source)))
4220 (if (stringp source-dir)
4221 (setq source-dir (idlwave-sintern-dir source-dir set)))
4222 (if (stringp source-lib)
4223 (setq source-lib (idlwave-sintern-libname source-lib set)))
4224 (setq source (list source-type source-file source-dir source-lib)))
4225
4226 ;; The keywords
4227 (setq kwds (mapcar (lambda (x)
4228 (idlwave-sintern-keyword-list x set))
4229 kwds))
4230
4231 ;; Build a canonicalized list
4232 (setq new (nconc (list name type class source call) kwds)
4233 res (cons new res)))
4234 (nreverse res)))
4235
4236 ;; Creating new sintern tables
4237
4238 (defun idlwave-new-sintern-type (tag)
4239 "Define a variable and a function to sintern the new type TAG.
4240 This defines the function `idlwave-sintern-TAG' and the variable
4241 `idlwave-sint-TAGs'."
4242 (let* ((name (symbol-name tag))
4243 (names (concat name "s"))
4244 (var (intern (concat "idlwave-sint-" names)))
4245 (func (intern (concat "idlwave-sintern-" name))))
4246 (set var nil) ; initial value of the association list
4247 (fset func ; set the function
4248 `(lambda (name &optional set)
4249 (cond ((not (stringp name)) name)
4250 ((cdr (assoc (downcase name) ,var)))
4251 (set
4252 (setq ,var (cons (cons (downcase name) name) ,var))
4253 name)
4254 (name))))))
4255
4256 (defun idlwave-reset-sintern-type (tag)
4257 "Reset the sintern variable associated with TAG."
4258 (set (intern (concat "idlwave-sint-" (symbol-name tag) "s")) nil))
4259
4260 ;;---------------------------------------------------------------------------
4261
4262
4263 ;; The variables which hold the information
4264 (defvar idlwave-system-routines nil
4265 "Holds the routine-info obtained by scanning buffers.")
4266 (defvar idlwave-buffer-routines nil
4267 "Holds the routine-info obtained by scanning buffers.")
4268 (defvar idlwave-compiled-routines nil
4269 "Holds the routine-info obtained by asking the shell.")
4270 (defvar idlwave-unresolved-routines nil
4271 "Holds the unresolved routine-info obtained by asking the shell.")
4272 (defvar idlwave-user-catalog-routines nil
4273 "Holds the procedure routine-info from the user scan.")
4274 (defvar idlwave-library-catalog-routines nil
4275 "Holds the procedure routine-info from the .idlwave_catalog library files.")
4276 (defvar idlwave-library-catalog-libname nil
4277 "Name of library catalog loaded from .idlwave_catalog files.")
4278 (defvar idlwave-path-alist nil
4279 "Alist with !PATH directories and zero or more flags if the dir has
4280 been scanned in a user catalog ('user) or discovered in a library
4281 catalog \('lib).")
4282 (defvar idlwave-true-path-alist nil
4283 "Like `idlwave-path-alist', but with true filenames.")
4284 (defvar idlwave-routines nil
4285 "Holds the combined procedure/function/method routine-info.")
4286 (defvar idlwave-class-alist nil
4287 "Holds the class names known to IDLWAVE.")
4288 (defvar idlwave-class-history nil
4289 "The history of classes selected with the minibuffer.")
4290 (defvar idlwave-force-class-query nil)
4291 (defvar idlwave-before-completion-wconf nil
4292 "The window configuration just before the completion buffer was displayed.")
4293 (defvar idlwave-last-system-routine-info-cons-cell nil
4294 "The last cons cell in the system routine info.")
4295
4296 ;;
4297 ;; The code to get routine info from different sources.
4298
4299 (defvar idlwave-system-routines)
4300 (defvar idlwave-catalog-process nil
4301 "The background process currently updating the catalog.")
4302
4303 (defun idlwave-routines ()
4304 "Provide a list of IDL routines.
4305 This routine loads the builtin routines on the first call.
4306 Later it only returns the value of the variable."
4307 (if (and idlwave-catalog-process
4308 (processp idlwave-catalog-process))
4309 (progn
4310 (cond
4311 ((equal (process-status idlwave-catalog-process) 'exit)
4312 (message "updating........")
4313 (setq idlwave-catalog-process nil)
4314 (idlwave-update-routine-info '(4)))
4315 ((equal (process-status idlwave-catalog-process) 'run)
4316 ;; Keep it running...
4317 )
4318 (t
4319 ;; Something is wrong, get rid of the process
4320 (message "Problem with catalog process") (beep)
4321 (condition-case nil
4322 (kill-process idlwave-catalog-process)
4323 (error nil))
4324 (setq idlwave-catalog-process nil)))))
4325 (or idlwave-routines
4326 (progn
4327 (idlwave-update-routine-info)
4328 ;; return the current value
4329 idlwave-routines)))
4330
4331 (defvar idlwave-update-rinfo-hook nil
4332 "List of functions which should run after a global rinfo update.
4333 Does not run after automatic updates of buffer or the shell.")
4334
4335 (defun idlwave-rescan-catalog-directories ()
4336 "Rescan the previously selected directories. For batch processing."
4337 (idlwave-update-routine-info '(16)))
4338
4339 (defun idlwave-rescan-asynchronously ()
4340 "Dispatch another Emacs instance to update the idlwave catalog.
4341 After the process finishes normally, the first access to routine info
4342 will re-read the catalog."
4343 (interactive)
4344 (if (processp idlwave-catalog-process)
4345 (if (eq (process-status idlwave-catalog-process) 'run)
4346 (if (yes-or-no-p "A catalog-updating process is running. Kill it? ")
4347 (progn
4348 (condition-case nil
4349 (kill-process idlwave-catalog-process)
4350 (error nil))
4351 (error "Process killed, no new process started"))
4352 (error "Quit"))
4353 (condition-case nil
4354 (kill-process idlwave-catalog-process)
4355 (error nil))))
4356 (if (or (not idlwave-user-catalog-file)
4357 (not (stringp idlwave-user-catalog-file))
4358 (not (file-regular-p idlwave-user-catalog-file)))
4359 (error "No catalog has been produced yet"))
4360 (let* ((emacs (concat invocation-directory invocation-name))
4361 (args (list "-batch"
4362 "-l" (expand-file-name "~/.emacs")
4363 "-l" "idlwave"
4364 "-f" "idlwave-rescan-catalog-directories"))
4365 (process (apply 'start-process "idlcat"
4366 nil emacs args)))
4367 (setq idlwave-catalog-process process)
4368 (set-process-sentinel
4369 process
4370 (lambda (pro why)
4371 (when (string-match "finished" why)
4372 (setq idlwave-routines nil
4373 idlwave-system-routines nil
4374 idlwave-catalog-process nil)
4375 (or (idlwave-start-load-rinfo-timer)
4376 (idlwave-update-routine-info '(4))))))
4377 (message "Background job started to update catalog file")))
4378
4379
4380 ;; Format for all routine info user catalog, library catalogs, etc.:
4381 ;;
4382 ;; ("ROUTINE" type class
4383 ;; (system) | (lib pro_file dir "LIBNAME") | (user pro_file dir "USERLIB") |
4384 ;; (buffer pro_file dir) | (compiled pro_file dir)
4385 ;; "calling_string" ("HELPFILE" (("KWD1" . link1) ...))
4386 ;; ("HELPFILE2" (("KWD2" . link) ...)) ...)
4387 ;;
4388 ;; DIR will be supplied dynamically while loading library catalogs,
4389 ;; and is sinterned to save space, as is LIBNAME. PRO_FILE can be a
4390 ;; complete filepath, in which case DIR is unnecessary. HELPFILE can
4391 ;; be nil, as can LINK1, etc., if no HTML help is available.
4392
4393
4394 (defvar idlwave-load-rinfo-idle-timer)
4395 (defvar idlwave-shell-path-query)
4396
4397 (defun idlwave-update-routine-info (&optional arg no-concatenate)
4398 "Update the internal routine-info lists.
4399 These lists are used by `idlwave-routine-info' (\\[idlwave-routine-info])
4400 and by `idlwave-complete' (\\[idlwave-complete]) to provide information
4401 about individual routines.
4402
4403 The information can come from 4 sources:
4404 1. IDL programs in the current editing session
4405 2. Compiled modules in an IDL shell running as Emacs subprocess
4406 3. A list which covers the IDL system routines.
4407 4. A list which covers the prescanned library files.
4408
4409 Scans all IDLWAVE-mode buffers of the current editing session (see
4410 `idlwave-scan-all-buffers-for-routine-info').
4411 When an IDL shell is running, this command also queries the IDL program
4412 for currently compiled routines.
4413
4414 With prefix ARG, also reload the system and library lists.
4415 With two prefix ARG's, also rescans the chosen user catalog tree.
4416 With three prefix args, dispatch asynchronous process to do the update.
4417
4418 If NO-CONCATENATE is non-nil, don't pre-concatenate the routine info
4419 lists, but instead wait for the shell query to complete and
4420 asynchronously finish updating routine info. This is set
4421 automatically when called interactively. When you need routine
4422 information updated immediately, leave NO-CONCATENATE nil."
4423 (interactive "P\np")
4424 ;; Stop any idle processing
4425 (if (or (and (fboundp 'itimerp)
4426 (itimerp idlwave-load-rinfo-idle-timer))
4427 (and (fboundp 'timerp)
4428 (timerp idlwave-load-rinfo-idle-timer)))
4429 (cancel-timer idlwave-load-rinfo-idle-timer))
4430 (cond
4431 ((equal arg '(64))
4432 ;; Start a background process which updates the catalog.
4433 (idlwave-rescan-asynchronously))
4434 ((equal arg '(16))
4435 ;; Update the user catalog now, and wait for them.
4436 (idlwave-create-user-catalog-file t))
4437 (t
4438 (let* ((load (or arg
4439 idlwave-buffer-case-takes-precedence
4440 (null idlwave-routines)))
4441 ;; The override-idle means, even if the idle timer has done some
4442 ;; preparing work, load and renormalize everything anyway.
4443 (override-idle (or arg idlwave-buffer-case-takes-precedence)))
4444
4445 (setq idlwave-buffer-routines nil
4446 idlwave-compiled-routines nil
4447 idlwave-unresolved-routines nil)
4448 ;; Reset the appropriate hashes
4449 (if (get 'idlwave-reset-sintern 'done-by-idle)
4450 ;; reset was already done in idle time, so skip this step now once
4451 (put 'idlwave-reset-sintern 'done-by-idle nil)
4452 (idlwave-reset-sintern (cond (load t)
4453 ((null idlwave-system-routines) t)
4454 (t 'bufsh))))
4455
4456 (if idlwave-buffer-case-takes-precedence
4457 ;; We can safely scan the buffer stuff first
4458 (progn
4459 (idlwave-update-buffer-routine-info)
4460 (and load (idlwave-load-all-rinfo override-idle)))
4461 ;; We first do the system info, and then the buffers
4462 (and load (idlwave-load-all-rinfo override-idle))
4463 (idlwave-update-buffer-routine-info))
4464
4465 ;; Let's see if there is a shell
4466 (let* ((shell-is-running (and (fboundp 'idlwave-shell-is-running)
4467 (idlwave-shell-is-running)))
4468 (ask-shell (and shell-is-running
4469 idlwave-query-shell-for-routine-info)))
4470
4471 ;; Load the library catalogs again, first re-scanning the path
4472 (when arg
4473 (if shell-is-running
4474 (idlwave-shell-send-command idlwave-shell-path-query
4475 '(progn
4476 (idlwave-shell-get-path-info)
4477 (idlwave-scan-library-catalogs))
4478 'hide)
4479 (idlwave-scan-library-catalogs)))
4480
4481 (if (or (not ask-shell)
4482 (not no-concatenate))
4483 ;; 1. If we are not going to ask the shell, we need to do the
4484 ;; concatenation now.
4485 ;; 2. When this function is called non-interactively, it
4486 ;; means that someone needs routine info *now*. The
4487 ;; shell update causes the concatenation to be
4488 ;; *delayed*, so not in time for the current command.
4489 ;; Therefore, we do a concatenation now, even though
4490 ;; the shell might do it again.
4491 (idlwave-concatenate-rinfo-lists nil 'run-hooks))
4492
4493 (when ask-shell
4494 ;; Ask the shell about the routines it knows of.
4495 (message "Querying the shell")
4496 (idlwave-shell-update-routine-info nil t)))))))
4497
4498
4499 (defvar idlwave-load-rinfo-steps-done (make-vector 6 nil))
4500 (defvar idlwave-load-rinfo-idle-timer nil)
4501 (defun idlwave-start-load-rinfo-timer ()
4502 (if (or (and (fboundp 'itimerp)
4503 (itimerp idlwave-load-rinfo-idle-timer))
4504 (and (fboundp 'timerp)
4505 (timerp idlwave-load-rinfo-idle-timer)))
4506 (cancel-timer idlwave-load-rinfo-idle-timer))
4507 (setq idlwave-load-rinfo-steps-done (make-vector 6 nil))
4508 (setq idlwave-load-rinfo-idle-timer nil)
4509 (if (and idlwave-init-rinfo-when-idle-after
4510 (numberp idlwave-init-rinfo-when-idle-after)
4511 (not (equal 0 idlwave-init-rinfo-when-idle-after))
4512 (not idlwave-routines))
4513 (condition-case nil
4514 (progn
4515 (setq idlwave-load-rinfo-idle-timer
4516 (run-with-idle-timer
4517 idlwave-init-rinfo-when-idle-after
4518 nil 'idlwave-load-rinfo-next-step)))
4519 (error nil))))
4520
4521 ;;------ XML Help routine info system
4522 (defun idlwave-load-system-routine-info ()
4523 ;; Load the system routine info from the cached routine info file,
4524 ;; which, if necessary, will be re-created from the XML file on
4525 ;; disk. As a last fallback, load the (likely outdated) idlw-rinfo
4526 ;; file distributed with older IDLWAVE versions (<6.0)
4527 (unless (and (load idlwave-xml-system-rinfo-converted-file
4528 'noerror 'nomessage)
4529 (idlwave-xml-system-routine-info-up-to-date))
4530 ;; See if we can create it from XML source
4531 (condition-case nil
4532 (idlwave-convert-xml-system-routine-info)
4533 (error
4534 (unless (load idlwave-xml-system-rinfo-converted-file
4535 'noerror 'nomessage)
4536 (if idlwave-system-routines
4537 (message
4538 "Failed to load converted routine info, using old conversion.")
4539 (message
4540 "Failed to convert XML routine info, falling back on idlw-rinfo.")
4541 (if (not (load "idlw-rinfo" 'noerror 'nomessage))
4542 (message
4543 "Could not locate any system routine information."))))))))
4544
4545 (defun idlwave-xml-system-routine-info-up-to-date()
4546 (let* ((dir (file-name-as-directory
4547 (expand-file-name "help/online_help" (idlwave-sys-dir))))
4548 (catalog-file (expand-file-name "idl_catalog.xml" dir)))
4549 (file-newer-than-file-p ;converted file is newer than catalog
4550 idlwave-xml-system-rinfo-converted-file
4551 catalog-file)))
4552
4553 (defvar idlwave-system-class-info nil) ; Gathered from idlw-rinfo
4554 (defvar idlwave-system-variables-alist nil
4555 "Alist of system variables and the associated structure tags.
4556 Gets set in cached XML rinfo, or `idlw-rinfo.el'.")
4557 (defvar idlwave-executive-commands-alist nil
4558 "Alist of system variables and their help files.")
4559 (defvar idlwave-help-special-topic-words nil)
4560
4561
4562 (defun idlwave-shorten-syntax (syntax name &optional class)
4563 ;; From a list of syntax statements, shorten with %s and group with "or"
4564 (let ((case-fold-search t))
4565 (mapconcat
4566 (lambda (x)
4567 (while (string-match name x)
4568 (setq x (replace-match "%s" t t x)))
4569 (if class
4570 (while (string-match class x)
4571 (setq x (replace-match "%s" t t x))))
4572 x)
4573 (nreverse syntax)
4574 " or ")))
4575
4576 (defun idlwave-xml-create-class-method-lists (xml-entry)
4577 ;; Create a class list entry from the xml parsed list., returning a
4578 ;; cons of form (class-entry method-entries).
4579 (let* ((nameblock (nth 1 xml-entry))
4580 (class (cdr (assq 'name nameblock)))
4581 (link (cdr (assq 'link nameblock)))
4582 (params (cddr xml-entry))
4583 (case-fold-search t)
4584 class-entry
4585 method methods-entry extra-kwds
4586 props get-props set-props init-props inherits
4587 pelem ptype)
4588 (while params
4589 (setq pelem (car params))
4590 (when (listp pelem)
4591 (setq ptype (car pelem)
4592 props (car (cdr pelem)))
4593 (cond
4594 ((eq ptype 'SUPERCLASS)
4595 (let ((pname (cdr (assq 'name props)))
4596 (plink (cdr (assq 'link props))))
4597 (unless (and (string= pname "None")
4598 (string= plink "None"))
4599 (push pname inherits))))
4600
4601 ((eq ptype 'PROPERTY)
4602 (let ((pname (cdr (assq 'name props)))
4603 (plink (cdr (assq 'link props)))
4604 (get (string= (cdr (assq 'get props)) "Yes"))
4605 (set (string= (cdr (assq 'set props)) "Yes"))
4606 (init (string= (cdr (assq 'init props)) "Yes")))
4607 (if get (push (list pname plink) get-props))
4608 (if set (push (list pname plink) set-props))
4609 (if init (push (list pname plink) init-props))))
4610
4611 ((eq ptype 'METHOD)
4612 (setq method (cdr (assq 'name props)))
4613 (setq extra-kwds ;;Assume all property keywords are gathered already
4614 (cond
4615 ((string-match (concat class "::Init") method)
4616 (put 'init-props 'matched t)
4617 init-props)
4618 ((string-match (concat class "::GetProperty") method)
4619 (put 'get-props 'matched t)
4620 get-props)
4621 ((string-match (concat class "::SetProperty") method)
4622 (put 'set-props 'matched t)
4623 set-props)
4624 (t nil)))
4625 (setq methods-entry
4626 (nconc (idlwave-xml-create-rinfo-list pelem class extra-kwds)
4627 methods-entry)))
4628 (t)))
4629 (setq params (cdr params)))
4630 ;;(unless (get 'init-props 'matched)
4631 ;; (message "Failed to match Init in class %s" class))
4632 ;;(unless (get 'get-props 'matched)
4633 ;; (message "Failed to match GetProperty in class %s" class))
4634 ;;(unless (get 'set-props 'matched)
4635 ;; (message "Failed to match SetProperty in class %s" class))
4636 (setq class-entry
4637 (if inherits
4638 (list class (append '(inherits) inherits) (list 'link link))
4639 (list class (list 'link link))))
4640 (cons class-entry methods-entry)))
4641
4642 (defun idlwave-xml-create-rinfo-list (xml-entry &optional class extra-kws)
4643 ;; Create correctly structured list elements from ROUTINE or METHOD
4644 ;; XML list structures. Return a list of list elements, with more
4645 ;; than one sub-list possible if a routine can serve as both
4646 ;; procedure and function (e.g. call_method).
4647 (let* ((nameblock (nth 1 xml-entry))
4648 (name (cdr (assq 'name nameblock)))
4649 (link (cdr (assq 'link nameblock)))
4650 (params (cddr xml-entry))
4651 (syntax-vec (make-vector 3 nil)) ; procedure, function, exec command
4652 (case-fold-search t)
4653 syntax kwd klink pref-list kwds pelem ptype props result type)
4654 (if class ;; strip out class name from class method name string
4655 (if (string-match (concat class "::") name)
4656 (setq name (substring name (match-end 0)))))
4657 (while params
4658 (setq pelem (car params))
4659 (when (listp pelem)
4660 (setq ptype (car pelem)
4661 props (car (cdr pelem)))
4662 (cond
4663 ((eq ptype 'SYNTAX)
4664 (setq syntax (cdr (assq 'name props)))
4665 (if (string-match "-&gt;" syntax)
4666 (setq syntax (replace-match "->" t nil syntax)))
4667 (setq type (cdr (assq 'type props)))
4668 (push syntax
4669 (aref syntax-vec (cond
4670 ((string-match "^pro" type) 0)
4671 ((string-match "^fun" type) 1)
4672 ((string-match "^exec" type) 2)))))
4673 ((eq ptype 'KEYWORD)
4674 (setq kwd (cdr (assq 'name props))
4675 klink (cdr (assq 'link props)))
4676 (if (string-match "^\\[XY\\(Z?\\)\\]" kwd)
4677 (progn
4678 (setq pref-list
4679 (if (match-string 1 kwd) '("X" "Y" "Z") '("X" "Y"))
4680 kwd (substring kwd (match-end 0)))
4681 (loop for x in pref-list do
4682 (push (list (concat x kwd) klink) kwds)))
4683 (push (list kwd klink) kwds)))
4684
4685 (t))); Do nothing for the others
4686 (setq params (cdr params)))
4687
4688 ;; Debug
4689 ;; (if (and (null (aref syntax-vec 0))
4690 ;; (null (aref syntax-vec 1))
4691 ;; (null (aref syntax-vec 2)))
4692 ;; (with-current-buffer (get-buffer-create "IDL_XML_catalog_complaints")
4693 ;; (if class
4694 ;; (insert (format "Missing SYNTAX entry for %s::%s\n" class name))
4695 ;; (insert (message "Missing SYNTAX entry for %s\n" name)))))
4696
4697 ;; Executive commands are treated specially
4698 (if (aref syntax-vec 2)
4699 (cons (substring name 1) link)
4700 (if extra-kws (setq kwds (nconc kwds extra-kws)))
4701 (setq kwds (idlwave-rinfo-group-keywords kwds link))
4702 (loop for idx from 0 to 1 do
4703 (if (aref syntax-vec idx)
4704 (push (append (list name (if (eq idx 0) 'pro 'fun)
4705 class '(system)
4706 (idlwave-shorten-syntax
4707 (aref syntax-vec idx) name class))
4708 kwds) result)))
4709 result)))
4710
4711
4712 (defun idlwave-rinfo-group-keywords (kwds master-link)
4713 ;; Group keywords by link file, as a list with elements
4714 ;; (linkfile ( ("KWD1" . link1) ("KWD2" . link2))
4715 (let (kwd link anchor linkfiles block master-elt)
4716 (while kwds
4717 (setq kwd (car kwds)
4718 link (idlwave-split-link-target (nth 1 kwd))
4719 anchor (cdr link)
4720 link (car link)
4721 kwd (car kwd))
4722 (if (setq block (assoc link linkfiles))
4723 (push (cons kwd anchor) (cdr block))
4724 (push (list link (cons kwd anchor)) linkfiles))
4725 (setq kwds (cdr kwds)))
4726 ;; Ensure the master link is there
4727 (if (setq master-elt (assoc master-link linkfiles))
4728 (if (eq (car linkfiles) master-elt)
4729 linkfiles
4730 (cons master-elt (delq master-elt linkfiles)))
4731 (push (list master-link) linkfiles))))
4732
4733 (defun idlwave-convert-xml-clean-statement-aliases (aliases)
4734 ;; Clean up the syntax of routines which are actually aliases by
4735 ;; removing the "OR" from the statements
4736 (let (syntax entry)
4737 (loop for x in aliases do
4738 (setq entry (assoc x idlwave-system-routines))
4739 (when entry
4740 (while (string-match " +or +" (setq syntax (nth 4 entry)))
4741 (setf (nth 4 entry) (replace-match ", " t t syntax)))))))
4742
4743 (defun idlwave-convert-xml-clean-routine-aliases (aliases)
4744 ;; Duplicate and trim original routine aliases from rinfo list
4745 ;; This if for, e.g. OPENR/OPENW/OPENU
4746 (let (alias remove-list new parts all-parts)
4747 (loop for x in aliases do
4748 (when (setq parts (split-string (cdr x) "/"))
4749 (setq new (assoc (cdr x) all-parts))
4750 (unless new
4751 (setq new (cons (cdr x) parts))
4752 (push new all-parts))
4753 (setcdr new (delete (car x) (cdr new)))))
4754
4755 ;; Add any missing aliases (separate by slashes)
4756 (loop for x in all-parts do
4757 (if (cdr x)
4758 (push (cons (nth 1 x) (car x)) aliases)))
4759
4760 (loop for x in aliases do
4761 (when (setq alias (assoc (cdr x) idlwave-system-routines))
4762 (unless (memq alias remove-list) (push alias remove-list))
4763 (setq alias (copy-sequence alias))
4764 (setcar alias (car x))
4765 (push alias idlwave-system-routines)))
4766 (loop for x in remove-list do
4767 (delq x idlwave-system-routines))))
4768
4769 (defun idlwave-convert-xml-clean-sysvar-aliases (aliases)
4770 ;; Duplicate and trim original routine aliases from rinfo list
4771 ;; This if for, e.g. !X, !Y, !Z.
4772 (let (alias remove-list)
4773 (loop for x in aliases do
4774 (when (setq alias (assoc (cdr x) idlwave-system-variables-alist))
4775 (unless (memq alias remove-list) (push alias remove-list))
4776 (setq alias (copy-sequence alias))
4777 (setcar alias (car x))
4778 (push alias idlwave-system-variables-alist)))
4779 (loop for x in remove-list do
4780 (delq x idlwave-system-variables-alist))))
4781
4782
4783 (defun idlwave-xml-create-sysvar-alist (xml-entry)
4784 ;; Create a sysvar list entry from the xml parsed list.
4785 (let* ((nameblock (nth 1 xml-entry))
4786 (name (cdr (assq 'name nameblock)))
4787 (sysvar (substring name (progn (string-match "^ *!" name)
4788 (match-end 0))))
4789 (link (cdr (assq 'link nameblock)))
4790 (params (cddr xml-entry))
4791 (case-fold-search t)
4792 pelem ptype props tags)
4793 (while params
4794 (setq pelem (car params))
4795 (when (listp pelem)
4796 (setq ptype (car pelem)
4797 props (car (cdr pelem)))
4798 (cond
4799 ((eq ptype 'FIELD)
4800 (push (cons (cdr (assq 'name props))
4801 (cdr
4802 (idlwave-split-link-target (cdr (assq 'link props)))))
4803 tags))))
4804 (setq params (cdr params)))
4805 (delq nil
4806 (list sysvar (if tags (cons 'tags tags)) (list 'link link)))))
4807
4808
4809 (defvar idlwave-xml-routine-info-file nil)
4810
4811 (defun idlwave-save-routine-info ()
4812 (if idlwave-xml-routine-info-file
4813 (with-temp-file idlwave-xml-system-rinfo-converted-file
4814 (insert
4815 (concat ";; *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
4816 ;; IDLWAVE Routine Information File (IDLWAVE version " idlwave-mode-version ")
4817 ;; Automatically generated from source file:
4818 ;; " idlwave-xml-routine-info-file "
4819 ;; on " (current-time-string) "
4820 ;; Do not edit."))
4821 (insert (format "\n(setq idlwave-xml-routine-info-file \n \"%s\")"
4822 idlwave-xml-routine-info-file))
4823 (insert "\n(setq idlwave-system-routines\n '")
4824 (prin1 idlwave-system-routines (current-buffer))
4825 (insert ")")
4826 (insert "\n(setq idlwave-system-variables-alist\n '")
4827 (prin1 idlwave-system-variables-alist (current-buffer))
4828 (insert ")")
4829 (insert "\n(setq idlwave-system-class-info\n '")
4830 (prin1 idlwave-system-class-info (current-buffer))
4831 (insert ")")
4832 (insert "\n(setq idlwave-executive-commands-alist\n '")
4833 (prin1 idlwave-executive-commands-alist (current-buffer))
4834 (insert ")")
4835 (insert "\n(setq idlwave-help-special-topic-words\n '")
4836 (prin1 idlwave-help-special-topic-words (current-buffer))
4837 (insert ")"))))
4838
4839 (defun idlwave-convert-xml-system-routine-info ()
4840 "Convert XML supplied IDL routine info into internal form.
4841 Cache to disk for quick recovery."
4842 (interactive)
4843 (let* ((dir (file-name-as-directory
4844 (expand-file-name "help/online_help" (idlwave-sys-dir))))
4845 (catalog-file (expand-file-name "idl_catalog.xml" dir))
4846 (elem-cnt 0)
4847 props rinfo msg-cnt elem type nelem class-result alias
4848 routines routine-aliases statement-aliases sysvar-aliases)
4849 (if (not (file-exists-p catalog-file))
4850 (error "No such XML routine info file: %s" catalog-file)
4851 (if (not (file-readable-p catalog-file))
4852 (error "Cannot read XML routine info file: %s" catalog-file)))
4853 (message "Reading XML routine info...")
4854 (setq rinfo (xml-parse-file catalog-file))
4855 (message "Reading XML routine info...done")
4856 (setq rinfo (assq 'CATALOG rinfo))
4857 (unless rinfo (error "Failed to parse XML routine info"))
4858 ;;(setq rinfo (car rinfo)) ; Skip the catalog stuff.
4859
4860 (setq rinfo (cddr rinfo))
4861
4862 (setq nelem (length rinfo)
4863 msg-cnt (/ nelem 20))
4864
4865 (setq idlwave-xml-routine-info-file nil)
4866 (message "Converting XML routine info...")
4867 (setq idlwave-system-routines nil
4868 idlwave-system-variables-alist nil
4869 idlwave-system-class-info nil
4870 idlwave-executive-commands-alist nil
4871 idlwave-help-special-topic-words nil)
4872
4873 (while rinfo
4874 (setq elem (car rinfo)
4875 rinfo (cdr rinfo))
4876 (incf elem-cnt)
4877 (when (listp elem)
4878 (setq type (car elem)
4879 props (car (cdr elem)))
4880 (if (= (mod elem-cnt msg-cnt) 0)
4881 (message "Converting XML routine info...%2d%%"
4882 (/ (* elem-cnt 100) nelem)))
4883 (cond
4884 ((eq type 'ROUTINE)
4885 (if (setq alias (assq 'alias_to props))
4886 (push (cons (cdr (assq 'name props)) (cdr alias))
4887 routine-aliases)
4888 (setq routines (idlwave-xml-create-rinfo-list elem))
4889 (if (listp (cdr routines))
4890 (setq idlwave-system-routines
4891 (nconc idlwave-system-routines routines))
4892 ;; a cons cell is an executive commands
4893 (push routines idlwave-executive-commands-alist))))
4894
4895 ((eq type 'CLASS)
4896 (setq class-result (idlwave-xml-create-class-method-lists elem))
4897 (push (car class-result) idlwave-system-class-info)
4898 (setq idlwave-system-routines
4899 (nconc idlwave-system-routines (cdr class-result))))
4900
4901 ((eq type 'STATEMENT)
4902 (push (cons (cdr (assq 'name props))
4903 (cdr (assq 'link props)))
4904 idlwave-help-special-topic-words)
4905 ;; Save the links to those which are statement aliases (not routines)
4906 (if (setq alias (assq 'alias_to props))
4907 (unless (member (cdr alias) statement-aliases)
4908 (push (cdr alias) statement-aliases))))
4909
4910 ((eq type 'SYSVAR)
4911 (if (setq alias (cdr (assq 'alias_to props)))
4912 (push (cons (substring (cdr (assq 'name props)) 1)
4913 (substring alias 1))
4914 sysvar-aliases)
4915 (push (idlwave-xml-create-sysvar-alist elem)
4916 idlwave-system-variables-alist)))
4917 (t))))
4918 (idlwave-convert-xml-clean-routine-aliases routine-aliases)
4919 (idlwave-convert-xml-clean-statement-aliases statement-aliases)
4920 (idlwave-convert-xml-clean-sysvar-aliases sysvar-aliases)
4921
4922 (setq idlwave-xml-routine-info-file catalog-file)
4923 (idlwave-save-routine-info)
4924 (message "Converting XML routine info...done")))
4925
4926
4927 ;; ("ROUTINE" type class
4928 ;; (system) | (lib pro_file dir "LIBNAME") | (user pro_file dir "USERLIB") |
4929 ;; (buffer pro_file dir) | (compiled pro_file dir)
4930 ;; "calling_string" ("HELPFILE" (("KWD1" . link1) ...))
4931 ;; ("HELPFILE2" (("KWD2" . link) ...)) ...)
4932
4933
4934 (defun idlwave-load-rinfo-next-step ()
4935 (let ((inhibit-quit t)
4936 (arr idlwave-load-rinfo-steps-done))
4937 (if (catch 'exit
4938 (when (not (aref arr 0))
4939 (message "Loading system routine info in idle time...")
4940 (idlwave-load-system-routine-info)
4941 ;;(load "idlw-rinfo" 'noerror 'nomessage)
4942 (message "Loading system routine info in idle time...done")
4943 (aset arr 0 t)
4944 (throw 'exit t))
4945
4946 (when (not (aref arr 1))
4947 (message "Normalizing idlwave-system-routines in idle time...")
4948 (idlwave-reset-sintern t)
4949 (put 'idlwave-reset-sintern 'done-by-idle t)
4950 (setq idlwave-system-routines
4951 (idlwave-sintern-rinfo-list idlwave-system-routines 'sys))
4952 (message "Normalizing idlwave-system-routines in idle time...done")
4953 (aset arr 1 t)
4954 (throw 'exit t))
4955
4956 (when (not (aref arr 2))
4957 (when (and (stringp idlwave-user-catalog-file)
4958 (file-regular-p idlwave-user-catalog-file))
4959 (message "Loading user catalog in idle time...")
4960 (condition-case nil
4961 (load-file idlwave-user-catalog-file)
4962 (error (throw 'exit nil)))
4963 ;; Check for the old style catalog and warn
4964 (if (and
4965 (boundp 'idlwave-library-routines)
4966 idlwave-library-routines)
4967 (progn
4968 (setq idlwave-library-routines nil)
4969 (ding)
4970 (message "Outdated user catalog: %s... recreate"
4971 idlwave-user-catalog-file))
4972 (message "Loading user catalog in idle time...done")))
4973 (aset arr 2 t)
4974 (throw 'exit t))
4975
4976 (when (not (aref arr 3))
4977 (when idlwave-user-catalog-routines
4978 (message "Normalizing user catalog routines in idle time...")
4979 (setq idlwave-user-catalog-routines
4980 (idlwave-sintern-rinfo-list
4981 idlwave-user-catalog-routines 'sys))
4982 (message
4983 "Normalizing user catalog routines in idle time...done"))
4984 (aset arr 3 t)
4985 (throw 'exit t))
4986
4987 (when (not (aref arr 4))
4988 (idlwave-scan-library-catalogs
4989 "Loading and normalizing library catalogs in idle time...")
4990 (aset arr 4 t)
4991 (throw 'exit t))
4992 (when (not (aref arr 5))
4993 (message "Finishing initialization in idle time...")
4994 (idlwave-routines)
4995 (message "Finishing initialization in idle time...done")
4996 (aset arr 5 t)
4997 (throw 'exit nil)))
4998 ;; restart the timer
4999 (if (sit-for 1)
5000 (idlwave-load-rinfo-next-step)
5001 (setq idlwave-load-rinfo-idle-timer
5002 (run-with-idle-timer
5003 idlwave-init-rinfo-when-idle-after
5004 nil 'idlwave-load-rinfo-next-step))))))
5005
5006 (defvar idlwave-after-load-rinfo-hook nil)
5007
5008 (defun idlwave-load-all-rinfo (&optional force)
5009 ;; Load and case-treat the system, user catalog, and library routine
5010 ;; info files.
5011
5012 ;; System
5013 (when (or force (not (aref idlwave-load-rinfo-steps-done 0)))
5014 ;;(load "idlw-rinfo" 'noerror 'nomessage))
5015 (idlwave-load-system-routine-info))
5016 (when (or force (not (aref idlwave-load-rinfo-steps-done 1)))
5017 (message "Normalizing idlwave-system-routines...")
5018 (setq idlwave-system-routines
5019 (idlwave-sintern-rinfo-list idlwave-system-routines 'sys))
5020 (message "Normalizing idlwave-system-routines...done"))
5021 (when idlwave-system-routines
5022 (setq idlwave-routines (copy-sequence idlwave-system-routines))
5023 (setq idlwave-last-system-routine-info-cons-cell
5024 (nthcdr (1- (length idlwave-routines)) idlwave-routines)))
5025
5026 ;; User catalog
5027 (when (and (stringp idlwave-user-catalog-file)
5028 (file-regular-p idlwave-user-catalog-file))
5029 (condition-case nil
5030 (when (or force (not (aref idlwave-load-rinfo-steps-done 2)))
5031 (load-file idlwave-user-catalog-file))
5032 (error nil))
5033 (when (and
5034 (boundp 'idlwave-library-routines)
5035 idlwave-library-routines)
5036 (setq idlwave-library-routines nil)
5037 (error "Outdated user catalog: %s... recreate"
5038 idlwave-user-catalog-file))
5039 (setq idlwave-true-path-alist nil)
5040 (when (or force (not (aref idlwave-load-rinfo-steps-done 3)))
5041 (message "Normalizing user catalog routines...")
5042 (setq idlwave-user-catalog-routines
5043 (idlwave-sintern-rinfo-list
5044 idlwave-user-catalog-routines 'sys))
5045 (message "Normalizing user catalog routines...done")))
5046
5047 ;; Library catalog
5048 (when (or force (not (aref idlwave-load-rinfo-steps-done 4)))
5049 (idlwave-scan-library-catalogs
5050 "Loading and normalizing library catalogs..."))
5051 (run-hooks 'idlwave-after-load-rinfo-hook))
5052
5053
5054 (defun idlwave-update-buffer-routine-info ()
5055 (let (res)
5056 (cond
5057 ((eq idlwave-scan-all-buffers-for-routine-info t)
5058 ;; Scan all buffers, current buffer last
5059 (message "Scanning all buffers...")
5060 (setq res (idlwave-get-routine-info-from-buffers
5061 (reverse (buffer-list)))))
5062 ((null idlwave-scan-all-buffers-for-routine-info)
5063 ;; Don't scan any buffers
5064 (setq res nil))
5065 (t
5066 ;; Just scan this buffer
5067 (if (derived-mode-p 'idlwave-mode)
5068 (progn
5069 (message "Scanning current buffer...")
5070 (setq res (idlwave-get-routine-info-from-buffers
5071 (list (current-buffer))))))))
5072 ;; Put the result into the correct variable
5073 (setq idlwave-buffer-routines
5074 (idlwave-sintern-rinfo-list res 'set))))
5075
5076 (defun idlwave-concatenate-rinfo-lists (&optional quiet run-hook)
5077 "Put the different sources for routine information together."
5078 ;; The sequence here is important because earlier definitions shadow
5079 ;; later ones. We assume that if things in the buffers are newer
5080 ;; then in the shell of the system, they are meant to be different.
5081 (setcdr idlwave-last-system-routine-info-cons-cell
5082 (append idlwave-buffer-routines
5083 idlwave-compiled-routines
5084 idlwave-library-catalog-routines
5085 idlwave-user-catalog-routines))
5086 (setq idlwave-class-alist nil)
5087
5088 ;; Give a message with information about the number of routines we have.
5089 (unless quiet
5090 (message
5091 "Routines Found: buffer(%d) compiled(%d) library(%d) user(%d) system(%d)"
5092 (length idlwave-buffer-routines)
5093 (length idlwave-compiled-routines)
5094 (length idlwave-library-catalog-routines)
5095 (length idlwave-user-catalog-routines)
5096 (length idlwave-system-routines)))
5097 (if run-hook
5098 (run-hooks 'idlwave-update-rinfo-hook)))
5099
5100 (defun idlwave-class-alist ()
5101 "Return the class alist - make it if necessary."
5102 (or idlwave-class-alist
5103 (let (class)
5104 (loop for x in idlwave-routines do
5105 (when (and (setq class (nth 2 x))
5106 (not (assq class idlwave-class-alist)))
5107 (push (list class) idlwave-class-alist)))
5108 idlwave-class-alist)))
5109
5110 ;; Three functions for the hooks
5111 (defun idlwave-save-buffer-update ()
5112 (idlwave-update-current-buffer-info 'save-buffer))
5113 (defun idlwave-kill-buffer-update ()
5114 (idlwave-update-current-buffer-info 'kill-buffer))
5115 (defun idlwave-new-buffer-update ()
5116 (idlwave-update-current-buffer-info 'find-file))
5117
5118 (defun idlwave-update-current-buffer-info (why)
5119 "Update `idlwave-routines' for current buffer.
5120 Can run from `after-save-hook'."
5121 (when (and (derived-mode-p 'idlwave-mode)
5122 (or (eq t idlwave-auto-routine-info-updates)
5123 (memq why idlwave-auto-routine-info-updates))
5124 idlwave-scan-all-buffers-for-routine-info
5125 idlwave-routines)
5126 (condition-case nil
5127 (let (routines)
5128 (idlwave-replace-buffer-routine-info
5129 (buffer-file-name)
5130 (if (eq why 'kill-buffer)
5131 nil
5132 (setq routines
5133 (idlwave-sintern-rinfo-list
5134 (idlwave-get-routine-info-from-buffers
5135 (list (current-buffer))) 'set))))
5136 (idlwave-concatenate-rinfo-lists 'quiet)
5137 routines)
5138 (error nil))))
5139
5140 (defun idlwave-replace-buffer-routine-info (file new)
5141 "Cut the part from FILE out of `idlwave-buffer-routines' and add NEW."
5142 (let ((list idlwave-buffer-routines)
5143 found)
5144 (while list
5145 ;; The following test uses eq to make sure it works correctly
5146 ;; when two buffers visit the same file. Then the file names
5147 ;; will be equal, but not eq.
5148 (if (eq (idlwave-routine-source-file (nth 3 (car list))) file)
5149 (progn
5150 (setcar list nil)
5151 (setq found t))
5152 (if found
5153 ;; End of that section reached. Jump.
5154 (setq list nil)))
5155 (setq list (cdr list)))
5156 (setq idlwave-buffer-routines
5157 (append new (delq nil idlwave-buffer-routines)))))
5158
5159 ;;----- Scanning buffers -------------------
5160
5161 (defun idlwave-get-routine-info-from-buffers (buffers)
5162 "Call `idlwave-get-buffer-routine-info' on idlwave-mode buffers in BUFFERS."
5163 (let (buf routine-lists res)
5164 (save-excursion
5165 (while (setq buf (pop buffers))
5166 (set-buffer buf)
5167 (if (and (derived-mode-p 'idlwave-mode)
5168 buffer-file-name)
5169 ;; yes, this buffer has the right mode.
5170 (progn (setq res (condition-case nil
5171 (idlwave-get-buffer-routine-info)
5172 (error nil)))
5173 (push res routine-lists)))))
5174 ;; Concatenate the individual lists and return the result
5175 (apply 'nconc routine-lists)))
5176
5177 (defun idlwave-get-buffer-routine-info ()
5178 "Scan the current buffer for routine info. Return (PRO-LIST FUNC-LIST)."
5179 (let* ((case-fold-search t)
5180 routine-list string entry)
5181 (save-excursion
5182 (save-restriction
5183 (widen)
5184 (goto-char (point-min))
5185 (while (re-search-forward
5186 "^[ \t]*\\(pro\\|function\\)[ \t]" nil t)
5187 (setq string (buffer-substring-no-properties
5188 (match-beginning 0)
5189 (progn
5190 (idlwave-end-of-statement)
5191 (point))))
5192 (setq entry (idlwave-parse-definition string))
5193 (push entry routine-list))))
5194 routine-list))
5195
5196 (defvar idlwave-scanning-lib-dir)
5197 (defvar idlwave-scanning-lib)
5198 (defun idlwave-parse-definition (string)
5199 "Parse a module definition."
5200 (let ((case-fold-search t)
5201 start name args type keywords class)
5202 ;; Remove comments
5203 (while (string-match ";.*" string)
5204 (setq string (replace-match "" t t string)))
5205 ;; Remove the continuation line stuff
5206 (while (string-match "\\([^a-zA-Z0-9$_]\\)\\$[ \t]*\n" string)
5207 (setq string (replace-match "\\1 " t nil string)))
5208 (while (string-match "\n" string)
5209 (setq string (replace-match " " t nil string)))
5210 ;; Match the name and type.
5211 (when (string-match
5212 "\\<\\(pro\\|function\\)\\>\\s-+\\(\\([a-zA-Z0-9$_]+\\)::\\)?\\([a-zA-Z0-9$_]+\\)" string)
5213 (setq start (match-end 0))
5214 (setq type (downcase (match-string 1 string)))
5215 (if (match-beginning 3)
5216 (setq class (match-string 3 string)))
5217 (setq name (match-string 4 string)))
5218 ;; Match normal args and keyword args
5219 (while (string-match
5220 ",\\s-*\\([a-zA-Z][a-zA-Z0-9$_]*\\|\\(_ref\\)?_extra\\)\\s-*\\(=\\)?"
5221 string start)
5222 (setq start (match-end 0))
5223 (if (match-beginning 3)
5224 (push (match-string 1 string) keywords)
5225 (push (match-string 1 string) args)))
5226 ;; Normalize and sort.
5227 (setq args (nreverse args))
5228 (setq keywords (sort keywords (lambda (a b)
5229 (string< (downcase a) (downcase b)))))
5230 ;; Make and return the entry
5231 ;; We don't know which argument are optional, so this information
5232 ;; will not be contained in the calling sequence.
5233 (list name
5234 (if (equal type "pro") 'pro 'fun)
5235 class
5236 (cond ((not (boundp 'idlwave-scanning-lib))
5237 (list 'buffer (buffer-file-name)))
5238 ; ((string= (downcase (file-name-base))
5239 ; (downcase name))
5240 ; (list 'lib))
5241 ; (t (cons 'lib (file-name-nondirectory (buffer-file-name))))
5242 (t (list 'user (file-name-nondirectory (buffer-file-name))
5243 idlwave-scanning-lib-dir "UserLib")))
5244 (concat
5245 (if (string= type "function") "Result = " "")
5246 (if class "Obj ->[%s::]" "")
5247 "%s"
5248 (if args
5249 (concat
5250 (if (string= type "function") "(" ", ")
5251 (mapconcat 'identity args ", ")
5252 (if (string= type "function") ")" ""))))
5253 (if keywords
5254 (cons nil (mapcar 'list keywords)) ;No help file
5255 nil))))
5256
5257
5258 ;;----- Scanning the user catalog -------------------
5259
5260 (defun idlwave-sys-dir ()
5261 "Return the syslib directory, or a dummy that never matches."
5262 (cond
5263 ((and idlwave-system-directory
5264 (not (string= idlwave-system-directory "")))
5265 idlwave-system-directory)
5266 ((getenv "IDL_DIR"))
5267 (t "@@@@@@@@")))
5268
5269
5270 (defun idlwave-create-user-catalog-file (&optional arg)
5271 "Scan all files on selected dirs of IDL search path for routine information.
5272
5273 A widget checklist will allow you to choose the directories. Write
5274 the result as a file `idlwave-user-catalog-file'. When this file
5275 exists, it will be automatically loaded to give routine information
5276 about library routines. With ARG, just rescan the same directories
5277 as last time - so no widget will pop up."
5278 (interactive "P")
5279 ;; Make sure the file is loaded if it exists.
5280 (if (and (stringp idlwave-user-catalog-file)
5281 (file-regular-p idlwave-user-catalog-file))
5282 (condition-case nil
5283 (load-file idlwave-user-catalog-file)
5284 (error nil)))
5285 ;; Make sure the file name makes sense
5286 (unless (and (stringp idlwave-user-catalog-file)
5287 (> (length idlwave-user-catalog-file) 0)
5288 (file-accessible-directory-p
5289 (file-name-directory idlwave-user-catalog-file))
5290 (not (string= "" (file-name-nondirectory
5291 idlwave-user-catalog-file))))
5292 (error "`idlwave-user-catalog-file' does not point to a file in an accessible directory"))
5293
5294 (cond
5295 ;; Rescan the known directories
5296 ((and arg idlwave-path-alist
5297 (consp (car idlwave-path-alist)))
5298 (idlwave-scan-user-lib-files idlwave-path-alist))
5299
5300 ;; Expand the directories from library-path and run the widget
5301 (idlwave-library-path
5302 (idlwave-display-user-catalog-widget
5303 (if idlwave-true-path-alist
5304 ;; Propagate any flags on the existing path-alist
5305 (mapcar (lambda (x)
5306 (let ((path-entry (assoc (file-truename x)
5307 idlwave-true-path-alist)))
5308 (if path-entry
5309 (cons x (cdr path-entry))
5310 (list x))))
5311 (idlwave-expand-path idlwave-library-path))
5312 (mapcar 'list (idlwave-expand-path idlwave-library-path)))))
5313
5314 ;; Ask the shell for the path and then run the widget
5315 (t
5316 (message "Asking the shell for IDL path...")
5317 (require 'idlw-shell)
5318 (idlwave-shell-send-command idlwave-shell-path-query
5319 '(idlwave-user-catalog-command-hook nil)
5320 'hide))))
5321
5322
5323 ;; Parse shell path information and select among it.
5324 (defun idlwave-user-catalog-command-hook (&optional arg)
5325 ;; Command hook used by `idlwave-create-user-catalog-file'.
5326 (if arg
5327 ;; Scan immediately
5328 (idlwave-scan-user-lib-files idlwave-path-alist)
5329 ;; Set the path and display the widget
5330 (idlwave-shell-get-path-info 'no-write) ; set to something path-alist
5331 (idlwave-scan-library-catalogs "Locating library catalogs..." 'no-load)
5332 (idlwave-display-user-catalog-widget idlwave-path-alist)))
5333
5334 (defconst idlwave-user-catalog-widget-help-string
5335 "This is the front-end to the creation of the IDLWAVE user catalog.
5336 Please select the directories on IDL's search path from which you
5337 would like to extract routine information, to be stored in the file:
5338
5339 %s
5340
5341 If this is not the correct file, first set variable
5342 `idlwave-user-catalog-file', and call this command again.
5343
5344 N.B. Many libraries include pre-scanned catalog files
5345 \(\".idlwave_catalog\"). These are marked with \"[LIB]\", and need
5346 not be scanned. You can scan your own libraries off-line using the
5347 perl script `idlwave_catalog'.
5348
5349 After selecting the directories, choose [Scan & Save] to scan the library
5350 directories and save the routine info.
5351 \n")
5352
5353 (defvar idlwave-widget)
5354 (defvar widget-keymap)
5355 (defun idlwave-display-user-catalog-widget (dirs-list)
5356 "Create the widget to select IDL search path directories for scanning."
5357 (interactive)
5358 (require 'widget)
5359 (require 'wid-edit)
5360 (unless dirs-list
5361 (error "Don't know IDL's search path"))
5362
5363 (kill-buffer (get-buffer-create "*IDLWAVE Widget*"))
5364 (switch-to-buffer (get-buffer-create "*IDLWAVE Widget*"))
5365 (kill-all-local-variables)
5366 (make-local-variable 'idlwave-widget)
5367 (widget-insert (format idlwave-user-catalog-widget-help-string
5368 idlwave-user-catalog-file))
5369
5370 (widget-create 'push-button
5371 :notify 'idlwave-widget-scan-user-lib-files
5372 "Scan & Save")
5373 (widget-insert " ")
5374 (widget-create 'push-button
5375 :notify 'idlwave-delete-user-catalog-file
5376 "Delete File")
5377 (widget-insert " ")
5378 (widget-create 'push-button
5379 :notify
5380 (lambda (&rest ignore)
5381 (let ((path-list (widget-get idlwave-widget :path-dirs)))
5382 (dolist (x path-list)
5383 (unless (memq 'lib (cdr x))
5384 (idlwave-path-alist-add-flag x 'user)))
5385 (idlwave-display-user-catalog-widget path-list)))
5386 "Select All Non-Lib")
5387 (widget-insert " ")
5388 (widget-create 'push-button
5389 :notify
5390 (lambda (&rest ignore)
5391 (let ((path-list (widget-get idlwave-widget :path-dirs)))
5392 (dolist (x path-list)
5393 (idlwave-path-alist-remove-flag x 'user))
5394 (idlwave-display-user-catalog-widget path-list)))
5395 "Deselect All")
5396 (widget-insert " ")
5397 (widget-create 'push-button
5398 :notify (lambda (&rest ignore)
5399 (kill-buffer (current-buffer)))
5400 "Quit")
5401 (widget-insert "\n\n")
5402
5403 (widget-insert "Select Directories: \n")
5404
5405 (setq idlwave-widget
5406 (apply 'widget-create
5407 'checklist
5408 :value (delq nil (mapcar (lambda (x)
5409 (if (memq 'user (cdr x))
5410 (car x)))
5411 dirs-list))
5412 :greedy t
5413 :tag "List of directories"
5414 (mapcar (lambda (x)
5415 (list 'item
5416 (if (memq 'lib (cdr x))
5417 (concat "[LIB] " (car x) )
5418 (car x)))) dirs-list)))
5419 (widget-put idlwave-widget :path-dirs dirs-list)
5420 (widget-insert "\n")
5421 (use-local-map widget-keymap)
5422 (widget-setup)
5423 (goto-char (point-min))
5424 (delete-other-windows))
5425
5426 (defun idlwave-delete-user-catalog-file (&rest ignore)
5427 (if (yes-or-no-p
5428 (format "Delete file %s " idlwave-user-catalog-file))
5429 (progn
5430 (delete-file idlwave-user-catalog-file)
5431 (message "%s has been deleted" idlwave-user-catalog-file))))
5432
5433 (defun idlwave-widget-scan-user-lib-files (&rest ignore)
5434 ;; Call `idlwave-scan-user-lib-files' with data taken from the widget.
5435 (let* ((widget idlwave-widget)
5436 (selected-dirs (widget-value widget))
5437 (path-alist (widget-get widget :path-dirs))
5438 (this-path-alist path-alist)
5439 dir-entry)
5440 (while (setq dir-entry (pop this-path-alist))
5441 (if (member
5442 (if (memq 'lib (cdr dir-entry))
5443 (concat "[LIB] " (car dir-entry))
5444 (car dir-entry))
5445 selected-dirs)
5446 (idlwave-path-alist-add-flag dir-entry 'user)
5447 (idlwave-path-alist-remove-flag dir-entry 'user)))
5448 (idlwave-scan-user-lib-files path-alist)))
5449
5450 (defvar font-lock-mode)
5451 (defun idlwave-scan-user-lib-files (path-alist)
5452 ;; Scan the PRO files in PATH-ALIST and store the info in the user catalog
5453 (let* ((idlwave-scanning-lib t)
5454 (idlwave-scanning-lib-dir "")
5455 (idlwave-completion-case nil)
5456 dirs-alist dir files file)
5457 (setq idlwave-user-catalog-routines nil
5458 idlwave-path-alist path-alist ; for library-path instead
5459 idlwave-true-path-alist nil)
5460 (if idlwave-auto-write-paths (idlwave-write-paths))
5461 (with-current-buffer (get-buffer-create "*idlwave-scan.pro*")
5462 (idlwave-mode)
5463 (setq dirs-alist (reverse path-alist))
5464 (while (setq dir (pop dirs-alist))
5465 (when (memq 'user (cdr dir)) ; Has it marked for scan?
5466 (setq dir (car dir))
5467 (setq idlwave-scanning-lib-dir dir)
5468 (when (file-directory-p dir)
5469 (setq files (directory-files dir 'full "\\.[pP][rR][oO]\\'"))
5470 (while (setq file (pop files))
5471 (when (file-regular-p file)
5472 (if (not (file-readable-p file))
5473 (message "Skipping %s (no read permission)" file)
5474 (message "Scanning %s..." file)
5475 (erase-buffer)
5476 (insert-file-contents file 'visit)
5477 (setq idlwave-user-catalog-routines
5478 (append (idlwave-get-routine-info-from-buffers
5479 (list (current-buffer)))
5480 idlwave-user-catalog-routines)))))))))
5481 (message "Creating user catalog file...")
5482 (kill-buffer "*idlwave-scan.pro*")
5483 (kill-buffer (get-buffer-create "*IDLWAVE Widget*"))
5484 (with-temp-buffer
5485 (insert ";; IDLWAVE user catalog file\n")
5486 (insert (format ";; Created %s\n\n" (current-time-string)))
5487
5488 ;; Define the routine info list
5489 (insert "\n(setq idlwave-user-catalog-routines\n '(")
5490 (let ((standard-output (current-buffer)))
5491 (mapc (lambda (x)
5492 (insert "\n ")
5493 (prin1 x)
5494 (goto-char (point-max)))
5495 idlwave-user-catalog-routines))
5496 (insert (format "))\n\n;;; %s ends here\n"
5497 (file-name-nondirectory idlwave-user-catalog-file)))
5498 (write-region nil nil idlwave-user-catalog-file)))
5499 (message "Creating user catalog file...done")
5500 (message "Info for %d routines saved in %s"
5501 (length idlwave-user-catalog-routines)
5502 idlwave-user-catalog-file)
5503 (sit-for 2)
5504 (idlwave-update-routine-info t))
5505
5506 (defun idlwave-read-paths ()
5507 (if (and (stringp idlwave-path-file)
5508 (file-regular-p idlwave-path-file))
5509 (condition-case nil
5510 (load idlwave-path-file t t t)
5511 (error nil))))
5512
5513 (defun idlwave-write-paths ()
5514 (interactive)
5515 (when (and idlwave-path-alist idlwave-system-directory)
5516 (with-temp-buffer
5517 (insert ";; IDLWAVE paths\n")
5518 (insert (format ";; Created %s\n\n" (current-time-string)))
5519 ;; Define the variable which knows the value of "!DIR"
5520 (insert (format "\n(setq idlwave-system-directory \"%s\")\n"
5521 idlwave-system-directory))
5522
5523 ;; Define the variable which contains a list of all scanned directories
5524 (insert "\n(setq idlwave-path-alist\n '(")
5525 (let ((standard-output (current-buffer)))
5526 (mapc (lambda (x)
5527 (insert "\n ")
5528 (prin1 x)
5529 (goto-char (point-max)))
5530 idlwave-path-alist))
5531 (insert "))\n")
5532 (write-region nil nil idlwave-path-file))))
5533
5534 (defun idlwave-expand-path (path &optional default-dir)
5535 ;; Expand parts of path starting with '+' recursively into directory list.
5536 ;; Relative recursive path elements are expanded relative to DEFAULT-DIR.
5537 (message "Expanding path...")
5538 (let (path1 dir recursive)
5539 (while (setq dir (pop path))
5540 (if (setq recursive (string= (substring dir 0 1) "+"))
5541 (setq dir (substring dir 1)))
5542 (if (and recursive
5543 (not (file-name-absolute-p dir)))
5544 (setq dir (expand-file-name dir default-dir)))
5545 (if recursive
5546 ;; Expand recursively
5547 (setq path1 (append (idlwave-recursive-directory-list dir) path1))
5548 ;; Keep unchanged
5549 (push dir path1)))
5550 (message "Expanding path...done")
5551 (nreverse path1)))
5552
5553 (defun idlwave-recursive-directory-list (dir)
5554 ;; Return a list of all directories below DIR, including DIR itself
5555 (let ((path (list dir)) path1 file files)
5556 (while (setq dir (pop path))
5557 (when (file-directory-p dir)
5558 (setq files (nreverse (directory-files dir t "[^.]")))
5559 (while (setq file (pop files))
5560 (if (file-directory-p file)
5561 (push (file-name-as-directory file) path)))
5562 (push dir path1)))
5563 path1))
5564
5565
5566 ;;----- Scanning the library catalogs ------------------
5567
5568
5569
5570
5571 (defun idlwave-scan-library-catalogs (&optional message-base no-load)
5572 "Scan for library catalog files (.idlwave_catalog) and ingest.
5573
5574 All directories on `idlwave-path-alist' (or `idlwave-library-path'
5575 instead, if present) are searched. Print MESSAGE-BASE along with the
5576 libraries being loaded, if passed, and skip loading/normalizing if
5577 NO-LOAD is non-nil. The variable `idlwave-use-library-catalogs' can
5578 be set to nil to disable library catalog scanning."
5579 (when idlwave-use-library-catalogs
5580 (let ((dirs
5581 (if idlwave-library-path
5582 (idlwave-expand-path idlwave-library-path)
5583 (mapcar 'car idlwave-path-alist)))
5584 (old-libname "")
5585 dir-entry dir catalog all-routines)
5586 (if message-base (message message-base))
5587 (while (setq dir (pop dirs))
5588 (catch 'continue
5589 (when (file-readable-p
5590 (setq catalog (expand-file-name ".idlwave_catalog" dir)))
5591 (unless no-load
5592 (setq idlwave-library-catalog-routines nil)
5593 ;; Load the catalog file
5594 (condition-case nil
5595 (load catalog t t t)
5596 (error (throw 'continue t)))
5597 (when (and
5598 message-base
5599 (not (string= idlwave-library-catalog-libname
5600 old-libname)))
5601 (message "%s" (concat message-base
5602 idlwave-library-catalog-libname))
5603 (setq old-libname idlwave-library-catalog-libname))
5604 (when idlwave-library-catalog-routines
5605 (setq all-routines
5606 (append
5607 (idlwave-sintern-rinfo-list
5608 idlwave-library-catalog-routines 'sys dir)
5609 all-routines))))
5610
5611 ;; Add a 'lib flag if on path-alist
5612 (when (and idlwave-path-alist
5613 (setq dir-entry (assoc dir idlwave-path-alist)))
5614 (idlwave-path-alist-add-flag dir-entry 'lib)))))
5615 (unless no-load (setq idlwave-library-catalog-routines all-routines))
5616 (if message-base (message (concat message-base "done"))))))
5617
5618 ;;----- Communicating with the Shell -------------------
5619
5620 ;; First, here is the idl program which can be used to query IDL for
5621 ;; defined routines.
5622 (defconst idlwave-routine-info.pro
5623 "
5624 ;; START OF IDLWAVE SUPPORT ROUTINES
5625 pro idlwave_print_safe,item,limit
5626 catch,err
5627 if err ne 0 then begin
5628 print,'Could not print item.'
5629 return
5630 endif
5631 if n_elements(item) gt limit then $
5632 print,item[0:limit-1],'<... truncated at ',strtrim(limit,2),' elements>' $
5633 else print,item
5634 end
5635
5636 pro idlwave_print_info_entry,name,func=func,separator=sep
5637 ;; See if it's an object method
5638 if name eq '' then return
5639 func = keyword_set(func)
5640 methsep = strpos(name,'::')
5641 meth = methsep ne -1
5642
5643 ;; Get routine info
5644 pars = routine_info(name,/parameters,functions=func)
5645 source = routine_info(name,/source,functions=func)
5646 nargs = pars.num_args
5647 nkw = pars.num_kw_args
5648 if nargs gt 0 then args = pars.args
5649 if nkw gt 0 then kwargs = pars.kw_args
5650
5651 ;; Trim the class, and make the name
5652 if meth then begin
5653 class = strmid(name,0,methsep)
5654 name = strmid(name,methsep+2,strlen(name)-1)
5655 if nargs gt 0 then begin
5656 ;; remove the self argument
5657 wh = where(args ne 'SELF',nargs)
5658 if nargs gt 0 then args = args[wh]
5659 endif
5660 endif else begin
5661 ;; No class, just a normal routine.
5662 class = \"\"
5663 endelse
5664
5665 ;; Calling sequence
5666 cs = \"\"
5667 if func then cs = 'Result = '
5668 if meth then cs = cs + 'Obj -> [' + '%s' + '::]'
5669 cs = cs + '%s'
5670 if func then cs = cs + '(' else if nargs gt 0 then cs = cs + ', '
5671 if nargs gt 0 then begin
5672 for j=0,nargs-1 do begin
5673 cs = cs + args[j]
5674 if j lt nargs-1 then cs = cs + ', '
5675 endfor
5676 end
5677 if func then cs = cs + ')'
5678 ;; Keyword arguments
5679 kwstring = ''
5680 if nkw gt 0 then begin
5681 for j=0,nkw-1 do begin
5682 kwstring = kwstring + ' ' + kwargs[j]
5683 endfor
5684 endif
5685
5686 ret=(['IDLWAVE-PRO','IDLWAVE-FUN'])[func]
5687
5688 print,ret + ': ' + name + sep + class + sep + source[0].path $
5689 + sep + cs + sep + kwstring
5690 end
5691
5692 pro idlwave_routine_info,file
5693 on_error,1
5694 sep = '<@>'
5695 print,'>>>BEGIN OF IDLWAVE ROUTINE INFO (\"' + sep + '\" IS THE SEPARATOR)'
5696 all = routine_info()
5697 fileQ=n_elements(file) ne 0
5698 if fileQ then file=strtrim(file,2)
5699 for i=0L,n_elements(all)-1L do begin
5700 if fileQ then begin
5701 if (routine_info(all[i],/SOURCE)).path eq file then $
5702 idlwave_print_info_entry,all[i],separator=sep
5703 endif else idlwave_print_info_entry,all[i],separator=sep
5704 endfor
5705 all = routine_info(/functions)
5706 for i=0L,n_elements(all)-1L do begin
5707 if fileQ then begin
5708 if (routine_info(all[i],/FUNCTIONS,/SOURCE)).path eq file then $
5709 idlwave_print_info_entry,all[i],separator=sep,/FUNC
5710 endif else idlwave_print_info_entry,all[i],separator=sep,/FUNC
5711 endfor
5712 print,'>>>END OF IDLWAVE ROUTINE INFO'
5713 end
5714
5715 pro idlwave_get_sysvars
5716 on_error,1
5717 catch,error_status
5718 if error_status ne 0 then begin
5719 print, 'Cannot get info about system variables'
5720 endif else begin
5721 help,/brief,output=s,/system_variables ; ? unsafe use of OUTPUT=
5722 s = strtrim(strjoin(s,' ',/single),2) ; make one line
5723 v = strsplit(s,' +',/regex,/extract) ; get variables
5724 for i=0L,n_elements(v)-1 do begin
5725 t = [''] ; get tag list
5726 a=execute('if n_tags('+v[i]+') gt 0 then t=tag_names('+v[i]+')')
5727 print, 'IDLWAVE-SYSVAR: '+v[i]+' '+strjoin(t,' ',/single)
5728 endfor
5729 endelse
5730 end
5731
5732 pro idlwave_get_class_tags, class
5733 res = execute('tags=tag_names({'+class+'})')
5734 if res then print,'IDLWAVE-CLASS-TAGS: '+class+' '+strjoin(tags,' ',/single)
5735 end
5736 ;; END OF IDLWAVE SUPPORT ROUTINES
5737 "
5738 "The IDL programs to get info from the shell.")
5739
5740 (defvar idlwave-idlwave_routine_info-compiled nil
5741 "Remember if the routine info procedure is already compiled.")
5742
5743 (defvar idlwave-shell-temp-pro-file)
5744 (defvar idlwave-shell-temp-rinfo-save-file)
5745
5746 (defun idlwave-shell-compile-helper-routines (&optional wait)
5747 (unless (and idlwave-idlwave_routine_info-compiled
5748 (file-readable-p (idlwave-shell-temp-file 'rinfo)))
5749 (with-current-buffer (idlwave-find-file-noselect
5750 (idlwave-shell-temp-file 'pro))
5751 (erase-buffer)
5752 (insert idlwave-routine-info.pro)
5753 (save-buffer 0))
5754 (idlwave-shell-send-command
5755 (concat ".run \"" idlwave-shell-temp-pro-file "\"")
5756 nil 'hide wait)
5757 (idlwave-shell-send-command
5758 (format "save,'idlwave_print_safe','idlwave_routine_info','idlwave_print_info_entry','idlwave_get_class_tags','idlwave_get_sysvars',FILE='%s',/ROUTINES"
5759 (idlwave-shell-temp-file 'rinfo))
5760 nil 'hide)
5761 (setq idlwave-idlwave_routine_info-compiled t))
5762
5763 ;; Restore if necessary. Must use execute to hide lame routine_info
5764 ;; errors on undefined routine
5765 (idlwave-shell-send-command
5766 (format "if execute(\"_v=routine_info('idlwave_routine_info',/SOURCE)\") eq 0 then restore,'%s' else if _v.path eq '' then restore,'%s'"
5767 idlwave-shell-temp-rinfo-save-file
5768 idlwave-shell-temp-rinfo-save-file)
5769 nil 'hide))
5770
5771
5772 (defun idlwave-shell-update-routine-info (&optional quiet run-hooks wait file)
5773 "Query the shell for routine_info of compiled modules and update the lists."
5774 ;; Save and compile the procedure. The compiled procedure is then
5775 ;; saved into an IDL SAVE file, to allow for fast RESTORE. We may
5776 ;; need to test for and possibly RESTORE the procedure each time we
5777 ;; use it, since the user may have killed or redefined it. In
5778 ;; particular, .RESET_SESSION will kill all user procedures. If
5779 ;; FILE is set, only update routine info for routines in that file.
5780
5781 (idlwave-shell-compile-helper-routines wait)
5782 ; execute the routine_info procedure, and analyze the output
5783 (idlwave-shell-send-command
5784 (format "idlwave_routine_info%s" (if file (concat ",'" file "'") ""))
5785 `(progn
5786 (idlwave-shell-routine-info-filter)
5787 (idlwave-concatenate-rinfo-lists ,quiet ,run-hooks))
5788 'hide wait))
5789
5790 ;; ---------------------------------------------------------------------------
5791 ;;
5792 ;; Completion and displaying routine calling sequences
5793
5794 (defvar idlwave-completion-help-info nil)
5795 (defvar idlwave-completion-help-links nil)
5796 (defvar idlwave-current-obj_new-class nil)
5797 (defvar idlwave-complete-special nil)
5798 (defvar method-selector)
5799 (defvar class-selector)
5800 (defvar type-selector)
5801 (defvar super-classes)
5802
5803 (defun idlwave-complete (&optional arg module class)
5804 "Complete a function, procedure or keyword name at point.
5805 This function is smart and figures out what can be completed
5806 at this point.
5807 - At the beginning of a statement it completes procedure names.
5808 - In the middle of a statement it completes function names.
5809 - After a `(' or `,' in the argument list of a function or procedure,
5810 it completes a keyword of the relevant function or procedure.
5811 - In the first arg of `OBJ_NEW', it completes a class name.
5812
5813 When several completions are possible, a list will be displayed in
5814 the *Completions* buffer. If this list is too long to fit into the
5815 window, scrolling can be achieved by repeatedly pressing
5816 \\[idlwave-complete].
5817
5818 The function also knows about object methods. When it needs a class
5819 name, the action depends upon `idlwave-query-class', which see. You
5820 can force IDLWAVE to ask you for a class name with a
5821 \\[universal-argument] prefix argument to this command.
5822
5823 See also the variables `idlwave-keyword-completion-adds-equal' and
5824 `idlwave-function-completion-adds-paren'.
5825
5826 The optional ARG can be used to specify the completion type in order
5827 to override IDLWAVE's idea of what should be completed at point.
5828 Possible values are:
5829
5830 0 <=> query for the completion type
5831 1 <=> 'procedure
5832 2 <=> 'procedure-keyword
5833 3 <=> 'function
5834 4 <=> 'function-keyword
5835 5 <=> 'procedure-method
5836 6 <=> 'procedure-method-keyword
5837 7 <=> 'function-method
5838 8 <=> 'function-method-keyword
5839 9 <=> 'class
5840
5841 As a special case, the universal argument C-u forces completion of
5842 function names in places where the default would be a keyword.
5843
5844 Two prefix argument, C-u C-u, prompts for a regexp by which to limit
5845 completion.
5846
5847 For Lisp programmers only:
5848 When we force a keyword, optional argument MODULE can contain the module name.
5849 When we force a method or a method keyword, CLASS can specify the class."
5850 (interactive "P")
5851 (idlwave-routines)
5852 (let* ((where-list
5853 (if (and arg
5854 (or (and (integerp arg) (not (equal arg '(16))))
5855 (symbolp arg)))
5856 (idlwave-make-force-complete-where-list arg module class)
5857 (idlwave-where)))
5858 (what (nth 2 where-list))
5859 (idlwave-force-class-query (equal arg '(4)))
5860 (completion-regexp-list
5861 (if (equal arg '(16))
5862 (list (read-string (concat "Completion Regexp: "))))))
5863
5864 (if (and module (string-match "::" module))
5865 (setq class (substring module 0 (match-beginning 0))
5866 module (substring module (match-end 0))))
5867
5868 (cond
5869
5870 ((and (null arg)
5871 (eq (car-safe last-command) 'idlwave-display-completion-list)
5872 (get-buffer-window "*Completions*"))
5873 (setq this-command last-command)
5874 (idlwave-scroll-completions))
5875
5876 ;; Complete a filename in quotes
5877 ((and (idlwave-in-quote)
5878 (not (eq what 'class)))
5879 (idlwave-complete-filename))
5880
5881 ;; Check for any special completion functions
5882 ((and idlwave-complete-special
5883 (idlwave-call-special idlwave-complete-special)))
5884
5885 ((null what)
5886 (error "Nothing to complete here"))
5887
5888 ;; Complete a class
5889 ((eq what 'class)
5890 (setq idlwave-completion-help-info '(class))
5891 (idlwave-complete-class))
5892
5893 ((eq what 'procedure)
5894 ;; Complete a procedure name
5895 (let* ((cw-list (nth 3 where-list))
5896 (class-selector (idlwave-determine-class cw-list 'pro))
5897 (super-classes (unless (idlwave-explicit-class-listed cw-list)
5898 (idlwave-all-class-inherits class-selector)))
5899 (isa (concat "procedure" (if class-selector "-method" "")))
5900 (type-selector 'pro))
5901 (setq idlwave-completion-help-info
5902 (list 'routine nil type-selector class-selector nil super-classes))
5903 (idlwave-complete-in-buffer
5904 'procedure (if class-selector 'method 'routine)
5905 (idlwave-routines) 'idlwave-selector
5906 (format "Select a %s name%s"
5907 isa
5908 (if class-selector
5909 (format " (class is %s)"
5910 (if (eq class-selector t)
5911 "unknown" class-selector))
5912 ""))
5913 isa
5914 'idlwave-attach-method-classes 'idlwave-add-file-link-selector)))
5915
5916 ((eq what 'function)
5917 ;; Complete a function name
5918 (let* ((cw-list (nth 3 where-list))
5919 (class-selector (idlwave-determine-class cw-list 'fun))
5920 (super-classes (unless (idlwave-explicit-class-listed cw-list)
5921 (idlwave-all-class-inherits class-selector)))
5922 (isa (concat "function" (if class-selector "-method" "")))
5923 (type-selector 'fun))
5924 (setq idlwave-completion-help-info
5925 (list 'routine nil type-selector class-selector nil super-classes))
5926 (idlwave-complete-in-buffer
5927 'function (if class-selector 'method 'routine)
5928 (idlwave-routines) 'idlwave-selector
5929 (format "Select a %s name%s"
5930 isa
5931 (if class-selector
5932 (format " (class is %s)"
5933 (if (eq class-selector t)
5934 "unknown" class-selector))
5935 ""))
5936 isa
5937 'idlwave-attach-method-classes 'idlwave-add-file-link-selector)))
5938
5939 ((and (memq what '(procedure-keyword function-keyword)) ; Special Case
5940 (equal arg '(4)))
5941 (idlwave-complete 3))
5942
5943 ((eq what 'procedure-keyword)
5944 ;; Complete a procedure keyword
5945 (let* ((where (nth 3 where-list))
5946 (name (car where))
5947 (method-selector name)
5948 (type-selector 'pro)
5949 (class (idlwave-determine-class where 'pro))
5950 (class-selector class)
5951 (super-classes (idlwave-all-class-inherits class-selector))
5952 (isa (format "procedure%s-keyword" (if class "-method" "")))
5953 (entry (idlwave-best-rinfo-assq
5954 name 'pro class (idlwave-routines)))
5955 (system (if entry (eq (car (nth 3 entry)) 'system)))
5956 (list (idlwave-entry-keywords entry 'do-link)))
5957 (unless (or entry (eq class t))
5958 (error "Nothing known about procedure %s"
5959 (idlwave-make-full-name class name)))
5960 (setq list (idlwave-fix-keywords name 'pro class list
5961 super-classes system))
5962 (unless list (error "No keywords available for procedure %s"
5963 (idlwave-make-full-name class name)))
5964 (setq idlwave-completion-help-info
5965 (list 'keyword name type-selector class-selector entry super-classes))
5966 (idlwave-complete-in-buffer
5967 'keyword 'keyword list nil
5968 (format "Select keyword for procedure %s%s"
5969 (idlwave-make-full-name class name)
5970 (if (or (member '("_EXTRA") list)
5971 (member '("_REF_EXTRA") list))
5972 " (note _EXTRA)" ""))
5973 isa
5974 'idlwave-attach-keyword-classes)))
5975
5976 ((eq what 'function-keyword)
5977 ;; Complete a function keyword
5978 (let* ((where (nth 3 where-list))
5979 (name (car where))
5980 (method-selector name)
5981 (type-selector 'fun)
5982 (class (idlwave-determine-class where 'fun))
5983 (class-selector class)
5984 (super-classes (idlwave-all-class-inherits class-selector))
5985 (isa (format "function%s-keyword" (if class "-method" "")))
5986 (entry (idlwave-best-rinfo-assq
5987 name 'fun class (idlwave-routines)))
5988 (system (if entry (eq (car (nth 3 entry)) 'system)))
5989 (list (idlwave-entry-keywords entry 'do-link))
5990 msg-name)
5991 (unless (or entry (eq class t))
5992 (error "Nothing known about function %s"
5993 (idlwave-make-full-name class name)))
5994 (setq list (idlwave-fix-keywords name 'fun class list
5995 super-classes system))
5996 ;; OBJ_NEW: Messages mention the proper Init method
5997 (setq msg-name (if (and (null class)
5998 (string= (upcase name) "OBJ_NEW"))
5999 (concat idlwave-current-obj_new-class
6000 "::Init (via OBJ_NEW)")
6001 (idlwave-make-full-name class name)))
6002 (unless list (error "No keywords available for function %s"
6003 msg-name))
6004 (setq idlwave-completion-help-info
6005 (list 'keyword name type-selector class-selector nil super-classes))
6006 (idlwave-complete-in-buffer
6007 'keyword 'keyword list nil
6008 (format "Select keyword for function %s%s" msg-name
6009 (if (or (member '("_EXTRA") list)
6010 (member '("_REF_EXTRA") list))
6011 " (note _EXTRA)" ""))
6012 isa
6013 'idlwave-attach-keyword-classes)))
6014
6015 (t (error "This should not happen (idlwave-complete)")))))
6016
6017 (defvar idlwave-complete-special nil
6018 "List of special completion functions.
6019 These functions are called for each completion. Each function must
6020 check if its own special completion context is present. If yes, it
6021 should use `idlwave-complete-in-buffer' to do some completion and
6022 return t. If such a function returns t, *no further* attempts to
6023 complete other contexts will be done. If the function returns nil,
6024 other completions will be tried.")
6025
6026 (defun idlwave-call-special (functions &rest args)
6027 (let ((funcs functions)
6028 fun ret)
6029 (catch 'exit
6030 (while (setq fun (pop funcs))
6031 (if (setq ret (apply fun args))
6032 (throw 'exit ret)))
6033 nil)))
6034
6035 (defun idlwave-make-force-complete-where-list (what &optional module class)
6036 ;; Return an artificial WHERE specification to force the completion
6037 ;; routine to complete a specific item independent of context.
6038 ;; WHAT is the prefix arg of `idlwave-complete', see there for details.
6039 ;; MODULE and CLASS can be used to specify the routine name and class.
6040 ;; The class name will also be found in MODULE if that is like "class::mod".
6041 (let* ((what-list '(("procedure") ("procedure-keyword")
6042 ("function") ("function-keyword")
6043 ("procedure-method") ("procedure-method-keyword")
6044 ("function-method") ("function-method-keyword")
6045 ("class")))
6046 (module (idlwave-sintern-routine-or-method module class))
6047 (class (idlwave-sintern-class class))
6048 (what (cond
6049 ((equal what 0)
6050 (setq what
6051 (intern (completing-read
6052 "Complete what? " what-list nil t))))
6053 ((integerp what)
6054 (setq what (intern (car (nth (1- what) what-list)))))
6055 ((and what
6056 (symbolp what)
6057 (assoc (symbol-name what) what-list))
6058 what)
6059 (t (error "Invalid WHAT"))))
6060 (nil-list '(nil nil nil nil))
6061 (class-list (list nil nil (or class t) nil)))
6062
6063 (cond
6064
6065 ((eq what 'procedure)
6066 (list nil-list nil-list 'procedure nil-list nil))
6067
6068 ((eq what 'procedure-keyword)
6069 (let* ((class-selector nil)
6070 (super-classes nil)
6071 (type-selector 'pro)
6072 (pro (or module
6073 (idlwave-completing-read
6074 "Procedure: " (idlwave-routines) 'idlwave-selector))))
6075 (setq pro (idlwave-sintern-routine pro))
6076 (list nil-list nil-list 'procedure-keyword
6077 (list pro nil nil nil) nil)))
6078
6079 ((eq what 'function)
6080 (list nil-list nil-list 'function nil-list nil))
6081
6082 ((eq what 'function-keyword)
6083 (let* ((class-selector nil)
6084 (super-classes nil)
6085 (type-selector 'fun)
6086 (func (or module
6087 (idlwave-completing-read
6088 "Function: " (idlwave-routines) 'idlwave-selector))))
6089 (setq func (idlwave-sintern-routine func))
6090 (list nil-list nil-list 'function-keyword
6091 (list func nil nil nil) nil)))
6092
6093 ((eq what 'procedure-method)
6094 (list nil-list nil-list 'procedure class-list nil))
6095
6096 ((eq what 'procedure-method-keyword)
6097 (let* ((class (idlwave-determine-class class-list 'pro))
6098 (class-selector class)
6099 (super-classes (idlwave-all-class-inherits class-selector))
6100 (type-selector 'pro)
6101 (pro (or module
6102 (idlwave-completing-read
6103 (format "Procedure in %s class: " class-selector)
6104 (idlwave-routines) 'idlwave-selector))))
6105 (setq pro (idlwave-sintern-method pro))
6106 (list nil-list nil-list 'procedure-keyword
6107 (list pro nil class nil) nil)))
6108
6109 ((eq what 'function-method)
6110 (list nil-list nil-list 'function class-list nil))
6111
6112 ((eq what 'function-method-keyword)
6113 (let* ((class (idlwave-determine-class class-list 'fun))
6114 (class-selector class)
6115 (super-classes (idlwave-all-class-inherits class-selector))
6116 (type-selector 'fun)
6117 (func (or module
6118 (idlwave-completing-read
6119 (format "Function in %s class: " class-selector)
6120 (idlwave-routines) 'idlwave-selector))))
6121 (setq func (idlwave-sintern-method func))
6122 (list nil-list nil-list 'function-keyword
6123 (list func nil class nil) nil)))
6124
6125 ((eq what 'class)
6126 (list nil-list nil-list 'class nil-list nil))
6127
6128 (t (error "Invalid value for WHAT")))))
6129
6130 (defun idlwave-completing-read (&rest args)
6131 ;; Completing read, case insensitive
6132 (let ((old-value (default-value 'completion-ignore-case)))
6133 (unwind-protect
6134 (progn
6135 (setq-default completion-ignore-case t)
6136 (apply 'completing-read args))
6137 (setq-default completion-ignore-case old-value))))
6138
6139 (defvar idlwave-shell-default-directory)
6140 (defun idlwave-complete-filename ()
6141 "Use the comint stuff to complete a file name."
6142 (require 'comint)
6143 (let* ((comint-file-name-chars "~/A-Za-z0-9+@:_.$#%={}\\-")
6144 (comint-completion-addsuffix nil)
6145 (default-directory
6146 (if (and (boundp 'idlwave-shell-default-directory)
6147 (stringp idlwave-shell-default-directory)
6148 (file-directory-p idlwave-shell-default-directory))
6149 idlwave-shell-default-directory
6150 default-directory)))
6151 (comint-dynamic-complete-filename)))
6152
6153 (defun idlwave-make-full-name (class name)
6154 ;; Make a fully qualified module name including the class name
6155 (concat (if class (format "%s::" class) "") name))
6156
6157 (defun idlwave-rinfo-assoc (name type class list)
6158 "Like `idlwave-rinfo-assq', but sintern strings first."
6159 (idlwave-rinfo-assq
6160 (idlwave-sintern-routine-or-method name class)
6161 type (idlwave-sintern-class class) list))
6162
6163 (defun idlwave-rinfo-assq (name type class list)
6164 ;; Works like assq, but also checks type and class
6165 (catch 'exit
6166 (let (match)
6167 (while (setq match (assq name list))
6168 (and (or (eq type t)
6169 (eq (nth 1 match) type))
6170 (eq (nth 2 match) class)
6171 (throw 'exit match))
6172 (setq list (cdr (memq match list)))))))
6173
6174 (defun idlwave-rinfo-assq-any-class (name type class list)
6175 ;; Return the first matching method on the inheritance list
6176 (let* ((classes (cons class (idlwave-all-class-inherits class)))
6177 class rtn)
6178 (while classes
6179 (if (setq rtn (idlwave-rinfo-assq name type (pop classes) list))
6180 (setq classes nil)))
6181 rtn))
6182
6183 (defun idlwave-best-rinfo-assq (name type class list &optional with-file
6184 keep-system)
6185 "Like `idlwave-rinfo-assq', but get all twins and sort, then return first.
6186 If WITH-FILE is passed, find the best rinfo entry with a file
6187 included. If KEEP-SYSTEM is set, don't prune system for compiled
6188 syslib files."
6189 (let ((twins (idlwave-routine-twins
6190 (idlwave-rinfo-assq-any-class name type class list)
6191 list))
6192 syslibp)
6193 (when (> (length twins) 1)
6194 (setq twins (sort twins 'idlwave-routine-entry-compare-twins))
6195 (if (and (null keep-system)
6196 (eq 'system (car (nth 3 (car twins))))
6197 (setq syslibp (idlwave-any-syslib (cdr twins)))
6198 (not (equal 1 syslibp)))
6199 ;; Its a compiled syslib, so we need to remove the system entry
6200 (setq twins (cdr twins)))
6201 (if with-file
6202 (setq twins (delq nil
6203 (mapcar (lambda (x)
6204 (if (nth 1 (nth 3 x)) x))
6205 twins)))))
6206 (car twins)))
6207
6208 (defun idlwave-best-rinfo-assoc (name type class list &optional with-file
6209 keep-system)
6210 "Like `idlwave-best-rinfo-assq', but sintern strings first."
6211 (idlwave-best-rinfo-assq
6212 (idlwave-sintern-routine-or-method name class)
6213 type (idlwave-sintern-class class) list with-file keep-system))
6214
6215 (defun idlwave-any-syslib (entries)
6216 "Does the entry list ENTRIES contain a syslib entry?
6217 If yes, return the index (>=1)."
6218 (let (file (cnt 0))
6219 (catch 'exit
6220 (while entries
6221 (incf cnt)
6222 (setq file (idlwave-routine-source-file (nth 3 (car entries))))
6223 (if (and file (idlwave-syslib-p file))
6224 (throw 'exit cnt)
6225 (setq entries (cdr entries))))
6226 nil)))
6227
6228 (defun idlwave-all-assq (key list)
6229 "Return a list of all associations of Key in LIST."
6230 (let (rtn elt)
6231 (while (setq elt (assq key list))
6232 (push elt rtn)
6233 (setq list (cdr (memq elt list))))
6234 (nreverse rtn)))
6235
6236 (defun idlwave-all-method-classes (method &optional type)
6237 "Return all classes which have a method METHOD.
6238 TYPE is 'fun or 'pro.
6239 When TYPE is not specified, both procedures and functions will be considered."
6240 (if (null method)
6241 (mapcar 'car (idlwave-class-alist))
6242 (let (rtn)
6243 (mapc (lambda (x)
6244 (and (nth 2 x)
6245 (or (not type)
6246 (eq type (nth 1 x)))
6247 (push (nth 2 x) rtn)))
6248 (idlwave-all-assq method (idlwave-routines)))
6249 (idlwave-uniquify rtn))))
6250
6251 (defun idlwave-all-method-keyword-classes (method keyword &optional type)
6252 "Return all classes which have a method METHOD with keyword KEYWORD.
6253 TYPE is 'fun or 'pro.
6254 When TYPE is not specified, both procedures and functions will be considered."
6255 (if (or (null method)
6256 (null keyword))
6257 nil
6258 (let (rtn)
6259 (mapc (lambda (x)
6260 (and (nth 2 x) ; non-nil class
6261 (or (not type) ; correct or unspecified type
6262 (eq type (nth 1 x)))
6263 (assoc keyword (idlwave-entry-keywords x))
6264 (push (nth 2 x) rtn)))
6265 (idlwave-all-assq method (idlwave-routines)))
6266 (idlwave-uniquify rtn))))
6267
6268 (defun idlwave-members-only (list club)
6269 "Return list of all elements in LIST which are also in CLUB."
6270 (let (rtn)
6271 (while list
6272 (if (member (car list) club)
6273 (setq rtn (cons (car list) rtn)))
6274 (setq list (cdr list)))
6275 (nreverse rtn)))
6276
6277 (defun idlwave-nonmembers-only (list club)
6278 "Return list of all elements in LIST which are not in CLUB."
6279 (let (rtn)
6280 (while list
6281 (if (member (car list) club)
6282 nil
6283 (setq rtn (cons (car list) rtn)))
6284 (setq list (cdr list)))
6285 (nreverse rtn)))
6286
6287 (defun idlwave-explicit-class-listed (info)
6288 "Return whether or not the class is listed explicitly, ala a->b::c.
6289 INFO is as returned by `idlwave-what-function' or `-procedure'."
6290 (let ((apos (nth 3 info)))
6291 (if apos
6292 (save-excursion (goto-char apos)
6293 (looking-at "->[a-zA-Z][a-zA-Z0-9$_]*::")))))
6294
6295 (defvar idlwave-determine-class-special nil
6296 "List of special functions for determining class.
6297 Must accept two arguments: `apos' and `info'.")
6298
6299 (defun idlwave-determine-class (info type)
6300 ;; Determine the class of a routine call.
6301 ;; INFO is the `cw-list' structure as returned by idlwave-where.
6302 ;; The second element in this structure is the class. When nil, we
6303 ;; return nil. When t, try to get the class from text properties at
6304 ;; the arrow. When the object is "self", we use the class of the
6305 ;; current routine. otherwise prompt the user for a class name.
6306 ;; Also stores the selected class as a text property at the arrow.
6307 ;; TYPE is 'fun or 'pro.
6308 (let* ((class (nth 2 info))
6309 (apos (nth 3 info))
6310 (nassoc (assoc (if (stringp (car info))
6311 (upcase (car info))
6312 (car info))
6313 idlwave-query-class))
6314 (dassoc (assq (if (car info) 'keyword-default 'method-default)
6315 idlwave-query-class))
6316 (query (cond (nassoc (cdr nassoc))
6317 (dassoc (cdr dassoc))
6318 (t t)))
6319 (arrow (and apos (string= (buffer-substring apos (+ 2 apos)) "->")))
6320 (is-self
6321 (and arrow
6322 (save-excursion (goto-char apos)
6323 (forward-word -1)
6324 (let ((case-fold-search t))
6325 (looking-at "self\\>")))))
6326 (force-query idlwave-force-class-query)
6327 store special-class class-alist)
6328 (cond
6329 ((null class) nil)
6330 ((eq t class)
6331 ;; There is an object which would like to know its class
6332 (if (and arrow (get-text-property apos 'idlwave-class)
6333 idlwave-store-inquired-class
6334 (not force-query))
6335 (setq class (get-text-property apos 'idlwave-class)
6336 class (idlwave-sintern-class class)))
6337 (if (and (eq t class) is-self)
6338 (setq class (or (nth 2 (idlwave-current-routine)) class)))
6339
6340 ;; Before prompting, try any special class determination routines
6341 (when (and (eq t class)
6342 idlwave-determine-class-special
6343 (not force-query))
6344 (setq special-class
6345 (idlwave-call-special idlwave-determine-class-special apos))
6346 (if special-class
6347 (setq class (idlwave-sintern-class special-class)
6348 store idlwave-store-inquired-class)))
6349
6350 ;; Prompt for a class, if we need to
6351 (when (and (eq class t)
6352 (or force-query query))
6353 (setq class-alist
6354 (mapcar 'list (idlwave-all-method-classes (car info) type)))
6355 (setq class
6356 (idlwave-sintern-class
6357 (cond
6358 ((and (= (length class-alist) 0) (not force-query))
6359 (error "No classes available with method %s" (car info)))
6360 ((and (= (length class-alist) 1) (not force-query))
6361 (car (car class-alist)))
6362 (t
6363 (setq store idlwave-store-inquired-class)
6364 (idlwave-completing-read
6365 (format "Class%s: " (if (stringp (car info))
6366 (format " for %s method %s"
6367 type (car info))
6368 ""))
6369 class-alist nil nil nil 'idlwave-class-history))))))
6370
6371 ;; Store it, if requested
6372 (when (and class (not (eq t class)))
6373 ;; We have a real class here
6374 (when (and store arrow)
6375 (condition-case ()
6376 (add-text-properties
6377 apos (+ apos 2)
6378 `(idlwave-class ,class face ,idlwave-class-arrow-face
6379 rear-nonsticky t))
6380 (error nil)))
6381 (setf (nth 2 info) class))
6382 ;; Return the class
6383 class)
6384 ;; Default as fallback
6385 (t class))))
6386
6387 (defun idlwave-selector (a)
6388 (and (eq (nth 1 a) type-selector)
6389 (or (and (nth 2 a) (eq class-selector t))
6390 (eq (nth 2 a) class-selector)
6391 (memq (nth 2 a) super-classes))))
6392
6393 (defun idlwave-add-file-link-selector (a)
6394 ;; Record a file link, if any, for the tested names during selection.
6395 (let ((sel (idlwave-selector a)) file)
6396 (if (and sel (setq file (idlwave-entry-has-help a)))
6397 (push (cons (car a) file) idlwave-completion-help-links))
6398 sel))
6399
6400
6401 (defun idlwave-where ()
6402 "Find out where we are.
6403 The return value is a list with the following stuff:
6404 \(PRO-LIST FUNC-LIST COMPLETE-WHAT CW-LIST LAST-CHAR)
6405
6406 PRO-LIST (PRO POINT CLASS ARROW)
6407 FUNC-LIST (FUNC POINT CLASS ARROW)
6408 COMPLETE-WHAT a symbol indicating what kind of completion makes sense here
6409 CW-LIST (PRO-OR-FUNC POINT CLASS ARROW) Like PRO-LIST, for what can
6410 be completed here.
6411 LAST-CHAR last relevant character before point (non-white non-comment,
6412 not part of current identifier or leading slash).
6413
6414 In the lists, we have these meanings:
6415 PRO: Procedure name
6416 FUNC: Function name
6417 POINT: Where is this
6418 CLASS: What class has the routine (nil=no, t=is method, but class unknown)
6419 ARROW: Location of the arrow"
6420 (idlwave-routines)
6421 (let* (;(bos (save-excursion (idlwave-beginning-of-statement) (point)))
6422 (bos (save-excursion (idlwave-start-of-substatement 'pre) (point)))
6423 (func-entry (idlwave-what-function bos))
6424 (func (car func-entry))
6425 (func-class (nth 1 func-entry))
6426 (func-arrow (nth 2 func-entry))
6427 (func-point (or (nth 3 func-entry) 0))
6428 (func-level (or (nth 4 func-entry) 0))
6429 (pro-entry (idlwave-what-procedure bos))
6430 (pro (car pro-entry))
6431 (pro-class (nth 1 pro-entry))
6432 (pro-arrow (nth 2 pro-entry))
6433 (pro-point (or (nth 3 pro-entry) 0))
6434 (last-char (idlwave-last-valid-char))
6435 (case-fold-search t)
6436 (match-string (buffer-substring bos (point)))
6437 cw cw-mod cw-arrow cw-class cw-point)
6438 (if (< func-point pro-point) (setq func nil))
6439 (cond
6440 ((string-match "\\`[ \t]*\\(pro\\|function\\)[ \t]+[a-zA-Z0-9_]*\\'"
6441 match-string)
6442 (setq cw 'class))
6443 ((string-match
6444 "\\`[ \t]*\\([a-zA-Z][a-zA-Z0-9$_]*\\)?\\'"
6445 (if (> pro-point 0)
6446 (buffer-substring pro-point (point))
6447 match-string))
6448 (setq cw 'procedure cw-class pro-class cw-point pro-point
6449 cw-arrow pro-arrow))
6450 ((string-match "\\`[ \t]*\\(pro\\|function\\)\\>"
6451 match-string)
6452 nil)
6453 ((string-match "OBJ_NEW([ \t]*['\"]\\([a-zA-Z0-9$_]*\\)?\\'"
6454 match-string)
6455 (setq cw 'class))
6456 ((string-match "\\<inherits\\s-+\\([a-zA-Z0-9$_]*\\)?\\'"
6457 match-string)
6458 (setq cw 'class))
6459 ((and func
6460 (> func-point pro-point)
6461 (= func-level 1)
6462 (memq last-char '(?\( ?,)))
6463 (setq cw 'function-keyword cw-mod func cw-point func-point
6464 cw-class func-class cw-arrow func-arrow))
6465 ((and pro (eq last-char ?,))
6466 (setq cw 'procedure-keyword cw-mod pro cw-point pro-point
6467 cw-class pro-class cw-arrow pro-arrow))
6468 ; ((member last-char '(?\' ?\) ?\] ?!))
6469 ; ;; after these chars, a function makes no sense
6470 ; ;; FIXME: I am sure there can be more in this list
6471 ; ;; FIXME: Do we want to do this at all?
6472 ; nil)
6473 ;; Everywhere else we try a function.
6474 (t
6475 (setq cw 'function)
6476 (save-excursion
6477 (if (re-search-backward "->[ \t]*\\(\\$[ \t]*\\(;.*\\)?\n\\s-*\\)?\\(\\([$a-zA-Z0-9_]+\\)::\\)?[$a-zA-Z0-9_]*\\=" bos t)
6478 (setq cw-arrow (copy-marker (match-beginning 0))
6479 cw-class (if (match-end 4)
6480 (idlwave-sintern-class (match-string 4))
6481 t))))))
6482 (list (list pro pro-point pro-class pro-arrow)
6483 (list func func-point func-class func-arrow)
6484 cw
6485 (list cw-mod cw-point cw-class cw-arrow)
6486 last-char)))
6487
6488 (defun idlwave-this-word (&optional class)
6489 ;; Grab the word around point. CLASS is for the `skip-chars=...' functions
6490 (setq class (or class "a-zA-Z0-9$_."))
6491 (save-excursion
6492 (buffer-substring
6493 (progn (skip-chars-backward class) (point))
6494 (progn (skip-chars-forward class) (point)))))
6495
6496 (defun idlwave-what-function (&optional bound)
6497 ;; Find out if point is within the argument list of a function.
6498 ;; The return value is ("function-name" class arrow-start (point) level).
6499 ;; Level is 1 on the top level parentheses, higher further down.
6500
6501 ;; If the optional BOUND is an integer, bound backwards directed
6502 ;; searches to this point.
6503
6504 (catch 'exit
6505 (let (pos
6506 func-point
6507 (cnt 0)
6508 func arrow-start class)
6509 (idlwave-with-special-syntax
6510 (save-restriction
6511 (save-excursion
6512 (narrow-to-region (max 1 (or bound 0)) (point-max))
6513 ;; move back out of the current parenthesis
6514 (while (condition-case nil
6515 (progn (up-list -1) t)
6516 (error nil))
6517 (setq pos (point))
6518 (incf cnt)
6519 (when (and (= (following-char) ?\()
6520 (re-search-backward
6521 "\\(::\\|\\<\\)\\([a-zA-Z][a-zA-Z0-9$_]*\\)[ \t]*\\="
6522 bound t))
6523 (setq func (match-string 2)
6524 func-point (goto-char (match-beginning 2))
6525 pos func-point)
6526 (if (re-search-backward
6527 "->[ \t]*\\(\\([a-zA-Z][a-zA-Z0-9$_]*\\)::\\)?\\=" bound t)
6528 (setq arrow-start (copy-marker (match-beginning 0))
6529 class (or (match-string 2) t)))
6530 (throw
6531 'exit
6532 (list
6533 (idlwave-sintern-routine-or-method func class)
6534 (idlwave-sintern-class class)
6535 arrow-start func-point cnt)))
6536 (goto-char pos))
6537 (throw 'exit nil)))))))
6538
6539 (defun idlwave-what-procedure (&optional bound)
6540 ;; Find out if point is within the argument list of a procedure.
6541 ;; The return value is ("procedure-name" class arrow-pos (point)).
6542
6543 ;; If the optional BOUND is an integer, bound backwards directed
6544 ;; searches to this point.
6545 (let ((pos (point)) pro-point
6546 pro class arrow-start string)
6547 (save-excursion
6548 ;;(idlwave-beginning-of-statement)
6549 (idlwave-start-of-substatement 'pre)
6550 (setq string (buffer-substring (point) pos))
6551 (if (string-match
6552 "\\`[ \t]*\\([a-zA-Z][a-zA-Z0-9$_]*\\)[ \t]*\\(,\\|\\'\\)" string)
6553 (setq pro (match-string 1 string)
6554 pro-point (+ (point) (match-beginning 1)))
6555 (if (and (idlwave-skip-object)
6556 (setq string (buffer-substring (point) pos))
6557 (string-match
6558 "\\`[ \t]*\\(->\\)[ \t]*\\(\\([a-zA-Z][a-zA-Z0-9$_]*\\)::\\)?\\([a-zA-Z][a-zA-Z0-9$_]*\\)?[ \t]*\\(,\\|\\(\\$\\s *\\(;.*\\)?\\)?$\\)"
6559 string))
6560 (setq pro (if (match-beginning 4)
6561 (match-string 4 string))
6562 pro-point (if (match-beginning 4)
6563 (+ (point) (match-beginning 4))
6564 pos)
6565 arrow-start (copy-marker (+ (point) (match-beginning 1)))
6566 class (or (match-string 3 string) t)))))
6567 (list (idlwave-sintern-routine-or-method pro class)
6568 (idlwave-sintern-class class)
6569 arrow-start
6570 pro-point)))
6571
6572 (defun idlwave-skip-object ()
6573 ;; If there is an object at point, move over it and return t.
6574 (let ((pos (point)))
6575 (if (catch 'exit
6576 (save-excursion
6577 (skip-chars-forward " ") ; white space
6578 (skip-chars-forward "*") ; de-reference
6579 (cond
6580 ((looking-at idlwave-identifier)
6581 (goto-char (match-end 0)))
6582 ((eq (following-char) ?\()
6583 nil)
6584 (t (throw 'exit nil)))
6585 (catch 'endwhile
6586 (while t
6587 (cond ((eq (following-char) ?.)
6588 (forward-char 1)
6589 (if (not (looking-at idlwave-identifier))
6590 (throw 'exit nil))
6591 (goto-char (match-end 0)))
6592 ((memq (following-char) '(?\( ?\[))
6593 (condition-case nil
6594 (forward-list 1)
6595 (error (throw 'exit nil))))
6596 (t (throw 'endwhile t)))))
6597 (if (looking-at "[ \t]*->")
6598 (throw 'exit (setq pos (match-beginning 0)))
6599 (throw 'exit nil))))
6600 (goto-char pos)
6601 nil)))
6602
6603 (defun idlwave-last-valid-char ()
6604 "Return the last character before point which is not white or a comment
6605 and also not part of the current identifier. Since we do this in
6606 order to identify places where keywords are, we consider the initial
6607 `/' of a keyword as part of the identifier.
6608 This function is not general, can only be used for completion stuff."
6609 (catch 'exit
6610 (save-excursion
6611 ;; skip the current identifier
6612 (skip-chars-backward "a-zA-Z0-9_$")
6613 ;; also skip a leading slash which might be belong to the keyword
6614 (if (eq (preceding-char) ?/)
6615 (backward-char 1))
6616 ;; FIXME: does not check if this is a valid identifier
6617 (while t
6618 (skip-chars-backward " \t")
6619 (cond
6620 ((memq (preceding-char) '(?\; ?\$)) (throw 'exit nil))
6621 ((eq (preceding-char) ?\n)
6622 (beginning-of-line 0)
6623 (if (looking-at "\\([^\n]*\\)\\$[ \t]*\\(;[^\n]*\\)?\n")
6624 ;; continuation line
6625 (goto-char (match-end 1))
6626 (throw 'exit nil)))
6627 (t (throw 'exit (preceding-char))))))))
6628
6629 (defvar idlwave-complete-after-success-form nil
6630 "A form to evaluate after successful completion.")
6631 (defvar idlwave-complete-after-success-form-force nil
6632 "A form to evaluate after completion selection in *Completions* buffer.")
6633 (defconst idlwave-completion-mark (make-marker)
6634 "A mark pointing to the beginning of the completion string.")
6635 (defvar completion-highlight-first-word-only) ;XEmacs.
6636
6637 (defun idlwave-complete-in-buffer (type stype list selector prompt isa
6638 &optional prepare-display-function
6639 special-selector)
6640 "Perform TYPE completion of word before point against LIST.
6641 SELECTOR is the PREDICATE argument for the completion function. Show
6642 PROMPT in echo area. TYPE is one of the intern types, e.g. 'function,
6643 'procedure, 'class-tag, 'keyword, 'sysvar, etc. SPECIAL-SELECTOR is
6644 used only once, for `all-completions', and can be used to, e.g.,
6645 accumulate information on matching completions."
6646 (let* ((completion-ignore-case t)
6647 beg (end (point)) slash part spart completion all-completions
6648 dpart dcompletion)
6649
6650 (unless list
6651 (error (concat prompt ": No completions available")))
6652
6653 ;; What is already in the buffer?
6654 (save-excursion
6655 (skip-chars-backward "a-zA-Z0-9_$")
6656 (setq slash (eq (preceding-char) ?/)
6657 beg (point)
6658 idlwave-complete-after-success-form
6659 (list 'idlwave-after-successful-completion
6660 (list 'quote type) slash beg)
6661 idlwave-complete-after-success-form-force
6662 (list 'idlwave-after-successful-completion
6663 (list 'quote type) slash (list 'quote 'force))))
6664
6665 ;; Try a completion
6666 (setq part (buffer-substring beg end)
6667 dpart (downcase part)
6668 spart (idlwave-sintern stype part)
6669 completion (try-completion part list selector)
6670 dcompletion (if (stringp completion) (downcase completion))
6671 idlwave-completion-help-links nil)
6672 (cond
6673 ((null completion)
6674 ;; nothing available.
6675 (error (concat prompt ": no completion for \"%s\"") part))
6676 ((and (not (equal dpart dcompletion))
6677 (not (eq t completion)))
6678 ;; We can add something
6679 (delete-region beg end)
6680 (insert (if (and (string= part dpart)
6681 (or (not (string= part ""))
6682 idlwave-complete-empty-string-as-lower-case)
6683 (not idlwave-completion-force-default-case))
6684 dcompletion
6685 completion))
6686 (if (eq t (try-completion completion list selector))
6687 ;; Now this is a unique match
6688 (idlwave-after-successful-completion type slash beg))
6689 t)
6690 ((or (eq completion t)
6691 (and (= 1 (length (setq all-completions
6692 (idlwave-uniquify
6693 (all-completions part list
6694 (or special-selector
6695 selector))))))
6696 (equal dpart dcompletion)))
6697 ;; This is already complete
6698 (idlwave-after-successful-completion type slash beg)
6699 (message "%s is already the complete %s" part isa)
6700 nil)
6701 (t
6702 ;; We cannot add something - offer a list.
6703 (message "Making completion list...")
6704
6705 (unless idlwave-completion-help-links ; already set somewhere?
6706 (mapc (lambda (x) ; Pass link prop through to highlight-linked
6707 (let ((link (get-text-property 0 'link (car x))))
6708 (if link
6709 (push (cons (car x) link)
6710 idlwave-completion-help-links))))
6711 list))
6712 (let* ((list all-completions)
6713 ;; "complete" means, this is already a valid completion
6714 (complete (memq spart all-completions))
6715 (completion-highlight-first-word-only t)) ; XEmacs
6716 ;; (completion-fixup-function ; Emacs
6717 ;; (lambda () (and (eq (preceding-char) ?>)
6718 ;; (re-search-backward " <" beg t)))))
6719
6720 (setq list (sort list (lambda (a b)
6721 (string< (downcase a) (downcase b)))))
6722 (if prepare-display-function
6723 (setq list (funcall prepare-display-function list)))
6724 (if (and (string= part dpart)
6725 (or (not (string= part ""))
6726 idlwave-complete-empty-string-as-lower-case)
6727 (not idlwave-completion-force-default-case))
6728 (setq list (mapcar (lambda (x)
6729 (if (listp x)
6730 (setcar x (downcase (car x)))
6731 (setq x (downcase x)))
6732 x)
6733 list)))
6734 (idlwave-display-completion-list list prompt beg complete))
6735 t))))
6736
6737 (defun idlwave-complete-class ()
6738 "Complete a class at point."
6739 (interactive)
6740 ;; Call `idlwave-routines' to make sure the class list will be available
6741 (idlwave-routines)
6742 ;; Check for the special case of completing empty string after pro/function
6743 (if (let ((case-fold-search t))
6744 (save-excursion
6745 (and
6746 (re-search-backward "\\<\\(pro\\|function\\)[ \t]+\\="
6747 (- (point) 15) t)
6748 (goto-char (point-min))
6749 (re-search-forward
6750 "^[ \t]*\\(pro\\|function\\)[ \t]+\\([a-zA-Z0-9_]+::\\)" nil t))))
6751 ;; Yank the full class specification
6752 (insert (match-string 2))
6753 ;; Do the completion, using list gathered from `idlwave-routines'
6754 (idlwave-complete-in-buffer
6755 'class 'class (idlwave-class-alist) nil
6756 "Select a class" "class"
6757 (lambda (list) ;; Push it to help-links if system help available
6758 (mapcar (lambda (x)
6759 (let* ((entry (idlwave-class-info x))
6760 (link (nth 1 (assq 'link entry))))
6761 (if link (push (cons x link)
6762 idlwave-completion-help-links))
6763 x))
6764 list)))))
6765
6766 (defun idlwave-attach-classes (list type show-classes)
6767 ;; Attach the proper class list to a LIST of completion items.
6768 ;; TYPE, when 'kwd, shows classes for method keywords, when
6769 ;; 'class-tag, for class tags, and otherwise for methods.
6770 ;; SHOW-CLASSES is the value of `idlwave-completion-show-classes'.
6771 (if (or (null show-classes) ; don't want to see classes
6772 (null class-selector) ; not a method call
6773 (and
6774 (stringp class-selector) ; the class is already known
6775 (not super-classes))) ; no possibilities for inheritance
6776 ;; In these cases, we do not have to do anything
6777 list
6778 (let* ((do-prop (and (>= show-classes 0)
6779 (>= emacs-major-version 21)))
6780 (do-buf (not (= show-classes 0)))
6781 ;; (do-dots (featurep 'xemacs))
6782 (do-dots t)
6783 (inherit (if (and (not (eq type 'class-tag)) super-classes)
6784 (cons class-selector super-classes)))
6785 (max (abs show-classes))
6786 (lmax (if do-dots (apply 'max (mapcar 'length list))))
6787 classes nclasses class-info space)
6788 (mapcar
6789 (lambda (x)
6790 ;; get the classes
6791 (if (eq type 'class-tag)
6792 ;; Just one class for tags
6793 (setq classes
6794 (list
6795 (idlwave-class-or-superclass-with-tag class-selector x)))
6796 ;; Multiple classes for method or method-keyword
6797 (setq classes
6798 (if (eq type 'kwd)
6799 (idlwave-all-method-keyword-classes
6800 method-selector x type-selector)
6801 (idlwave-all-method-classes x type-selector)))
6802 (if inherit
6803 (setq classes
6804 (delq nil
6805 (mapcar (lambda (x) (if (memq x inherit) x nil))
6806 classes)))))
6807 (setq nclasses (length classes))
6808 ;; Make the separator between item and class-info
6809 (if do-dots
6810 (setq space (concat " " (make-string (- lmax (length x)) ?.)))
6811 (setq space " "))
6812 (if do-buf
6813 ;; We do want info in the buffer
6814 (if (<= nclasses max)
6815 (setq class-info (concat
6816 space
6817 "<" (mapconcat 'identity classes ",") ">"))
6818 (setq class-info (format "%s<%d classes>" space nclasses)))
6819 (setq class-info nil))
6820 (when do-prop
6821 ;; We do want properties
6822 (setq x (copy-sequence x))
6823 (put-text-property 0 (length x)
6824 'help-echo (mapconcat 'identity classes " ")
6825 x))
6826 (if class-info
6827 (list x class-info)
6828 x))
6829 list))))
6830
6831 (defun idlwave-attach-method-classes (list)
6832 ;; Call idlwave-attach-classes with method parameters
6833 (idlwave-attach-classes list 'method idlwave-completion-show-classes))
6834 (defun idlwave-attach-keyword-classes (list)
6835 ;; Call idlwave-attach-classes with keyword parameters
6836 (idlwave-attach-classes list 'kwd idlwave-completion-show-classes))
6837 (defun idlwave-attach-class-tag-classes (list)
6838 ;; Call idlwave-attach-classes with class structure tags
6839 (idlwave-attach-classes list 'class-tag idlwave-completion-show-classes))
6840
6841
6842 ;;----------------------------------------------------------------------
6843 ;;----------------------------------------------------------------------
6844 ;;----------------------------------------------------------------------
6845 ;;----------------------------------------------------------------------
6846 ;;----------------------------------------------------------------------
6847 (when (featurep 'xemacs)
6848 (defvar rtn)
6849 (defun idlwave-pset (item)
6850 (set 'rtn item)))
6851
6852 (defun idlwave-popup-select (ev list title &optional sort)
6853 "Select an item in LIST with a popup menu.
6854 TITLE is the title to put atop the popup. If SORT is non-nil,
6855 sort the list before displaying."
6856 (let ((maxpopup idlwave-max-popup-menu-items)
6857 rtn menu)
6858 (cond ((null list))
6859 ((= 1 (length list))
6860 (setq rtn (car list)))
6861 ((featurep 'xemacs)
6862 (if sort (setq list (sort list (lambda (a b)
6863 (string< (upcase a) (upcase b))))))
6864 (setq menu
6865 (append (list title)
6866 (mapcar (lambda (x) (vector x (list 'idlwave-pset
6867 x)))
6868 list)))
6869 (setq menu (idlwave-split-menu-xemacs menu maxpopup))
6870 (let ((resp (get-popup-menu-response menu)))
6871 (funcall (event-function resp) (event-object resp))))
6872 (t
6873 (if sort (setq list (sort list (lambda (a b)
6874 (string< (upcase a) (upcase b))))))
6875 (setq menu (cons title
6876 (list
6877 (append (list "")
6878 (mapcar (lambda(x) (cons x x)) list)))))
6879 (setq menu (idlwave-split-menu-emacs menu maxpopup))
6880 (setq rtn (x-popup-menu ev menu))))
6881 rtn))
6882
6883 (defun idlwave-split-menu-xemacs (menu N)
6884 "Split the MENU into submenus of maximum length N."
6885 (if (<= (length menu) (1+ N))
6886 ;; No splitting needed
6887 menu
6888 (let* ((title (car menu))
6889 (entries (cdr menu))
6890 (menu (list title))
6891 (cnt 0)
6892 (nextmenu nil))
6893 (while entries
6894 (while (and entries (< cnt N))
6895 (setq cnt (1+ cnt)
6896 nextmenu (cons (car entries) nextmenu)
6897 entries (cdr entries)))
6898 (setq nextmenu (nreverse nextmenu))
6899 (setq nextmenu (cons (format "%s...%s"
6900 (aref (car nextmenu) 0)
6901 (aref (nth (1- cnt) nextmenu) 0))
6902 nextmenu))
6903 (setq menu (cons nextmenu menu)
6904 nextmenu nil
6905 cnt 0))
6906 (nreverse menu))))
6907
6908 (defun idlwave-split-menu-emacs (menu N)
6909 "Split the MENU into submenus of maximum length N."
6910 (if (<= (length (nth 1 menu)) (1+ N))
6911 ;; No splitting needed
6912 menu
6913 (let* ((title (car menu))
6914 (entries (cdr (nth 1 menu)))
6915 (menu nil)
6916 (cnt 0)
6917 (nextmenu nil))
6918 (while entries
6919 (while (and entries (< cnt N))
6920 (setq cnt (1+ cnt)
6921 nextmenu (cons (car entries) nextmenu)
6922 entries (cdr entries)))
6923 (setq nextmenu (nreverse nextmenu))
6924 (prin1 nextmenu)
6925 (setq nextmenu (cons (format "%s...%s"
6926 (car (car nextmenu))
6927 (car (nth (1- cnt) nextmenu)))
6928 nextmenu))
6929 (setq menu (cons nextmenu menu)
6930 nextmenu nil
6931 cnt 0))
6932 (setq menu (nreverse menu))
6933 (setq menu (cons title menu))
6934 menu)))
6935
6936 (defvar idlwave-completion-setup-hook nil)
6937
6938 (defun idlwave-scroll-completions (&optional message)
6939 "Scroll the completion window on this frame."
6940 (let ((cwin (get-buffer-window "*Completions*" 'visible))
6941 (win (selected-window)))
6942 (unwind-protect
6943 (progn
6944 (select-window cwin)
6945 (condition-case nil
6946 (scroll-up)
6947 (error (if (and (listp last-command)
6948 (nth 2 last-command))
6949 (progn
6950 (select-window win)
6951 (eval idlwave-complete-after-success-form))
6952 (set-window-start cwin (point-min)))))
6953 (and message (message "%s" message)))
6954 (select-window win))))
6955
6956 (defun idlwave-display-completion-list (list &optional message beg complete)
6957 "Display the completions in LIST in the completions buffer and echo MESSAGE."
6958 (unless (and (get-buffer-window "*Completions*")
6959 (idlwave-local-value 'idlwave-completion-p "*Completions*"))
6960 (move-marker idlwave-completion-mark beg)
6961 (setq idlwave-before-completion-wconf (current-window-configuration)))
6962
6963 (if (featurep 'xemacs)
6964 (idlwave-display-completion-list-xemacs
6965 list)
6966 (idlwave-display-completion-list-emacs list))
6967
6968 ;; Store a special value in `this-command'. When `idlwave-complete'
6969 ;; finds this in `last-command', it will scroll the *Completions* buffer.
6970 (setq this-command (list 'idlwave-display-completion-list message complete))
6971
6972 ;; Mark the completions buffer as created by cib
6973 (idlwave-set-local 'idlwave-completion-p t "*Completions*")
6974
6975 ;; Fontify the classes
6976 (if (and idlwave-completion-fontify-classes
6977 (consp (car list)))
6978 (idlwave-completion-fontify-classes))
6979
6980 ;; Run the hook
6981 (run-hooks 'idlwave-completion-setup-hook)
6982
6983 ;; Display the message
6984 (message "%s" (or message "Making completion list...done")))
6985
6986 (defun idlwave-choose (function &rest args)
6987 "Call FUNCTION as a completion chooser and pass ARGS to it."
6988 (let ((completion-ignore-case t)) ; install correct value
6989 (apply function args))
6990 (if (and (derived-mode-p 'idlwave-shell-mode)
6991 (boundp 'font-lock-mode)
6992 (not font-lock-mode))
6993 ;; For the shell, remove the fontification of the word before point
6994 (let ((beg (save-excursion
6995 (skip-chars-backward "a-zA-Z0-9_")
6996 (point))))
6997 (remove-text-properties beg (point) '(face nil))))
6998 (eval idlwave-complete-after-success-form-force))
6999
7000 (defun idlwave-keyboard-quit ()
7001 (interactive)
7002 (unwind-protect
7003 (if (eq (car-safe last-command) 'idlwave-display-completion-list)
7004 (idlwave-restore-wconf-after-completion))
7005 (keyboard-quit)))
7006
7007 (defun idlwave-restore-wconf-after-completion ()
7008 "Restore the old (before completion) window configuration."
7009 (and idlwave-completion-restore-window-configuration
7010 idlwave-before-completion-wconf
7011 (set-window-configuration idlwave-before-completion-wconf)))
7012
7013 (defun idlwave-one-key-select (sym prompt delay)
7014 "Make the user select an element from the alist in the variable SYM.
7015 The keys of the alist are expected to be strings. The function returns the
7016 car of the selected association.
7017 To do this, PROMPT is displayed and the user must hit a letter key to
7018 select an entry. If the user does not reply within DELAY seconds, a help
7019 window with the options is displayed automatically.
7020 The key which is associated with each option is generated automatically.
7021 First, the strings are checked for preselected keys, like in \"[P]rint\".
7022 If these don't exist, a letter in the string is automatically selected."
7023 (let* ((alist (symbol-value sym))
7024 (temp-buffer-show-hook (if (fboundp 'fit-window-to-buffer)
7025 '(fit-window-to-buffer)))
7026 keys-alist char)
7027 ;; First check the cache
7028 (if (and (eq (symbol-value sym) (get sym :one-key-alist-last)))
7029 (setq keys-alist (get sym :one-key-alist-cache))
7030 ;; Need to make new list
7031 (setq keys-alist (idlwave-make-one-key-alist alist))
7032 (put sym :one-key-alist-cache keys-alist)
7033 (put sym :one-key-alist-last alist))
7034 ;; Display prompt and wait for quick reply
7035 (message "%s[%s]" prompt
7036 (mapconcat (lambda(x) (char-to-string (car x)))
7037 keys-alist ""))
7038 (if (sit-for delay)
7039 ;; No quick reply: Show help
7040 (save-window-excursion
7041 (with-output-to-temp-buffer "*Completions*"
7042 (dolist (x keys-alist)
7043 (princ (nth 1 x))
7044 (princ "\n")))
7045 (setq char (read-char)))
7046 (setq char (read-char)))
7047 (message nil)
7048 ;; Return the selected result
7049 (nth 2 (assoc char keys-alist))))
7050
7051 ;; Used for, e.g., electric debug super-examine.
7052 (defun idlwave-make-one-key-alist (alist)
7053 "Make an alist for single key selection."
7054 (let ((l alist) keys-alist name start char help
7055 (cnt 0)
7056 (case-fold-search nil))
7057 (while l
7058 (setq name (car (car l))
7059 l (cdr l))
7060 (catch 'exit
7061 ;; First check if the configuration predetermined a key
7062 (if (string-match "\\[\\(.\\)\\]" name)
7063 (progn
7064 (setq char (string-to-char (downcase (match-string 1 name)))
7065 help (format "%c: %s" char name)
7066 keys-alist (cons (list char help name) keys-alist))
7067 (throw 'exit t)))
7068 ;; Then check for capital letters
7069 (setq start 0)
7070 (while (string-match "[A-Z]" name start)
7071 (setq start (match-end 0)
7072 char (string-to-char (downcase (match-string 0 name))))
7073 (if (not (assoc char keys-alist))
7074 (progn
7075 (setq help (format "%c: %s" char
7076 (replace-match
7077 (concat "[" (match-string 0 name) "]")
7078 t t name))
7079 keys-alist (cons (list char help name) keys-alist))
7080 (throw 'exit t))))
7081 ;; Now check for lowercase letters
7082 (setq start 0)
7083 (while (string-match "[a-z]" name start)
7084 (setq start (match-end 0)
7085 char (string-to-char (match-string 0 name)))
7086 (if (not (assoc char keys-alist))
7087 (progn
7088 (setq help (format "%c: %s" char
7089 (replace-match
7090 (concat "[" (match-string 0 name) "]")
7091 t t name))
7092 keys-alist (cons (list char help name) keys-alist))
7093 (throw 'exit t))))
7094 ;; Bummer, nothing found! Use a stupid number
7095 (setq char (string-to-char (int-to-string (setq cnt (1+ cnt))))
7096 help (format "%c: %s" char name)
7097 keys-alist (cons (list char help name) keys-alist))))
7098 (nreverse keys-alist)))
7099
7100 (defun idlwave-set-local (var value &optional buffer)
7101 "Set the buffer-local value of VAR in BUFFER to VALUE."
7102 (with-current-buffer (or buffer (current-buffer))
7103 (set (make-local-variable var) value)))
7104
7105 (defun idlwave-local-value (var &optional buffer)
7106 "Return the value of VAR in BUFFER, but only if VAR is local to BUFFER."
7107 (with-current-buffer (or buffer (current-buffer))
7108 (and (local-variable-p var (current-buffer))
7109 (symbol-value var))))
7110
7111 ;; In XEmacs, we can use :activate-callback directly to advice the
7112 ;; choose functions. We use the private keymap only for the online
7113 ;; help feature.
7114
7115 (defvar idlwave-completion-map nil
7116 "Keymap for `completion-list-mode' with `idlwave-complete'.")
7117
7118 (defun idlwave-display-completion-list-xemacs (list &rest cl-args)
7119 (with-output-to-temp-buffer "*Completions*"
7120 (apply 'display-completion-list list
7121 ':activate-callback 'idlwave-default-choose-completion
7122 cl-args))
7123 (with-current-buffer "*Completions*"
7124 (use-local-map
7125 (or idlwave-completion-map
7126 (setq idlwave-completion-map
7127 (idlwave-make-modified-completion-map-xemacs
7128 (current-local-map)))))))
7129
7130 (defun idlwave-default-choose-completion (&rest args)
7131 "Execute `default-choose-completion' and then restore the win-conf."
7132 (apply 'idlwave-choose 'default-choose-completion args))
7133
7134 (defun idlwave-make-modified-completion-map-xemacs (old-map)
7135 "Replace `choose-completion' and `mouse-choose-completion' in OLD-MAP."
7136 (let ((new-map (copy-keymap old-map)))
7137 (define-key new-map [button3up] 'idlwave-mouse-completion-help)
7138 (define-key new-map [button3] (lambda ()
7139 (interactive)
7140 (setq this-command last-command)))
7141 new-map))
7142
7143 ;; In Emacs we also replace keybindings in the completion
7144 ;; map in order to install our wrappers.
7145
7146 (defun idlwave-display-completion-list-emacs (list)
7147 "Display completion list and install the choose wrappers."
7148 (with-output-to-temp-buffer "*Completions*"
7149 (display-completion-list list))
7150 (with-current-buffer "*Completions*"
7151 (use-local-map
7152 (or idlwave-completion-map
7153 (setq idlwave-completion-map
7154 (idlwave-make-modified-completion-map-emacs
7155 (current-local-map)))))))
7156
7157 (defun idlwave-make-modified-completion-map-emacs (old-map)
7158 "Replace `choose-completion' and `mouse-choose-completion' in OLD-MAP."
7159 (let ((new-map (copy-keymap old-map)))
7160 (substitute-key-definition
7161 'choose-completion 'idlwave-choose-completion new-map)
7162 (substitute-key-definition
7163 'mouse-choose-completion 'idlwave-mouse-choose-completion new-map)
7164 (define-key new-map [mouse-3] 'idlwave-mouse-completion-help)
7165 new-map))
7166
7167 (defun idlwave-choose-completion (&rest args)
7168 "Choose the completion that point is in or next to."
7169 (interactive)
7170 (apply 'idlwave-choose 'choose-completion args))
7171
7172 (defun idlwave-mouse-choose-completion (&rest args)
7173 "Click on an alternative in the `*Completions*' buffer to choose it."
7174 (interactive "e")
7175 (apply 'idlwave-choose 'mouse-choose-completion args))
7176
7177 ;;----------------------------------------------------------------------
7178 ;;----------------------------------------------------------------------
7179
7180 ;;; ------------------------------------------------------------------------
7181 ;;; Structure parsing code, and code to manage class info
7182
7183 ;;
7184 ;; - Go again over the documentation how to write a completion
7185 ;; plugin. It is in self.el, but currently still very bad.
7186 ;; This could be in a separate file in the distribution, or
7187 ;; in an appendix for the manual.
7188
7189 (defvar idlwave-struct-skip
7190 "[ \t]*\\(\\$.*\n\\(^[ \t]*\\(\\$[ \t]*\\)?\\(;.*\\)?\n\\)*\\)?[ \t]*"
7191 "Regexp for skipping continued blank or comment-only lines in structures.")
7192
7193 (defvar idlwave-struct-tag-regexp
7194 (concat "[{,]" ;leading comma/brace
7195 idlwave-struct-skip ; 4 groups
7196 "\\([a-zA-Z][a-zA-Z0-9_]*\\)" ;the tag itself, group 5
7197 "[ \t]*:") ; the final colon
7198 "Regexp for structure tags.")
7199
7200 (defun idlwave-struct-tags ()
7201 "Return a list of all tags in the structure defined at point.
7202 Point is expected just before the opening `{' of the struct definition."
7203 (save-excursion
7204 (let* ((borders (idlwave-struct-borders))
7205 (beg (car borders))
7206 (end (cdr borders))
7207 tags)
7208 (goto-char beg)
7209 (save-restriction
7210 (narrow-to-region beg end)
7211 (while (re-search-forward idlwave-struct-tag-regexp end t)
7212 ;; Check if we are still on the top level of the structure.
7213 (if (and (condition-case nil (progn (up-list -1) t) (error nil))
7214 (= (point) beg))
7215 (push (match-string-no-properties 5) tags))
7216 (goto-char (match-end 0))))
7217 (nreverse tags))))
7218
7219 (defun idlwave-find-struct-tag (tag)
7220 "Find a given TAG in the structure defined at point."
7221 (let* ((borders (idlwave-struct-borders))
7222 (end (cdr borders))
7223 (case-fold-search t))
7224 (re-search-forward (concat "\\(^[ \t]*\\|[,{][ \t]*\\)" tag "[ \t]*:")
7225 end t)))
7226
7227 (defun idlwave-struct-inherits ()
7228 "Return a list of all `inherits' names in the struct at point.
7229 Point is expected just before the opening `{' of the struct definition."
7230 (save-excursion
7231 (let* ((borders (idlwave-struct-borders))
7232 (beg (car borders))
7233 (end (cdr borders))
7234 (case-fold-search t)
7235 names)
7236 (goto-char beg)
7237 (save-restriction
7238 (narrow-to-region beg end)
7239 (while (re-search-forward
7240 (concat "[{,]" ;leading comma/brace
7241 idlwave-struct-skip ; 4 groups
7242 "inherits" ; The INHERITS tag
7243 idlwave-struct-skip ; 4 more
7244 "\\([a-zA-Z][a-zA-Z0-9_]*\\)") ; The super-group, #9
7245 end t)
7246 ;; Check if we are still on the top level of the structure.
7247 (if (and (condition-case nil (progn (up-list -1) t) (error nil))
7248 (= (point) beg))
7249 (push (match-string-no-properties 9) names))
7250 (goto-char (match-end 0))))
7251 (nreverse names))))
7252
7253 (defun idlwave-in-structure ()
7254 "Return t if point is inside an IDL structure definition."
7255 (let ((beg (point)))
7256 (save-excursion
7257 (if (not (or (idlwave-in-comment) (idlwave-in-quote)))
7258 (if (idlwave-find-structure-definition nil nil 'back)
7259 (let ((borders (idlwave-struct-borders)))
7260 (or (= (car borders) (cdr borders)) ;; struct not yet closed...
7261 (and (> beg (car borders)) (< beg (cdr borders))))))))))
7262
7263 (defun idlwave-struct-borders ()
7264 "Return the borders of the {...} after point as a cons cell."
7265 (let (beg)
7266 (save-excursion
7267 (skip-chars-forward "^{")
7268 (setq beg (point))
7269 (condition-case nil (forward-list 1)
7270 (error (goto-char beg)))
7271 (cons beg (point)))))
7272
7273 (defun idlwave-find-structure-definition (&optional var name bound)
7274 "Search forward for a structure definition.
7275 If VAR is non-nil, search for a structure assigned to variable VAR.
7276 If NAME is non-nil, search for a named structure NAME, if a string,
7277 or a generic named structure otherwise. If BOUND is an integer, limit
7278 the search. If BOUND is the symbol `all', we search first back and
7279 then forward through the entire file. If BOUND is the symbol `back'
7280 we search only backward."
7281 (let* ((ws "[ \t]*\\(\\$.*\n[ \t]*\\)*")
7282 (case-fold-search t)
7283 (lim (if (integerp bound) bound nil))
7284 (re (concat
7285 (if var
7286 (concat "\\<" (regexp-quote (downcase var)) "\\>" ws)
7287 "\\(\\)")
7288 "=" ws "\\({\\)"
7289 (if name
7290 (if (stringp name)
7291 (concat ws "\\(\\<" (downcase name) "\\)[^a-zA-Z0-9_$]")
7292 ;; Just a generic name
7293 (concat ws "\\<\\([a-zA-Z_0-9$]+\\)" ws ","))
7294 ""))))
7295 (if (or (and (or (eq bound 'all) (eq bound 'back))
7296 (re-search-backward re nil t))
7297 (and (not (eq bound 'back)) (re-search-forward re lim t)))
7298 (progn
7299 (goto-char (match-beginning 3))
7300 (match-string-no-properties 5)))))
7301
7302 (defvar idlwave-class-info nil)
7303 (defvar idlwave-class-reset nil) ; to reset buffer-local classes
7304
7305 (add-hook 'idlwave-update-rinfo-hook
7306 (lambda () (setq idlwave-class-reset t)))
7307 (add-hook 'idlwave-after-load-rinfo-hook
7308 (lambda () (setq idlwave-class-info nil)))
7309
7310 (defun idlwave-class-info (class)
7311 (let (list entry)
7312 (if idlwave-class-info
7313 (if idlwave-class-reset
7314 (setq
7315 idlwave-class-reset nil
7316 idlwave-class-info ; Remove any visited in a buffer
7317 (delq nil (mapcar
7318 (lambda (x)
7319 (let ((filebuf
7320 (idlwave-class-file-or-buffer
7321 (or (cdr (assq 'found-in x)) (car x)))))
7322 (if (cdr filebuf)
7323 nil
7324 x)))
7325 idlwave-class-info))))
7326 ;; Info is nil, put in the system stuff to start.
7327 (setq idlwave-class-info idlwave-system-class-info)
7328 (setq list idlwave-class-info)
7329 (while (setq entry (pop list))
7330 (idlwave-sintern-class-info entry)))
7331 (setq class (idlwave-sintern-class class))
7332 (or (assq class idlwave-class-info)
7333 (progn (idlwave-scan-class-info class)
7334 (assq class idlwave-class-info)))))
7335
7336 (defun idlwave-sintern-class-info (entry)
7337 "Sintern the class names in a class-info entry."
7338 (let ((inherits (assq 'inherits entry)))
7339 (setcar entry (idlwave-sintern-class (car entry) 'set))
7340 (if inherits
7341 (setcdr inherits (mapcar (lambda (x) (idlwave-sintern-class x 'set))
7342 (cdr inherits))))))
7343
7344 (defun idlwave-find-class-definition (class &optional all-hook alt-class)
7345 "Find class structure definition(s).
7346 If ALL-HOOK is set, find all named structure definitions in a given
7347 class__define routine, on which ALL-HOOK will be run. If ALT-CLASS is
7348 set, look for the name__define pro, and inside of it, for the ALT-CLASS
7349 class/struct definition."
7350 (let ((case-fold-search t) end-lim name)
7351 (when (re-search-forward
7352 (concat "^[ \t]*pro[ \t]+" (downcase class) "__define" "\\>") nil t)
7353 (if all-hook
7354 (progn
7355 ;; For everything there
7356 (setq end-lim (save-excursion (idlwave-end-of-subprogram) (point)))
7357 (while (setq name
7358 (idlwave-find-structure-definition nil t end-lim))
7359 (funcall all-hook name)))
7360 (idlwave-find-structure-definition nil (or alt-class class))))))
7361
7362
7363 (defun idlwave-class-file-or-buffer (class)
7364 "Find buffer visiting CLASS definition."
7365 (let* ((pro (concat (downcase class) "__define"))
7366 (file (idlwave-routine-source-file
7367 (nth 3 (idlwave-rinfo-assoc pro 'pro nil
7368 (idlwave-routines))))))
7369 (cons file (if file (idlwave-get-buffer-visiting file)))))
7370
7371
7372 (defun idlwave-scan-class-info (class)
7373 "Scan all class and named structure info in the class__define pro."
7374 (let* ((idlwave-auto-routine-info-updates nil)
7375 (filebuf (idlwave-class-file-or-buffer class))
7376 (file (car filebuf))
7377 (buf (cdr filebuf))
7378 (class (idlwave-sintern-class class)))
7379 (if (or
7380 (not file)
7381 (and ;; neither a regular file nor a visited buffer
7382 (not buf)
7383 (not (file-regular-p file))))
7384 nil ; Cannot find the file/buffer to get any info
7385 (save-excursion
7386 (if buf (set-buffer buf)
7387 ;; Read the file in temporarily
7388 (set-buffer (get-buffer-create " *IDLWAVE-tmp*"))
7389 (erase-buffer)
7390 (unless (derived-mode-p 'idlwave-mode)
7391 (idlwave-mode))
7392 (insert-file-contents file))
7393 (save-excursion
7394 (goto-char 1)
7395 (idlwave-find-class-definition class
7396 ;; Scan all of the structures found there
7397 (lambda (name)
7398 (let* ((this-class (idlwave-sintern-class name))
7399 (entry
7400 (list this-class
7401 (cons 'tags (idlwave-struct-tags))
7402 (cons 'inherits (idlwave-struct-inherits)))))
7403 (if (not (eq this-class class))
7404 (setq entry (nconc entry (list (cons 'found-in class)))))
7405 (idlwave-sintern-class-info entry)
7406 (push entry idlwave-class-info)))))))))
7407
7408 (defun idlwave-class-found-in (class)
7409 "Return the FOUND-IN property of the CLASS."
7410 (cdr (assq 'found-in (idlwave-class-info class))))
7411 (defun idlwave-class-tags (class)
7412 "Return the native tags in CLASS."
7413 (cdr (assq 'tags (idlwave-class-info class))))
7414 (defun idlwave-class-inherits (class)
7415 "Return the direct superclasses of CLASS."
7416 (cdr (assq 'inherits (idlwave-class-info class))))
7417
7418
7419 (defun idlwave-all-class-tags (class)
7420 "Return a list of native and inherited tags in CLASS."
7421 (condition-case err
7422 (apply 'append (mapcar 'idlwave-class-tags
7423 (cons class (idlwave-all-class-inherits class))))
7424 (error
7425 (idlwave-class-tag-reset)
7426 (error "%s" (error-message-string err)))))
7427
7428
7429 (defun idlwave-all-class-inherits (class)
7430 "Return a list of all superclasses of CLASS (recursively expanded).
7431 The list is cached in `idlwave-class-info' for faster access."
7432 (cond
7433 ((not idlwave-support-inheritance) nil)
7434 ((eq class nil) nil)
7435 ((eq class t) nil)
7436 (t
7437 (let ((info (idlwave-class-info class))
7438 entry)
7439 (if (setq entry (assq 'all-inherits info))
7440 (cdr entry)
7441 ;; Save the depth of inheritance scan to check for circular references
7442 (let ((inherits (mapcar (lambda (x) (cons x 0))
7443 (idlwave-class-inherits class)))
7444 rtn all-inherits cl)
7445 (while inherits
7446 (setq cl (pop inherits)
7447 rtn (cons (car cl) rtn)
7448 inherits (append (mapcar (lambda (x)
7449 (cons x (1+ (cdr cl))))
7450 (idlwave-class-inherits (car cl)))
7451 inherits))
7452 (if (> (cdr cl) 999)
7453 (error
7454 "Class scan: inheritance depth exceeded. Circular inheritance?")
7455 ))
7456 (setq all-inherits (nreverse rtn))
7457 (nconc info (list (cons 'all-inherits all-inherits)))
7458 all-inherits))))))
7459
7460 (defun idlwave-entry-keywords (entry &optional record-link)
7461 "Return the flat entry keywords alist from routine-info entry.
7462 If RECORD-LINK is non-nil, the keyword text is copied and a text
7463 property indicating the link is added."
7464 (let (kwds)
7465 (mapc
7466 (lambda (key-list)
7467 (let ((file (car key-list)))
7468 (mapcar (lambda (key-cons)
7469 (let ((key (car key-cons))
7470 (link (cdr key-cons)))
7471 (when (and record-link file)
7472 (setq key (copy-sequence key))
7473 (put-text-property
7474 0 (length key)
7475 'link
7476 (concat
7477 file
7478 (if link
7479 (concat idlwave-html-link-sep
7480 (number-to-string link))))
7481 key))
7482 (push (list key) kwds)))
7483 (cdr key-list))))
7484 (nthcdr 5 entry))
7485 (nreverse kwds)))
7486
7487 (defun idlwave-entry-find-keyword (entry keyword)
7488 "Find keyword KEYWORD in entry ENTRY, and return (with link) if set."
7489 (catch 'exit
7490 (mapc
7491 (lambda (key-list)
7492 (let ((file (car key-list))
7493 (kwd (assoc keyword (cdr key-list))))
7494 (when kwd
7495 (setq kwd (cons (car kwd)
7496 (if (and file (cdr kwd))
7497 (concat file
7498 idlwave-html-link-sep
7499 (number-to-string (cdr kwd)))
7500 (cdr kwd))))
7501 (throw 'exit kwd))))
7502 (nthcdr 5 entry))))
7503
7504 ;;==========================================================================
7505 ;;
7506 ;; Completing class structure tags. This is a completion plugin.
7507 ;; The necessary taglist is constructed dynamically
7508
7509 (defvar idlwave-current-tags-class nil)
7510 (defvar idlwave-current-class-tags nil)
7511 (defvar idlwave-current-native-class-tags nil)
7512 (defvar idlwave-sint-class-tags nil)
7513 (declare-function idlwave-sintern-class-tag "idlwave" t t)
7514 (idlwave-new-sintern-type 'class-tag)
7515 (add-to-list 'idlwave-complete-special 'idlwave-complete-class-structure-tag)
7516 (add-hook 'idlwave-update-rinfo-hook 'idlwave-class-tag-reset)
7517
7518 (defun idlwave-complete-class-structure-tag ()
7519 "Complete a structure tag on a `self' argument in an object method."
7520 (interactive)
7521 (let ((pos (point))
7522 (case-fold-search t))
7523 (if (save-excursion
7524 ;; Check if the context is right
7525 (skip-chars-backward "a-zA-Z0-9._$")
7526 (and (< (point) (- pos 4))
7527 (looking-at "self\\.")))
7528 (let* ((class-selector (nth 2 (idlwave-current-routine)))
7529 (super-classes (idlwave-all-class-inherits class-selector)))
7530 ;; Check if we are in a class routine
7531 (unless class-selector
7532 (error "Not in a method procedure or function"))
7533 ;; Check if we need to update the "current" class
7534 (if (not (equal class-selector idlwave-current-tags-class))
7535 (idlwave-prepare-class-tag-completion class-selector))
7536 (setq idlwave-completion-help-info
7537 (list 'idlwave-complete-class-structure-tag-help
7538 (idlwave-sintern-routine
7539 (concat class-selector "__define"))
7540 nil))
7541 ;; FIXME: idlwave-cpl-bold doesn't seem used anywhere.
7542 (let ((idlwave-cpl-bold idlwave-current-native-class-tags))
7543 (idlwave-complete-in-buffer
7544 'class-tag 'class-tag
7545 idlwave-current-class-tags nil
7546 (format "Select a tag of class %s" class-selector)
7547 "class tag"
7548 'idlwave-attach-class-tag-classes))
7549 t) ; return t to skip other completions
7550 nil)))
7551
7552 (defun idlwave-class-tag-reset ()
7553 (setq idlwave-current-tags-class nil))
7554
7555 (defun idlwave-prepare-class-tag-completion (class)
7556 "Find and parse the necessary class definitions for class structure tags."
7557 (setq idlwave-sint-class-tags nil)
7558 (setq idlwave-current-tags-class class)
7559 (setq idlwave-current-class-tags
7560 (mapcar (lambda (x)
7561 (list (idlwave-sintern-class-tag x 'set)))
7562 (idlwave-all-class-tags class)))
7563 (setq idlwave-current-native-class-tags
7564 (mapcar 'downcase (idlwave-class-tags class))))
7565
7566 ;===========================================================================
7567 ;;
7568 ;; Completing system variables and their structure fields
7569 ;; This is also a plugin.
7570
7571 (defvar idlwave-sint-sysvars nil)
7572 (defvar idlwave-sint-sysvartags nil)
7573 (declare-function idlwave-sintern-sysvar "idlwave" t t)
7574 (declare-function idlwave-sintern-sysvartag "idlwave" t t)
7575 (idlwave-new-sintern-type 'sysvar)
7576 (idlwave-new-sintern-type 'sysvartag)
7577 (add-to-list 'idlwave-complete-special 'idlwave-complete-sysvar-or-tag)
7578 (add-hook 'idlwave-update-rinfo-hook 'idlwave-sysvars-reset)
7579 (add-hook 'idlwave-after-load-rinfo-hook 'idlwave-sintern-sysvar-alist)
7580
7581
7582 (defun idlwave-complete-sysvar-or-tag ()
7583 "Complete a system variable."
7584 (interactive)
7585 (let ((pos (point))
7586 (case-fold-search t))
7587 (cond ((save-excursion
7588 ;; Check if the context is right for system variable
7589 (skip-chars-backward "[a-zA-Z0-9_$]")
7590 (equal (char-before) ?!))
7591 (setq idlwave-completion-help-info '(idlwave-complete-sysvar-help))
7592 (idlwave-complete-in-buffer 'sysvar 'sysvar
7593 idlwave-system-variables-alist nil
7594 "Select a system variable"
7595 "system variable")
7596 t) ; return t to skip other completions
7597 ((save-excursion
7598 ;; Check if the context is right for sysvar tag
7599 (skip-chars-backward "a-zA-Z0-9_$.")
7600 (and (equal (char-before) ?!)
7601 (looking-at "\\([a-zA-Z][a-zA-Z0-9_$]*\\)\\.")
7602 (<= (match-end 0) pos)))
7603 ;; Complete a system variable tag
7604 (let* ((var (idlwave-sintern-sysvar (match-string 1)))
7605 (entry (assq var idlwave-system-variables-alist))
7606 (tags (cdr (assq 'tags entry))))
7607 (or entry (error "!%s is not a known system variable" var))
7608 (or tags (error "System variable !%s is not a structure" var))
7609 (setq idlwave-completion-help-info
7610 (list 'idlwave-complete-sysvar-tag-help var))
7611 (idlwave-complete-in-buffer 'sysvartag 'sysvartag
7612 tags nil
7613 "Select a system variable tag"
7614 "system variable tag")
7615 t)) ; return t to skip other completions
7616 (t nil))))
7617
7618 (defvar idlw-help-link) ;dynamic variables set by help callback
7619 (defun idlwave-complete-sysvar-help (mode word)
7620 (let ((word (or (nth 1 idlwave-completion-help-info) word))
7621 (entry (assoc word idlwave-system-variables-alist)))
7622 (cond
7623 ((eq mode 'test)
7624 (and (stringp word) entry (nth 1 (assq 'link entry))))
7625 ((eq mode 'set)
7626 ;; Setting dynamic!!!
7627 (if entry (setq idlw-help-link (nth 1 (assq 'link entry)))))
7628 (t (error "This should not happen")))))
7629
7630 (defun idlwave-complete-sysvar-tag-help (mode word)
7631 (let* ((var (nth 1 idlwave-completion-help-info))
7632 (entry (assoc var idlwave-system-variables-alist))
7633 (tags (cdr (assq 'tags entry)))
7634 (main (nth 1 (assq 'link entry)))
7635 target)
7636 (cond
7637 ((eq mode 'test) ; we can at least link the main
7638 (and (stringp word) entry main))
7639 ((eq mode 'set)
7640 (if entry
7641 (setq idlw-help-link
7642 (if (setq target (cdr (assoc-string word tags t)))
7643 (idlwave-substitute-link-target main target)
7644 main)))) ;; setting dynamic!!!
7645 (t (error "This should not happen")))))
7646
7647 (defun idlwave-split-link-target (link)
7648 "Split a given LINK into link file and anchor."
7649 (if (string-match idlwave-html-link-sep link)
7650 (cons (substring link 0 (match-beginning 0))
7651 (string-to-number (substring link (match-end 0))))))
7652
7653 (defun idlwave-substitute-link-target (link target)
7654 "Substitute the TARGET anchor for the given LINK."
7655 (let (main-base)
7656 (setq main-base (if (string-match "#" link)
7657 (substring link 0 (match-beginning 0))
7658 link))
7659 (if target
7660 (concat main-base idlwave-html-link-sep (number-to-string target))
7661 link)))
7662
7663 ;; Fake help in the source buffer for class structure tags.
7664 ;; IDLW-HELP-LINK AND IDLW-HELP-NAME ARE GLOBAL-VARIABLES HERE.
7665 ;; (from idlwave-do-mouse-completion-help)
7666 (defvar idlw-help-name)
7667 (defvar idlw-help-link)
7668 (defvar idlwave-help-do-class-struct-tag nil)
7669 (defun idlwave-complete-class-structure-tag-help (mode word)
7670 (cond
7671 ((eq mode 'test) ; nothing gets fontified for class tags
7672 nil)
7673 ((eq mode 'set)
7674 (let (class-with found-in)
7675 (when (setq class-with
7676 (idlwave-class-or-superclass-with-tag
7677 idlwave-current-tags-class
7678 word))
7679 (if (assq (idlwave-sintern-class class-with)
7680 idlwave-system-class-info)
7681 (error "No help available for system class tags"))
7682 (if (setq found-in (idlwave-class-found-in class-with))
7683 (setq idlw-help-name (cons (concat found-in "__define") class-with))
7684 (setq idlw-help-name (concat class-with "__define")))))
7685 (setq idlw-help-link word
7686 idlwave-help-do-class-struct-tag t))
7687 (t (error "This should not happen"))))
7688
7689 (defun idlwave-class-or-superclass-with-tag (class tag)
7690 "Find and return the CLASS or one of its superclass with the
7691 associated TAG, if any."
7692 (let ((sclasses (cons class (idlwave-all-class-inherits class)))
7693 cl)
7694 (catch 'exit
7695 (while sclasses
7696 (setq cl (pop sclasses))
7697 (let ((tags (idlwave-class-tags cl)))
7698 (while tags
7699 (if (eq t (compare-strings tag 0 nil (car tags) 0 nil t))
7700 (throw 'exit cl))
7701 (setq tags (cdr tags))))))))
7702
7703
7704 (defun idlwave-sysvars-reset ()
7705 (if (and (fboundp 'idlwave-shell-is-running)
7706 (idlwave-shell-is-running)
7707 idlwave-idlwave_routine_info-compiled)
7708 (idlwave-shell-send-command "idlwave_get_sysvars"
7709 'idlwave-process-sysvars 'hide)))
7710
7711 (defun idlwave-process-sysvars ()
7712 (idlwave-shell-filter-sysvars)
7713 (setq idlwave-sint-sysvars nil
7714 idlwave-sint-sysvartags nil)
7715 (idlwave-sintern-sysvar-alist))
7716
7717 (defun idlwave-sintern-sysvar-alist ()
7718 (let ((list idlwave-system-variables-alist) entry tags)
7719 (while (setq entry (pop list))
7720 (setcar entry (idlwave-sintern-sysvar (car entry) 'set))
7721 (setq tags (assq 'tags entry))
7722 (if tags
7723 (setcdr tags
7724 (mapcar (lambda (x)
7725 (cons (idlwave-sintern-sysvartag (car x) 'set)
7726 (cdr x)))
7727 (cdr tags)))))))
7728
7729 (defvar idlwave-shell-command-output)
7730 (defun idlwave-shell-filter-sysvars ()
7731 "Get any new system variables and tags."
7732 (let ((text idlwave-shell-command-output)
7733 (start 0)
7734 (old idlwave-system-variables-alist)
7735 var tags type name class link old-entry)
7736 (setq idlwave-system-variables-alist nil)
7737 (while (string-match "^IDLWAVE-SYSVAR: !\\([a-zA-Z0-9_$]+\\)\\( \\(.*\\)\\)?"
7738 text start)
7739 (setq start (match-end 0)
7740 var (match-string 1 text)
7741 tags (if (match-end 3)
7742 (idlwave-split-string (match-string 3 text))))
7743 ;; Maintain old links, if present
7744 (setq old-entry (assq (idlwave-sintern-sysvar var) old))
7745 (setq link (assq 'link old-entry))
7746 (setq idlwave-system-variables-alist
7747 (cons (list var
7748 (cons
7749 'tags
7750 (mapcar (lambda (x)
7751 (cons x
7752 (cdr (assq
7753 (idlwave-sintern-sysvartag x)
7754 (cdr (assq 'tags old-entry))))))
7755 tags)) link)
7756 idlwave-system-variables-alist)))
7757 ;; Keep the old value if query was not successful
7758 (setq idlwave-system-variables-alist
7759 (or idlwave-system-variables-alist old))))
7760
7761 (defun idlwave-completion-fontify-classes ()
7762 "Goto the *Completions* buffer and fontify the class info."
7763 (when (featurep 'font-lock)
7764 (with-current-buffer "*Completions*"
7765 (save-excursion
7766 (goto-char (point-min))
7767 (let ((buffer-read-only nil))
7768 (while (re-search-forward "\\.*<[^>]+>" nil t)
7769 (put-text-property (match-beginning 0) (match-end 0)
7770 'face 'font-lock-string-face)))))))
7771
7772 (defun idlwave-uniquify (list)
7773 (let ((ht (make-hash-table :size (length list) :test 'equal)))
7774 (delq nil
7775 (mapcar (lambda (x)
7776 (unless (gethash x ht)
7777 (puthash x t ht)
7778 x))
7779 list))))
7780
7781 (defun idlwave-after-successful-completion (type slash &optional verify)
7782 "Add `=' or `(' after successful completion of keyword and function.
7783 Restore the pre-completion window configuration if possible."
7784 (cond
7785 ((eq type 'procedure)
7786 nil)
7787 ((eq type 'function)
7788 (cond
7789 ((equal idlwave-function-completion-adds-paren nil) nil)
7790 ((or (equal idlwave-function-completion-adds-paren t)
7791 (equal idlwave-function-completion-adds-paren 1))
7792 (insert "("))
7793 ((equal idlwave-function-completion-adds-paren 2)
7794 (insert "()")
7795 (backward-char 1))
7796 (t nil)))
7797 ((eq type 'keyword)
7798 (if (and idlwave-keyword-completion-adds-equal
7799 (not slash))
7800 (progn (insert "=") t)
7801 nil)))
7802
7803 ;; Restore the pre-completion window configuration if this is safe.
7804
7805 (if (or (eq verify 'force) ; force
7806 (and
7807 (get-buffer-window "*Completions*") ; visible
7808 (idlwave-local-value 'idlwave-completion-p
7809 "*Completions*") ; cib-buffer
7810 (eq (marker-buffer idlwave-completion-mark)
7811 (current-buffer)) ; buffer OK
7812 (equal (marker-position idlwave-completion-mark)
7813 verify))) ; pos OK
7814 (idlwave-restore-wconf-after-completion))
7815 (move-marker idlwave-completion-mark nil)
7816 (setq idlwave-before-completion-wconf nil))
7817
7818 (defun idlwave-mouse-context-help (ev &optional arg)
7819 "Call `idlwave-context-help' on the clicked location."
7820 (interactive "eP")
7821 (mouse-set-point ev)
7822 (idlwave-context-help arg))
7823
7824 (defvar idlwave-last-context-help-pos nil)
7825 (defun idlwave-context-help (&optional arg)
7826 "Display IDL Online Help on context.
7827 If point is on a keyword, help for that keyword will be shown. If
7828 point is on a routine name or in the argument list of a routine, help
7829 for that routine will be displayed. Works for system routines and
7830 keywords, it pulls up text help. For other routines and keywords,
7831 visits the source file, finding help in the header (if
7832 `idlwave-help-source-try-header' is non-nil) or the routine definition
7833 itself."
7834 (interactive "P")
7835 (idlwave-do-context-help arg))
7836
7837 (defun idlwave-mouse-completion-help (ev)
7838 "Display online help about the completion at point."
7839 (interactive "eP")
7840 ;; Restore last-command for next command, to make
7841 ;; scrolling/canceling of completions work.
7842 (setq this-command last-command)
7843 (idlwave-do-mouse-completion-help ev))
7844
7845 (defun idlwave-routine-info (&optional arg external)
7846 "Display a routines calling sequence and list of keywords.
7847 When point is on the name a function or procedure, or in the argument
7848 list of a function or procedure, this command displays a help buffer with
7849 the information. When called with prefix arg, enforce class query.
7850
7851 When point is on an object operator `->', display the class stored in
7852 this arrow, if any (see `idlwave-store-inquired-class'). With a prefix
7853 arg, the class property is cleared out."
7854
7855 (interactive "P")
7856 (idlwave-routines)
7857 (if (string-match "->" (buffer-substring
7858 (max (point-min) (1- (point)))
7859 (min (+ 2 (point)) (point-max))))
7860 ;; Cursor is on an arrow
7861 (if (get-text-property (point) 'idlwave-class)
7862 ;; arrow has class property
7863 (if arg
7864 ;; Remove property
7865 (save-excursion
7866 (backward-char 1)
7867 (when (looking-at ".?\\(->\\)")
7868 (remove-text-properties (match-beginning 1) (match-end 1)
7869 '(idlwave-class nil face nil))
7870 (message "Class property removed from arrow")))
7871 ;; Echo class property
7872 (message "Arrow has text property identifying object to be class %s"
7873 (get-text-property (point) 'idlwave-class)))
7874 ;; No property found
7875 (message "Arrow has no class text property"))
7876
7877 ;; Not on an arrow...
7878 (let* ((idlwave-query-class nil)
7879 (idlwave-force-class-query (equal arg '(4)))
7880 (module (idlwave-what-module)))
7881 (if (car module)
7882 (apply 'idlwave-display-calling-sequence
7883 (idlwave-fix-module-if-obj_new module))
7884 (error "Don't know which calling sequence to show")))))
7885
7886 (defun idlwave-resolve (&optional arg)
7887 "Call RESOLVE_ROUTINE on the module name at point.
7888 Like `idlwave-routine-info', this looks for a routine call at point.
7889 After confirmation in the minibuffer, it will use the shell to issue
7890 a RESOLVE call for this routine, to attempt to make it defined and its
7891 routine info available for IDLWAVE. If the routine is a method call,
7892 both `class__method' and `class__define' will be tried.
7893 With ARG, enforce query for the class of object methods."
7894 (interactive "P")
7895 (let* ((idlwave-query-class nil)
7896 (idlwave-force-class-query (equal arg '(4)))
7897 (module (idlwave-what-module))
7898 (name (idlwave-make-full-name (nth 2 module) (car module)))
7899 (type (if (eq (nth 1 module) 'pro) "pro" "function"))
7900 (resolve (read-string "Resolve: " (format "%s %s" type name)))
7901 (kwd "")
7902 class)
7903 (if (string-match "\\(pro\\|function\\)[ \t]+\\(\\(.*\\)::\\)?\\(.*\\)"
7904 resolve)
7905 (setq type (match-string 1 resolve)
7906 class (if (match-beginning 2)
7907 (match-string 3 resolve)
7908 nil)
7909 name (match-string 4 resolve)))
7910 (if (string= (downcase type) "function")
7911 (setq kwd ",/is_function"))
7912
7913 (cond
7914 ((null class)
7915 (idlwave-shell-send-command
7916 (format "resolve_routine,'%s'%s" (downcase name) kwd)
7917 'idlwave-update-routine-info
7918 nil t))
7919 (t
7920 (idlwave-shell-send-command
7921 (format "resolve_routine,'%s__define'%s" (downcase class) kwd)
7922 (list 'idlwave-shell-send-command
7923 (format "resolve_routine,'%s__%s'%s"
7924 (downcase class) (downcase name) kwd)
7925 '(idlwave-update-routine-info)
7926 nil t))))))
7927
7928 (defun idlwave-find-module-this-file ()
7929 (interactive)
7930 (idlwave-find-module '(4)))
7931
7932 (defun idlwave-find-module (&optional arg)
7933 "Find the source code of an IDL module.
7934 Works for modules for which IDLWAVE has routine info available.
7935 The function offers as default the module name `idlwave-routine-info'
7936 would use. With ARG limit to this buffer. With two prefix ARG's
7937 force class query for object methods."
7938 (interactive "P")
7939 (let* ((idlwave-query-class nil)
7940 (idlwave-force-class-query (equal arg '(16)))
7941 (this-buffer (equal arg '(4)))
7942 (module (idlwave-fix-module-if-obj_new (idlwave-what-module)))
7943 (default (if module
7944 (concat (idlwave-make-full-name
7945 (nth 2 module) (car module))
7946 (if (eq (nth 1 module) 'pro) "<p>" "<f>"))
7947 "none"))
7948 (list
7949 (idlwave-uniquify
7950 (delq nil
7951 (mapcar (lambda (x)
7952 (if (eq 'system (car-safe (nth 3 x)))
7953 ;; Take out system routines with no source.
7954 nil
7955 (list
7956 (concat (idlwave-make-full-name
7957 (nth 2 x) (car x))
7958 (if (eq (nth 1 x) 'pro) "<p>" "<f>")))))
7959 (if this-buffer
7960 (idlwave-save-buffer-update)
7961 (idlwave-routines))))))
7962 (name (idlwave-completing-read
7963 (if (or (not this-buffer)
7964 (assoc default list))
7965 (format "Module (Default %s): " default)
7966 (format "Module in this file: "))
7967 list))
7968 type class)
7969 (if (string-match "\\`\\s-*\\'" name)
7970 ;; Nothing, use the default.
7971 (setq name default))
7972 (if (string-match "<[fp]>" name)
7973 (setq type (substring name -2 -1)
7974 name (substring name 0 -3)))
7975 (if (string-match "\\(.*\\)::\\(.*\\)" name)
7976 (setq class (match-string 1 name)
7977 name (match-string 2 name)))
7978 (setq name (idlwave-sintern-routine-or-method name class)
7979 class (idlwave-sintern-class class)
7980 type (cond ((equal type "f") 'fun)
7981 ((equal type "p") 'pro)
7982 (t t)))
7983 (idlwave-do-find-module name type class nil this-buffer)))
7984
7985 (defun idlwave-do-find-module (name type class
7986 &optional force-source this-buffer)
7987 (let ((name1 (idlwave-make-full-name class name))
7988 source buf1 entry
7989 (buf (current-buffer))
7990 (pos (point))
7991 file name2)
7992 (setq entry (idlwave-best-rinfo-assq name type class (idlwave-routines)
7993 'WITH-FILE)
7994 source (or force-source (nth 3 entry))
7995 name2 (if (nth 2 entry)
7996 (idlwave-make-full-name (nth 2 entry) name)
7997 name1))
7998 (if source
7999 (setq file (idlwave-routine-source-file source)))
8000 (unless file ; Try to find it on the path.
8001 (setq file
8002 (idlwave-expand-lib-file-name
8003 (if class
8004 (format "%s__define.pro" (downcase class))
8005 (format "%s.pro" (downcase name))))))
8006 (cond
8007 ((or (null name) (equal name ""))
8008 (error "Abort"))
8009 ((eq (car source) 'system)
8010 (error "Source code for system routine %s is not available"
8011 name2))
8012 ((or (not file) (not (file-regular-p file)))
8013 (error "Source code for routine %s is not available"
8014 name2))
8015 (t
8016 (when (not this-buffer)
8017 (setq buf1
8018 (idlwave-find-file-noselect file 'find))
8019 (pop-to-buffer buf1 t))
8020 (goto-char (point-max))
8021 (let ((case-fold-search t))
8022 (if (re-search-backward
8023 (concat "^[ \t]*\\<"
8024 (cond ((eq type 'fun) "function")
8025 ((eq type 'pro) "pro")
8026 (t "\\(pro\\|function\\)"))
8027 "\\>[ \t]+"
8028 (regexp-quote (downcase name2))
8029 "[^a-zA-Z0-9_$]")
8030 nil t)
8031 (goto-char (match-beginning 0))
8032 (pop-to-buffer buf)
8033 (goto-char pos)
8034 (error "Could not find routine %s" name2)))))))
8035
8036 (defun idlwave-what-module ()
8037 "Return a default module for stuff near point.
8038 Used by `idlwave-routine-info' and `idlwave-find-module'."
8039 (idlwave-routines)
8040 (if (let ((case-fold-search t))
8041 (save-excursion
8042 (idlwave-beginning-of-statement)
8043 (looking-at "[ \t]*\\(pro\\|function\\)[ \t]+\\(\\([a-zA-Z0-9_$]+\\)::\\)?\\([a-zA-Z0-9$_]+\\)\\([, \t\n]\\|$\\)")))
8044 ;; This is a function or procedure definition statement
8045 ;; We return the defined routine as module.
8046 (list
8047 (idlwave-sintern-routine-or-method (match-string-no-properties 4)
8048 (match-string-no-properties 2))
8049 (if (equal (downcase (match-string 1)) "pro") 'pro 'fun)
8050 (idlwave-sintern-class (match-string 3)))
8051
8052 ;; Not a definition statement - analyze precise position.
8053 (let* ((where (idlwave-where))
8054 (cw (nth 2 where))
8055 (pro (car (nth 0 where)))
8056 (func (car (nth 1 where)))
8057 (this-word (idlwave-this-word "a-zA-Z0-9$_"))
8058 (next-char (save-excursion (skip-chars-forward "a-zA-Z0-9$_")
8059 (following-char)))
8060 )
8061 (cond
8062 ((and (eq cw 'procedure)
8063 (not (equal this-word "")))
8064 (setq this-word (idlwave-sintern-routine-or-method
8065 this-word (nth 2 (nth 3 where))))
8066 (list this-word 'pro
8067 (idlwave-determine-class
8068 (cons this-word (cdr (nth 3 where)))
8069 'pro)))
8070 ((and (eq cw 'function)
8071 (not (equal this-word ""))
8072 (or (eq next-char ?\() ; exclude arrays, vars.
8073 (looking-at "[a-zA-Z0-9_]*[ \t]*(")))
8074 (setq this-word (idlwave-sintern-routine-or-method
8075 this-word (nth 2 (nth 3 where))))
8076 (list this-word 'fun
8077 (idlwave-determine-class
8078 (cons this-word (cdr (nth 3 where)))
8079 'fun)))
8080 ((and (memq cw '(function-keyword procedure-keyword))
8081 (not (equal this-word ""))
8082 (eq next-char ?\()) ; A function!
8083 (setq this-word (idlwave-sintern-routine this-word))
8084 (list this-word 'fun nil))
8085 (func
8086 (list func 'fun (idlwave-determine-class (nth 1 where) 'fun)))
8087 (pro
8088 (list pro 'pro (idlwave-determine-class (nth 0 where) 'pro)))
8089 (t nil)))))
8090
8091 (defun idlwave-what-module-find-class ()
8092 "Call `idlwave-what-module' and find the inherited class if necessary."
8093 (let* ((module (idlwave-what-module))
8094 (class (nth 2 module)))
8095 (if (and (= (length module) 3)
8096 (stringp class))
8097 (list (car module)
8098 (nth 1 module)
8099 (apply 'idlwave-find-inherited-class module))
8100 module)))
8101
8102 (defun idlwave-find-inherited-class (name type class)
8103 "Find the class which defines TYPE NAME and is CLASS or inherited by CLASS."
8104 (let ((entry (idlwave-best-rinfo-assoc name type class (idlwave-routines))))
8105 (if entry
8106 (nth 2 entry)
8107 class)))
8108
8109 (defun idlwave-fix-module-if-obj_new (module)
8110 "Check if MODULE points to obj_new.
8111 If yes, and if the cursor is in the keyword region, change to the
8112 appropriate Init method."
8113 (let* ((name (car module))
8114 (pos (point))
8115 (case-fold-search t)
8116 string)
8117 (if (and (stringp name)
8118 (equal (downcase name) "obj_new")
8119 (save-excursion
8120 (idlwave-beginning-of-statement)
8121 (setq string (buffer-substring (point) pos))
8122 (string-match "obj_new([^'\"]*['\"]\\([a-zA-Z0-9_]+\\)"
8123 string)))
8124 (let ((name "Init")
8125 (class (match-string 1 string)))
8126 (setq module (list (idlwave-sintern-method "Init")
8127 'fun
8128 (idlwave-sintern-class class)))))
8129 module))
8130
8131 (defun idlwave-fix-keywords (name type class keywords
8132 &optional super-classes system)
8133 "Update a list of keywords.
8134 Translate OBJ_NEW, adding all super-class keywords, or all keywords
8135 from all classes if CLASS equals t. If SYSTEM is non-nil, don't
8136 demand _EXTRA in the keyword list."
8137 (let ((case-fold-search t))
8138
8139 ;; If this is the OBJ_NEW function, try to figure out the class and use
8140 ;; the keywords from the corresponding INIT method.
8141 (if (and (equal (upcase name) "OBJ_NEW")
8142 (derived-mode-p 'idlwave-mode 'idlwave-shell-mode))
8143 (let* ((bos (save-excursion (idlwave-beginning-of-statement) (point)))
8144 (string (buffer-substring bos (point)))
8145 (case-fold-search t)
8146 class)
8147 (and (string-match "obj_new([^'\"]*['\"]\\([a-zA-Z0-9_]+\\)"
8148 string)
8149 (setq class (idlwave-sintern-class (match-string 1 string)))
8150 (setq idlwave-current-obj_new-class class)
8151 (setq keywords
8152 (append keywords
8153 (idlwave-entry-keywords
8154 (idlwave-rinfo-assq
8155 (idlwave-sintern-method "INIT")
8156 'fun
8157 class
8158 (idlwave-routines)) 'do-link))))))
8159
8160 ;; If the class is `t', combine all keywords of all methods NAME
8161 (when (eq class t)
8162 (mapc (lambda (entry)
8163 (and
8164 (nth 2 entry) ; non-nil class
8165 (eq (nth 1 entry) type) ; correct type
8166 (setq keywords
8167 (append keywords
8168 (idlwave-entry-keywords entry 'do-link)))))
8169 (idlwave-all-assq name (idlwave-routines)))
8170 (setq keywords (idlwave-uniquify keywords)))
8171
8172 ;; If we have inheritance, add all keywords from superclasses, if
8173 ;; the user indicated that method in `idlwave-keyword-class-inheritance'
8174 (when (and
8175 super-classes
8176 idlwave-keyword-class-inheritance
8177 (stringp class)
8178 (or
8179 system
8180 (assq (idlwave-sintern-keyword "_extra") keywords)
8181 (assq (idlwave-sintern-keyword "_ref_extra") keywords))
8182 ;; Check if one of the keyword-class regexps matches the name
8183 (let ((regexps idlwave-keyword-class-inheritance) re)
8184 (catch 'exit
8185 (while (setq re (pop regexps))
8186 (if (string-match re name) (throw 'exit t))))))
8187
8188 (loop for entry in (idlwave-routines) do
8189 (and (nth 2 entry) ; non-nil class
8190 (memq (nth 2 entry) super-classes) ; an inherited class
8191 (eq (nth 1 entry) type) ; correct type
8192 (eq (car entry) name) ; correct name
8193 (mapc (lambda (k) (add-to-list 'keywords k))
8194 (idlwave-entry-keywords entry 'do-link))))
8195 (setq keywords (idlwave-uniquify keywords)))
8196
8197 ;; Return the final list
8198 keywords))
8199
8200 (defun idlwave-expand-keyword (keyword module)
8201 "Expand KEYWORD to one of the valid keyword parameters of MODULE.
8202 KEYWORD may be an exact match or an abbreviation of a keyword.
8203 If the match is exact, KEYWORD itself is returned, even if there may be other
8204 keywords of which KEYWORD is an abbreviation. This is necessary because some
8205 system routines have keywords which are prefixes of other keywords.
8206 If KEYWORD is an abbreviation of several keywords, a list of all possible
8207 completions is returned.
8208 If the abbreviation was unique, the correct keyword is returned.
8209 If it cannot be a keyword, the function return nil.
8210 If we do not know about MODULE, just return KEYWORD literally."
8211 (let* ((name (car module))
8212 (type (nth 1 module))
8213 (class (nth 2 module))
8214 (kwd (idlwave-sintern-keyword keyword))
8215 (entry (idlwave-best-rinfo-assoc name type class (idlwave-routines)))
8216 (kwd-alist (idlwave-entry-keywords entry))
8217 (extra (or (assq (idlwave-sintern-keyword "_EXTRA") kwd-alist)
8218 (assq (idlwave-sintern-keyword "_REF_EXTRA") kwd-alist)))
8219 (completion-ignore-case t)
8220 candidates)
8221 (cond ((assq kwd kwd-alist)
8222 kwd)
8223 ((setq candidates (all-completions kwd kwd-alist))
8224 (if (= (length candidates) 1)
8225 (car candidates)
8226 candidates))
8227 ((and entry extra)
8228 ;; Inheritance may cause this keyword to be correct
8229 keyword)
8230 (entry
8231 ;; We do know the function, which does not have the keyword.
8232 nil)
8233 (t
8234 ;; We do not know the function, so this just might be a correct
8235 ;; keyword - return it as it is.
8236 keyword))))
8237
8238 (defvar idlwave-rinfo-mouse-map
8239 (let ((map (make-sparse-keymap)))
8240 (define-key map
8241 (if (featurep 'xemacs) [button2] [mouse-2])
8242 'idlwave-mouse-active-rinfo)
8243 (define-key map
8244 (if (featurep 'xemacs) [(shift button2)] [(shift mouse-2)])
8245 'idlwave-mouse-active-rinfo-shift)
8246 (define-key map
8247 (if (featurep 'xemacs) [button3] [mouse-3])
8248 'idlwave-mouse-active-rinfo-right)
8249 (define-key map " " 'idlwave-active-rinfo-space)
8250 (define-key map "q" 'idlwave-quit-help)
8251 map))
8252
8253 (defvar idlwave-rinfo-map
8254 (let ((map (make-sparse-keymap)))
8255 (define-key map "q" 'idlwave-quit-help)
8256 map))
8257
8258 (defvar idlwave-popup-source nil)
8259 (defvar idlwave-rinfo-marker (make-marker))
8260
8261 (defun idlwave-quit-help ()
8262 (interactive)
8263 (let ((ri-window (get-buffer-window "*Help*"))
8264 (olh-window (get-buffer-window "*IDLWAVE Help*")))
8265 (when (and olh-window
8266 (fboundp 'idlwave-help-quit))
8267 (select-window olh-window)
8268 (idlwave-help-quit))
8269 (when (window-live-p ri-window)
8270 (delete-window ri-window))))
8271
8272 (defun idlwave-display-calling-sequence (name type class
8273 &optional initial-class)
8274 ;; Display the calling sequence of module NAME, type TYPE in class CLASS.
8275 (let* ((initial-class (or initial-class class))
8276 (entry (or (idlwave-best-rinfo-assq name type class
8277 (idlwave-routines))
8278 (idlwave-rinfo-assq name type class
8279 idlwave-unresolved-routines)))
8280 (name (or (car entry) name))
8281 (class (or (nth 2 entry) class))
8282 (superclasses (idlwave-all-class-inherits initial-class))
8283 (twins (idlwave-routine-twins entry))
8284 (dtwins (idlwave-study-twins twins))
8285 (all dtwins)
8286 (system (eq (car (nth 3 entry)) 'system))
8287 (calling-seq (nth 4 entry))
8288 (keywords (idlwave-entry-keywords entry 'do-link))
8289 (html-file (car (nth 5 entry)))
8290 (help-echo-kwd
8291 "Button2: Insert KEYWORD (SHIFT=`/KEYWORD') | Button3: Online Help ")
8292 (help-echo-use
8293 "Button2/3: Online Help")
8294 (help-echo-src
8295 "Button2: Jump to source and back | Button3: Source in Help window.")
8296 (help-echo-class
8297 "Button2: Display info about same method in superclass")
8298 (col 0)
8299 (data (list name type class (current-buffer) nil initial-class))
8300 (km-prop (if (featurep 'xemacs) 'keymap 'local-map))
8301 (face 'idlwave-help-link)
8302 beg props win cnt total)
8303 ;; Fix keywords, but don't add chained super-classes, since these
8304 ;; are shown separately for that super-class
8305 (setq keywords (idlwave-fix-keywords name type class keywords))
8306 (cond
8307 ((null entry)
8308 (error "No %s %s known %s" type name
8309 (if initial-class (concat "in class " initial-class) "")))
8310 ((or (null name) (equal name ""))
8311 (error "No function or procedure call at point"))
8312 ((null calling-seq)
8313 (error "Calling sequence of %s %s not available" type name))
8314 (t
8315 (move-marker idlwave-rinfo-marker (point))
8316 (with-current-buffer (get-buffer-create "*Help*")
8317 (use-local-map idlwave-rinfo-map)
8318 (setq buffer-read-only nil)
8319 (erase-buffer)
8320 (set (make-local-variable 'idlwave-popup-source) nil)
8321 (set (make-local-variable 'idlwave-current-obj_new-class)
8322 idlwave-current-obj_new-class)
8323 (when superclasses
8324 (setq props (list 'mouse-face 'highlight
8325 km-prop idlwave-rinfo-mouse-map
8326 'help-echo help-echo-class
8327 'data (cons 'class data)))
8328 (let ((classes (cons initial-class superclasses)) c)
8329 (insert "Classes: ")
8330 (while (setq c (pop classes))
8331 (insert " ")
8332 (setq beg (point))
8333 (insert c)
8334 (if (equal (downcase c) (downcase class))
8335 (add-text-properties beg (point) (list 'face 'bold))
8336 ;; If Method exists in a different class link it
8337 (if (idlwave-rinfo-assq name type c (idlwave-routines))
8338 (add-text-properties beg (point) props))))
8339 (insert "\n")))
8340 (setq props (list 'mouse-face 'highlight
8341 km-prop idlwave-rinfo-mouse-map
8342 'help-echo help-echo-use
8343 'data (cons 'usage data)))
8344 (if html-file (setq props (append (list 'face face 'link html-file)
8345 props)))
8346 (insert "Usage: ")
8347 (setq beg (point))
8348 (insert (if class
8349 (format calling-seq class name class name class name)
8350 (format calling-seq name name name name))
8351 "\n")
8352 (add-text-properties beg (point) props)
8353
8354 (insert "Keywords:")
8355 (if (null keywords)
8356 (insert " No keywords accepted.")
8357 (setq col 9)
8358 (mapc
8359 (lambda (x)
8360 (if (>= (+ col 1 (length (car x)))
8361 (window-width))
8362 (progn
8363 (insert "\n ")
8364 (setq col 9)))
8365 (insert " ")
8366 (setq beg (point)
8367 ;; Relevant keywords already have link property attached
8368 props (list 'mouse-face 'highlight
8369 km-prop idlwave-rinfo-mouse-map
8370 'data (cons 'keyword data)
8371 'help-echo help-echo-kwd
8372 'keyword (car x)))
8373 (if system (setq props (append (list 'face face) props)))
8374 (insert (car x))
8375 (add-text-properties beg (point) props)
8376 (setq col (+ col 1 (length (car x)))))
8377 keywords))
8378
8379 (setq cnt 1 total (length all))
8380 ;; Here entry is (key file (list of type-conses))
8381 (while (setq entry (pop all))
8382 (setq props (list 'mouse-face 'highlight
8383 km-prop idlwave-rinfo-mouse-map
8384 'help-echo help-echo-src
8385 'source (list (car (car (nth 2 entry))) ;type
8386 (nth 1 entry)
8387 nil
8388 (cdr (car (nth 2 entry))))
8389 'data (cons 'source data)))
8390 (idlwave-insert-source-location
8391 (format "\n%-8s %s"
8392 (if (equal cnt 1)
8393 (if (> total 1) "Sources:" "Source:")
8394 "")
8395 (if (> total 1) "- " ""))
8396 entry props)
8397 (incf cnt)
8398 (when (and all (> cnt idlwave-rinfo-max-source-lines))
8399 ;; No more source lines, please
8400 (insert (format
8401 "\n Source information truncated to %d entries."
8402 idlwave-rinfo-max-source-lines))
8403 (setq all nil)))
8404 (goto-char (point-min))
8405 (setq buffer-read-only t))
8406 (display-buffer "*Help*")
8407 (if (and (setq win (get-buffer-window "*Help*"))
8408 idlwave-resize-routine-help-window)
8409 (progn
8410 (let ((ww (selected-window)))
8411 (unwind-protect
8412 (progn
8413 (select-window win)
8414 (enlarge-window (- (/ (frame-height) 2)
8415 (window-height)))
8416 (shrink-window-if-larger-than-buffer))
8417 (select-window ww)))))))))
8418
8419 (defun idlwave-insert-source-location (prefix entry &optional file-props)
8420 "Insert a source location into the routine info buffer.
8421 Start line with PREFIX. If a file name is inserted, add FILE-PROPS
8422 to it."
8423 (let* ((key (car entry))
8424 (file (nth 1 entry))
8425 (types (nth 2 entry))
8426 (shell-flag (assq 'compiled types))
8427 (buffer-flag (assq 'buffer types))
8428 (user-flag (assq 'user types))
8429 (lib-flag (assq 'lib types))
8430 (ndupl (or (and buffer-flag (idlwave-count-memq 'buffer types))
8431 (and user-flag (idlwave-count-memq 'user types))
8432 (and lib-flag (idlwave-count-memq 'lib types))
8433 1))
8434 (doflags t)
8435 beg special)
8436
8437 (insert prefix)
8438
8439 (cond
8440 ((eq key 'system)
8441 (setq doflags nil)
8442 (insert "System "))
8443
8444 ((eq key 'builtin)
8445 (setq doflags nil)
8446 (insert "Builtin "))
8447
8448 ((and (not file) shell-flag)
8449 (insert "Unresolved"))
8450
8451 ((null file)
8452 (insert "ERROR"))
8453
8454 ((idlwave-syslib-p file)
8455 (if (string-match "obsolete" (file-name-directory file))
8456 (insert "Obsolete ")
8457 (insert "SystemLib ")))
8458
8459 ;; New special syntax: taken directly from routine-info for
8460 ;; library catalog routines
8461 ((setq special (or (cdr lib-flag) (cdr user-flag)))
8462 (insert (format "%-10s" special)))
8463
8464 ;; Old special syntax: a matching regexp
8465 ((setq special (idlwave-special-lib-test file))
8466 (insert (format "%-10s" special)))
8467
8468 ;; Catch-all with file
8469 ((idlwave-lib-p file) (insert "Library "))
8470
8471 ;; Sanity catch all
8472 (t (insert "Other ")))
8473
8474 (when doflags
8475 (insert (concat
8476 " ["
8477 (if lib-flag "L" "-")
8478 (if user-flag "C" "-")
8479 (if shell-flag "S" "-")
8480 (if buffer-flag "B" "-")
8481 "] ")))
8482 (when (> ndupl 1)
8483 (setq beg (point))
8484 (insert (format "(%dx) " ndupl))
8485 (add-text-properties beg (point) (list 'face 'bold)))
8486 (when (and file (not (equal file "")))
8487 (setq beg (point))
8488 (insert (apply 'abbreviate-file-name
8489 (if (featurep 'xemacs) (list file t) (list file))))
8490 (if file-props
8491 (add-text-properties beg (point) file-props)))))
8492
8493 (defun idlwave-special-lib-test (file)
8494 "Check the path of FILE against the regexps which define special libs.
8495 Return the name of the special lib if there is a match."
8496 (let ((alist idlwave-special-lib-alist)
8497 entry rtn)
8498 (cond
8499 ((stringp file)
8500 (while (setq entry (pop alist))
8501 (if (string-match (car entry) file)
8502 (setq rtn (cdr entry)
8503 alist nil)))
8504 rtn)
8505 (t nil))))
8506
8507 (defun idlwave-mouse-active-rinfo-right (ev)
8508 (interactive "e")
8509 (idlwave-mouse-active-rinfo ev 'right))
8510
8511 (defun idlwave-mouse-active-rinfo-shift (ev)
8512 (interactive "e")
8513 (idlwave-mouse-active-rinfo ev nil 'shift))
8514
8515 (defun idlwave-active-rinfo-space ()
8516 (interactive)
8517 (idlwave-mouse-active-rinfo nil 'right))
8518
8519 (defun idlwave-mouse-active-rinfo (ev &optional right shift)
8520 "Do the mouse actions in the routine info buffer.
8521 Optional args RIGHT and SHIFT indicate, if mouse-3 was used, and if SHIFT
8522 was pressed."
8523 (interactive "e")
8524 (if ev (mouse-set-point ev))
8525 (let (data id name type class buf bufwin source link keyword
8526 word initial-class)
8527 (setq data (get-text-property (point) 'data)
8528 source (get-text-property (point) 'source)
8529 keyword (get-text-property (point) 'keyword)
8530 link (get-text-property (point) 'link)
8531 id (car data)
8532 name (nth 1 data) type (nth 2 data) class (nth 3 data)
8533 buf (nth 4 data)
8534 initial-class (nth 6 data)
8535 word (idlwave-this-word)
8536 bufwin (get-buffer-window buf t))
8537
8538 (cond ((eq id 'class) ; Switch class being displayed
8539 (if (window-live-p bufwin) (select-window bufwin))
8540 (idlwave-display-calling-sequence
8541 (idlwave-sintern-method name)
8542 type (idlwave-sintern-class word)
8543 initial-class))
8544 ((eq id 'usage) ; Online help on this routine
8545 (idlwave-online-help link name type class))
8546 ((eq id 'source) ; Source in help or buffer
8547 (if right ; In help
8548 (let ((idlwave-extra-help-function 'idlwave-help-with-source)
8549 (idlwave-help-source-try-header nil)
8550 ;; Fake idlwave-routines so help will find the right entry
8551 (idlwave-routines
8552 (list (list name type class source ""))))
8553 (idlwave-help-get-special-help name type class nil))
8554 ;; Otherwise just pop to the source
8555 (setq idlwave-popup-source (not idlwave-popup-source))
8556 (if idlwave-popup-source
8557 (condition-case err
8558 (idlwave-do-find-module name type class source)
8559 (error
8560 (setq idlwave-popup-source nil)
8561 (if (window-live-p bufwin) (select-window bufwin))
8562 (error (nth 1 err))))
8563 (if bufwin
8564 (select-window bufwin)
8565 (pop-to-buffer buf))
8566 (goto-char (marker-position idlwave-rinfo-marker)))))
8567 ((eq id 'keyword)
8568 (if right
8569 (idlwave-online-help link name type class keyword)
8570 (idlwave-rinfo-insert-keyword keyword buf shift))))))
8571
8572 (defun idlwave-rinfo-insert-keyword (keyword buffer &optional shift)
8573 "Insert KEYWORD in BUFFER. Make sure buffer is displayed in a window."
8574 (let ((bwin (get-buffer-window buffer)))
8575 (if idlwave-complete-empty-string-as-lower-case
8576 (setq keyword (downcase keyword)))
8577 (if bwin
8578 (select-window bwin)
8579 (pop-to-buffer buffer)
8580 (setq bwin (get-buffer-window buffer)))
8581 (if (eq (preceding-char) ?/)
8582 (insert keyword)
8583 (unless (save-excursion
8584 (re-search-backward
8585 "[(,][ \t]*\\(\\$[ \t]*\\(;.*\\)?\n\\)?[ \t]*\\="
8586 (min (- (point) 100) (point-min)) t))
8587 (insert ", "))
8588 (if shift (insert "/"))
8589 (insert keyword)
8590 (if (and (not shift)
8591 idlwave-keyword-completion-adds-equal)
8592 (insert "=")))))
8593
8594 (defun idlwave-list-buffer-load-path-shadows (&optional arg)
8595 "List the load path shadows of all routines defined in current buffer."
8596 (interactive "P")
8597 (idlwave-routines)
8598 (if (derived-mode-p 'idlwave-mode)
8599 (idlwave-list-load-path-shadows
8600 nil (idlwave-update-current-buffer-info 'save-buffer)
8601 "in current buffer")
8602 (error "Current buffer is not in idlwave-mode")))
8603
8604 (defun idlwave-list-shell-load-path-shadows (&optional arg)
8605 "List the load path shadows of all routines compiled under the shell.
8606 This is very useful for checking an IDL application. Just compile the
8607 application, do RESOLVE_ALL, and `C-c C-i' to compile all referenced
8608 routines and update IDLWAVE internal info. Then check for shadowing
8609 with this command."
8610 (interactive "P")
8611 (cond
8612 ((or (not (fboundp 'idlwave-shell-is-running))
8613 (not (idlwave-shell-is-running)))
8614 (error "Shell is not running"))
8615 ((null idlwave-compiled-routines)
8616 (error "No compiled routines. Maybe you need to update with `C-c C-i'"))
8617 (t
8618 (idlwave-list-load-path-shadows nil idlwave-compiled-routines
8619 "in the shell"))))
8620
8621 (defun idlwave-list-all-load-path-shadows (&optional arg)
8622 "List the load path shadows of all routines known to IDLWAVE."
8623 (interactive "P")
8624 (idlwave-list-load-path-shadows nil nil "globally"))
8625
8626 (defvar idlwave-sort-prefer-buffer-info t
8627 "Internal variable used to influence `idlwave-routine-twin-compare'.")
8628
8629 (defun idlwave-list-load-path-shadows (arg &optional special-routines loc)
8630 "List the routines which are defined multiple times.
8631 Search the information IDLWAVE has about IDL routines for multiple
8632 definitions.
8633 When SPECIAL-ROUTINES in non-nil, only look for shadows of these routines.
8634
8635 When IDL hits a routine call which is not defined, it will search on
8636 the load path in order to find a definition. The output of this command
8637 can be used to detect possible name clashes during this process."
8638 (idlwave-routines) ; Make sure everything is loaded.
8639 (unless (or idlwave-user-catalog-routines idlwave-library-catalog-routines)
8640 (or (y-or-n-p
8641 "You don't have any user or library catalogs. Continue anyway? ")
8642 (error "Abort")))
8643 (let* ((routines (append idlwave-system-routines
8644 idlwave-compiled-routines
8645 idlwave-library-catalog-routines
8646 idlwave-user-catalog-routines
8647 idlwave-buffer-routines
8648 nil))
8649 (km-prop (if (featurep 'xemacs) 'keymap 'local-map))
8650 (keymap (make-sparse-keymap))
8651 (props (list 'mouse-face 'highlight
8652 km-prop keymap
8653 'help-echo "Mouse2: Find source"))
8654 (nroutines (length (or special-routines routines)))
8655 (step (/ nroutines 100))
8656 (n 0)
8657 (cnt 0)
8658 (idlwave-sort-prefer-buffer-info nil)
8659 routine twins dtwins twin done props1 lroutines)
8660
8661 (if special-routines
8662 ;; Just looking for shadows of a few special routines
8663 (setq lroutines routines
8664 routines special-routines))
8665
8666 (message "Sorting routines...")
8667 (setq routines (sort routines
8668 (lambda (a b)
8669 (string< (downcase (idlwave-make-full-name
8670 (nth 2 a) (car a)))
8671 (downcase (idlwave-make-full-name
8672 (nth 2 b) (car b)))))))
8673 (message "Sorting routines...done")
8674
8675 (define-key keymap (if (featurep 'xemacs) [(button2)] [(mouse-2)])
8676 (lambda (ev)
8677 (interactive "e")
8678 (mouse-set-point ev)
8679 (apply 'idlwave-do-find-module
8680 (get-text-property (point) 'find-args))))
8681 (define-key keymap [(return)]
8682 (lambda ()
8683 (interactive)
8684 (apply 'idlwave-do-find-module
8685 (get-text-property (point) 'find-args))))
8686 (message "Compiling list...( 0%%)")
8687 (with-current-buffer (get-buffer-create "*Shadows*")
8688 (setq buffer-read-only nil)
8689 (erase-buffer)
8690 (while (setq routine (pop routines))
8691 (if (= (mod (setq n (1+ n)) step) 0)
8692 (message "Compiling list...(%2d%%)" (/ (* n 100) nroutines)))
8693
8694 ;; Get a list of all twins
8695 (setq twins (idlwave-routine-twins routine (or lroutines routines)))
8696 (if (memq routine done)
8697 (setq dtwins nil)
8698 (setq dtwins (idlwave-study-twins twins)))
8699 ;; Mark all twins as dealt with
8700 (setq done (append twins done))
8701 (when (or (> (length dtwins) 1)
8702 (> (idlwave-count-memq 'lib (nth 2 (car dtwins))) 1)
8703 (> (idlwave-count-memq 'user (nth 2 (car dtwins))) 1)
8704 (> (idlwave-count-memq 'buffer (nth 2 (car dtwins))) 1))
8705 (incf cnt)
8706 (insert (format "\n%s%s"
8707 (idlwave-make-full-name (nth 2 routine)
8708 (car routine))
8709 (if (eq (nth 1 routine) 'fun) "()" "")))
8710 (while (setq twin (pop dtwins))
8711 (setq props1 (append (list 'find-args
8712 (list (nth 0 routine)
8713 (nth 1 routine)
8714 (nth 2 routine)))
8715 props))
8716 (idlwave-insert-source-location "\n - " twin props1))))
8717 (goto-char (point-min))
8718 (setq buffer-read-only t))
8719 (setq loc (or loc ""))
8720 (if (> cnt 0)
8721 (progn
8722 (display-buffer (get-buffer "*Shadows*"))
8723 (message "%d case%s of shadowing found %s"
8724 cnt (if (= cnt 1) "" "s") loc))
8725 (message "No shadowing conflicts found %s" loc))))
8726
8727 (defun idlwave-print-source (routine)
8728 (let* ((source (nth 3 routine))
8729 (stype (car source))
8730 (sfile (idlwave-routine-source-file source)))
8731 (if (idlwave-syslib-p sfile) (setq stype 'syslib))
8732 (if (and (eq stype 'compiled)
8733 (or (not (stringp sfile))
8734 (not (string-match "\\S-" sfile))))
8735 (setq stype 'unresolved))
8736 (princ (format " %-10s %s\n"
8737 stype
8738 (if sfile sfile "No source code available")))))
8739
8740 (defun idlwave-routine-twins (entry &optional list)
8741 "Return all twin entries of ENTRY in LIST.
8742 LIST defaults to `idlwave-routines'.
8743 Twin entries are those which have the same name, type, and class.
8744 ENTRY will also be returned, as the first item of this list."
8745 (let* ((name (car entry))
8746 (type (nth 1 entry))
8747 (class (nth 2 entry))
8748 (candidates (idlwave-all-assq name (or list (idlwave-routines))))
8749 twins candidate)
8750 (while (setq candidate (pop candidates))
8751 (if (and (not (eq candidate entry))
8752 (eq type (nth 1 candidate))
8753 (eq class (nth 2 candidate)))
8754 (push candidate twins)))
8755 (if (setq candidate (idlwave-rinfo-assq name type class
8756 idlwave-unresolved-routines))
8757 (push candidate twins))
8758 (cons entry (nreverse twins))))
8759
8760 (defun idlwave-study-twins (entries)
8761 "Return dangerous twins of first entry in ENTRIES.
8762 Dangerous twins are routines with same name, but in different files on
8763 the load path. If a file is in the system library and has an entry in
8764 the `idlwave-system-routines' list, we omit the latter as
8765 non-dangerous because many IDL routines are implemented as library
8766 routines, and may have been scanned."
8767 (let* ((entry (car entries))
8768 (idlwave-twin-name (car entry)) ;
8769 (type (nth 1 entry)) ; Must be bound for
8770 (idlwave-twin-class (nth 2 entry)) ; idlwave-routine-twin-compare
8771 (cnt 0)
8772 source type type-cons file alist syslibp key)
8773 (while (setq entry (pop entries))
8774 (incf cnt)
8775 (setq source (nth 3 entry)
8776 type (car source)
8777 type-cons (cons type (nth 3 source))
8778 file (idlwave-routine-source-file source))
8779
8780 ;; Make KEY to index entry properly
8781 (setq key (cond ((eq type 'system) type)
8782 (file (file-truename file))
8783 (t 'unresolved)))
8784
8785 ;; Check for an entry in the system library
8786 (if (and file
8787 (not syslibp)
8788 (idlwave-syslib-p file))
8789 (setq syslibp t))
8790
8791 ;; If there's more than one matching entry for the same file, just
8792 ;; append the type-cons to the type list.
8793 (if (setq entry (assoc key alist))
8794 (push type-cons (nth 2 entry))
8795 (push (list key file (list type-cons)) alist)))
8796
8797 (setq alist (nreverse alist))
8798
8799 (when syslibp
8800 ;; File is in system *library* - remove any 'system entry
8801 (setq alist (delq (assq 'system alist) alist)))
8802
8803 ;; If 'system remains and we've scanned the syslib, it's a builtin
8804 ;; (rather than a !DIR/lib/.pro file bundled as source).
8805 (when (and (idlwave-syslib-scanned-p)
8806 (setq entry (assoc 'system alist)))
8807 (setcar entry 'builtin))
8808 (sort alist 'idlwave-routine-twin-compare)))
8809
8810 ;; FIXME: Dynamically scoped vars need to use the `idlwave-' prefix.
8811 ;; (defvar type)
8812 (defmacro idlwave-xor (a b)
8813 `(and (or ,a ,b)
8814 (not (and ,a ,b))))
8815
8816 (defun idlwave-routine-entry-compare (a b)
8817 "Compare two routine info entries for sorting.
8818 This is the general case. It first compares class, names, and type.
8819 If it turns out that A and B are twins (same name, class, and type),
8820 calls another routine which compares twins on the basis of their file
8821 names and path locations."
8822 (let ((name (car a)) (type (nth 1 a)) (class (nth 2 a)))
8823 (cond
8824 ((not (equal (idlwave-downcase-safe class)
8825 (idlwave-downcase-safe (nth 2 b))))
8826 ;; Class decides
8827 (cond ((null (nth 2 b)) nil)
8828 ((null class) t)
8829 (t (string< (downcase class) (downcase (nth 2 b))))))
8830 ((not (equal (downcase name) (downcase (car b))))
8831 ;; Name decides
8832 (string< (downcase name) (downcase (car b))))
8833 ((not (eq type (nth 1 b)))
8834 ;; Type decides
8835 (< (if (eq type 'fun) 1 0) (if (eq (nth 1 b) 'fun) 1 0)))
8836 (t
8837 ;; A and B are twins - so the decision is more complicated.
8838 ;; Call twin-compare with the proper arguments.
8839 (idlwave-routine-entry-compare-twins a b)))))
8840
8841 (defun idlwave-routine-entry-compare-twins (a b)
8842 "Compare two routine entries, under the assumption that they are twins.
8843 This basically calls `idlwave-routine-twin-compare' with the correct args."
8844 (let* ((idlwave-twin-name (car a))
8845 (type (nth 1 a))
8846 (idlwave-twin-class (nth 2 a)) ; used in idlwave-routine-twin-compare
8847 (asrc (nth 3 a))
8848 (atype (car asrc))
8849 (bsrc (nth 3 b))
8850 (btype (car bsrc))
8851 (afile (idlwave-routine-source-file asrc))
8852 (bfile (idlwave-routine-source-file bsrc)))
8853 (idlwave-routine-twin-compare
8854 (if (stringp afile)
8855 (list (file-truename afile) afile (list atype))
8856 (list atype afile (list atype)))
8857 (if (stringp bfile)
8858 (list (file-truename bfile) bfile (list btype))
8859 (list btype bfile (list btype))))))
8860
8861 ;; Bound in idlwave-study-twins,idlwave-routine-entry-compare-twins.
8862 (defvar idlwave-twin-class)
8863 (defvar idlwave-twin-name)
8864
8865 (defun idlwave-routine-twin-compare (a b)
8866 "Compare two routine twin entries for sorting.
8867 In here, A and B are not normal routine info entries, but special
8868 lists (KEY FILENAME (TYPES...)).
8869 This expects NAME TYPE IDLWAVE-TWIN-CLASS to be bound to the right values."
8870 (let* (;; Dis-assemble entries
8871 (akey (car a)) (bkey (car b))
8872 (afile (nth 1 a)) (bfile (nth 1 b))
8873 (atypes (nth 2 a)) (btypes (nth 2 b))
8874 ;; System routines?
8875 (asysp (memq akey '(builtin system)))
8876 (bsysp (memq bkey '(builtin system)))
8877 ;; Compiled routines?
8878 (acompp (memq 'compiled atypes))
8879 (bcompp (memq 'compiled btypes))
8880 ;; Unresolved?
8881 (aunresp (or (eq akey 'unresolved)
8882 (and acompp (not afile))))
8883 (bunresp (or (eq bkey 'unresolved)
8884 (and bcompp (not bfile))))
8885 ;; Buffer info available?
8886 (abufp (memq 'buffer atypes))
8887 (bbufp (memq 'buffer btypes))
8888 ;; On search path?
8889 (tpath-alist (idlwave-true-path-alist))
8890 (apathp (and (stringp akey)
8891 (assoc (file-name-directory akey) tpath-alist)))
8892 (bpathp (and (stringp bkey)
8893 (assoc (file-name-directory bkey) tpath-alist)))
8894 ;; How early on search path? High number means early since we
8895 ;; measure the tail of the path list
8896 (anpath (length (memq apathp tpath-alist)))
8897 (bnpath (length (memq bpathp tpath-alist)))
8898 ;; Look at file names
8899 (aname (if (stringp afile) (downcase (file-name-nondirectory afile)) ""))
8900 (bname (if (stringp bfile) (downcase (file-name-nondirectory bfile)) ""))
8901 (fname-re (if idlwave-twin-class
8902 (format "\\`%s__\\(%s\\|define\\)\\.pro\\'"
8903 (regexp-quote (downcase idlwave-twin-class))
8904 (regexp-quote (downcase idlwave-twin-name)))
8905 (format "\\`%s\\.pro" (regexp-quote (downcase idlwave-twin-name)))))
8906 ;; Is file name derived from the routine name?
8907 ;; Method file or class definition file?
8908 (anamep (string-match fname-re aname))
8909 (adefp (and idlwave-twin-class anamep
8910 (string= "define" (match-string 1 aname))))
8911 (bnamep (string-match fname-re bname))
8912 (bdefp (and idlwave-twin-class bnamep
8913 (string= "define" (match-string 1 bname)))))
8914
8915 ;; Now: follow JD's ideas about sorting. Looks really simple now,
8916 ;; doesn't it? The difficult stuff is hidden above...
8917 (cond
8918 ((idlwave-xor asysp bsysp) asysp) ; System entries first
8919 ((idlwave-xor aunresp bunresp) bunresp) ; Unresolved last
8920 ((and idlwave-sort-prefer-buffer-info
8921 (idlwave-xor abufp bbufp)) abufp) ; Buffers before non-buffers
8922 ((idlwave-xor acompp bcompp) acompp) ; Compiled entries
8923 ((idlwave-xor apathp bpathp) apathp) ; Library before non-library
8924 ((idlwave-xor anamep bnamep) anamep) ; Correct file names first
8925 ((and idlwave-twin-class anamep bnamep ; both file names match ->
8926 (idlwave-xor adefp bdefp)) bdefp) ; __define after __method
8927 ((> anpath bnpath) t) ; Who is first on path?
8928 (t nil)))) ; Default
8929
8930 (defun idlwave-routine-source-file (source)
8931 (if (nth 2 source)
8932 (expand-file-name (nth 1 source) (nth 2 source))
8933 (nth 1 source)))
8934
8935 (defun idlwave-downcase-safe (string)
8936 "Downcase if string, else return unchanged."
8937 (if (stringp string)
8938 (downcase string)
8939 string))
8940
8941 (defun idlwave-count-eq (elt list)
8942 "How often is ELT in LIST?"
8943 (length (delq nil (mapcar (lambda (x) (eq x elt)) list))))
8944
8945 (defun idlwave-count-memq (elt alist)
8946 "How often is ELT a key in ALIST?"
8947 (length (delq nil (mapcar (lambda (x) (eq (car x) elt)) alist))))
8948
8949 (defun idlwave-syslib-p (file)
8950 "Non-nil if FILE is in the system library."
8951 (let* ((true-syslib (file-name-as-directory
8952 (file-truename
8953 (expand-file-name "lib" (idlwave-sys-dir)))))
8954 (true-file (file-truename file)))
8955 (string-match (concat "^" (regexp-quote true-syslib)) true-file)))
8956
8957 (defun idlwave-lib-p (file)
8958 "Non-nil if FILE is in the library."
8959 (let ((true-dir (file-name-directory (file-truename file))))
8960 (assoc true-dir (idlwave-true-path-alist))))
8961
8962 (defun idlwave-path-alist-add-flag (list-entry flag)
8963 "Add a flag to the path list entry, if not set."
8964 (let ((flags (cdr list-entry)))
8965 (add-to-list 'flags flag)
8966 (setcdr list-entry flags)))
8967
8968 (defun idlwave-path-alist-remove-flag (list-entry flag)
8969 "Remove a flag to the path list entry, if set."
8970 (let ((flags (delq flag (cdr list-entry))))
8971 (setcdr list-entry flags)))
8972
8973 (defun idlwave-true-path-alist ()
8974 "Return `idlwave-path-alist' alist with true-names.
8975 Info is cached, but relies on the functions setting `idlwave-path-alist'
8976 to reset the variable `idlwave-true-path-alist' to nil."
8977 (or idlwave-true-path-alist
8978 (setq idlwave-true-path-alist
8979 (mapcar (lambda(x) (cons
8980 (file-name-as-directory
8981 (file-truename
8982 (directory-file-name
8983 (car x))))
8984 (cdr x)))
8985 idlwave-path-alist))))
8986
8987 (defun idlwave-syslib-scanned-p ()
8988 "Non-nil if the system lib file !DIR/lib has been scanned."
8989 (let* ((true-syslib (file-name-as-directory
8990 (file-truename
8991 (expand-file-name "lib" (idlwave-sys-dir))))))
8992 (cdr (assoc true-syslib (idlwave-true-path-alist)))))
8993
8994 ;; ----------------------------------------------------------------------------
8995 ;;
8996 ;; Online Help display
8997
8998
8999 ;; ----------------------------------------------------------------------------
9000 ;;
9001 ;; Additions for use with imenu.el and func-menu.el
9002 ;; (pop-up a list of IDL units in the current file).
9003 ;;
9004
9005 (defun idlwave-prev-index-position ()
9006 "Search for the previous procedure or function.
9007 Return nil if not found. For use with imenu.el."
9008 (save-match-data
9009 (cond
9010 ((idlwave-find-key "\\<\\(pro\\|function\\)\\>" -1 'nomark))
9011 ;; ((idlwave-find-key idlwave-begin-unit-reg 1 'nomark)
9012 (t nil))))
9013
9014 (defun idlwave-unit-name ()
9015 "Return the unit name.
9016 Assumes that point is at the beginning of the unit as found by
9017 `idlwave-prev-index-position'."
9018 (forward-sexp 2)
9019 (forward-sexp -1)
9020 (let ((begin (point)))
9021 (re-search-forward
9022 "[a-zA-Z_][a-zA-Z0-9$_]+\\(::[a-zA-Z_][a-zA-Z0-9$_]+\\)?")
9023 (if (fboundp 'buffer-substring-no-properties)
9024 (buffer-substring-no-properties begin (point))
9025 (buffer-substring begin (point)))))
9026
9027 (defalias 'idlwave-function-menu
9028 (condition-case nil
9029 (progn
9030 (require 'func-menu)
9031 'function-menu)
9032 (error (condition-case nil
9033 (progn
9034 (require 'imenu)
9035 'imenu)
9036 (error nil)))))
9037
9038 ;; Here we hack func-menu.el in order to support this new mode.
9039 ;; The latest versions of func-menu.el already have this stuff in, so
9040 ;; we hack only if it is not already there.
9041 (when (fboundp 'eval-after-load)
9042 (eval-after-load "func-menu"
9043 '(progn
9044 (or (assq 'idlwave-mode fume-function-name-regexp-alist)
9045 (not (boundp 'fume-function-name-regexp-idl)) ; avoid problems
9046 (setq fume-function-name-regexp-alist
9047 (cons '(idlwave-mode . fume-function-name-regexp-idl)
9048 fume-function-name-regexp-alist)))
9049 (or (assq 'idlwave-mode fume-find-function-name-method-alist)
9050 (not (fboundp 'fume-find-next-idl-function-name)) ; avoid problems
9051 (setq fume-find-function-name-method-alist
9052 (cons '(idlwave-mode . fume-find-next-idl-function-name)
9053 fume-find-function-name-method-alist))))))
9054
9055 (defun idlwave-edit-in-idlde ()
9056 "Edit the current file in IDL Development environment."
9057 (interactive)
9058 (start-process "idldeclient" nil
9059 idlwave-shell-explicit-file-name "-c" "-e"
9060 (buffer-file-name)))
9061
9062 (defvar idlwave-help-use-assistant)
9063 (defun idlwave-launch-idlhelp ()
9064 "Start the IDLhelp application."
9065 (interactive)
9066 (if idlwave-help-use-assistant
9067 (idlwave-help-assistant-raise)
9068 (start-process "idlhelp" nil idlwave-help-application)))
9069
9070 ;; Menus - using easymenu.el
9071 (defvar idlwave-mode-menu-def
9072 `("IDLWAVE"
9073 ["PRO/FUNC menu" idlwave-function-menu t]
9074 ("Motion"
9075 ["Subprogram Start" idlwave-beginning-of-subprogram t]
9076 ["Subprogram End" idlwave-end-of-subprogram t]
9077 ["Block Start" idlwave-beginning-of-block t]
9078 ["Block End" idlwave-end-of-block t]
9079 ["Up Block" idlwave-backward-up-block t]
9080 ["Down Block" idlwave-down-block t]
9081 ["Skip Block Backward" idlwave-backward-block t]
9082 ["Skip Block Forward" idlwave-forward-block t])
9083 ("Mark"
9084 ["Subprogram" idlwave-mark-subprogram t]
9085 ["Block" idlwave-mark-block t]
9086 ["Header" idlwave-mark-doclib t])
9087 ("Format"
9088 ["Indent Entire Statement" idlwave-indent-statement
9089 :active t :keys "C-u \\[indent-for-tab-command]" ]
9090 ["Indent Subprogram" idlwave-indent-subprogram t]
9091 ["(Un)Comment Region" idlwave-toggle-comment-region t]
9092 ["Continue/Split line" idlwave-split-line t]
9093 "--"
9094 ["Toggle Auto Fill" idlwave-auto-fill-mode :style toggle
9095 :selected (symbol-value idlwave-fill-function)])
9096 ("Templates"
9097 ["Procedure" idlwave-procedure t]
9098 ["Function" idlwave-function t]
9099 ["Doc Header" idlwave-doc-header t]
9100 ["Log" idlwave-doc-modification t]
9101 "--"
9102 ["Case" idlwave-case t]
9103 ["For" idlwave-for t]
9104 ["Repeat" idlwave-repeat t]
9105 ["While" idlwave-while t]
9106 "--"
9107 ["Close Block" idlwave-close-block t])
9108 ("Completion"
9109 ["Complete" idlwave-complete t]
9110 ("Complete Specific"
9111 ["1 Procedure Name" (idlwave-complete 'procedure) t]
9112 ["2 Procedure Keyword" (idlwave-complete 'procedure-keyword) t]
9113 "--"
9114 ["3 Function Name" (idlwave-complete 'function) t]
9115 ["4 Function Keyword" (idlwave-complete 'function-keyword) t]
9116 "--"
9117 ["5 Procedure Method Name" (idlwave-complete 'procedure-method) t]
9118 ["6 Procedure Method Keyword" (idlwave-complete 'procedure-method-keyword) t]
9119 "--"
9120 ["7 Function Method Name" (idlwave-complete 'function-method) t]
9121 ["8 Function Method Keyword" (idlwave-complete 'function-method-keyword) t]
9122 "--"
9123 ["9 Class Name" idlwave-complete-class t]))
9124 ("Routine Info"
9125 ["Show Routine Info" idlwave-routine-info t]
9126 ["Online Context Help" idlwave-context-help t]
9127 "--"
9128 ["Find Routine Source" idlwave-find-module t]
9129 ["Resolve Routine" idlwave-resolve (featurep 'idlw-shell)]
9130 "--"
9131 ["Update Routine Info" idlwave-update-routine-info t]
9132 ["Rescan XML Help Catalog" idlwave-convert-xml-system-routine-info t]
9133 "--"
9134 "IDL User Catalog"
9135 ["Select Catalog Directories" (idlwave-create-user-catalog-file nil) t]
9136 ["Scan Directories" (idlwave-update-routine-info '(16))
9137 (and idlwave-path-alist (not idlwave-catalog-process))]
9138 ["Scan Directories &" (idlwave-update-routine-info '(64))
9139 (and idlwave-path-alist (not idlwave-catalog-process))]
9140 "--"
9141 "Routine Shadows"
9142 ["Check Current Buffer" idlwave-list-buffer-load-path-shadows t]
9143 ["Check Compiled Routines" idlwave-list-shell-load-path-shadows t]
9144 ["Check Everything" idlwave-list-all-load-path-shadows t])
9145 ("Misc"
9146 ["Kill auto-created buffers" idlwave-kill-autoloaded-buffers t]
9147 "--"
9148 ["Insert TAB character" idlwave-hard-tab t])
9149 "--"
9150 ("External"
9151 ["Start IDL shell" idlwave-shell t]
9152 ["Edit file in IDLDE" idlwave-edit-in-idlde t]
9153 ["Launch IDL Help" idlwave-launch-idlhelp t])
9154 "--"
9155 ("Customize"
9156 ["Browse IDLWAVE Group" idlwave-customize t]
9157 "--"
9158 ["Build Full Customize Menu" idlwave-create-customize-menu
9159 (fboundp 'customize-menu-create)])
9160 ("Documentation"
9161 ["Describe Mode" describe-mode t]
9162 ["Abbreviation List" idlwave-list-abbrevs t]
9163 "--"
9164 ["Commentary in idlwave.el" idlwave-show-commentary t]
9165 ["Commentary in idlw-shell.el" idlwave-shell-show-commentary t]
9166 "--"
9167 ["Info" idlwave-info t]
9168 "--"
9169 ["Help with Topic" idlwave-help-assistant-help-with-topic
9170 idlwave-help-use-assistant]
9171 ["Launch IDL Help" idlwave-launch-idlhelp t])))
9172
9173 (defvar idlwave-mode-debug-menu-def
9174 '("Debug"
9175 ["Start IDL shell" idlwave-shell t]
9176 ["Save and .RUN buffer" idlwave-shell-save-and-run
9177 (and (boundp 'idlwave-shell-automatic-start)
9178 idlwave-shell-automatic-start)]))
9179
9180 (if (or (featurep 'easymenu) (load "easymenu" t))
9181 (progn
9182 (easy-menu-define idlwave-mode-menu idlwave-mode-map
9183 "IDL and WAVE CL editing menu"
9184 idlwave-mode-menu-def)
9185 (easy-menu-define idlwave-mode-debug-menu idlwave-mode-map
9186 "IDL and WAVE CL editing menu"
9187 idlwave-mode-debug-menu-def)))
9188
9189 (defun idlwave-customize ()
9190 "Call the customize function with `idlwave' as argument."
9191 (interactive)
9192 ;; Try to load the code for the shell, so that we can customize it
9193 ;; as well.
9194 (or (featurep 'idlw-shell)
9195 (load "idlw-shell" t))
9196 (customize-browse 'idlwave))
9197
9198 (defun idlwave-create-customize-menu ()
9199 "Create a full customization menu for IDLWAVE, insert it into the menu."
9200 (interactive)
9201 (if (fboundp 'customize-menu-create)
9202 (progn
9203 ;; Try to load the code for the shell, so that we can customize it
9204 ;; as well.
9205 (or (featurep 'idlw-shell)
9206 (load "idlw-shell" t))
9207 (easy-menu-change
9208 '("IDLWAVE") "Customize"
9209 `(["Browse IDLWAVE group" idlwave-customize t]
9210 "--"
9211 ,(customize-menu-create 'idlwave)
9212 ["Set" Custom-set t]
9213 ["Save" Custom-save t]
9214 ["Reset to Current" Custom-reset-current t]
9215 ["Reset to Saved" Custom-reset-saved t]
9216 ["Reset to Standard Settings" Custom-reset-standard t]))
9217 (message "\"IDLWAVE\"-menu now contains full customization menu"))
9218 (error "Cannot expand menu (outdated version of cus-edit.el)")))
9219
9220 (defun idlwave-show-commentary ()
9221 "Use the finder to view the file documentation from `idlwave.el'."
9222 (interactive)
9223 (finder-commentary "idlwave.el"))
9224
9225 (defun idlwave-shell-show-commentary ()
9226 "Use the finder to view the file documentation from `idlw-shell.el'."
9227 (interactive)
9228 (finder-commentary "idlw-shell.el"))
9229
9230 (defun idlwave-info ()
9231 "Read documentation for IDLWAVE in the info system."
9232 (interactive)
9233 (info "idlwave"))
9234
9235 (defun idlwave-list-abbrevs (arg)
9236 "Show the code abbreviations define in IDLWAVE mode.
9237 This lists all abbrevs where the replacement text differs from the input text.
9238 These are the ones the users want to learn to speed up their writing.
9239
9240 The function does *not* list abbrevs which replace a word with itself
9241 to call a hook. These hooks are used to change the case of words or
9242 to blink the matching `begin', and the user does not need to know them.
9243
9244 With arg, list all abbrevs with the corresponding hook.
9245
9246 This function was written since `list-abbrevs' looks terrible for IDLWAVE mode."
9247
9248 (interactive "P")
9249 (let ((table (symbol-value 'idlwave-mode-abbrev-table))
9250 abbrevs
9251 str rpl func fmt (len-str 0) (len-rpl 0))
9252 (mapatoms
9253 (lambda (sym)
9254 (if (symbol-value sym)
9255 (progn
9256 (setq str (symbol-name sym)
9257 rpl (symbol-value sym)
9258 func (symbol-function sym))
9259 (if arg
9260 (setq func (prin1-to-string func))
9261 (if (and (listp func) (stringp (nth 2 func)))
9262 (setq rpl (concat "EVAL: " (nth 2 func))
9263 func "")
9264 (setq func "")))
9265 (if (or arg (not (string= rpl str)))
9266 (progn
9267 (setq len-str (max len-str (length str)))
9268 (setq len-rpl (max len-rpl (length rpl)))
9269 (setq abbrevs (cons (list str rpl func) abbrevs)))))))
9270 table)
9271 ;; sort the list
9272 (setq abbrevs (sort abbrevs (lambda (a b) (string< (car a) (car b)))))
9273 ;; Make the format
9274 (setq fmt (format "%%-%ds %%-%ds %%s\n" len-str len-rpl))
9275 (with-output-to-temp-buffer "*Help*"
9276 (if arg
9277 (progn
9278 (princ "Abbreviations and Actions in IDLWAVE-Mode\n")
9279 (princ "=========================================\n\n")
9280 (princ (format fmt "KEY" "REPLACE" "HOOK"))
9281 (princ (format fmt "---" "-------" "----")))
9282 (princ "Code Abbreviations and Templates in IDLWAVE-Mode\n")
9283 (princ "================================================\n\n")
9284 (princ (format fmt "KEY" "ACTION" ""))
9285 (princ (format fmt "---" "------" "")))
9286 (dolist (list abbrevs)
9287 (setq str (car list)
9288 rpl (nth 1 list)
9289 func (nth 2 list))
9290 (princ (format fmt str rpl func)))))
9291 ;; Make sure each abbreviation uses only one display line
9292 (with-current-buffer "*Help*"
9293 (setq truncate-lines t)))
9294
9295 ;; Add .pro files to speedbar for support, if it's loaded
9296 (eval-after-load "speedbar" '(speedbar-add-supported-extension ".pro"))
9297
9298 ;; Set an idle timer to load the routine info.
9299 ;; Will only work on systems which support this.
9300 (or idlwave-routines (idlwave-start-load-rinfo-timer))
9301
9302 ;; Run the hook
9303 (run-hooks 'idlwave-load-hook)
9304
9305 (provide 'idlwave)
9306
9307 ;;; idlwave.el ends here