1 ;; idlwave.el --- IDL editing mode for GNU Emacs
3 ;; Copyright (C) 1999-2011 Free Software Foundation, Inc.
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>
10 ;; Keywords: languages
12 ;; This file is part of GNU Emacs.
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.
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.
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/>.
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
34 ;; In the remotely distant past, based on pascal.el, though bears
35 ;; little resemblance to it now.
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.
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'
45 ;; New versions of IDLWAVE, documentation, and more information
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 .emacs file:
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))
64 ;; The newest version of this file is available from the maintainer's
72 ;; IDLWAVE is documented online in info format. A printable version
73 ;; of the documentation is available from the maintainers webpage (see
80 ;; Thanks to the following people for their contributions and comments:
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>
102 ;; IDLWAVE has extensive customize support; to learn about the
103 ;; variables which control the mode's behavior, use `M-x
104 ;; idlwave-customize'.
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
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.
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,
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'.
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
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.
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.
154 (eval-when-compile (require 'cl
))
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
))
167 (if (not (fboundp 'cancel-timer
))
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" ())
178 (defgroup idlwave nil
179 "Major mode for editing IDL .pro files."
181 :link
'(url-link :tag
"Home Page"
182 "http://idlwave.org")
183 :link
'(emacs-commentary-link :tag
"Commentary in idlw-shell.el"
185 :link
'(emacs-commentary-link :tag
"Commentary in idlwave.el" "idlwave.el")
186 :link
'(custom-manual "(idlwave)Top")
191 ;;; Variables for indentation behavior ---------------------------------------
193 (defgroup idlwave-code-formatting nil
194 "Indentation and formatting options for IDLWAVE mode."
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
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
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
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
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
235 :group
'idlwave-code-formatting
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:
244 x = function_a(function_b(function_c( a, b, [1,2,3, $
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,
254 x = function_a(function_b(function_c( a, b, [1,2,3, $
259 :group
'idlwave-code-formatting
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
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
273 :group
'idlwave-code-formatting
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
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
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
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.
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
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
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
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
)
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
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'.
339 ;;; Routine Info and Completion ---------------------------------------
341 (defgroup idlwave-routine-info nil
342 "Routine Info options for IDLWAVE mode."
345 (defcustom idlwave-use-library-catalogs t
346 "*Non-nil means search the IDL path for library catalog files.
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
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
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:
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
382 (const :tag
"No buffer" nil
)
383 (const :tag
"All buffers" t
)
384 (const :tag
"Current buffer only" 'current
)))
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
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.
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
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
))))
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
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)))
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
448 ;; Configuration files
449 (defcustom idlwave-config-directory
450 (convert-standard-filename "~/.idlwave")
451 "*Directory for configuration files and user-library catalog."
452 :group
'idlwave-routine-info
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")
459 (defvar idlwave-libinfo-file nil
460 "*Obsolete variable, no longer used.")
462 (defcustom idlwave-special-lib-alist nil
463 "Alist of regular expressions matching special library directories.
464 When listing routine source locations, IDLWAVE gives a short hint where
465 the file defining the routine is located. By default it lists `SystemLib'
466 for routines in the system library `!DIR/lib' and `Library' for anything
467 else. This variable can define additional types. The car of each entry
468 is a regular expression matching the file name (they normally will match
469 on the path). The cdr is the string to be used as identifier. Max 10
471 :group
'idlwave-routine-info
473 (cons regexp string
)))
475 (defcustom idlwave-auto-write-paths t
476 "Write out path (!PATH) and system directory (!DIR) info automatically.
477 Path info is needed to locate library catalog files. If non-nil,
478 whenever the path-list changes as a result of shell-query, etc., it is
479 written to file. Otherwise, the menu option \"Write Paths\" can be
480 used to force a write."
481 :group
'idlwave-routine-info
484 (defgroup idlwave-completion nil
485 "Completion options for IDLWAVE mode."
490 (defconst idlwave-tmp
491 '(choice :tag
"by applying the function"
496 (symbol :tag
"Other"))))
498 (defcustom idlwave-completion-case
'((routine . upcase
)
502 "Association list setting the case of completed words.
504 This variable determines the case (UPPER/lower/Capitalized...) of
505 words inserted into the buffer by completion. The preferred case can
506 be specified separately for routine names, keywords, classes and
508 This alist should therefore have entries for `routine' (normal
509 functions and procedures, i.e. non-methods), `keyword', `class', and
510 `method'. Plausible values are
512 upcase upcase whole word, like `BOX_CURSOR'
513 downcase downcase whole word, like `read_ppm'
514 capitalize capitalize each part, like `Widget_Control'
515 preserve preserve case as is, like `IDLgrView'
517 The value can also be any Emacs Lisp function which transforms the
518 case of characters in a string.
520 A value of `preserve' means that the case of the completed word is
521 identical to the way it was written in the definition statement of the
522 routine. This was implemented to allow for mixed-case completion, in
523 particular of object classes and methods.
524 If a completable word is defined in multiple locations, the meaning of
525 `preserve' is not unique since the different definitions might be
526 cased differently. Therefore IDLWAVE always takes the case of the
527 *first* definition it encounters during routine info collection and
528 uses the case derived from it consistently.
530 Note that a lowercase-only string in the buffer will always be completed in
531 lower case (but see the variable `idlwave-completion-force-default-case').
533 After changing this variable, you need to either restart Emacs or press
534 `C-u C-c C-i' to update the internal lists."
535 :group
'idlwave-completion
537 (cons (symbol :tag
"Derive completion case for")
540 (defcustom idlwave-completion-force-default-case nil
541 "*Non-nil means, completion will always honor `idlwave-completion-case'.
542 When nil, only the completion of a mixed case or upper case string
543 will honor the default settings in `idlwave-completion-case', while
544 the completion of lower case strings will be completed entirely in
546 :group
'idlwave-completion
549 (defcustom idlwave-complete-empty-string-as-lower-case nil
550 "*Non-nil means, the empty string is considered downcase for completion.
551 The case of what is already in the buffer determines the case of completions.
552 When this variable is non-nil, the empty string is considered to be downcase.
553 Completing on the empty string then offers downcase versions of the possible
555 :group
'idlwave-completion
558 (defvar idlwave-default-completion-case-is-down nil
559 "Obsolete variable. See `idlwave-complete-empty-string-as-lower-case' and
560 `idlwave-completion-case'.")
562 (defcustom idlwave-buffer-case-takes-precedence nil
563 "*Non-nil means, the case of tokens in buffers dominates over system stuff.
564 To make this possible, we need to re-case everything each time we update
565 the routine info from the buffers. This is slow.
566 The default is to consider the case given in the system and library files
567 first which makes updating much faster."
568 :group
'idlwave-completion
571 (defcustom idlwave-highlight-help-links-in-completion t
572 "*Non-nil means, highlight completions for which system help is available.
573 Help can then be accessed with mouse-3.
574 This option is only effective when the online help system is installed."
575 :group
'idlwave-completion
578 (defcustom idlwave-support-inheritance t
579 "Non-nil means, treat inheritance with completion, online help etc.
580 When nil, IDLWAVE only knows about the native methods and tags of a class,
581 not about inherited ones."
582 :group
'idlwave-routine-info
585 (defcustom idlwave-keyword-class-inheritance
'("^[gs]etproperty$" "^init$")
586 "List of regular expressions for class-driven keyword inheritance.
587 Keyword inheritance is often tied to class inheritance by \"chaining\"
588 up the class tree. While it cannot be assumed that the presence of an
589 _EXTRA or _REF_EXTRA symbol guarantees such chaining will occur, for
590 certain methods this assumption is almost always true. The methods
591 for which to assume this can be set here."
592 :group
'idlwave-routine-info
593 :type
'(repeat (regexp :tag
"Match method:")))
596 (defcustom idlwave-completion-show-classes
1
597 "*Number of classes to show when completing object methods and keywords.
598 When completing methods or keywords for an object with unknown class,
599 the *Completions* buffer will show the valid classes for each completion
602 MyMethod <Class1,Class2,Class3>
604 The value of this variable may be nil to inhibit display, or an integer to
605 indicate the maximum number of classes to display.
607 On XEmacs, a full list of classes will also be placed into a `help-echo'
608 property on the competion items, so that the list of classes for the current
609 item is displayed in the echo area. If the value of this variable is a
610 negative integer, the `help-echo' property will be suppressed."
611 :group
'idlwave-completion
612 :type
'(choice (const :tag
"Don't show" nil
)
613 (integer :tag
"Number of classes shown" 1)))
615 (defcustom idlwave-completion-fontify-classes t
616 "*Non-nil means, fontify the classes in completions buffer.
617 This makes it easier to distinguish the completion items from the extra
618 class info listed. See `idlwave-completion-show-classes'."
619 :group
'idlwave-completion
622 (defcustom idlwave-query-class
'((method-default . nil
)
623 (keyword-default . nil
))
624 "Association list governing specification of object classes for completion.
626 When IDLWAVE tries to complete object-oriented methods, it usually
627 cannot determine the class of a given object from context. In order
628 to provide the user with a correct list of methods or keywords, it
629 needs to determine the appropriate class. IDLWAVE has two ways of
630 doing this (well, three ways if you count the shell... see
631 `idlwave-shell-query-for-class'):
633 1. Combine the items of all available classes which contain this
634 method for the purpose of completion. So when completing a method,
635 all methods of all known classes are available, and when completing
636 a keyword, all keywords allowed for this method in any class are
637 shown. This behavior is very much like normal completion and is
638 therefore the default. It works much better than one might think -
639 only for the INIT, GETPROPERTY and SETPROPERTY the keyword lists
640 become uncomfortably long. See also
641 `idlwave-completion-show-classes'.
643 2. The second possibility is to ask the user on each occasion. To
644 make this less interruptive, IDLWAVE can store the class as a text
645 property on the object operator `->'. For a given object in the
646 source code, class selection will then be needed only once
647 - for example to complete the method. Keywords to the method can
648 then be completed directly, because the class is already known.
649 You will have to turn on the storage of the selected class
650 explicitly with the variable `idlwave-store-inquired-class'.
652 This variable allows you to configure IDLWAVE's method and
653 method-keyword completion behavior. Its value is an alist, which
654 should contain at least two elements: (method-default . VALUE) and
655 \(keyword-default . VALUE), where VALUE is either t or nil. These
656 specify if the class should be found during method and keyword
657 completion, respectively.
659 The alist may have additional entries specifying exceptions from the
660 keyword completion rule for specific methods, like INIT or
661 GETPROPERTY. In order to turn on class specification for the INIT
662 method, add an entry (\"INIT\" . t). The method name must be ALL-CAPS."
663 :group
'idlwave-completion
665 (cons (const method-default
)
666 (boolean :tag
"Determine class when completing METHODS "))
667 (cons (const keyword-default
)
668 (boolean :tag
"Determine class when completing KEYWORDS "))
670 :tag
"Exceptions to defaults"
672 (cons (string :tag
"MODULE" :value
"")
673 (boolean :tag
"Determine class for this method")))))
675 (defcustom idlwave-store-inquired-class t
676 "*Non-nil means, store class of a method call as text property on `->'.
677 IDLWAVE sometimes has to ask the user for the class associated with a
678 particular object method call. This happens during the commands
679 `idlwave-routine-info' and `idlwave-complete', depending upon the
680 value of the variable `idlwave-query-class'.
682 When you specify a class, this information can be stored as a text
683 property on the `->' arrow in the source code, so that during the same
684 editing session, IDLWAVE will not have to ask again. When this
685 variable is non-nil, IDLWAVE will store and reuse the class information.
686 The class stored can be checked and removed with `\\[idlwave-routine-info]'
689 The default of this variable is nil, since the result of commands then
690 is more predictable. However, if you know what you are doing, it can
691 be nice to turn this on.
693 An arrow which knows the class will be highlighted with
694 `idlwave-class-arrow-face'. The command \\[idlwave-routine-info]
695 displays (with prefix arg: deletes) the class stored on the arrow
697 :group
'idlwave-completion
700 (defcustom idlwave-class-arrow-face
'bold
701 "*Face to highlight object operator arrows `->' which carry a class property.
702 When IDLWAVE stores a class name as text property on an object arrow
703 \(see variable `idlwave-store-inquired-class', it highlights the arrow
704 with this font in order to remind the user that this arrow is special."
705 :group
'idlwave-completion
708 (defcustom idlwave-resize-routine-help-window t
709 "*Non-nil means, resize the Routine-info *Help* window to fit the content."
710 :group
'idlwave-completion
713 (defcustom idlwave-keyword-completion-adds-equal t
714 "*Non-nil means, completion automatically adds `=' after completed keywords."
715 :group
'idlwave-completion
718 (defcustom idlwave-function-completion-adds-paren t
719 "*Non-nil means, completion automatically adds `(' after completed function.
720 nil means, don't add anything.
721 A value of `2' means, also add the closing parenthesis and position cursor
723 :group
'idlwave-completion
724 :type
'(choice (const :tag
"Nothing" nil
)
726 (const :tag
"()" 2)))
728 (defcustom idlwave-completion-restore-window-configuration t
729 "*Non-nil means, try to restore the window configuration after completion.
730 When completion is not unique, Emacs displays a list of completions.
731 This messes up your window configuration. With this variable set, IDLWAVE
732 restores the old configuration after successful completion."
733 :group
'idlwave-completion
736 ;;; Variables for abbrev and action behavior -----------------------------
738 (defgroup idlwave-abbrev-and-indent-action nil
739 "IDLWAVE performs actions when expanding abbreviations or indenting lines.
740 The variables in this group govern this."
743 (defcustom idlwave-do-actions nil
744 "*Non-nil means performs actions when indenting.
745 The actions that can be performed are listed in `idlwave-indent-action-table'."
746 :group
'idlwave-abbrev-and-indent-action
749 (defcustom idlwave-abbrev-start-char
"\\"
750 "*A single character string used to start abbreviations in abbrev mode.
751 Possible characters to chose from: ~`\%
752 or even '?'. '.' is not a good choice because it can make structure
753 field names act like abbrevs in certain circumstances.
755 Changes to this in `idlwave-mode-hook' will have no effect. Instead a user
756 must set it directly using `setq' in the .emacs file before idlwave.el
758 :group
'idlwave-abbrev-and-indent-action
761 (defcustom idlwave-surround-by-blank nil
762 "*Non-nil means, enable `idlwave-surround'.
763 If non-nil, `=',`<',`>',`&',`,', `->' are surrounded with spaces by
765 See help for `idlwave-indent-action-table' for symbols using `idlwave-surround'.
767 Also see the default key bindings for keys using `idlwave-surround'.
768 Keys are bound and made into actions calling `idlwave-surround' with
769 `idlwave-action-and-binding'.
770 See help for `idlwave-action-and-binding' for examples.
772 Also see help for `idlwave-surround'."
773 :group
'idlwave-abbrev-and-indent-action
776 (defcustom idlwave-pad-keyword t
777 "*Non-nil means pad '=' in keywords (routine calls or defs) like assignment.
778 Whenever `idlwave-surround' is non-nil then this affects how '=' is
779 padded for keywords and for variables. If t, pad the same as for
780 assignments. If nil then spaces are removed. With any other value,
781 spaces are left unchanged."
782 :group
'idlwave-abbrev-and-indent-action
784 (const :tag
"Pad like assignments" t
)
785 (const :tag
"Remove space near `='" nil
)
786 (const :tag
"Keep space near `='" 'keep
)))
788 (defcustom idlwave-show-block t
789 "*Non-nil means point blinks to block beginning for `idlwave-show-begin'."
790 :group
'idlwave-abbrev-and-indent-action
793 (defcustom idlwave-expand-generic-end nil
794 "*Non-nil means expand generic END to ENDIF/ENDELSE/ENDWHILE etc."
795 :group
'idlwave-abbrev-and-indent-action
798 (defcustom idlwave-reindent-end t
799 "*Non-nil means re-indent line after END was typed."
800 :group
'idlwave-abbrev-and-indent-action
803 (defcustom idlwave-abbrev-move t
804 "*Non-nil means the abbrev hook can move point.
805 Set to nil by `idlwave-expand-region-abbrevs'. To see the abbrev
806 definitions, use the command `list-abbrevs', for abbrevs that move
807 point. Moving point is useful, for example, to place point between
808 parentheses of expanded functions.
810 See `idlwave-check-abbrev'."
811 :group
'idlwave-abbrev-and-indent-action
814 (defcustom idlwave-abbrev-change-case nil
815 "*Non-nil means all abbrevs will be forced to either upper or lower case.
816 If the value t, all expanded abbrevs will be upper case.
817 If the value is 'down then abbrevs will be forced to lower case.
818 If nil, the case will not change.
819 If `idlwave-reserved-word-upcase' is non-nil, reserved words will always be
820 upper case, regardless of this variable."
821 :group
'idlwave-abbrev-and-indent-action
824 (defcustom idlwave-reserved-word-upcase nil
825 "*Non-nil means, reserved words will be made upper case via abbrev expansion.
826 If nil case of reserved words is controlled by `idlwave-abbrev-change-case'.
827 Has effect only if in abbrev-mode."
828 :group
'idlwave-abbrev-and-indent-action
831 ;;; Action/Expand Tables.
833 ;; The average user may have difficulty modifying this directly. It
834 ;; can be modified/set in idlwave-mode-hook, but it is easier to use
835 ;; idlwave-action-and-binding. See help for idlwave-action-and-binding for
836 ;; examples of how to add an action.
838 ;; The action table is used by `idlwave-indent-line' whereas both the
839 ;; action and expand tables are used by `idlwave-indent-and-action'. In
840 ;; general, the expand table is only used when a line is explicitly
841 ;; indented. Whereas, in addition to being used when the expand table
842 ;; is used, the action table is used when a line is indirectly
843 ;; indented via line splitting, auto-filling or a new line creation.
847 ;; Capitalize system vars
848 ;; (idlwave-action-and-binding idlwave-sysvar '(capitalize-word 1) t)
850 ;; Capitalize procedure name
851 ;; (idlwave-action-and-binding "\\<\\(pro\\|function\\)\\>[ \t]*\\<"
852 ;; '(capitalize-word 1) t)
854 ;; Capitalize common block name
855 ;; (idlwave-action-and-binding "\\<common\\>[ \t]+\\<"
856 ;; '(capitalize-word 1) t)
858 ;; (idlwave-action-and-binding (concat "^[ \t]*" idlwave-label)
859 ;; '(capitalize-word -1) t)
861 (defvar idlwave-indent-action-table nil
862 "*Associated array containing action lists of search string (car),
863 and function as a cdr. This table is used by `idlwave-indent-line'.
864 See documentation for `idlwave-do-action' for a complete description of
867 Additions to the table are made with `idlwave-action-and-binding' when a
868 binding is not requested.
869 See help on `idlwave-action-and-binding' for examples.")
871 (defvar idlwave-indent-expand-table nil
872 "*Associated array containing action lists of search string (car),
873 and function as a cdr. The table is used by the
874 `idlwave-indent-and-action' function. See documentation for
875 `idlwave-do-action' for a complete description of the action lists.
877 Additions to the table are made with `idlwave-action-and-binding' when a
878 binding is requested.
879 See help on `idlwave-action-and-binding' for examples.")
881 ;;; Documentation header and history keyword ---------------------------------
883 (defgroup idlwave-documentation nil
884 "Options for documenting IDLWAVE files."
887 ;; FIXME: make defcustom?
888 (defvar idlwave-file-header
915 ; KEYWORD PARAMETERS:
947 ; MODIFICATION HISTORY:
951 "*A list (PATHNAME STRING) specifying the doc-header template to use for
952 summarizing a file. If PATHNAME is non-nil then this file will be included.
953 Otherwise STRING is used. If nil, the file summary will be omitted.
954 For example you might set PATHNAME to the path for the
955 lib_template.pro file included in the IDL distribution.")
957 (defcustom idlwave-header-to-beginning-of-file t
958 "*Non-nil means, the documentation header will always be at start of file.
959 When nil, the header is positioned between the PRO/FUNCTION line of
960 the current routine and the code, allowing several routine headers in
962 :group
'idlwave-documentation
965 (defcustom idlwave-timestamp-hook
'idlwave-default-insert-timestamp
966 "*The hook function used to update the timestamp of a function."
967 :group
'idlwave-documentation
970 (defcustom idlwave-doc-modifications-keyword
"HISTORY"
971 "*The modifications keyword to use with the log documentation commands.
972 A ':' is added to the keyword end.
973 Inserted by doc-header and used to position logs by doc-modification.
974 If nil it will not be inserted."
975 :group
'idlwave-documentation
978 (defcustom idlwave-doclib-start
"^;+\\+"
979 "*Regexp matching the start of a document library header."
980 :group
'idlwave-documentation
983 (defcustom idlwave-doclib-end
"^;+-"
984 "*Regexp matching the end of a document library header."
985 :group
'idlwave-documentation
988 ;;; External Programs -------------------------------------------------------
990 (defgroup idlwave-external-programs nil
991 "Path locations of external commands used by IDLWAVE."
994 (defcustom idlwave-shell-explicit-file-name
"idl"
995 "*If non-nil, this is the command to run IDL.
996 Should be an absolute file path or path relative to the current environment
997 execution search path. If you want to specify command line switches
998 for the IDL program, use `idlwave-shell-command-line-options'.
1000 I know the name of this variable is badly chosen, but I cannot change
1001 it without compromising backwards-compatibility."
1002 :group
'idlwave-external-programs
1005 (defcustom idlwave-shell-command-line-options nil
1006 "*A list of command line options for calling the IDL program.
1007 Since IDL is executed directly without going through a shell like /bin/sh,
1008 this should be a list of strings like '(\"-rt=file\" \"-nw\") with a separate
1009 string for each argument. But you may also give a single string which
1010 contains the options whitespace-separated. Emacs will be kind enough to
1014 (repeat (string :value
"")))
1015 :group
'idlwave-external-programs
)
1017 (defcustom idlwave-help-application
"idlhelp"
1018 "*The external application providing reference help for programming.
1019 Obsolete, if the IDL Assistant is being used for help."
1020 :group
'idlwave-external-programs
1023 ;;; Some Shell variables which must be defined here.-----------------------
1025 (defcustom idlwave-shell-debug-modifiers
'()
1026 "List of modifiers to be used for the debugging commands.
1027 Will be used to bind debugging commands in the shell buffer and in all
1028 source buffers. These are additional convenience bindings, the debugging
1029 commands are always available with the `C-c C-d' prefix.
1030 If you set this to '(control shift), this means setting a breakpoint will
1031 be on `C-S-b', compiling a source file on `C-S-c' etc. Possible modifiers
1032 are `control', `meta', `super', `hyper', `alt', and `shift'."
1033 :group
'idlwave-shell-general-setup
1034 :type
'(set :tag
"Specify modifiers"
1042 (defcustom idlwave-shell-automatic-start nil
1043 "*If non-nil attempt invoke `idlwave-shell' if not already running.
1044 This is checked when an attempt to send a command to an
1045 IDL process is made."
1046 :group
'idlwave-shell-general-setup
1049 ;;; Miscellaneous variables -------------------------------------------------
1051 (defgroup idlwave-misc nil
1052 "Miscellaneous options for IDLWAVE mode."
1053 :link
'(custom-group-link :tag
"Font Lock Faces group" font-lock-faces
)
1056 (defcustom idlwave-startup-message t
1057 "*Non-nil displays a startup message when `idlwave-mode' is first called."
1058 :group
'idlwave-misc
1061 (defcustom idlwave-default-font-lock-items
1062 '(pros-and-functions batch-files idlwave-idl-keywords label goto
1063 common-blocks class-arrows
)
1064 "Items which should be fontified on the default fontification level 2.
1065 IDLWAVE defines 3 levels of fontification. Level 1 is very little, level 3
1066 is everything and level 2 is specified by this list.
1067 This variable must be set before IDLWAVE gets loaded.
1068 It is a list of symbols; the following symbols are allowed:
1070 pros-and-functions Procedure and Function definitions
1071 batch-files Batch Files
1072 idlwave-idl-keywords IDL Keywords
1073 label Statement Labels
1074 goto Goto Statements
1075 common-blocks Common Blocks
1076 keyword-parameters Keyword Parameters in routine definitions and calls
1077 system-variables System Variables
1078 fixme FIXME: Warning in comments (on XEmacs only v. 21.0 and up)
1079 class-arrows Object Arrows with class property"
1080 :group
'idlwave-misc
1083 (const :tag
"Procedure and Function definitions" pros-and-functions
)
1084 (const :tag
"Batch Files" batch-files
)
1085 (const :tag
"IDL Keywords (reserved words)" idlwave-idl-keywords
)
1086 (const :tag
"Statement Labels" label
)
1087 (const :tag
"Goto Statements" goto
)
1088 (const :tag
"Tags in Structure Definition" structtag
)
1089 (const :tag
"Structure Name" structname
)
1090 (const :tag
"Common Blocks" common-blocks
)
1091 (const :tag
"Keyword Parameters" keyword-parameters
)
1092 (const :tag
"System Variables" system-variables
)
1093 (const :tag
"FIXME: Warning" fixme
)
1094 (const :tag
"Object Arrows with class property " class-arrows
)))
1096 (defcustom idlwave-mode-hook nil
1097 "Normal hook. Executed when a buffer is put into `idlwave-mode'."
1098 :group
'idlwave-misc
1101 (defcustom idlwave-load-hook nil
1102 "Normal hook. Executed when idlwave.el is loaded."
1103 :group
'idlwave-misc
1106 (defvar idlwave-experimental nil
1107 "Non-nil means turn on a few experimental features.
1108 This variable is only for the maintainer, to test difficult stuff,
1109 while still distributing stable releases.
1110 As a user, you should not set this to t.")
1113 ;;; End customization variables section
1116 ;;; Non customization variables
1118 ;;; font-lock mode - Additions by Phil Williams, Ulrik Dickow and
1119 ;;; Simon Marshall <simon_at_gnu.ai.mit.edu>
1120 ;;; and Carsten Dominik...
1122 ;; The following are the reserved words in IDL. Maybe we should
1123 ;; highlight some more stuff as well?
1124 ;; Procedure declarations. Fontify keyword plus procedure name.
1125 (defvar idlwave-idl-keywords
1126 ;; To update this regexp, update the list of keywords and
1127 ;; evaluate the form.
1133 ;; '("||" "&&" "and" "or" "xor" "not"
1134 ;; "eq" "ge" "gt" "le" "lt" "ne"
1135 ;; "for" "do" "endfor"
1136 ;; "if" "then" "endif" "else" "endelse"
1137 ;; "case" "of" "endcase"
1138 ;; "switch" "break" "continue" "endswitch"
1140 ;; "repeat" "until" "endrep"
1141 ;; "while" "endwhile"
1144 ;; "compile_opt" "forward_function"
1145 ;; "on_error" "on_ioerror")) ; on_error is not officially reserved
1147 "\\<\\(&&\\|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\\|||\\)\\>")
1150 (let* (;; Procedure declarations. Fontify keyword plus procedure name.
1151 ;; Function declarations. Fontify keyword plus function name.
1153 '("\\<\\(function\\|pro\\)\\>[ \t]+\\(\\sw+\\(::\\sw+\\)?\\)"
1154 (1 font-lock-keyword-face
)
1155 (2 font-lock-function-name-face nil t
)))
1159 '("\\<\\(common\\)\\>[ \t]*\\(\\sw+\\)?[ \t]*,?"
1160 (1 font-lock-keyword-face
) ; "common"
1161 (2 font-lock-reference-face nil t
) ; block name
1162 ("[ \t]*\\(\\sw+\\)[ ,]*"
1163 ;; Start with point after block name and comma
1164 (goto-char (match-end 0)) ; needed for XEmacs, could be nil
1166 (1 font-lock-variable-name-face
) ; variable names
1171 '("^[ \t]*\\(@[^ \t\n]+\\)" (1 font-lock-string-face
)))
1175 '("\\<FIXME:" (0 font-lock-warning-face t
)))
1179 '("^[ \t]*\\([a-zA-Z]\\sw*:\\)" (1 font-lock-reference-face
)))
1181 ;; The goto statement and its label
1183 '("\\(goto\\)[ \t]*,[ \t]*\\([a-zA-Z]\\sw*\\)"
1184 (1 font-lock-keyword-face
)
1185 (2 font-lock-reference-face
)))
1187 ;; Tags in structure definitions. Note that this definition
1188 ;; actually collides with labels, so we have to use the same
1189 ;; face. It also matches named subscript ranges,
1190 ;; e.g. vec{bottom:top]. No good way around this.
1192 '("\\<\\([a-zA-Z][a-zA-Z0-9_]*:\\)[^:]" (1 font-lock-reference-face
)))
1196 '("\\({\\|\\<inherits\\s-\\)\\s-*\\([a-zA-Z][a-zA-Z0-9_]*\\)[},\t \n]"
1197 (2 font-lock-function-name-face
)))
1199 ;; Keyword parameters, like /xlog or ,xrange=[]
1200 ;; This is anchored to the comma preceding the keyword.
1201 ;; Treats continuation lines, works only during whole buffer
1202 ;; fontification. Slow, use it only in fancy fontification.
1204 '("\\(,\\|[a-zA-Z0-9_](\\)[ \t]*\\(\\$[ \t]*\\(;.*\\)?\n\\([ \t]*\\(;.*\\)?\n\\)*[ \t]*\\)?\\(/[a-zA-Z_]\\sw*\\|[a-zA-Z_]\\sw*[ \t]*=\\)"
1205 (6 font-lock-reference-face
)))
1207 ;; System variables start with a bang.
1209 '("\\(![a-zA-Z_0-9]+\\(\\.\\sw+\\)?\\)"
1210 (1 font-lock-variable-name-face
)))
1212 ;; Special and unusual operators (not used because too noisy)
1213 ;; (special-operators
1214 ;; '("[<>#]" (0 font-lock-keyword-face)))
1216 ;; All operators (not used because too noisy)
1218 ;; '("[-*^#+<>/]" (0 font-lock-keyword-face)))
1220 ;; Arrows with text property `idlwave-class'
1222 '(idlwave-match-class-arrows (0 idlwave-class-arrow-face
))))
1224 (defconst idlwave-font-lock-keywords-1
1225 (list pros-and-functions batch-files
)
1226 "Subdued level highlighting for IDLWAVE mode.")
1228 (defconst idlwave-font-lock-keywords-2
1229 (mapcar 'symbol-value idlwave-default-font-lock-items
)
1230 "Medium level highlighting for IDLWAVE mode.")
1232 (defconst idlwave-font-lock-keywords-3
1233 (list pros-and-functions
1235 idlwave-idl-keywords
1243 "Gaudy level highlighting for IDLWAVE mode."))
1245 (defun idlwave-match-class-arrows (limit)
1246 ;; Match an object arrow with class property
1247 (and idlwave-store-inquired-class
1248 (re-search-forward "->" limit
'limit
)
1249 (get-text-property (match-beginning 0) 'idlwave-class
)))
1251 (defvar idlwave-font-lock-keywords idlwave-font-lock-keywords-2
1252 "Default expressions to highlight in IDLWAVE mode.")
1254 (defvar idlwave-font-lock-defaults
1255 '((idlwave-font-lock-keywords
1256 idlwave-font-lock-keywords-1
1257 idlwave-font-lock-keywords-2
1258 idlwave-font-lock-keywords-3
)
1260 ((?$ .
"w") (?_ .
"w") (?. .
"w") (?| .
"w") (?
& .
"w"))
1263 (put 'idlwave-mode
'font-lock-defaults
1264 idlwave-font-lock-defaults
) ; XEmacs
1266 (defconst idlwave-comment-line-start-skip
"^[ \t]*;"
1267 "Regexp to match the start of a full-line comment.
1268 That is the _beginning_ of a line containing a comment delimiter `;' preceded
1269 only by whitespace.")
1271 (defconst idlwave-begin-block-reg
1272 "\\<\\(pro\\|function\\|begin\\|case\\|switch\\)\\>"
1273 "Regular expression to find the beginning of a block.
1274 The case does not matter. The search skips matches in comments.")
1276 (defconst idlwave-begin-unit-reg
"^\\s-*\\(pro\\|function\\)\\>\\|\\`"
1277 "Regular expression to find the beginning of a unit.
1278 The case does not matter.")
1280 (defconst idlwave-end-unit-reg
"^\\s-*\\(pro\\|function\\)\\>\\|\\'"
1281 "Regular expression to find the line that indicates the end of unit.
1282 This line is the end of buffer or the start of another unit.
1283 The case does not matter. The search skips matches in comments.")
1285 (defconst idlwave-continue-line-reg
"\\<\\$"
1286 "Regular expression to match a continued line.")
1288 (defconst idlwave-end-block-reg
1289 "\\<end\\(\\|case\\|switch\\|else\\|for\\|if\\|rep\\|while\\)\\>"
1290 "Regular expression to find the end of a block.
1291 The case does not matter. The search skips matches in comments.")
1293 (defconst idlwave-block-matches
1295 ("function" .
"end")
1296 ("case" .
"endcase")
1297 ("else" .
"endelse")
1300 ("repeat" .
"endrep")
1301 ("switch" .
"endswitch")
1302 ("while" .
"endwhile"))
1303 "Matches between statements and the corresponding END variant.
1304 The cars are the reserved words starting a block. If the block really
1305 begins with BEGIN, the cars are the reserved words before the begin
1306 which can be used to identify the block type.
1307 This is used to check for the correct END type, to close blocks and
1308 to expand generic end statements to their detailed form.")
1310 (defconst idlwave-block-match-regexp
1311 "\\<\\(else\\|for\\|then\\|repeat\\|while\\)\\>"
1312 "Regular expression matching reserved words which can stand before
1313 blocks starting with a BEGIN statement. The matches must have associations
1314 `idlwave-block-matches'.")
1316 (defconst idlwave-identifier
"[a-zA-Z_][a-zA-Z0-9$_]*"
1317 "Regular expression matching an IDL identifier.")
1319 (defconst idlwave-sysvar
(concat "!" idlwave-identifier
)
1320 "Regular expression matching IDL system variables.")
1322 (defconst idlwave-variable
(concat idlwave-identifier
"\\|" idlwave-sysvar
)
1323 "Regular expression matching IDL variable names.")
1325 (defconst idlwave-label
(concat idlwave-identifier
":")
1326 "Regular expression matching IDL labels.")
1328 (defconst idlwave-method-call
(concat idlwave-identifier
"\\s *->"
1329 "\\(\\s *" idlwave-identifier
"::\\)?"
1332 (defconst idlwave-statement-match
1334 ;; "endif else" is the only possible "end" that can be
1335 ;; followed by a statement on the same line.
1336 '(endelse .
("end\\(\\|if\\)\\s +else" "end\\(\\|if\\)\\s +else"))
1337 ;; all other "end"s can not be followed by a statement.
1338 (cons 'end
(list idlwave-end-block-reg nil
))
1339 '(if .
("if\\>" "then"))
1340 '(for .
("for\\>" "do"))
1341 '(begin .
("begin\\>" nil
))
1342 '(pdef .
("pro\\>\\|function\\>" nil
))
1343 '(while .
("while\\>" "do"))
1344 '(repeat .
("repeat\\>" "repeat"))
1345 '(goto .
("goto\\>" nil
))
1346 '(case .
("case\\>" nil
))
1347 '(switch .
("switch\\>" nil
))
1348 (cons 'call
(list (concat "\\(" idlwave-variable
"\\) *= *"
1349 "\\(" idlwave-method-call
"\\s *\\)?"
1352 (cons 'call
(list (concat
1353 "\\(" idlwave-method-call
"\\s *\\)?"
1355 "\\( *\\($\\|\\$\\)\\|\\s *,\\)") nil
))
1356 (cons 'assign
(list (concat
1357 "\\(" idlwave-variable
"\\) *=") nil
)))
1359 "Associated list of statement matching regular expressions.
1360 Each regular expression matches the start of an IDL statement.
1361 The first element of each association is a symbol giving the statement
1362 type. The associated value is a list. The first element of this list
1363 is a regular expression matching the start of an IDL statement for
1364 identifying the statement type. The second element of this list is a
1365 regular expression for finding a substatement for the type. The
1366 substatement starts after the end of the found match modulo
1367 whitespace. If it is nil then the statement has no substatement. The
1368 list order matters since matching an assignment statement exactly is
1369 not possible without parsing. Thus assignment statement become just
1370 the leftover unidentified statements containing an equal sign.")
1372 ;; FIXME: This var seems to only ever be set, but never actually used!
1373 (defvar idlwave-fill-function
'auto-fill-function
1374 "IDL mode auto fill function.")
1376 (defvar idlwave-comment-indent-function
'comment-indent-function
1377 "IDL mode comment indent function.")
1379 ;; Note that this is documented in the v18 manuals as being a string
1380 ;; of length one rather than a single character.
1381 ;; The code in this file accepts either format for compatibility.
1382 (defvar idlwave-comment-indent-char ?\
1383 "Character to be inserted for IDL comment indentation.
1386 (defconst idlwave-continuation-char ?$
1387 "Character which is inserted as a last character on previous line by
1388 \\[idlwave-split-line] to begin a continuation line. Normally $.")
1390 (defconst idlwave-mode-version
"6.1_em22")
1392 (defmacro idlwave-keyword-abbrev
(&rest args
)
1393 "Creates a function for abbrev hooks to call `idlwave-check-abbrev' with args."
1395 ,(append '(idlwave-check-abbrev) args
))))
1397 ;; If I take the time I can replace idlwave-keyword-abbrev with
1398 ;; idlwave-code-abbrev and remove the quoted abbrev check from
1399 ;; idlwave-check-abbrev. Then, e.g, (idlwave-keyword-abbrev 0 t) becomes
1400 ;; (idlwave-code-abbrev idlwave-check-abbrev 0 t). In fact I should change
1401 ;; the name of idlwave-check-abbrev to something like idlwave-modify-abbrev.
1403 (defmacro idlwave-code-abbrev
(&rest args
)
1404 "Creates a function for abbrev hooks that ensures abbrevs are not quoted.
1405 Specifically, if the abbrev is in a comment or string it is unexpanded.
1406 Otherwise ARGS forms a list that is evaluated."
1407 ;; FIXME: it would probably be better to rely on the new :enable-function
1408 ;; to enforce the "don't expand in comments or strings".
1410 ,(prin1-to-string args
) ;; Puts the code in the doc string
1411 (if (idlwave-quoted)
1412 (progn (unexpand-abbrev) nil
)
1415 (autoload 'idlwave-shell
"idlw-shell"
1416 "Run an inferior IDL, with I/O through buffer `(idlwave-shell-buffer)'." t
)
1417 (autoload 'idlwave-shell-send-command
"idlw-shell")
1418 (autoload 'idlwave-shell-recenter-shell-window
"idlw-shell"
1419 "Run `idlwave-shell' and switch back to current window" t
)
1420 (autoload 'idlwave-shell-save-and-run
"idlw-shell"
1421 "Save and run buffer under the shell." t
)
1422 (autoload 'idlwave-shell-break-here
"idlw-shell"
1423 "Set breakpoint in current line." t
)
1424 (autoload 'idlwave-shell-run-region
"idlw-shell"
1425 "Compile and run the region." t
)
1427 (fset 'idlwave-debug-map
(make-sparse-keymap))
1429 (defvar idlwave-mode-map
1430 (let ((map (make-sparse-keymap)))
1431 (define-key map
"\C-c " 'idlwave-hard-tab
)
1432 (define-key map
[(control tab
)] 'idlwave-hard-tab
)
1433 ;;(define-key map "\C-c\C- " 'idlwave-hard-tab)
1434 (define-key map
"'" 'idlwave-show-matching-quote
)
1435 (define-key map
"\"" 'idlwave-show-matching-quote
)
1436 (define-key map
"\C-g" 'idlwave-keyboard-quit
)
1437 (define-key map
"\C-c;" 'idlwave-toggle-comment-region
)
1438 (define-key map
"\C-\M-a" 'idlwave-beginning-of-subprogram
)
1439 (define-key map
"\C-\M-e" 'idlwave-end-of-subprogram
)
1440 (define-key map
"\C-c{" 'idlwave-beginning-of-block
)
1441 (define-key map
"\C-c}" 'idlwave-end-of-block
)
1442 (define-key map
"\C-c]" 'idlwave-close-block
)
1443 (define-key map
[(meta control h
)] 'idlwave-mark-subprogram
)
1444 (define-key map
"\M-\C-n" 'idlwave-forward-block
)
1445 (define-key map
"\M-\C-p" 'idlwave-backward-block
)
1446 (define-key map
"\M-\C-d" 'idlwave-down-block
)
1447 (define-key map
"\M-\C-u" 'idlwave-backward-up-block
)
1448 (define-key map
"\M-\r" 'idlwave-split-line
)
1449 (define-key map
"\M-\C-q" 'idlwave-indent-subprogram
)
1450 (define-key map
"\C-c\C-p" 'idlwave-previous-statement
)
1451 (define-key map
"\C-c\C-n" 'idlwave-next-statement
)
1452 ;; (define-key map "\r" 'idlwave-newline)
1453 ;; (define-key map "\t" 'idlwave-indent-line)
1454 (define-key map
[(shift iso-lefttab
)] 'idlwave-indent-statement
)
1455 (define-key map
"\C-c\C-a" 'idlwave-auto-fill-mode
)
1456 (define-key map
"\M-q" 'idlwave-fill-paragraph
)
1457 (define-key map
"\M-s" 'idlwave-edit-in-idlde
)
1458 (define-key map
"\C-c\C-h" 'idlwave-doc-header
)
1459 (define-key map
"\C-c\C-m" 'idlwave-doc-modification
)
1460 (define-key map
"\C-c\C-c" 'idlwave-case
)
1461 (define-key map
"\C-c\C-d" 'idlwave-debug-map
)
1462 (when (and (listp idlwave-shell-debug-modifiers
)
1463 (not (equal idlwave-shell-debug-modifiers
'())))
1464 ;; Bind the debug commands also with the special modifiers.
1465 (let ((shift (memq 'shift idlwave-shell-debug-modifiers
))
1467 (delq 'shift
(copy-sequence idlwave-shell-debug-modifiers
))))
1469 (vector (append mods-noshift
(list (if shift ?C ?c
))))
1470 'idlwave-shell-save-and-run
)
1472 (vector (append mods-noshift
(list (if shift ?B ?b
))))
1473 'idlwave-shell-break-here
)
1475 (vector (append mods-noshift
(list (if shift ?E ?e
))))
1476 'idlwave-shell-run-region
)))
1477 (define-key map
"\C-c\C-d\C-c" 'idlwave-shell-save-and-run
)
1478 (define-key map
"\C-c\C-d\C-b" 'idlwave-shell-break-here
)
1479 (define-key map
"\C-c\C-d\C-e" 'idlwave-shell-run-region
)
1480 (define-key map
"\C-c\C-f" 'idlwave-for
)
1481 ;; (define-key map "\C-c\C-f" 'idlwave-function)
1482 ;; (define-key map "\C-c\C-p" 'idlwave-procedure)
1483 (define-key map
"\C-c\C-r" 'idlwave-repeat
)
1484 (define-key map
"\C-c\C-w" 'idlwave-while
)
1485 (define-key map
"\C-c\C-k" 'idlwave-kill-autoloaded-buffers
)
1486 (define-key map
"\C-c\C-s" 'idlwave-shell
)
1487 (define-key map
"\C-c\C-l" 'idlwave-shell-recenter-shell-window
)
1488 (define-key map
"\C-c\C-b" 'idlwave-list-buffer-load-path-shadows
)
1489 (define-key map
"\C-c\C-v" 'idlwave-find-module
)
1490 (define-key map
"\C-c\C-t" 'idlwave-find-module-this-file
)
1491 (define-key map
"\C-c?" 'idlwave-routine-info
)
1492 (define-key map
"\M-?" 'idlwave-context-help
)
1493 (define-key map
[(control meta ?
\?)]
1494 'idlwave-help-assistant-help-with-topic
)
1495 ;; Pickup both forms of Esc/Meta binding
1496 (define-key map
[(meta tab
)] 'idlwave-complete
)
1497 (define-key map
[?\e?
\t] 'idlwave-complete
)
1498 (define-key map
"\M-\C-i" 'idlwave-complete
)
1499 (define-key map
"\C-c\C-i" 'idlwave-update-routine-info
)
1500 (define-key map
"\C-c=" 'idlwave-resolve
)
1502 (if (featurep 'xemacs
) [(shift button3
)] [(shift mouse-3
)])
1503 'idlwave-mouse-context-help
)
1505 "Keymap used in IDL mode.")
1507 (defvar idlwave-mode-syntax-table
1508 (let ((st (make-syntax-table)))
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 ?
\\ "." st
)
1522 (modify-syntax-entry ?_
"_" st
)
1523 (modify-syntax-entry ?
{ "(}" st
)
1524 (modify-syntax-entry ?
} "){" st
)
1525 (modify-syntax-entry ?$
"_" st
)
1526 (modify-syntax-entry ?.
"." st
)
1527 (modify-syntax-entry ?\
; "<" st)
1528 (modify-syntax-entry ?
\n ">" st
)
1529 (modify-syntax-entry ?
\f ">" st
)
1531 "Syntax table in use in `idlwave-mode' buffers.")
1533 (defvar idlwave-find-symbol-syntax-table
1534 (let ((st (copy-syntax-table idlwave-mode-syntax-table
)))
1535 (modify-syntax-entry ?$
"w" st
)
1536 (modify-syntax-entry ?_
"w" st
)
1537 (modify-syntax-entry ?
! "w" st
)
1538 (modify-syntax-entry ?.
"w" st
)
1540 "Syntax table that treats symbol characters as word characters.")
1542 (defmacro idlwave-with-special-syntax
(&rest body
)
1543 "Execute BODY with a different syntax table."
1544 `(let ((saved-syntax (syntax-table)))
1547 (set-syntax-table idlwave-find-symbol-syntax-table
)
1549 (set-syntax-table saved-syntax
))))
1551 ;(defmacro idlwave-with-special-syntax1 (&rest body)
1552 ; "Execute BODY with a different syntax table."
1553 ; `(let ((saved-syntax (syntax-table)))
1556 ; (set-syntax-table idlwave-find-symbol-syntax-table)
1558 ; (set-syntax-table saved-syntax))))
1560 (defun idlwave-action-and-binding (key cmd
&optional select
)
1561 "KEY and CMD are made into a key binding and an indent action.
1562 KEY is a string - same as for the `define-key' function. CMD is a
1563 function of no arguments or a list to be evaluated. CMD is bound to
1564 KEY in `idlwave-mode-map' by defining an anonymous function calling
1565 `self-insert-command' followed by CMD. If KEY contains more than one
1566 character a binding will only be set if SELECT is 'both.
1568 \(KEY . CMD\) is also placed in the `idlwave-indent-expand-table',
1569 replacing any previous value for KEY. If a binding is not set then it
1570 will instead be placed in `idlwave-indent-action-table'.
1572 If the optional argument SELECT is nil then an action and binding are
1573 created. If SELECT is 'noaction, then a binding is always set and no
1574 action is created. If SELECT is 'both then an action and binding
1575 will both be created even if KEY contains more than one character.
1576 Otherwise, if SELECT is non-nil then only an action is created.
1579 No spaces before and 1 after a comma
1580 (idlwave-action-and-binding \",\" '(idlwave-surround 0 1))
1581 A minimum of 1 space before and after `=' (see `idlwave-expand-equal').
1582 (idlwave-action-and-binding \"=\" '(idlwave-expand-equal -1 -1))
1583 Capitalize system variables - action only
1584 (idlwave-action-and-binding idlwave-sysvar '(capitalize-word 1) t)"
1585 (if (not (equal select
'noaction
))
1587 (let* ((table (if select
'idlwave-indent-action-table
1588 'idlwave-indent-expand-table
))
1589 (table-key (regexp-quote key
))
1590 (cell (assoc table-key
(eval table
))))
1592 ;; Replace action command
1595 (set table
(append (eval table
) (list (cons table-key cmd
)))))))
1596 ;; Make key binding for action
1597 (if (or (and (null select
) (= (length key
) 1))
1598 (equal select
'noaction
)
1599 (equal select
'both
))
1600 (define-key idlwave-mode-map key
1603 (self-insert-command 1)
1604 ,(if (listp cmd
) cmd
(list cmd
))))))
1606 ;; Set action and key bindings.
1607 ;; See description of the function `idlwave-action-and-binding'.
1608 ;; Automatically add spaces for the following characters
1610 ;; Actions for & are complicated by &&
1611 (idlwave-action-and-binding "&" 'idlwave-custom-ampersand-surround
)
1613 ;; Automatically add spaces to equal sign if not keyword. This needs
1614 ;; to go ahead of > and <, so >= and <= will be treated correctly
1615 (idlwave-action-and-binding "=" '(idlwave-expand-equal -
1 -
1))
1617 ;; Actions for > and < are complicated by >=, <=, and ->...
1618 (idlwave-action-and-binding "<" '(idlwave-custom-ltgtr-surround nil
))
1619 (idlwave-action-and-binding ">" '(idlwave-custom-ltgtr-surround 'gtr
))
1621 (idlwave-action-and-binding "," '(idlwave-surround 0 -
1 1))
1627 ;;; When expanding abbrevs and the abbrev hook moves backward, an extra
1628 ;;; space is inserted (this is the space typed by the user to expanded
1631 (defvar idlwave-mode-abbrev-table nil
1632 "Abbreviation table used for IDLWAVE mode.")
1633 (define-abbrev-table 'idlwave-mode-abbrev-table
())
1635 (defun idlwave-define-abbrev (name expansion hook
&optional noprefix table
)
1636 "Define-abbrev with backward compatibility.
1638 If NOPREFIX is non-nil, don't prepend prefix character. Installs into
1639 `idlwave-mode-abbrev-table' unless TABLE is non-nil."
1640 (let ((abbrevs-changed nil
) ;; mask the current value to avoid save
1641 (args (list (or table idlwave-mode-abbrev-table
)
1642 (if noprefix name
(concat idlwave-abbrev-start-char name
))
1646 (apply 'define-abbrev
(append args
'(0 t
)))
1647 (error (apply 'define-abbrev args
)))))
1650 (modify-syntax-entry (string-to-char idlwave-abbrev-start-char
)
1651 "w" idlwave-mode-syntax-table
)
1657 (idlwave-define-abbrev "c" "" (idlwave-code-abbrev idlwave-case
))
1658 (idlwave-define-abbrev "sw" "" (idlwave-code-abbrev idlwave-switch
))
1659 (idlwave-define-abbrev "f" "" (idlwave-code-abbrev idlwave-for
))
1660 (idlwave-define-abbrev "fu" "" (idlwave-code-abbrev idlwave-function
))
1661 (idlwave-define-abbrev "pr" "" (idlwave-code-abbrev idlwave-procedure
))
1662 (idlwave-define-abbrev "r" "" (idlwave-code-abbrev idlwave-repeat
))
1663 (idlwave-define-abbrev "w" "" (idlwave-code-abbrev idlwave-while
))
1664 (idlwave-define-abbrev "i" "" (idlwave-code-abbrev idlwave-if
))
1665 (idlwave-define-abbrev "elif" "" (idlwave-code-abbrev idlwave-elif
))
1667 ;; Keywords, system functions, conversion routines
1669 (idlwave-define-abbrev "ap" "arg_present()" (idlwave-keyword-abbrev 1))
1670 (idlwave-define-abbrev "b" "begin" (idlwave-keyword-abbrev 0 t
))
1671 (idlwave-define-abbrev "co" "common" (idlwave-keyword-abbrev 0 t
))
1672 (idlwave-define-abbrev "cb" "byte()" (idlwave-keyword-abbrev 1))
1673 (idlwave-define-abbrev "cx" "fix()" (idlwave-keyword-abbrev 1))
1674 (idlwave-define-abbrev "cl" "long()" (idlwave-keyword-abbrev 1))
1675 (idlwave-define-abbrev "cf" "float()" (idlwave-keyword-abbrev 1))
1676 (idlwave-define-abbrev "cs" "string()" (idlwave-keyword-abbrev 1))
1677 (idlwave-define-abbrev "cc" "complex()" (idlwave-keyword-abbrev 1))
1678 (idlwave-define-abbrev "cd" "double()" (idlwave-keyword-abbrev 1))
1679 (idlwave-define-abbrev "e" "else" (idlwave-keyword-abbrev 0 t
))
1680 (idlwave-define-abbrev "ec" "endcase" 'idlwave-show-begin
)
1681 (idlwave-define-abbrev "es" "endswitch" 'idlwave-show-begin
)
1682 (idlwave-define-abbrev "ee" "endelse" 'idlwave-show-begin
)
1683 (idlwave-define-abbrev "ef" "endfor" 'idlwave-show-begin
)
1684 (idlwave-define-abbrev "ei" "endif else if" 'idlwave-show-begin
)
1685 (idlwave-define-abbrev "el" "endif else" 'idlwave-show-begin
)
1686 (idlwave-define-abbrev "en" "endif" 'idlwave-show-begin
)
1687 (idlwave-define-abbrev "er" "endrep" 'idlwave-show-begin
)
1688 (idlwave-define-abbrev "ew" "endwhile" 'idlwave-show-begin
)
1689 (idlwave-define-abbrev "g" "goto," (idlwave-keyword-abbrev 0 t
))
1690 (idlwave-define-abbrev "h" "help," (idlwave-keyword-abbrev 0))
1691 (idlwave-define-abbrev "k" "keyword_set()" (idlwave-keyword-abbrev 1))
1692 (idlwave-define-abbrev "n" "n_elements()" (idlwave-keyword-abbrev 1))
1693 (idlwave-define-abbrev "on" "on_error," (idlwave-keyword-abbrev 0))
1694 (idlwave-define-abbrev "oi" "on_ioerror," (idlwave-keyword-abbrev 0 1))
1695 (idlwave-define-abbrev "ow" "openw," (idlwave-keyword-abbrev 0))
1696 (idlwave-define-abbrev "or" "openr," (idlwave-keyword-abbrev 0))
1697 (idlwave-define-abbrev "ou" "openu," (idlwave-keyword-abbrev 0))
1698 (idlwave-define-abbrev "p" "print," (idlwave-keyword-abbrev 0))
1699 (idlwave-define-abbrev "pt" "plot," (idlwave-keyword-abbrev 0))
1700 (idlwave-define-abbrev "re" "read," (idlwave-keyword-abbrev 0))
1701 (idlwave-define-abbrev "rf" "readf," (idlwave-keyword-abbrev 0))
1702 (idlwave-define-abbrev "ru" "readu," (idlwave-keyword-abbrev 0))
1703 (idlwave-define-abbrev "rt" "return" (idlwave-keyword-abbrev 0))
1704 (idlwave-define-abbrev "sc" "strcompress()" (idlwave-keyword-abbrev 1))
1705 (idlwave-define-abbrev "sn" "strlen()" (idlwave-keyword-abbrev 1))
1706 (idlwave-define-abbrev "sl" "strlowcase()" (idlwave-keyword-abbrev 1))
1707 (idlwave-define-abbrev "su" "strupcase()" (idlwave-keyword-abbrev 1))
1708 (idlwave-define-abbrev "sm" "strmid()" (idlwave-keyword-abbrev 1))
1709 (idlwave-define-abbrev "sp" "strpos()" (idlwave-keyword-abbrev 1))
1710 (idlwave-define-abbrev "st" "strput()" (idlwave-keyword-abbrev 1))
1711 (idlwave-define-abbrev "sr" "strtrim()" (idlwave-keyword-abbrev 1))
1712 (idlwave-define-abbrev "t" "then" (idlwave-keyword-abbrev 0 t
))
1713 (idlwave-define-abbrev "u" "until" (idlwave-keyword-abbrev 0 t
))
1714 (idlwave-define-abbrev "wu" "writeu," (idlwave-keyword-abbrev 0))
1715 (idlwave-define-abbrev "iap" "if arg_present() then" (idlwave-keyword-abbrev 6))
1716 (idlwave-define-abbrev "ik" "if keyword_set() then" (idlwave-keyword-abbrev 6))
1717 (idlwave-define-abbrev "ine" "if n_elements() eq 0 then" (idlwave-keyword-abbrev 11))
1718 (idlwave-define-abbrev "inn" "if n_elements() ne 0 then" (idlwave-keyword-abbrev 11))
1719 (idlwave-define-abbrev "np" "n_params()" (idlwave-keyword-abbrev 0))
1720 (idlwave-define-abbrev "s" "size()" (idlwave-keyword-abbrev 1))
1721 (idlwave-define-abbrev "wi" "widget_info()" (idlwave-keyword-abbrev 1))
1722 (idlwave-define-abbrev "wc" "widget_control," (idlwave-keyword-abbrev 0))
1723 (idlwave-define-abbrev "pv" "ptr_valid()" (idlwave-keyword-abbrev 1))
1724 (idlwave-define-abbrev "ipv" "if ptr_valid() then" (idlwave-keyword-abbrev 6))
1726 ;; This section is reserved words only. (From IDL user manual)
1728 (idlwave-define-abbrev "and" "and" (idlwave-keyword-abbrev 0 t
) t
)
1729 (idlwave-define-abbrev "begin" "begin" (idlwave-keyword-abbrev 0 t
) t
)
1730 (idlwave-define-abbrev "break" "break" (idlwave-keyword-abbrev 0 t
) t
)
1731 (idlwave-define-abbrev "case" "case" (idlwave-keyword-abbrev 0 t
) t
)
1732 (idlwave-define-abbrev "common" "common" (idlwave-keyword-abbrev 0 t
) t
)
1733 (idlwave-define-abbrev "continue" "continue" (idlwave-keyword-abbrev 0 t
) t
)
1734 (idlwave-define-abbrev "do" "do" (idlwave-keyword-abbrev 0 t
) t
)
1735 (idlwave-define-abbrev "else" "else" (idlwave-keyword-abbrev 0 t
) t
)
1736 (idlwave-define-abbrev "end" "end" 'idlwave-show-begin-check t
)
1737 (idlwave-define-abbrev "endcase" "endcase" 'idlwave-show-begin-check t
)
1738 (idlwave-define-abbrev "endelse" "endelse" 'idlwave-show-begin-check t
)
1739 (idlwave-define-abbrev "endfor" "endfor" 'idlwave-show-begin-check t
)
1740 (idlwave-define-abbrev "endif" "endif" 'idlwave-show-begin-check t
)
1741 (idlwave-define-abbrev "endrep" "endrep" 'idlwave-show-begin-check t
)
1742 (idlwave-define-abbrev "endswitch" "endswitch" 'idlwave-show-begin-check t
)
1743 (idlwave-define-abbrev "endwhi" "endwhi" 'idlwave-show-begin-check t
)
1744 (idlwave-define-abbrev "endwhile" "endwhile" 'idlwave-show-begin-check t
)
1745 (idlwave-define-abbrev "eq" "eq" (idlwave-keyword-abbrev 0 t
) t
)
1746 (idlwave-define-abbrev "for" "for" (idlwave-keyword-abbrev 0 t
) t
)
1747 (idlwave-define-abbrev "function" "function" (idlwave-keyword-abbrev 0 t
) t
)
1748 (idlwave-define-abbrev "ge" "ge" (idlwave-keyword-abbrev 0 t
) t
)
1749 (idlwave-define-abbrev "goto" "goto" (idlwave-keyword-abbrev 0 t
) t
)
1750 (idlwave-define-abbrev "gt" "gt" (idlwave-keyword-abbrev 0 t
) t
)
1751 (idlwave-define-abbrev "if" "if" (idlwave-keyword-abbrev 0 t
) t
)
1752 (idlwave-define-abbrev "le" "le" (idlwave-keyword-abbrev 0 t
) t
)
1753 (idlwave-define-abbrev "lt" "lt" (idlwave-keyword-abbrev 0 t
) t
)
1754 (idlwave-define-abbrev "mod" "mod" (idlwave-keyword-abbrev 0 t
) t
)
1755 (idlwave-define-abbrev "ne" "ne" (idlwave-keyword-abbrev 0 t
) t
)
1756 (idlwave-define-abbrev "not" "not" (idlwave-keyword-abbrev 0 t
) t
)
1757 (idlwave-define-abbrev "of" "of" (idlwave-keyword-abbrev 0 t
) t
)
1758 (idlwave-define-abbrev "on_ioerror" "on_ioerror" (idlwave-keyword-abbrev 0 t
) t
)
1759 (idlwave-define-abbrev "or" "or" (idlwave-keyword-abbrev 0 t
) t
)
1760 (idlwave-define-abbrev "pro" "pro" (idlwave-keyword-abbrev 0 t
) t
)
1761 (idlwave-define-abbrev "repeat" "repeat" (idlwave-keyword-abbrev 0 t
) t
)
1762 (idlwave-define-abbrev "switch" "switch" (idlwave-keyword-abbrev 0 t
) t
)
1763 (idlwave-define-abbrev "then" "then" (idlwave-keyword-abbrev 0 t
) t
)
1764 (idlwave-define-abbrev "until" "until" (idlwave-keyword-abbrev 0 t
) t
)
1765 (idlwave-define-abbrev "while" "while" (idlwave-keyword-abbrev 0 t
) t
)
1766 (idlwave-define-abbrev "xor" "xor" (idlwave-keyword-abbrev 0 t
) t
)
1768 (defvar imenu-create-index-function
)
1769 (defvar extract-index-name-function
)
1770 (defvar prev-index-position-function
)
1771 (defvar imenu-extract-index-name-function
)
1772 (defvar imenu-prev-index-position-function
)
1773 ;; defined later - so just make the compiler hush
1774 (defvar idlwave-mode-menu
)
1775 (defvar idlwave-mode-debug-menu
)
1778 (define-derived-mode idlwave-mode prog-mode
"IDLWAVE"
1779 "Major mode for editing IDL source files (version 6.1_em22).
1781 The main features of this mode are
1783 1. Indentation and Formatting
1784 --------------------------
1785 Like other Emacs programming modes, C-j inserts a newline and indents.
1786 TAB is used for explicit indentation of the current line.
1788 To start a continuation line, use \\[idlwave-split-line]. This
1789 function can also be used in the middle of a line to split the line
1790 at that point. When used inside a long constant string, the string
1791 is split at that point with the `+' concatenation operator.
1793 Comments are indented as follows:
1795 `;;;' Indentation remains unchanged.
1796 `;;' Indent like the surrounding code
1797 `;' Indent to a minimum column.
1799 The indentation of comments starting in column 0 is never changed.
1801 Use \\[idlwave-fill-paragraph] to refill a paragraph inside a
1802 comment. The indentation of the second line of the paragraph
1803 relative to the first will be retained. Use
1804 \\[idlwave-auto-fill-mode] to toggle auto-fill mode for these
1805 comments. When the variable `idlwave-fill-comment-line-only' is
1806 nil, code can also be auto-filled and auto-indented.
1808 To convert pre-existing IDL code to your formatting style, mark the
1809 entire buffer with \\[mark-whole-buffer] and execute
1810 \\[idlwave-expand-region-abbrevs]. Then mark the entire buffer
1811 again followed by \\[indent-region] (`indent-region').
1815 IDLWAVE displays information about the calling sequence and the
1816 accepted keyword parameters of a procedure or function with
1817 \\[idlwave-routine-info]. \\[idlwave-find-module] jumps to the
1818 source file of a module. These commands know about system
1819 routines, all routines in idlwave-mode buffers and (when the
1820 idlwave-shell is active) about all modules currently compiled under
1821 this shell. It also makes use of pre-compiled or custom-scanned
1822 user and library catalogs many popular libraries ship with by
1823 default. Use \\[idlwave-update-routine-info] to update this
1824 information, which is also used for completion (see item 4).
1829 \\[idlwave-context-help] displays the IDL documentation relevant
1830 for the system variable, keyword, or routines at point. A single
1831 key stroke gets you directly to the right place in the docs. See
1832 the manual to configure where and how the HTML help is displayed.
1836 \\[idlwave-complete] completes the names of procedures, functions
1837 class names, keyword parameters, system variables and tags, class
1838 tags, structure tags, filenames and much more. It is context
1839 sensitive and figures out what is expected at point. Lower case
1840 strings are completed in lower case, other strings in mixed or
1843 5. Code Templates and Abbreviations
1844 --------------------------------
1845 Many Abbreviations are predefined to expand to code fragments and templates.
1846 The abbreviations start generally with a `\\`. Some examples:
1848 \\pr PROCEDURE template
1849 \\fu FUNCTION template
1850 \\c CASE statement template
1851 \\sw SWITCH statement template
1852 \\f FOR loop template
1853 \\r REPEAT Loop template
1854 \\w WHILE loop template
1855 \\i IF statement template
1856 \\elif IF-ELSE statement template
1859 For a full list, use \\[idlwave-list-abbrevs]. Some templates also
1860 have direct keybindings - see the list of keybindings below.
1862 \\[idlwave-doc-header] inserts a documentation header at the
1863 beginning of the current program unit (pro, function or main).
1864 Change log entries can be added to the current program unit with
1865 \\[idlwave-doc-modification].
1867 6. Automatic Case Conversion
1868 -------------------------
1869 The case of reserved words and some abbrevs is controlled by
1870 `idlwave-reserved-word-upcase' and `idlwave-abbrev-change-case'.
1872 7. Automatic END completion
1873 ------------------------
1874 If the variable `idlwave-expand-generic-end' is non-nil, each END typed
1875 will be converted to the specific version, like ENDIF, ENDFOR, etc.
1879 Loading idlwave.el runs `idlwave-load-hook'.
1880 Turning on `idlwave-mode' runs `idlwave-mode-hook'.
1882 9. Documentation and Customization
1883 -------------------------------
1884 Info documentation for this package is available. Use
1885 \\[idlwave-info] to display (complain to your sysadmin if that does
1886 not work). For Postscript, PDF, and HTML versions of the
1887 documentation, check IDLWAVE's homepage at URL `http://idlwave.org'.
1888 IDLWAVE has customize support - see the group `idlwave'.
1892 Here is a list of all keybindings of this mode.
1893 If some of the key bindings below show with ??, use \\[describe-key]
1894 followed by the key sequence to see what the key sequence does.
1896 \\{idlwave-mode-map}"
1897 :abbrev-table idlwave-mode-abbrev-table
1898 (if idlwave-startup-message
1899 (message "Emacs IDLWAVE mode version %s." idlwave-mode-version
))
1900 (setq idlwave-startup-message nil
)
1902 (set (make-local-variable 'indent-line-function
) 'idlwave-indent-and-action
)
1904 (set (make-local-variable idlwave-comment-indent-function
)
1905 #'idlwave-comment-hook
)
1907 (set (make-local-variable 'comment-start-skip
) ";+[ \t]*")
1908 (set (make-local-variable 'comment-start
) ";")
1909 (set (make-local-variable 'comment-add
) 1) ; ";;" for new and regions
1910 (set (make-local-variable 'require-final-newline
) t
)
1911 (set (make-local-variable 'abbrev-all-caps
) t
)
1912 (set (make-local-variable 'indent-tabs-mode
) nil
)
1913 (set (make-local-variable 'completion-ignore-case
) t
)
1915 (when (featurep 'easymenu
)
1916 (easy-menu-add idlwave-mode-menu idlwave-mode-map
)
1917 (easy-menu-add idlwave-mode-debug-menu idlwave-mode-map
))
1919 (setq abbrev-mode t
)
1921 (set (make-local-variable idlwave-fill-function
) 'idlwave-auto-fill
)
1922 (setq comment-end
"")
1923 (set (make-local-variable 'comment-multi-line
) nil
)
1924 (set (make-local-variable 'paragraph-separate
)
1925 "[ \t\f]*$\\|[ \t]*;+[ \t]*$\\|;+[+=-_*]+$")
1926 (set (make-local-variable 'paragraph-start
) "[ \t\f]\\|[ \t]*;+[ \t]")
1927 (set (make-local-variable 'paragraph-ignore-fill-prefix
) nil
)
1928 (set (make-local-variable 'parse-sexp-ignore-comments
) t
)
1931 (set (make-local-variable 'add-log-current-defun-function
)
1932 'idlwave-current-routine-fullname
)
1934 ;; Set tag table list to use IDLTAGS as file name.
1935 (if (boundp 'tag-table-alist
)
1936 (add-to-list 'tag-table-alist
'("\\.pro$" .
"IDLTAGS")))
1938 ;; Font-lock additions
1939 ;; Following line is for Emacs - XEmacs uses the corresponding property
1940 ;; on the `idlwave-mode' symbol.
1941 (set (make-local-variable 'font-lock-defaults
) idlwave-font-lock-defaults
)
1942 (set (make-local-variable 'font-lock-mark-block-function
)
1943 'idlwave-mark-subprogram
)
1944 (set (make-local-variable 'font-lock-fontify-region-function
)
1945 'idlwave-font-lock-fontify-region
)
1948 (set (make-local-variable 'imenu-create-index-function
)
1949 'imenu-default-create-index-function
)
1950 (set (make-local-variable 'imenu-extract-index-name-function
)
1952 (set (make-local-variable 'imenu-prev-index-position-function
)
1953 'idlwave-prev-index-position
)
1956 (add-to-list 'hs-special-modes-alist
1958 idlwave-begin-block-reg
1959 idlwave-end-block-reg
1961 'idlwave-forward-block nil
))
1963 ;; Make a local post-command-hook and add our hook to it
1964 ;; NB: `make-local-hook' needed for older/alternative Emacs compatibility
1965 ;; (make-local-hook 'post-command-hook)
1966 (add-hook 'post-command-hook
'idlwave-command-hook nil
'local
)
1968 ;; Make local hooks for buffer updates
1969 ;; NB: `make-local-hook' needed for older/alternative Emacs compatibility
1970 ;; (make-local-hook 'kill-buffer-hook)
1971 (add-hook 'kill-buffer-hook
'idlwave-kill-buffer-update nil
'local
)
1972 ;; (make-local-hook 'after-save-hook)
1973 (add-hook 'after-save-hook
'idlwave-save-buffer-update nil
'local
)
1974 (add-hook 'after-save-hook
'idlwave-revoke-license-to-kill nil
'local
)
1976 ;; Setup directories and file, if necessary
1979 ;; Update the routine info with info about current buffer?
1980 (idlwave-new-buffer-update)
1982 ;; Check help location
1983 (idlwave-help-check-locations))
1985 (defvar idlwave-setup-done nil
)
1986 (defun idlwave-setup ()
1987 (unless idlwave-setup-done
1988 (if (not (file-directory-p idlwave-config-directory
))
1989 (make-directory idlwave-config-directory
))
1991 idlwave-user-catalog-file
(expand-file-name
1992 idlwave-user-catalog-file
1993 idlwave-config-directory
)
1994 idlwave-xml-system-rinfo-converted-file
1996 idlwave-xml-system-rinfo-converted-file
1997 idlwave-config-directory
)
1998 idlwave-path-file
(expand-file-name
2000 idlwave-config-directory
))
2001 (idlwave-read-paths) ; we may need these early
2002 (setq idlwave-setup-done t
)))
2004 (defun idlwave-font-lock-fontify-region (beg end
&optional verbose
)
2005 "Fontify continuation lines correctly."
2010 (when (setq pos
(idlwave-is-continuation-line))
2012 (idlwave-beginning-of-statement)
2013 (setq beg
(point)))))
2014 (font-lock-default-fontify-region beg end verbose
))
2017 ;; Code Formatting ----------------------------------------------------
2020 (defun idlwave-hard-tab ()
2021 "Insert TAB in buffer in current position."
2025 ;;; This stuff is experimental
2027 (defvar idlwave-command-hook nil
2028 "If non-nil, a list that can be evaluated using `eval'.
2029 It is evaluated in the lisp function `idlwave-command-hook' which is
2030 placed in `post-command-hook'.")
2032 (defun idlwave-command-hook ()
2033 "Command run after every command.
2034 Evaluates a non-nil value of the *variable* `idlwave-command-hook' and
2035 sets the variable to zero afterwards."
2036 (and idlwave-command-hook
2037 (listp idlwave-command-hook
)
2039 (eval idlwave-command-hook
)
2041 (setq idlwave-command-hook nil
))
2045 ;; It would be better to use expand.el for better abbrev handling and
2048 (defun idlwave-check-abbrev (arg &optional reserved
)
2049 "Reverse abbrev expansion if in comment or string.
2050 Argument ARG is the number of characters to move point
2051 backward if `idlwave-abbrev-move' is non-nil.
2052 If optional argument RESERVED is non-nil then the expansion
2053 consists of reserved words, which will be capitalized if
2054 `idlwave-reserved-word-upcase' is non-nil.
2055 Otherwise, the abbrev will be capitalized if `idlwave-abbrev-change-case'
2056 is non-nil, unless its value is \`down in which case the abbrev will be
2057 made into all lowercase.
2058 Returns non-nil if abbrev is left expanded."
2059 (if (idlwave-quoted)
2060 (progn (unexpand-abbrev)
2062 (if (and reserved idlwave-reserved-word-upcase
)
2063 (upcase-region last-abbrev-location
(point))
2065 ((equal idlwave-abbrev-change-case
'down
)
2066 (downcase-region last-abbrev-location
(point)))
2067 (idlwave-abbrev-change-case
2068 (upcase-region last-abbrev-location
(point)))))
2069 (if (and idlwave-abbrev-move
(> arg
0))
2070 (if (boundp 'post-command-hook
)
2071 (setq idlwave-command-hook
(list 'backward-char
(1+ arg
)))
2072 (backward-char arg
)))
2075 (defun idlwave-in-comment ()
2076 "Return t if point is inside a comment, nil otherwise."
2078 (let ((here (point)))
2079 (and (idlwave-goto-comment) (> here
(point))))))
2081 (defun idlwave-goto-comment ()
2082 "Move to start of comment delimiter on current line.
2083 Moves to end of line if there is no comment delimiter.
2084 Ignores comment delimiters in strings.
2085 Returns point if comment found and nil otherwise."
2086 (let ((eos (point-at-eol))
2089 ;; Look for first comment delimiter not in a string
2091 (setq found
(search-forward comment-start eos
'lim
))
2092 (while (and found
(idlwave-in-quote))
2093 (setq found
(search-forward comment-start eos
'lim
)))
2094 (store-match-data data
)
2095 (and found
(not (idlwave-in-quote))
2100 (defun idlwave-region-active-p ()
2101 "Should we operate on an active region?"
2102 (if (fboundp 'use-region-p
)
2106 (defun idlwave-show-matching-quote ()
2107 "Insert quote and show matching quote if this is end of a string."
2109 (let ((bq (idlwave-in-quote))
2110 (inq last-command-event
))
2111 (if (and bq
(not (idlwave-in-comment)))
2112 (let ((delim (char-after bq
)))
2118 ;; Not the end of a string
2121 (defun idlwave-show-begin-check ()
2122 "Ensure that the previous word was a token before `idlwave-show-begin'.
2123 An END token must be preceded by whitespace."
2124 (if (not (idlwave-quoted))
2129 (looking-at "[ \t\n\f]"))
2130 (idlwave-show-begin))))
2132 (defun idlwave-show-begin ()
2133 "Find the start of current block and blinks to it for a second.
2134 Also checks if the correct END statement has been used."
2135 ;; All end statements are reserved words
2136 ;; Re-indent end line
2137 ;;(insert-char ?\ 1) ;; So indent, etc. work well
2139 (let* ((pos (point-marker))
2140 (last-abbrev-marker (copy-marker last-abbrev-location
))
2141 (eol-pos (point-at-eol))
2142 begin-pos end-pos end end1
)
2143 (if idlwave-reindent-end
(idlwave-indent-line))
2144 (setq last-abbrev-location
(marker-position last-abbrev-marker
))
2145 (when (and (idlwave-check-abbrev 0 t
)
2148 ;; Move inside current block
2149 (goto-char last-abbrev-marker
)
2150 (idlwave-block-jump-out -
1 'nomark
)
2151 (setq begin-pos
(point))
2152 (idlwave-block-jump-out 1 'nomark
)
2153 (setq end-pos
(point))
2154 (if (> end-pos eol-pos
)
2157 (setq end
(buffer-substring
2159 (skip-chars-backward "a-zA-Z")
2162 (goto-char begin-pos
)
2163 (when (setq end1
(cdr (idlwave-block-master)))
2165 ((null end1
)) ; no-operation
2166 ((string= (downcase end
) (downcase end1
))
2168 ((string= (downcase end
) "end")
2170 (if idlwave-expand-generic-end
2174 (insert (if (string= end
"END") (upcase end1
) end1
))
2179 (message "Warning: Shouldn't this be \"%s\" instead of \"%s\"?"
2184 (defun idlwave-block-master ()
2185 (let ((case-fold-search t
))
2188 ((looking-at "pro\\|case\\|switch\\|function\\>")
2189 (assoc (downcase (match-string 0)) idlwave-block-matches
))
2190 ((looking-at "begin\\>")
2191 (let ((limit (save-excursion
2192 (idlwave-beginning-of-statement)
2195 ((re-search-backward ":[ \t]*\\=" limit t
)
2196 ;; seems to be a case thing
2198 ((re-search-backward idlwave-block-match-regexp limit t
)
2199 (assoc (downcase (match-string 1))
2200 idlwave-block-matches
))
2202 ;; Just a normal block
2203 '("begin" .
"end")))))
2206 (defun idlwave-close-block ()
2207 "Terminate the current block with the correct END statement."
2209 ;; Start new line if we are not in a new line
2210 (unless (save-excursion
2211 (skip-chars-backward " \t")
2213 (let ((idlwave-show-block nil
))
2214 (newline-and-indent)))
2215 (let ((last-abbrev-location (point))) ; for upcasing
2217 (idlwave-show-begin)))
2219 (defun idlwave-custom-ampersand-surround (&optional is-action
)
2220 "Surround &, leaving room for && (which surround as well)."
2221 (let* ((prev-char (char-after (- (point) 2)))
2222 (next-char (char-after (point)))
2223 (amp-left (eq prev-char ?
&))
2224 (amp-right (eq next-char ?
&))
2225 (len (if amp-left
2 1)))
2226 (unless amp-right
;no need to do it twice, amp-left will catch it.
2227 (idlwave-surround -
1 (if (or is-action amp-left
) -
1) len
))))
2229 (defun idlwave-custom-ltgtr-surround (gtr &optional is-action
)
2230 "Surround > and < by blanks, leaving room for >= and <=, and considering ->."
2231 (let* ((prev-char (char-after (- (point) 2)))
2232 (next-char (char-after (point)))
2233 (method-invoke (and gtr
(eq prev-char ?-
)))
2234 (len (if method-invoke
2 1)))
2235 (unless (eq next-char ?
=)
2236 ;; Key binding: pad only on left, to save for possible >=/<=
2237 (idlwave-surround -
1 (if (or is-action method-invoke
) -
1) len
))))
2239 (defun idlwave-surround (&optional before after length is-action
)
2240 "Surround the LENGTH characters before point with blanks.
2241 LENGTH defaults to 1.
2242 Optional arguments BEFORE and AFTER affect the behavior before and
2243 after the characters (see also description of `idlwave-make-space'):
2247 integer > 0 force exactly n spaces
2248 integer < 0 at least |n| spaces
2250 The function does nothing if any of the following conditions is true:
2251 - `idlwave-surround-by-blank' is nil
2252 - the character before point is inside a string or comment"
2253 (when (and idlwave-surround-by-blank
(not (idlwave-quoted)))
2254 (let ((length (or length
1))) ; establish a default for LENGTH
2255 (backward-char length
)
2257 (let ((here (point)))
2258 (skip-chars-backward " \t")
2260 ;; avoid clobbering indent
2262 (move-to-column (idlwave-calculate-indent))
2263 (if (<= (point) here
)
2264 (narrow-to-region (point) here
))
2266 (idlwave-make-space before
))
2267 (skip-chars-forward " \t"))
2268 (forward-char length
)
2269 (idlwave-make-space after
)
2270 ;; Check to see if the line should auto wrap
2271 (if (and (equal (char-after (1- (point))) ?\
)
2272 (> (current-column) fill-column
))
2273 (funcall auto-fill-function
)))))
2275 (defun idlwave-make-space (n)
2276 "Make space at point.
2277 The space affected is all the spaces and tabs around point.
2278 If n is non-nil then point is left abs(n) spaces from the beginning of
2279 the contiguous space.
2280 The amount of space at point is determined by N.
2281 If the value of N is:
2283 > 0 - exactly N spaces.
2284 < 0 - a minimum of -N spaces, i.e., do not change if there are
2286 0 - no spaces (i.e. remove any existing space)."
2289 ((start-col (progn (skip-chars-backward " \t") (current-column)))
2291 (end-col (progn (skip-chars-forward " \t") (current-column))))
2292 (delete-horizontal-space)
2295 (idlwave-indent-to (+ start-col n
))
2296 (goto-char (+ left n
)))
2298 (idlwave-indent-to end-col
(- n
))
2299 (goto-char (- left n
)))
2303 (defun idlwave-newline ()
2304 "Insert a newline and indent the current and previous line."
2307 ;; Handle unterminated single and double quotes
2308 ;; If not in a comment and in a string then insertion of a newline
2309 ;; will mean unbalanced quotes.
2311 (if (and (not (idlwave-in-comment)) (idlwave-in-quote))
2313 (message "Warning: unbalanced quotes?")))
2316 ;; The current line is being split, the cursor should be at the
2317 ;; beginning of the new line skipping the leading indentation.
2319 ;; The reason we insert the new line before indenting is that the
2320 ;; indenting could be confused by keywords (e.g. END) on the line
2321 ;; after the split point. This prevents us from just using
2322 ;; `indent-for-tab-command' followed by `newline-and-indent'.
2324 (beginning-of-line 0)
2325 (idlwave-indent-line)
2327 (idlwave-indent-line))
2330 ;; Use global variable 'comment-column' to set parallel comment
2332 ;; Modeled on lisp.el
2333 ;; Emacs Lisp and IDL (Wave CL) have identical comment syntax
2334 (defun idlwave-comment-hook ()
2335 "Compute indent for the beginning of the IDL comment delimiter."
2336 (if (or (looking-at idlwave-no-change-comment
)
2337 (looking-at (or idlwave-begin-line-comment
"^;")))
2339 (if (looking-at idlwave-code-comment
)
2340 (if (save-excursion (skip-chars-backward " \t") (bolp))
2341 ;; On line by itself, indent as code
2342 (let ((tem (idlwave-calculate-indent)))
2343 (if (listp tem
) (car tem
) tem
))
2344 ;; after code - do not change
2346 (skip-chars-backward " \t")
2347 (max (if (bolp) 0 (1+ (current-column)))
2350 (defun idlwave-split-line ()
2351 "Continue line by breaking line at point and indent the lines.
2352 For a code line insert continuation marker. If the line is a line comment
2353 then the new line will contain a comment with the same indentation.
2354 Splits strings with the IDL operator `+' if `idlwave-split-line-string' is
2357 ;; Expand abbreviation, just like normal RET would.
2358 (and abbrev-mode
(expand-abbrev))
2360 (if (not (idlwave-in-comment))
2361 ;; For code line add continuation.
2362 ;; Check if splitting a string.
2364 (if (setq beg
(idlwave-in-quote))
2365 (if idlwave-split-line-string
2366 ;; Split the string.
2367 (progn (insert (setq beg
(char-after beg
)) " + "
2368 idlwave-continuation-char beg
)
2370 (newline-and-indent)
2372 ;; Do not split the string.
2374 (message "Warning: continuation inside string!!")
2375 (insert " " idlwave-continuation-char
))
2376 ;; Not splitting a string.
2377 (if (not (member (char-before) '(?\ ?
\t)))
2379 (insert idlwave-continuation-char
)
2380 (newline-and-indent)))
2381 (indent-new-comment-line))
2382 ;; Indent previous line
2383 (setq beg
(- (point-max) (point)))
2385 (idlwave-indent-line)
2386 (goto-char (- (point-max) beg
))
2387 ;; Reindent new line
2388 (idlwave-indent-line)))
2390 (defun idlwave-beginning-of-subprogram (&optional nomark
)
2391 "Move point to the beginning of the current program unit.
2392 If NOMARK is non-nil, do not push mark."
2394 (idlwave-find-key idlwave-begin-unit-reg -
1 nomark
))
2396 (defun idlwave-end-of-subprogram (&optional nomark
)
2397 "Move point to the start of the next program unit.
2398 If NOMARK is non-nil, do not push mark."
2400 (idlwave-end-of-statement)
2401 (idlwave-find-key idlwave-end-unit-reg
1 nomark
))
2403 (defun idlwave-mark-statement ()
2404 "Mark current IDL statement."
2406 (idlwave-end-of-statement)
2407 (let ((end (point)))
2408 (idlwave-beginning-of-statement)
2409 (push-mark end nil t
)))
2411 (defun idlwave-mark-block ()
2412 "Mark containing block."
2414 (idlwave-end-of-statement)
2415 (idlwave-backward-up-block -
1)
2416 (idlwave-end-of-statement)
2417 (let ((end (point)))
2418 (idlwave-backward-block)
2419 (idlwave-beginning-of-statement)
2420 (push-mark end nil t
)))
2423 (defun idlwave-mark-subprogram ()
2424 "Put mark at beginning of program, point at end.
2425 The marks are pushed."
2427 (idlwave-end-of-statement)
2428 (idlwave-beginning-of-subprogram)
2429 (let ((beg (point)))
2430 (idlwave-forward-block)
2431 (push-mark beg nil t
))
2432 (exchange-point-and-mark))
2434 (defun idlwave-backward-up-block (&optional arg
)
2435 "Move to beginning of enclosing block if prefix ARG >= 0.
2436 If prefix ARG < 0 then move forward to enclosing block end."
2438 (idlwave-block-jump-out (- arg
) 'nomark
))
2440 (defun idlwave-beginning-of-block ()
2441 "Go to the beginning of the current block."
2443 (idlwave-block-jump-out -
1 'nomark
)
2446 (defun idlwave-end-of-block ()
2447 "Go to the beginning of the current block."
2449 (idlwave-block-jump-out 1 'nomark
)
2452 (defun idlwave-forward-block (&optional arg
)
2453 "Move across next nested block."
2455 (let ((arg (or arg
1)))
2456 (if (idlwave-down-block arg
)
2457 (idlwave-block-jump-out arg
'nomark
))))
2459 (defun idlwave-backward-block ()
2460 "Move backward across previous nested block."
2462 (if (idlwave-down-block -
1)
2463 (idlwave-block-jump-out -
1 'nomark
)))
2465 (defun idlwave-down-block (&optional arg
)
2467 With ARG: ARG >= 0 go forwards, ARG < 0 go backwards.
2468 Returns non-nil if successfull."
2473 (let ((eos (save-excursion
2474 (idlwave-block-jump-out -
1 'nomark
)
2476 (if (setq status
(idlwave-find-key
2477 idlwave-end-block-reg -
1 'nomark eos
))
2478 (idlwave-beginning-of-statement)
2479 (message "No nested block before beginning of containing block.")))
2481 (let ((eos (save-excursion
2482 (idlwave-block-jump-out 1 'nomark
)
2484 (if (setq status
(idlwave-find-key
2485 idlwave-begin-block-reg
1 'nomark eos
))
2486 (idlwave-end-of-statement)
2487 (message "No nested block before end of containing block."))))
2490 (defun idlwave-mark-doclib ()
2491 "Put point at beginning of doc library header, mark at end.
2492 The marks are pushed."
2496 (goto-char (point-max))
2497 (if (re-search-backward idlwave-doclib-start nil t
)
2499 (setq beg
(progn (beginning-of-line) (point)))
2500 (if (re-search-forward idlwave-doclib-end nil t
)
2503 (push-mark beg nil t
)
2504 (message "Could not find end of doc library header.")))
2505 (message "Could not find doc library header start.")
2506 (goto-char here
)))))
2508 (defun idlwave-current-routine-fullname ()
2509 (let ((name (idlwave-current-routine)))
2510 (idlwave-make-full-name (nth 2 name
) (car name
))))
2512 (defun idlwave-current-routine ()
2513 "Return (NAME TYPE CLASS) of current routine."
2516 (idlwave-beginning-of-subprogram 'nomark
)
2517 (if (looking-at "[ \t]*\\<\\(pro\\|function\\)\\>\\s-+\\(\\([a-zA-Z0-9$_]+\\)::\\)?\\([a-zA-Z0-9$_]+\\)")
2518 (let* ((type (if (string= (downcase (match-string 1)) "pro")
2520 (class (idlwave-sintern-class (match-string 3)))
2521 (name (idlwave-sintern-routine-or-method (match-string 4) class
)))
2522 (list name type class
)))))
2524 (defvar idlwave-shell-prompt-pattern
)
2525 (defun idlwave-beginning-of-statement ()
2526 "Move to beginning of the current statement.
2527 Skips back past statement continuations.
2528 Point is placed at the beginning of the line whether or not this is an
2532 ((derived-mode-p 'idlwave-shell-mode
)
2533 (if (re-search-backward idlwave-shell-prompt-pattern nil t
)
2534 (goto-char (match-end 0))))
2536 (if (save-excursion (forward-line -
1) (idlwave-is-continuation-line))
2537 (idlwave-previous-statement)
2538 (beginning-of-line)))))
2540 (defun idlwave-previous-statement ()
2541 "Move point to beginning of the previous statement.
2542 Returns t if the current line before moving is the beginning of
2543 the first non-comment statement in the file, and nil otherwise."
2545 (let (first-statement)
2546 (if (not (= (forward-line -
1) 0))
2547 ;; first line in file
2549 ;; skip blank lines, label lines, include lines and line comments
2551 ;; The current statement is the first statement until we
2552 ;; reach another statement.
2553 (setq first-statement
2555 (looking-at idlwave-comment-line-start-skip
)
2556 (looking-at "[ \t]*$")
2557 (looking-at (concat "[ \t]*" idlwave-label
"[ \t]*$"))
2559 (= (forward-line -
1) 0)))
2560 ;; skip continuation lines
2564 (idlwave-is-continuation-line))
2565 (= (forward-line -
1) 0)))
2568 (defun idlwave-end-of-statement ()
2569 "Move point to the end of the current IDL statement.
2570 If not in a statement just moves to end of line. Returns position."
2572 (while (and (idlwave-is-continuation-line)
2573 (= (forward-line 1) 0))
2574 (while (and (idlwave-is-comment-or-empty-line)
2575 (= (forward-line 1) 0))))
2579 (defun idlwave-end-of-statement0 ()
2580 "Move point to the end of the current IDL statement.
2581 If not in a statement just moves to end of line. Returns position."
2583 (while (and (idlwave-is-continuation-line)
2584 (= (forward-line 1) 0)))
2588 (defun idlwave-next-statement ()
2589 "Move point to beginning of the next IDL statement.
2590 Returns t if that statement is the last non-comment IDL statement
2591 in the file, and nil otherwise."
2593 (let (last-statement)
2594 (idlwave-end-of-statement)
2595 ;; skip blank lines, label lines, include lines and line comments
2596 (while (and (= (forward-line 1) 0)
2597 ;; The current statement is the last statement until
2598 ;; we reach a new statement.
2599 (setq last-statement
2601 (looking-at idlwave-comment-line-start-skip
)
2602 (looking-at "[ \t]*$")
2603 (looking-at (concat "[ \t]*" idlwave-label
"[ \t]*$"))
2604 (looking-at "^@")))))
2607 (defun idlwave-skip-multi-commands (&optional lim
)
2608 "Skip past multiple commands on a line (with `&')."
2609 (let ((save-point (point)))
2610 (when (re-search-forward ".*&" lim t
)
2611 (goto-char (match-end 0))
2612 (if (idlwave-quoted)
2613 (goto-char save-point
)
2614 (if (eq (char-after (- (point) 2)) ?
&) (goto-char save-point
))))
2617 (defun idlwave-skip-label-or-case ()
2618 "Skip label or case statement element.
2619 Returns position after label.
2620 If there is no label point is not moved and nil is returned."
2621 ;; Case expressions and labels are terminated by a colon.
2622 ;; So we find the first colon in the line and make sure
2623 ;; - no `?' is before it (might be a ? b : c)
2624 ;; - it is not in a comment
2625 ;; - not in a string constant
2626 ;; - not in parenthesis (like a[0:3])
2627 ;; - not followed by another ":" in explicit class, ala a->b::c
2628 ;; As many in this mode, this function is heuristic and not an exact
2630 (let* ((start (point))
2631 (eos (save-excursion (idlwave-end-of-statement) (point)))
2632 (end (idlwave-find-key ":" 1 'nomark eos
)))
2634 (= (nth 0 (parse-partial-sexp start end
)) 0)
2635 (not (string-match "\\?" (buffer-substring start end
)))
2636 (not (string-match "^::" (buffer-substring end eos
))))
2643 (defun idlwave-start-of-substatement (&optional pre
)
2644 "Move to start of next IDL substatement after point.
2645 Uses the type of the current IDL statement to determine if the next
2646 statement is on a new line or is a subpart of the current statement.
2647 Returns point at start of substatement modulo whitespace.
2648 If optional argument is non-nil move to beginning of current
2650 (let ((orig (point))
2651 (eos (idlwave-end-of-statement))
2654 (idlwave-beginning-of-statement)
2655 (idlwave-skip-label-or-case)
2656 (if (< (point) orig
)
2657 (idlwave-skip-multi-commands orig
))
2659 ;; Continue looking for substatements until we are past orig
2660 (while (and (<= (point) orig
) (not (eobp)))
2662 (setq nst
(nth 1 (cdr (setq st
(car (idlwave-statement-type))))))
2663 (if (equal (car st
) 'if
) (setq ifnest
(1+ ifnest
)))
2665 (idlwave-find-key nst
1 'nomark eos
))
2666 (goto-char (match-end 0)))
2667 ((and (> ifnest
0) (idlwave-find-key "\\<else\\>" 1 'nomark eos
))
2668 (setq ifnest
(1- ifnest
))
2669 (goto-char (match-end 0)))
2671 (idlwave-next-statement))))
2672 (if pre
(goto-char last
))
2673 ;; If a continuation line starts here, move to next line
2674 (if (looking-at "[ \t]*\\$\\([ \t]*\\(;\\|$\\)\\)")
2675 (beginning-of-line 2))
2678 (defun idlwave-statement-type ()
2679 "Return the type of the current IDL statement.
2680 Uses `idlwave-statement-match' to return a cons of (type . point) with
2681 point the ending position where the type was determined. Type is the
2682 association from `idlwave-statement-match', i.e. the cons cell from the
2683 list not just the type symbol. Returns nil if not an identifiable
2686 ;; Skip whitespace within a statement which is spaces, tabs, continuations
2687 ;; and possibly comments
2688 (while (looking-at "[ \t]*\\$")
2690 (skip-chars-forward " \t")
2691 (let ((st idlwave-statement-match
)
2692 (case-fold-search t
))
2693 (while (and (not (looking-at (nth 0 (cdr (car st
)))))
2694 (setq st
(cdr st
))))
2696 (append st
(match-end 0))))))
2698 (defun idlwave-expand-equal (&optional before after is-action
)
2699 "Pad '=' with spaces.
2700 Two cases: Assignment statement, and keyword assignment.
2701 Which case is determined using `idlwave-start-of-substatement' and
2702 `idlwave-statement-type'. The equal sign will be surrounded by BEFORE
2703 and AFTER blanks. If `idlwave-pad-keyword' is t then keyword assignment
2704 is treated just like assignment statements. When nil, spaces are
2705 removed for keyword assignment. Any other value keeps the current space
2706 around the `='. Limits in for loops are treated as keyword assignment.
2708 Starting with IDL 6.0, a number of op= assignments are available.
2709 Since ambiguities of the form:
2714 can occur, alphanumeric operator assignment will never be pre-padded,
2715 only post-padded. You must use a space before these to disambiguate
2716 \(not just for padding, but for proper parsing by IDL too!). Other
2717 operators, such as ##=, ^=, etc., will be pre-padded.
2719 IS-ACTION is ignored.
2721 See `idlwave-surround'."
2722 (if idlwave-surround-by-blank
2724 ((non-an-ops "\\(##\\|\\*\\|\\+\\|-\\|/\\|<\\|>\\|\\^\\)\\=")
2726 "\\s-\\(AND\\|EQ\\|GE\\|GT\\|LE\\|LT\\|MOD\\|NE\\|OR\\|XOR\\)\\=")
2730 (let ((case-fold-search t
))
2733 (re-search-backward non-an-ops nil t
)
2734 ;; Why doesn't ##? work for both?
2735 (re-search-backward "\\(#\\)\\=" nil t
))
2736 (setq len
(1+ (length (match-string 1))))
2737 (when (re-search-backward an-ops nil t
)
2738 ;(setq begin nil) ; won't modify begin
2739 (setq len
(1+ (length (match-string 1))))))))
2741 (if (eq t idlwave-pad-keyword
)
2742 ;; Everything gets padded equally
2743 (idlwave-surround before after len
)
2744 ;; Treating keywords/for variables specially...
2745 (let ((st (save-excursion ; To catch "for" variables
2746 (idlwave-start-of-substatement t
)
2747 (idlwave-statement-type)))
2748 (what (save-excursion ; To catch keywords
2749 (skip-chars-backward "= \t")
2750 (nth 2 (idlwave-where)))))
2751 (cond ((or (memq what
'(function-keyword procedure-keyword
))
2752 (memq (caar st
) '(for pdef
)))
2754 ((null idlwave-pad-keyword
)
2755 (idlwave-surround 0 0)
2757 (t))) ; leave any spaces alone
2758 (t (idlwave-surround before after len
))))))))
2761 (defun idlwave-indent-and-action (&optional arg
)
2762 "Call `idlwave-indent-line' and do expand actions.
2763 With prefix ARG non-nil, indent the entire sub-statement."
2766 (if (and idlwave-expand-generic-end
2767 (re-search-backward "\\<\\(end\\)\\s-*\\="
2768 (max 0 (- (point) 10)) t
)
2769 (looking-at "\\(end\\)\\([ \n\t]\\|\\'\\)"))
2770 (progn (goto-char (match-end 1))
2771 ;;Expand the END abbreviation, just as RET or Space would have.
2772 (if abbrev-mode
(expand-abbrev)
2773 (idlwave-show-begin)))))
2774 (when (and (not arg
) current-prefix-arg
)
2775 (setq arg current-prefix-arg
)
2776 (setq current-prefix-arg nil
))
2778 (idlwave-indent-statement)
2779 (idlwave-indent-line t
)))
2781 (defun idlwave-indent-line (&optional expand
)
2782 "Indent current IDL line as code or as a comment.
2783 The actions in `idlwave-indent-action-table' are performed.
2784 If the optional argument EXPAND is non-nil then the actions in
2785 `idlwave-indent-expand-table' are performed."
2787 ;; Move point out of left margin.
2789 (skip-chars-backward " \t")
2791 (skip-chars-forward " \t"))
2792 (let ((mloc (point-marker)))
2795 (if (looking-at idlwave-comment-line-start-skip
)
2796 ;; Indentation for a line comment
2798 (skip-chars-forward " \t")
2799 (idlwave-indent-left-margin (idlwave-comment-hook)))
2803 ;; Before indenting, run action routines.
2805 (if (and expand idlwave-do-actions
)
2806 (mapc 'idlwave-do-action idlwave-indent-expand-table
))
2808 (if idlwave-do-actions
2809 (mapc 'idlwave-do-action idlwave-indent-action-table
))
2811 ;; No longer expand abbrevs on the line. The user can do this
2812 ;; manually using expand-region-abbrevs.
2814 ;; Indent for code line
2819 (looking-at (concat "^" idlwave-label
"[ \t]*$"))
2821 (looking-at "^[ \t]*@"))
2825 (idlwave-indent-left-margin (idlwave-calculate-indent)))
2826 ;; Adjust parallel comment
2828 (if (idlwave-in-comment)
2829 ;; Emacs 21 is too smart with fill-column on comment indent
2830 (let ((fill-column (if (fboundp 'comment-indent-new-line
)
2833 (indent-for-comment)))))
2835 ;; Get rid of marker
2836 (set-marker mloc nil
)))
2838 (defun idlwave-do-action (action)
2839 "Perform an action repeatedly on a line.
2840 ACTION is a list (REG . FUNC). REG is a regular expression. FUNC is
2841 either a function name to be called with `funcall' or a list to be
2842 evaluated with `eval'. The action performed by FUNC should leave
2843 point after the match for REG - otherwise an infinite loop may be
2844 entered. FUNC is always passed a final argument of 'is-action, so it
2845 can discriminate between being run as an action, or a key binding."
2846 (let ((action-key (car action
))
2847 (action-routine (cdr action
)))
2849 (while (idlwave-look-at action-key
)
2850 (if (listp action-routine
)
2851 (eval (append action-routine
'('is-action
)))
2852 (funcall action-routine
'is-action
)))))
2854 (defun idlwave-indent-to (col &optional min
)
2855 "Indent from point with spaces until column COL.
2856 Inserts space before markers at point."
2857 (if (not min
) (setq min
0))
2858 (insert-before-markers
2859 (make-string (max min
(- col
(current-column))) ?\
)))
2861 (defun idlwave-indent-left-margin (col)
2862 "Indent the current line to column COL.
2863 Indents such that first non-whitespace character is at column COL
2864 Inserts spaces before markers at point."
2867 (delete-horizontal-space)
2868 (idlwave-indent-to col
)))
2870 (defun idlwave-indent-subprogram ()
2871 "Indent program unit which contains point."
2874 (idlwave-end-of-statement)
2875 (idlwave-beginning-of-subprogram)
2876 (let ((beg (point)))
2877 (idlwave-forward-block)
2878 (message "Indenting subprogram...")
2879 (indent-region beg
(point) nil
))
2880 (message "Indenting subprogram...done.")))
2882 (defun idlwave-indent-statement ()
2883 "Indent current statement, including all continuation lines."
2886 (idlwave-beginning-of-statement)
2887 (let ((beg (point)))
2888 (idlwave-end-of-statement)
2889 (indent-region beg
(point) nil
))))
2891 (defun idlwave-calculate-indent ()
2892 "Return appropriate indentation for current line as IDL code."
2896 ;; Check for beginning of unit - main (beginning of buffer), pro, or
2898 ((idlwave-look-at idlwave-begin-unit-reg
)
2900 ;; Check for continuation line
2902 (and (= (forward-line -
1) 0)
2903 (idlwave-is-continuation-line)))
2904 (idlwave-calculate-cont-indent))
2905 ;; calculate indent based on previous and current statements
2906 (t (let* (beg-prev-pos
2908 ;; calculate indent based on previous statement
2911 ;; Beginning of file
2913 (idlwave-previous-statement)
2914 (setq beg-prev-pos
(point)))
2917 ((idlwave-look-at idlwave-begin-unit-reg t
)
2918 (+ (idlwave-current-statement-indent)
2919 idlwave-main-block-indent
))
2921 ((idlwave-look-at idlwave-begin-block-reg t
)
2922 (+ (idlwave-min-current-statement-indent)
2923 idlwave-block-indent
))
2925 ((idlwave-look-at idlwave-end-block-reg t
)
2927 ;; Match to the *beginning* of the block opener
2928 (goto-char beg-prev-pos
)
2929 (idlwave-block-jump-out -
1 'nomark
) ; go to begin block
2930 (idlwave-min-current-statement-indent)))
2931 ;; idlwave-end-offset
2932 ;; idlwave-block-indent))
2934 ;; Default to current indent
2935 ((idlwave-current-statement-indent))))))
2936 ;; adjust the indentation based on the current statement
2939 ((idlwave-look-at idlwave-end-block-reg
)
2940 (+ the-indent idlwave-end-offset
))
2944 ;; Parentheses indent
2947 (defun idlwave-calculate-paren-indent (beg-reg end-reg close-exp
)
2948 "Calculate the continuation indent inside a paren group.
2949 Returns a cons-cell with (open . indent), where open is the
2950 location of the open paren."
2951 (let ((open (nth 1 (parse-partial-sexp beg-reg end-reg
))))
2952 ;; Found an innermost open paren.
2955 ;; Line up with next word unless this is a closing paren.
2958 ;; Plain Kernighan-style nested indent
2959 (idlwave-indent-parens-nested
2960 (+ idlwave-continuation-indent
(idlwave-current-indent)))
2962 ;; This is a closed paren - line up under open paren.
2966 ;; Empty (or just comment) follows -- revert to basic indent
2970 (looking-at "[ \t$]*\\(;.*\\)?$"))
2973 ;; Line up with first word after any blank space
2975 (skip-chars-forward " \t")
2976 (current-column))))))))
2978 (defun idlwave-calculate-cont-indent ()
2979 "Calculates the IDL continuation indent column from the previous statement.
2980 Note that here previous statement usually means the beginning of the
2981 current statement if this statement is a continuation of the previous
2982 line. Various special types of continuations, including assignments,
2983 routine definitions, and parenthetical groupings, are treated separately."
2985 (let* ((case-fold-search t
)
2986 (end-reg (progn (beginning-of-line) (point)))
2987 (beg-last-statement (save-excursion (idlwave-previous-statement)
2989 (beg-reg (progn (idlwave-start-of-substatement 'pre
)
2990 (if (eq (line-beginning-position) end-reg
)
2991 (goto-char beg-last-statement
)
2993 (basic-indent (+ (idlwave-min-current-statement-indent end-reg
)
2994 idlwave-continuation-indent
))
2995 fancy-nonparen-indent fancy-paren-indent
)
2997 ;; Align then with its matching if, etc.
2998 ((let ((matchers '(("\\<if\\>" .
"[ \t]*then")
2999 ("\\<\\(if\\|end\\(if\\)?\\)\\>" .
"[ \t]*else")
3000 ("\\<\\(for\\|while\\)\\>" .
"[ \t]*do")
3001 ("\\<\\(repeat\\|end\\(rep\\)?\\)\\>" .
3003 ("\\<case\\>" .
"[ \t]*of")))
3009 (while (setq match
(car matchers
))
3010 (if (looking-at (cdr match
))
3011 (throw 'exit
(car match
)))
3012 (setq matchers
(cdr matchers
)))))
3013 (idlwave-find-key cont-re -
1 'nomark beg-last-statement
)))
3014 (if (looking-at "end") ;; that one's special
3015 (- (idlwave-current-indent)
3016 (+ idlwave-block-indent idlwave-end-offset
))
3017 (idlwave-current-indent)))
3019 ;; Indent in from the previous line for continuing statements
3020 ((let ((matchers '("\\<then\\>"
3027 (if (/= (forward-line -
1) 0)
3029 (while (setq match
(car matchers
))
3030 (if (looking-at (concat ".*" match
"[ \t]*\\$[ \t]*"
3033 (setq matchers
(cdr matchers
)))))
3034 (+ idlwave-continuation-indent
(idlwave-current-indent)))
3036 ;; Parenthetical indent, either traditional or Kernighan style
3037 ((setq fancy-paren-indent
3038 (let* ((end-reg end-reg
)
3041 (skip-chars-forward " \t")
3042 (looking-at "\\s)")))
3045 (while (setq indent-cons
(idlwave-calculate-paren-indent
3046 beg-reg end-reg close-exp
))
3047 ;; First permitted containing paren
3049 idlwave-indent-to-open-paren
3050 idlwave-indent-parens-nested
3051 (null (cdr indent-cons
))
3052 (< (- (cdr indent-cons
) basic-indent
)
3053 idlwave-max-extra-continuation-indent
))
3054 (throw 'loop
(cdr indent-cons
)))
3055 (setq end-reg
(car indent-cons
))))))
3058 ;; A continued assignment, or procedure call/definition
3060 (> idlwave-max-extra-continuation-indent
0)
3061 (setq fancy-nonparen-indent
3064 (while (idlwave-look-at "&")) ; skip continued statements
3066 ;; A continued Procedure call or definition
3068 (idlwave-look-at "^[ \t]*\\(pro\\|function\\)") ;skip over
3069 (looking-at "[ \t]*\\([a-zA-Z0-9.$_]+[ \t]*->[ \t]*\\)?[a-zA-Z][:a-zA-Z0-9$_]*[ \t]*\\(,\\)[ \t]*"))
3070 (goto-char (match-end 0))
3071 ;; Comment only, or blank line with "$"? Basic indent.
3072 (if (save-match-data (looking-at "[ \t$]*\\(;.*\\)?$"))
3076 ;; Continued assignment (with =):
3078 (while (looking-at "[^=\n\r]*\\(=\\)[ \t]*")
3079 (goto-char (match-end 0))
3080 (if (null (idlwave-what-function beg-reg
))
3081 (throw 'assign t
))))
3084 (looking-at "[ \t$]*\\(;.*\\)?$") ; use basic
3086 (goto-char beg-last-statement
)
3087 (eq (caar (idlwave-statement-type)) 'for
)))
3088 (current-column))))))
3089 (< (- fancy-nonparen-indent basic-indent
)
3090 idlwave-max-extra-continuation-indent
))
3091 (if fancy-paren-indent
;calculated but disallowed paren indent
3092 (+ fancy-nonparen-indent idlwave-continuation-indent
)
3093 fancy-nonparen-indent
))
3095 ;; Basic indent, by default
3096 (t basic-indent
)))))
3100 (defun idlwave-find-key (key-re &optional dir nomark limit
)
3101 "Move to next match of the regular expression KEY-RE.
3102 Matches inside comments or string constants will be ignored.
3103 If DIR is negative, the search will be backwards.
3104 At a successful match, the mark is pushed unless NOMARK is non-nil.
3105 Searches are limited to LIMIT.
3106 Searches are case-insensitive and use a special syntax table which
3107 treats `$' and `_' as word characters.
3108 Return value is the beginning of the match or (in case of failure) nil."
3109 (setq dir
(or dir
0))
3110 (let ((case-fold-search t
)
3111 (search-func (if (> dir
0) 're-search-forward
're-search-backward
))
3113 (idlwave-with-special-syntax
3116 (while (funcall search-func key-re limit t
)
3117 (if (not (idlwave-quoted))
3118 (throw 'exit
(setq found
(match-beginning 0)))
3119 (if (or (and (> dir
0) (eobp))
3120 (and (< dir
0) (bobp)))
3121 (throw 'exit nil
)))))))
3124 (if (not nomark
) (push-mark))
3129 (defun idlwave-block-jump-out (&optional dir nomark
)
3130 "When optional argument DIR is non-negative, move forward to end of
3131 current block using the `idlwave-begin-block-reg' and `idlwave-end-block-reg'
3132 regular expressions. When DIR is negative, move backwards to block beginning.
3133 Recursively calls itself to skip over nested blocks. DIR defaults to
3134 forward. Calls `push-mark' unless the optional argument NOMARK is
3135 non-nil. Movement is limited by the start of program units because of
3136 possibility of unbalanced blocks."
3138 (or dir
(setq dir
0))
3139 (let* ((here (point))
3140 (case-fold-search t
)
3141 (limit (if (>= dir
0) (point-max) (point-min)))
3142 (block-limit (if (>= dir
0)
3143 idlwave-begin-block-reg
3144 idlwave-end-block-reg
))
3146 (block-reg (concat idlwave-begin-block-reg
"\\|"
3147 idlwave-end-block-reg
))
3148 (unit-limit (or (save-excursion
3151 idlwave-begin-unit-reg dir t limit
)
3154 idlwave-end-unit-reg dir t limit
)))
3156 (if (>= dir
0) (end-of-line)) ;Make sure we are in current block
3157 (if (setq found
(idlwave-find-key block-reg dir t unit-limit
))
3158 (while (and found
(looking-at block-limit
))
3159 (if (>= dir
0) (forward-word 1))
3160 (idlwave-block-jump-out dir t
)
3161 (setq found
(idlwave-find-key block-reg dir t unit-limit
))))
3162 (if (not nomark
) (push-mark here
))
3163 (if (not found
) (goto-char unit-limit
)
3164 (if (>= dir
0) (forward-word 1)))))
3166 (defun idlwave-min-current-statement-indent (&optional end-reg
)
3167 "The minimum indent in the current statement."
3168 (idlwave-beginning-of-statement)
3169 (if (not (idlwave-is-continuation-line))
3170 (idlwave-current-indent)
3171 (let ((min (idlwave-current-indent)) comm-or-empty
)
3172 (while (and (= (forward-line 1) 0)
3173 (or (setq comm-or-empty
(idlwave-is-comment-or-empty-line))
3174 (idlwave-is-continuation-line))
3175 (or (null end-reg
) (< (point) end-reg
)))
3176 (unless comm-or-empty
(setq min
(min min
(idlwave-current-indent)))))
3177 (if (or comm-or-empty
(and end-reg
(>= (point) end-reg
)))
3179 (min min
(idlwave-current-indent))))))
3181 (defun idlwave-current-statement-indent (&optional last-line
)
3182 "Return indentation of the current statement.
3183 If in a statement, moves to beginning of statement before finding indent."
3185 (idlwave-end-of-statement)
3186 (idlwave-beginning-of-statement))
3187 (idlwave-current-indent))
3189 (defun idlwave-current-indent ()
3190 "Return the column of the indentation of the current line.
3191 Skips any whitespace. Returns 0 if the end-of-line follows the whitespace."
3194 (skip-chars-forward " \t")
3195 ;; if we are at the end of blank line return 0
3197 ((current-column)))))
3199 (defun idlwave-is-continuation-line ()
3200 "Test if current line is continuation line.
3201 Blank or comment-only lines following regular continuation lines (with
3202 `$') count as continuations too."
3206 (idlwave-look-at "\\<\\$")
3208 (while (and (looking-at "^[ \t]*\\(;.*\\)?$")
3209 (eq (forward-line -
1) 0))
3210 (if (setq p
(idlwave-look-at "\\<\\$")) (throw 'loop p
))))))))
3212 (defun idlwave-is-comment-line ()
3213 "Test if the current line is a comment line."
3215 (beginning-of-line 1)
3216 (looking-at "[ \t]*;")))
3218 (defun idlwave-is-comment-or-empty-line ()
3219 "Test if the current line is a comment line."
3221 (beginning-of-line 1)
3222 (looking-at "[ \t]*[;\n]")))
3224 (defun idlwave-look-at (regexp &optional cont beg
)
3225 "Search current line from current point for REGEXP.
3226 If optional argument CONT is non-nil, searches to the end of
3227 the current statement.
3228 If optional arg BEG is non-nil, search starts from the beginning of the
3230 Ignores matches that end in a comment or inside a string expression.
3231 Returns point if successful, nil otherwise.
3232 This function produces unexpected results if REGEXP contains quotes or
3233 a comment delimiter. The search is case insensitive.
3234 If successful leaves point after the match, otherwise, does not move point."
3235 (let ((here (point))
3236 (case-fold-search t
)
3237 (eos (save-excursion
3238 (if cont
(idlwave-end-of-statement) (end-of-line))
3241 (idlwave-with-special-syntax
3242 (if beg
(idlwave-beginning-of-statement))
3243 (while (and (setq found
(re-search-forward regexp eos t
))
3245 (if (not found
) (goto-char here
))
3248 (defun idlwave-fill-paragraph (&optional nohang
)
3249 "Fill paragraphs in comments.
3250 A paragraph is made up of all contiguous lines having the same comment
3251 leader (the leading whitespace before the comment delimiter and the
3252 comment delimiter). In addition, paragraphs are separated by blank
3253 line comments. The indentation is given by the hanging indent of the
3254 first line, otherwise by the minimum indentation of the lines after
3255 the first line. The indentation of the first line does not change.
3256 Does not effect code lines. Does not fill comments on the same line
3257 with code. The hanging indent is given by the end of the first match
3258 matching `idlwave-hang-indent-regexp' on the paragraph's first line.
3259 If the optional argument NOHANG is non-nil then the hanging indent is
3262 ;; check if this is a line comment
3265 (skip-chars-forward " \t")
3266 (looking-at comment-start
))
3269 pre here diff fill-prefix-reg bcl first-indent
3271 ;; Change tabs to spaces in the surrounding paragraph.
3272 ;; The surrounding paragraph will be the largest containing block of
3273 ;; contiguous line comments. Thus, we may be changing tabs in
3274 ;; a much larger area than is needed, but this is the easiest
3275 ;; brute force way to do it.
3277 ;; This has the undesirable side effect of replacing the tabs
3278 ;; permanently without the user's request or knowledge.
3280 (backward-paragraph)
3281 (setq start
(point)))
3285 (untabify start end
)
3290 (re-search-forward (concat "^[ \t]*" comment-start
"+")
3292 ;; Get the comment leader on the line and its length
3293 (setq pre
(current-column))
3294 ;; the comment leader is the indentation plus exactly the
3295 ;; number of consecutive ";".
3296 (setq fill-prefix-reg
3299 (regexp-quote (buffer-substring (point-at-bol) (point))))
3302 ;; Mark the beginning and end of the paragraph
3304 (while (and (looking-at fill-prefix-reg
)
3305 (not (looking-at paragraph-separate
))
3308 ;; Move to first line of paragraph
3309 (if (/= (point) bcl
)
3311 (setq start
(point))
3313 (while (and (looking-at fill-prefix-reg
)
3314 (not (looking-at paragraph-separate
))
3318 (if (or (not (looking-at fill-prefix-reg
))
3319 (looking-at paragraph-separate
))
3322 ;; if at end of buffer add a newline (need this because
3323 ;; fill-region needs END to be at the beginning of line after
3324 ;; the paragraph or it will add a line).
3326 (progn (insert ?
\n) (backward-char 1)))
3327 ;; Set END to the beginning of line after the paragraph
3328 ;; END is calculated as distance from end of buffer
3329 (setq end
(- (point-max) (point) 1))
3331 ;; Calculate the indentation for the paragraph.
3333 ;; In the following while statements, after one iteration
3334 ;; point will be at the beginning of a line in which case
3335 ;; the while will not be executed for the
3336 ;; the first paragraph line and thus will not affect the
3339 ;; First check to see if indentation is based on hanging indent.
3340 (if (and (not nohang
) idlwave-hanging-indent
3344 (idlwave-calc-hanging-indent))))
3345 ;; Adjust lines of paragraph by inserting spaces so that
3346 ;; each line's indent is at least as great as the hanging
3347 ;; indent. This is needed for fill-paragraph to work with
3352 (while (> (point) start
)
3353 (re-search-forward comment-start-skip
(point-at-eol) t
)
3354 (if (> (setq diff
(- indent
(current-column))) 0)
3356 (if (>= here
(point))
3357 ;; adjust the original location for the
3359 (setq here
(+ here diff
)))
3360 (insert (make-string diff ?\
))))
3364 ;; No hang. Instead find minimum indentation of paragraph
3365 ;; after first line.
3366 ;; For the following while statement, since START is at the
3367 ;; beginning of line and END is at the end of line
3368 ;; point is greater than START at least once (which would
3369 ;; be the case for a single line paragraph).
3370 (while (> (point) start
)
3375 (re-search-forward comment-start-skip
(point-at-eol) t
)
3378 (setq fill-prefix
(concat fill-prefix
3379 (make-string (- indent pre
)
3381 ;; first-line indent
3385 (re-search-forward comment-start-skip
(point-at-eol) t
)
3389 ;; try to keep point at its original place
3392 ;; In place of the more modern fill-region-as-paragraph, a hack
3393 ;; to keep whitespace untouched on the first line within the
3394 ;; indent length and to preserve any indent on the first line
3398 (buffer-substring start
(+ start first-indent -
1)))
3399 (subst-char-in-region start
(+ start first-indent -
1) ?\ ?~ nil
)
3400 (fill-region-as-paragraph
3403 (current-justification)
3405 (delete-region start
(+ start first-indent -
1))
3408 ;; When we want the point at the beginning of the comment
3409 ;; body fill-region will put it at the beginning of the line.
3410 (if (bolp) (skip-chars-forward (concat " \t" comment-start
)))
3411 (setq fill-prefix nil
))))
3413 (defun idlwave-calc-hanging-indent ()
3414 "Calculate the position of the hanging indent for the comment paragraph.
3415 The hanging indent position is given by the first match with the
3416 `idlwave-hang-indent-regexp'. If `idlwave-use-last-hang-indent' is
3417 non-nil then use last occurrence matching `idlwave-hang-indent-regexp'
3419 If not found returns nil."
3420 (if idlwave-use-last-hang-indent
3423 (if (re-search-backward idlwave-hang-indent-regexp
(point-at-bol) t
)
3424 (+ (current-column) (length idlwave-hang-indent-regexp
))))
3427 (if (re-search-forward idlwave-hang-indent-regexp
(point-at-eol) t
)
3428 (current-column)))))
3430 (defun idlwave-auto-fill ()
3431 "Called to break lines in auto fill mode.
3432 Only fills non-comment lines if `idlwave-fill-comment-line-only' is
3433 non-nil. Places a continuation character at the end of the line if
3434 not in a comment. Splits strings with IDL concatenation operator `+'
3435 if `idlwave-auto-fill-split-string' is non-nil."
3436 (if (<= (current-column) fill-column
)
3437 nil
; do not to fill
3438 (if (or (not idlwave-fill-comment-line-only
)
3440 ;; Check for comment line
3442 (looking-at idlwave-comment-line-start-skip
)))
3444 (idlwave-indent-line)
3445 ;; Prevent actions do-auto-fill which calls indent-line-function.
3446 (let (idlwave-do-actions
3447 (paragraph-separate ".")
3448 (fill-nobreak-predicate
3449 (if (and (idlwave-in-quote)
3450 idlwave-auto-fill-split-string
)
3451 (lambda () ;; We'll need 5 spaces for " ' + $"
3452 (<= (- fill-column
(current-column)) 5)
3457 ;; Indent the split line
3458 (idlwave-indent-line))
3461 (looking-at idlwave-comment-line-start-skip
))
3462 ;; A continued line comment
3463 ;; We treat continued line comments as part of a comment
3464 ;; paragraph. So we check for a hanging indent.
3465 (if idlwave-hanging-indent
3466 (let ((here (- (point-max) (point)))
3470 (idlwave-calc-hanging-indent))))
3472 ;; Remove whitespace between comment delimiter and
3473 ;; text, insert spaces for appropriate indentation.
3475 (re-search-forward comment-start-skip
(point-at-eol) t
)
3476 (delete-horizontal-space)
3477 (idlwave-indent-to indent
)
3478 (goto-char (- (point-max) here
)))))
3479 ;; Split code or comment?
3482 (idlwave-in-comment))
3483 ;; Splitting a non-full-line comment.
3484 ;; Insert the comment delimiter from split line
3488 (skip-chars-forward " \t")
3489 ;; Insert blank to keep off beginning of line
3493 (buffer-substring (idlwave-goto-comment)
3495 (skip-chars-forward "; ")
3497 (idlwave-indent-line))
3498 ;; Split code line - add continuation character
3501 ;; Check to see if we split a string
3502 (if (and (setq beg
(idlwave-in-quote))
3503 idlwave-auto-fill-split-string
)
3504 ;; Split the string and concatenate.
3505 ;; The first extra space is for the space
3506 ;; the line was split. That space was removed.
3507 (insert " " (char-after beg
) " +"))
3510 (if idlwave-auto-fill-split-string
3511 ;; Make the second part of continued string
3514 (skip-chars-forward " \t")
3515 (insert (char-after beg
)))
3518 (message "Warning: continuation inside a string.")))
3519 ;; Although do-auto-fill (via indent-new-comment-line) calls
3520 ;; idlwave-indent-line for the new line, re-indent again
3521 ;; because of the addition of the continuation character.
3522 (idlwave-indent-line))
3525 (defun idlwave-auto-fill-mode (arg)
3526 "Toggle auto-fill mode for IDL mode.
3527 With arg, turn auto-fill mode on if arg is positive.
3528 In auto-fill mode, inserting a space at a column beyond `fill-column'
3529 automatically breaks the line at a previous space."
3531 (prog1 (set idlwave-fill-function
3533 (not (symbol-value idlwave-fill-function
))
3534 (> (prefix-numeric-value arg
) 0))
3538 (set-buffer-modified-p (buffer-modified-p))))
3540 ;(defun idlwave-fill-routine-call ()
3541 ; "Fill a routine definition or statement, indenting appropriately."
3542 ; (let ((where (idlwave-where)))))
3545 (defun idlwave-doc-header (&optional nomark
)
3546 "Insert a documentation header at the beginning of the unit.
3547 Inserts the value of the variable `idlwave-file-header'. Sets mark
3548 before moving to do insertion unless the optional prefix argument
3551 (or nomark
(push-mark))
3552 ;; make sure we catch the current line if it begins the unit
3553 (if idlwave-header-to-beginning-of-file
3554 (goto-char (point-min))
3556 (idlwave-beginning-of-subprogram)
3558 ;; skip function or procedure line
3559 (if (idlwave-look-at "\\<\\(pro\\|function\\)\\>")
3561 (idlwave-end-of-statement)
3562 (if (> (forward-line 1) 0) (insert "\n")))))
3563 (let ((pos (point)))
3564 (if idlwave-file-header
3565 (cond ((car idlwave-file-header
)
3566 (insert-file-contents (car idlwave-file-header
)))
3567 ((stringp (car (cdr idlwave-file-header
)))
3568 (insert (car (cdr idlwave-file-header
))))))
3571 (defun idlwave-default-insert-timestamp ()
3572 "Default timestamp insertion function."
3573 (insert (current-time-string))
3574 (insert ", " (user-full-name))
3575 (if (boundp 'user-mail-address
)
3576 (insert " <" user-mail-address
">")
3577 (insert " <" (user-login-name) "@" (system-name) ">"))
3578 ;; Remove extra spaces from line
3579 (idlwave-fill-paragraph)
3580 ;; Insert a blank line comment to separate from the date entry -
3581 ;; will keep the entry from flowing onto date line if re-filled.
3582 (insert "\n;\n;\t\t"))
3584 (defun idlwave-doc-modification ()
3585 "Insert a brief modification log at the beginning of the current program.
3586 Looks for an occurrence of the value of user variable
3587 `idlwave-doc-modifications-keyword' if non-nil. Inserts time and user
3588 name and places the point for the user to add a log. Before moving, saves
3589 location on mark ring so that the user can return to previous point."
3593 (if (and (or (re-search-backward idlwave-doclib-start nil t
)
3595 (goto-char (point-min))
3596 (re-search-forward idlwave-doclib-start nil t
)))
3597 (setq beg
(match-beginning 0))
3598 (re-search-forward idlwave-doclib-end nil t
)
3599 (setq end
(match-end 0)))
3602 (if (re-search-forward
3603 (concat idlwave-doc-modifications-keyword
":")
3608 (insert "\n" comment-start
"\n")
3609 (insert comment-start
" " idlwave-doc-modifications-keyword
":"))
3611 (run-hooks 'idlwave-timestamp-hook
))
3612 (error "No valid DOCLIB header"))))
3616 ;; Interface to expand-region-abbrevs which did not work when the
3617 ;; abbrev hook associated with an abbrev moves point backwards
3618 ;; after abbrev expansion, e.g., as with the abbrev '.n'.
3619 ;; The original would enter an infinite loop in attempting to expand
3620 ;; .n (it would continually expand and unexpand the abbrev without expanding
3621 ;; because the point would keep going back to the beginning of the
3622 ;; abbrev instead of to the end of the abbrev). We now keep the
3623 ;; abbrev hook from moving backwards.
3625 (defun idlwave-expand-region-abbrevs (start end
)
3626 "Expand each abbrev occurrence in the region.
3627 Calling from a program, arguments are START END."
3630 (goto-char (min start end
))
3631 (let ((idlwave-show-block nil
) ;Do not blink
3632 (idlwave-abbrev-move nil
)) ;Do not move
3633 (expand-region-abbrevs start end
'noquery
))))
3635 (defun idlwave-quoted ()
3636 "Return t if point is in a comment or quoted string.
3637 Returns nil otherwise."
3638 (or (idlwave-in-comment) (idlwave-in-quote)))
3640 (defun idlwave-in-quote ()
3641 "Return location of the opening quote
3642 if point is in a IDL string constant, nil otherwise.
3643 Ignores comment delimiters on the current line.
3644 Properly handles nested quotation marks and octal
3645 constants - a double quote followed by an octal digit."
3646 ;; Treat an octal inside an apostrophe to be a normal string. Treat a
3647 ;; double quote followed by an octal digit to be an octal constant
3648 ;; rather than a string. Therefore, there is no terminating double
3651 ;; Because single and double quotes can quote each other we must
3652 ;; search for the string start from the beginning of line.
3653 (let* ((start (point))
3654 (eol (point-at-eol))
3655 (bq (progn (beginning-of-line) (point)))
3660 (while (< endq start
)
3661 ;; Find string start
3662 ;; Don't find an octal constant beginning with a double quote
3663 (if (re-search-forward "[\"']" eol
'lim
)
3664 ;; Find the string end.
3665 ;; In IDL, two consecutive delimiters after the start of a
3667 ;; escape for the delimiter in the string.
3668 ;; Two consecutive delimiters alone (i.e., not after the
3669 ;; start of a string) is the null string.
3671 ;; Move to position after quote
3672 (goto-char (1+ (match-beginning 0)))
3673 (setq bq
(1- (point)))
3674 ;; Get the string delimiter
3675 (setq delim
(char-to-string (preceding-char)))
3676 ;; Check for null string
3677 (if (looking-at delim
)
3678 (progn (setq endq
(point)) (forward-char 1))
3679 ;; Look for next unpaired delimiter
3680 (setq found
(search-forward delim eol
'lim
))
3681 (while (looking-at delim
)
3683 (setq found
(search-forward delim eol
'lim
)))
3684 (setq endq
(if found
(1- (point)) (point)))
3686 (progn (setq bq
(point)) (setq endq
(point)))))
3687 (store-match-data data
)
3688 ;; return string beginning position or nil
3689 (if (> start bq
) bq
))))
3691 (defun idlwave-is-pointer-dereference (&optional limit
)
3692 "Determine if the character after point is a pointer dereference *."
3694 (eq (char-after) ?\
*)
3695 (not (idlwave-in-quote))
3698 (re-search-backward (concat "\\(" idlwave-idl-keywords
3699 "\\|[[(*+-/=,^><]\\)\\s-*\\*") limit t
))))
3702 ;; Statement templates
3704 ;; Replace these with a general template function, something like
3705 ;; expand.el (I think there was also something with a name similar to
3708 (defun idlwave-template (s1 s2
&optional prompt noindent
)
3709 "Build a template with optional prompt expression.
3711 Opens a line if point is not followed by a newline modulo intervening
3712 whitespace. S1 and S2 are strings. S1 is inserted at point followed
3713 by S2. Point is inserted between S1 and S2. The case of S1 and S2 is
3714 adjusted according to `idlwave-abbrev-change-case'. If optional
3715 argument PROMPT is a string then it is displayed as a message in the
3716 minibuffer. The PROMPT serves as a reminder to the user of an
3717 expression to enter.
3719 The lines containing S1 and S2 are reindented using `indent-region'
3720 unless the optional second argument NOINDENT is non-nil."
3721 (if (derived-mode-p 'idlwave-shell-mode
)
3722 ;; This is a gross hack to avoit template abbrev expansion
3723 ;; in the shell. FIXME: This is a dirty hack.
3724 (if (and (eq this-command
'self-insert-command
)
3725 (equal last-abbrev-location
(point)))
3726 (insert last-abbrev-text
)
3727 (error "No templates in idlwave-shell"))
3728 (cond ((eq idlwave-abbrev-change-case
'down
)
3729 (setq s1
(downcase s1
) s2
(downcase s2
)))
3730 (idlwave-abbrev-change-case
3731 (setq s1
(upcase s1
) s2
(upcase s2
))))
3732 (let ((beg (point-at-bol))
3734 (if (not (looking-at "\\s-*\n"))
3741 (indent-region beg end nil
))
3742 (if (stringp prompt
)
3743 (message "%s" prompt
)))))
3745 (defun idlwave-rw-case (string)
3746 "Make STRING have the case required by `idlwave-reserved-word-upcase'."
3747 (if idlwave-reserved-word-upcase
3751 (defun idlwave-elif ()
3752 "Build skeleton IDL if-else block."
3755 (idlwave-rw-case "if")
3756 (idlwave-rw-case " then begin\n\nendif else begin\n\nendelse")
3757 "Condition expression"))
3759 (defun idlwave-case ()
3760 "Build skeleton IDL case statement."
3763 (idlwave-rw-case "case")
3764 (idlwave-rw-case " of\n\nendcase")
3765 "Selector expression"))
3767 (defun idlwave-switch ()
3768 "Build skeleton IDL switch statement."
3771 (idlwave-rw-case "switch")
3772 (idlwave-rw-case " of\n\nendswitch")
3773 "Selector expression"))
3775 (defun idlwave-for ()
3776 "Build skeleton IDL loop statement."
3779 (idlwave-rw-case "for")
3780 (idlwave-rw-case " do begin\n\nendfor")
3783 (defun idlwave-if ()
3784 "Build skeleton IDL if statement."
3787 (idlwave-rw-case "if")
3788 (idlwave-rw-case " then begin\n\nendif")
3789 "Scalar logical expression"))
3791 (defun idlwave-procedure ()
3794 (idlwave-rw-case "pro")
3795 (idlwave-rw-case "\n\nreturn\nend")
3798 (defun idlwave-function ()
3801 (idlwave-rw-case "function")
3802 (idlwave-rw-case "\n\nreturn\nend")
3805 (defun idlwave-repeat ()
3808 (idlwave-rw-case "repeat begin\n\nendrep until")
3809 (idlwave-rw-case "")
3812 (defun idlwave-while ()
3815 (idlwave-rw-case "while")
3816 (idlwave-rw-case " do begin\n\nendwhile")
3819 (defun idlwave-split-string (string &optional pattern
)
3820 "Return a list of substrings of STRING which are separated by PATTERN.
3821 If PATTERN is omitted, it defaults to \"[ \\f\\t\\n\\r\\v]+\"."
3823 (setq pattern
"[ \f\t\n\r\v]+"))
3824 (let (parts (start 0))
3825 (while (string-match pattern string start
)
3826 (setq parts
(cons (substring string start
(match-beginning 0)) parts
)
3827 start
(match-end 0)))
3828 (nreverse (cons (substring string start
) parts
))))
3830 (defun idlwave-replace-string (string replace_string replace_with
)
3832 (last (length string
))
3835 (while (setq end
(string-match replace_string string start
))
3837 (concat ret_string
(substring string start end
) replace_with
))
3838 (setq start
(match-end 0)))
3839 (setq ret_string
(concat ret_string
(substring string start last
)))))
3841 (defun idlwave-get-buffer-visiting (file)
3842 ;; Return the buffer currently visiting FILE
3844 ((boundp 'find-file-compare-truenames
) ; XEmacs
3845 (let ((find-file-compare-truenames t
))
3846 (get-file-buffer file
)))
3847 ((fboundp 'find-buffer-visiting
) ; Emacs
3848 (find-buffer-visiting file
))
3849 (t (error "This should not happen (idlwave-get-buffer-visiting)"))))
3851 (defvar idlwave-outlawed-buffers nil
3852 "List of buffers pulled up by IDLWAVE for special reasons.
3853 Buffers in this list may be killed by `idlwave-kill-autoloaded-buffers'.")
3855 (defun idlwave-find-file-noselect (file &optional why
)
3856 ;; Return a buffer visiting file.
3857 (or (idlwave-get-buffer-visiting file
)
3858 (let ((buf (find-file-noselect file
)))
3859 (if why
(add-to-list 'idlwave-outlawed-buffers
(cons buf why
)))
3862 (defun idlwave-kill-autoloaded-buffers ()
3863 "Kill buffers created automatically by IDLWAVE.
3864 Function prompts for a letter to identify the buffers to kill.
3865 Possible letters are:
3867 f Buffers created by the command \\[idlwave-find-module] or mouse
3868 clicks in the routine info window.
3869 s Buffers created by the IDLWAVE Shell to display where execution
3870 stopped or an error was found.
3871 a Both of the above.
3873 Buffers containing unsaved changes require confirmation before they are killed."
3875 (if (null idlwave-outlawed-buffers
)
3876 (error "No IDLWAVE-created buffers available")
3877 (princ (format "Kill IDLWAVE-created buffers: [f]ind source(%d), [s]hell display(%d), [a]ll ? "
3878 (idlwave-count-outlawed-buffers 'find
)
3879 (idlwave-count-outlawed-buffers 'shell
)))
3880 (let ((c (read-char)))
3882 ((member c
'(?f ?\C-f
))
3883 (idlwave-do-kill-autoloaded-buffers 'find
))
3884 ((member c
'(?s ?\C-s
))
3885 (idlwave-do-kill-autoloaded-buffers 'shell
))
3886 ((member c
'(?a ?\C-a
))
3887 (idlwave-do-kill-autoloaded-buffers t
))
3888 (t (error "Abort"))))))
3890 (defun idlwave-count-outlawed-buffers (tag)
3891 "How many outlawed buffers have tag TAG?"
3894 (lambda (x) (eq (cdr x
) tag
))
3895 idlwave-outlawed-buffers
))))
3897 (defun idlwave-do-kill-autoloaded-buffers (&rest reasons
)
3898 "Kill all buffers pulled up by IDLWAVE matching REASONS."
3899 (let* ((list (copy-sequence idlwave-outlawed-buffers
))
3902 (while (setq entry
(pop list
))
3903 (if (buffer-live-p (car entry
))
3904 (and (or (memq t reasons
)
3905 (memq (cdr entry
) reasons
))
3906 (kill-buffer (car entry
))
3908 (setq idlwave-outlawed-buffers
3909 (delq entry idlwave-outlawed-buffers
)))
3910 (setq idlwave-outlawed-buffers
3911 (delq entry idlwave-outlawed-buffers
))))
3912 (message "%d buffer%s killed" cnt
(if (= cnt
1) "" "s"))))
3914 (defun idlwave-revoke-license-to-kill ()
3915 "Remove BUFFER from the buffers which may be killed.
3916 Killing would be done by `idlwave-do-kill-autoloaded-buffers'.
3917 Intended for `after-save-hook'."
3918 (let* ((buf (current-buffer))
3919 (entry (assq buf idlwave-outlawed-buffers
)))
3922 (setq idlwave-outlawed-buffers
3923 (delq entry idlwave-outlawed-buffers
)))
3924 ;; Remove this function from the hook.
3925 (remove-hook 'after-save-hook
'idlwave-revoke-license-to-kill
'local
)))
3927 (defvar idlwave-path-alist
)
3928 (defun idlwave-locate-lib-file (file)
3929 ;; Find FILE on the scanned lib path and return a buffer visiting it
3930 (let* ((dirs idlwave-path-alist
)
3933 (while (setq dir
(car (pop dirs
)))
3935 (setq efile
(expand-file-name file dir
)))
3936 (throw 'exit efile
))))))
3938 (defun idlwave-expand-lib-file-name (file)
3939 ;; Find FILE on the scanned lib path and return a buffer visiting it
3940 ;; This is for, e.g., finding source with no user catalog
3943 ((file-name-absolute-p file
) file
)
3944 (t (idlwave-locate-lib-file file
))))
3946 (defun idlwave-make-tags ()
3947 "Create the IDL tags file IDLTAGS in the current directory from
3948 the list of directories specified in the minibuffer. Directories may be
3949 for example: . /usr/local/rsi/idl/lib. All the subdirectories of the
3950 specified top directories are searched if the directory name is prefixed
3951 by @. Specify @ directories with care, it may take a long, long time if
3954 (let (directory directories cmd append status numdirs dir getsubdirs
3955 buffer save_buffer files numfiles item errbuf
)
3958 ;; Read list of directories
3959 (setq directory
(read-string "Tag Directories: " "."))
3960 (setq directories
(idlwave-split-string directory
"[ \t]+"))
3962 ;; Set etags command, vars
3963 (setq cmd
"etags --output=IDLTAGS --language=none --regex='/[
3964 \\t]*[pP][Rr][Oo][ \\t]+\\([^ \\t,]+\\)/' --regex='/[
3965 \\t]*[Ff][Uu][Nn][Cc][Tt][Ii][Oo][Nn][ \\t]+\\([^ \\t,]+\\)/' ")
3969 ;; For each directory
3971 (setq dir
(nth numdirs directories
))
3974 ;; Find the subdirectories
3975 (if (string-match "^[@]\\(.+\\)$" dir
)
3976 (setq getsubdirs t
) (setq getsubdirs nil
))
3977 (if (and getsubdirs
) (setq dir
(substring dir
1 (length dir
))))
3978 (setq dir
(expand-file-name dir
))
3979 (if (file-directory-p dir
)
3981 (if (and getsubdirs
)
3983 (setq buffer
(get-buffer-create "*idltags*"))
3984 (call-process "sh" nil buffer nil
"-c"
3985 (concat "find " dir
" -type d -print"))
3986 (setq save_buffer
(current-buffer))
3988 (setq files
(idlwave-split-string
3989 (idlwave-replace-string
3990 (buffer-substring 1 (point-max))
3993 (set-buffer save_buffer
)
3994 (kill-buffer buffer
))
3995 (setq files
(list (concat dir
"/*.pro"))))
3997 ;; For each subdirectory
3999 (setq item
(nth numfiles files
))
4003 (if (not (string-match "^[ \\t]*$" item
))
4005 (message "%s" (concat "Tagging " item
"..."))
4006 (setq errbuf
(get-buffer-create "*idltags-error*"))
4007 (setq status
(+ status
4008 (if (eq 0 (call-process
4009 "sh" nil errbuf nil
"-c"
4010 (concat cmd append item
)))
4014 ;; Append additional tags
4015 (setq append
" --append ")
4016 (setq numfiles
(1+ numfiles
))
4017 (setq item
(nth numfiles files
)))
4019 (setq numfiles
(1+ numfiles
))
4020 (setq item
(nth numfiles files
))
4023 (setq numdirs
(1+ numdirs
))
4024 (setq dir
(nth numdirs directories
)))
4026 (setq numdirs
(1+ numdirs
))
4027 (setq dir
(nth numdirs directories
)))))
4029 (setq errbuf
(get-buffer-create "*idltags-error*"))
4031 (kill-buffer errbuf
))
4035 (defun idlwave-toggle-comment-region (beg end
&optional n
)
4036 "Comment the lines in the region if the first non-blank line is
4037 commented, and conversely, uncomment region. If optional prefix arg
4038 N is non-nil, then for N positive, add N comment delimiters or for N
4039 negative, remove N comment delimiters.
4040 Uses `comment-region' which does not place comment delimiters on
4042 (interactive "r\nP")
4044 (comment-region beg end
(prefix-numeric-value n
))
4049 (skip-chars-forward " \t\n")
4050 (if (looking-at (concat "[ \t]*\\(" comment-start
"+\\)"))
4051 (if (fboundp 'uncomment-region
)
4052 (uncomment-region beg end
)
4053 (comment-region beg end
4054 (- (length (buffer-substring
4057 (comment-region beg end
)))))
4060 ;; ----------------------------------------------------------------------------
4061 ;; ----------------------------------------------------------------------------
4062 ;; ----------------------------------------------------------------------------
4063 ;; ----------------------------------------------------------------------------
4065 ;; Completion and Routine Info
4068 ;; String "intern" functions
4070 ;; For the completion and routine info function, we want to normalize
4071 ;; the case of procedure names etc. We do this by "interning" these
4072 ;; string is a hand-crafted way. Hashes are used to map the downcase
4073 ;; version of the strings to the cased versions. Most *-sint-*
4074 ;; variables consist of *two* hashes, a buffer+shell, followed by a
4075 ;; system hash. The former is re-scanned, and the latter takes case
4078 ;; Since these cased versions are really lisp objects, we can use `eq'
4079 ;; to search, which is a large performance boost. All new strings
4080 ;; need to be "sinterned". We do this as early as possible after
4081 ;; getting these strings from completion or buffer substrings. So
4082 ;; most of the code can simply assume to deal with "sinterned"
4083 ;; strings. The only exception is that the functions which scan whole
4084 ;; buffers for routine information do not intern the grabbed strings.
4085 ;; This is only done afterwards. Therefore in these functions it is
4086 ;; *not* safe to assume the strings can be compared with `eq' and be
4087 ;; fed into the routine assq functions.
4089 ;; Here we define the hashing functions.
4091 ;; The variables which hold the hashes.
4092 (defvar idlwave-sint-routines
'(nil))
4093 (defvar idlwave-sint-keywords
'(nil))
4094 (defvar idlwave-sint-methods
'(nil))
4095 (defvar idlwave-sint-classes
'(nil))
4096 (defvar idlwave-sint-dirs
'(nil))
4097 (defvar idlwave-sint-libnames
'(nil))
4099 (defun idlwave-reset-sintern (&optional what
)
4100 "Reset all sintern hashes."
4101 ;; Make sure the hash functions are accessible.
4102 (unless (and (fboundp 'gethash
)
4105 (or (fboundp 'puthash
)
4106 (defalias 'puthash
'cl-puthash
)))
4107 (let ((entries '((idlwave-sint-routines 1000 10)
4108 (idlwave-sint-keywords 1000 10)
4109 (idlwave-sint-methods 100 10)
4110 (idlwave-sint-classes 10 10))))
4112 ;; Make sure these are lists
4113 (loop for entry in entries
4114 for var
= (car entry
)
4115 do
(if (not (consp (symbol-value var
))) (set var
(list nil
))))
4117 ;; Reset the system & library hash
4118 (when (or (eq what t
) (eq what
'syslib
)
4119 (null (cdr idlwave-sint-routines
)))
4120 (loop for entry in entries
4121 for var
= (car entry
) for size
= (nth 1 entry
)
4122 do
(setcdr (symbol-value var
)
4123 (make-hash-table ':size size
':test
'equal
)))
4124 (setq idlwave-sint-dirs nil
4125 idlwave-sint-libnames nil
))
4127 ;; Reset the buffer & shell hash
4128 (when (or (eq what t
) (eq what
'bufsh
)
4129 (null (car idlwave-sint-routines
)))
4130 (loop for entry in entries
4131 for var
= (car entry
) for size
= (nth 1 entry
)
4132 do
(setcar (symbol-value var
)
4133 (make-hash-table ':size size
':test
'equal
))))))
4135 (defun idlwave-sintern-routine-or-method (name &optional class set
)
4137 (idlwave-sintern-method name set
)
4138 (idlwave-sintern-routine name set
)))
4140 (defun idlwave-sintern (stype &rest args
)
4141 (apply (intern (concat "idlwave-sintern-" (symbol-name stype
))) args
))
4143 ;;(defmacro idlwave-sintern (type var)
4144 ;; `(cond ((not (stringp name)) name)
4145 ;; ((gethash (downcase name) (cdr ,var)))
4146 ;; ((gethash (downcase name) (car ,var)))
4147 ;; (set (idlwave-sintern-set name ,type ,var set))
4150 (defun idlwave-sintern-routine (name &optional set
)
4151 (cond ((not (stringp name
)) name
)
4152 ((gethash (downcase name
) (cdr idlwave-sint-routines
)))
4153 ((gethash (downcase name
) (car idlwave-sint-routines
)))
4154 (set (idlwave-sintern-set name
'routine idlwave-sint-routines set
))
4156 (defun idlwave-sintern-keyword (name &optional set
)
4157 (cond ((not (stringp name
)) name
)
4158 ((gethash (downcase name
) (cdr idlwave-sint-keywords
)))
4159 ((gethash (downcase name
) (car idlwave-sint-keywords
)))
4160 (set (idlwave-sintern-set name
'keyword idlwave-sint-keywords set
))
4162 (defun idlwave-sintern-method (name &optional set
)
4163 (cond ((not (stringp name
)) name
)
4164 ((gethash (downcase name
) (cdr idlwave-sint-methods
)))
4165 ((gethash (downcase name
) (car idlwave-sint-methods
)))
4166 (set (idlwave-sintern-set name
'method idlwave-sint-methods set
))
4168 (defun idlwave-sintern-class (name &optional set
)
4169 (cond ((not (stringp name
)) name
)
4170 ((gethash (downcase name
) (cdr idlwave-sint-classes
)))
4171 ((gethash (downcase name
) (car idlwave-sint-classes
)))
4172 (set (idlwave-sintern-set name
'class idlwave-sint-classes set
))
4175 (defun idlwave-sintern-dir (dir &optional set
)
4176 (car (or (member dir idlwave-sint-dirs
)
4177 (setq idlwave-sint-dirs
(cons dir idlwave-sint-dirs
)))))
4178 (defun idlwave-sintern-libname (name &optional set
)
4179 (car (or (member name idlwave-sint-libnames
)
4180 (setq idlwave-sint-libnames
(cons name idlwave-sint-libnames
)))))
4182 (defun idlwave-sintern-set (name type tables set
)
4183 (let* ((func (or (cdr (assq type idlwave-completion-case
))
4185 (iname (funcall (if (eq func
'preserve
) 'identity func
) name
))
4186 (table (if (eq set
'sys
) (cdr tables
) (car tables
))))
4187 (puthash (downcase name
) iname table
)
4190 (defun idlwave-sintern-keyword-list (kwd-list &optional set
)
4191 "Sintern a set of keywords (file (key . link) (key2 . link2) ...)"
4193 (setcar x
(idlwave-sintern-keyword (car x
) set
)))
4197 (defun idlwave-sintern-rinfo-list (list &optional set default-dir
)
4198 "Sintern all strings in the rinfo LIST.
4199 With optional parameter SET: also set new patterns. Probably this
4200 will always have to be t. If DEFAULT-DIR is passed, it is used as
4201 the base of the directory."
4202 (let (entry name type class kwds res source call new
)
4204 (setq entry
(car list
)
4209 source
(nth 3 entry
)
4211 kwds
(nthcdr 5 entry
))
4213 ;; The class and name
4216 (if (symbolp class
) (setq class
(symbol-name class
)))
4217 (setq class
(idlwave-sintern-class class set
))
4218 (setq name
(idlwave-sintern-method name set
)))
4219 (setq name
(idlwave-sintern-routine name set
)))
4222 (let ((source-type (car source
))
4223 (source-file (nth 1 source
))
4224 (source-dir (if default-dir
4225 (file-name-as-directory default-dir
)
4227 (source-lib (nth 3 source
)))
4228 (if (stringp source-dir
)
4229 (setq source-dir
(idlwave-sintern-dir source-dir set
)))
4230 (if (stringp source-lib
)
4231 (setq source-lib
(idlwave-sintern-libname source-lib set
)))
4232 (setq source
(list source-type source-file source-dir source-lib
)))
4235 (setq kwds
(mapcar (lambda (x)
4236 (idlwave-sintern-keyword-list x set
))
4239 ;; Build a canonicalized list
4240 (setq new
(nconc (list name type class source call
) kwds
)
4241 res
(cons new res
)))
4244 ;; Creating new sintern tables
4246 (defun idlwave-new-sintern-type (tag)
4247 "Define a variable and a function to sintern the new type TAG.
4248 This defines the function `idlwave-sintern-TAG' and the variable
4249 `idlwave-sint-TAGs'."
4250 (let* ((name (symbol-name tag
))
4251 (names (concat name
"s"))
4252 (var (intern (concat "idlwave-sint-" names
)))
4253 (func (intern (concat "idlwave-sintern-" name
))))
4254 (set var nil
) ; initial value of the association list
4255 (fset func
; set the function
4256 `(lambda (name &optional set
)
4257 (cond ((not (stringp name
)) name
)
4258 ((cdr (assoc (downcase name
) ,var
)))
4260 (setq ,var
(cons (cons (downcase name
) name
) ,var
))
4264 (defun idlwave-reset-sintern-type (tag)
4265 "Reset the sintern variable associated with TAG."
4266 (set (intern (concat "idlwave-sint-" (symbol-name tag
) "s")) nil
))
4268 ;;---------------------------------------------------------------------------
4271 ;; The variables which hold the information
4272 (defvar idlwave-system-routines nil
4273 "Holds the routine-info obtained by scanning buffers.")
4274 (defvar idlwave-buffer-routines nil
4275 "Holds the routine-info obtained by scanning buffers.")
4276 (defvar idlwave-compiled-routines nil
4277 "Holds the routine-info obtained by asking the shell.")
4278 (defvar idlwave-unresolved-routines nil
4279 "Holds the unresolved routine-info obtained by asking the shell.")
4280 (defvar idlwave-user-catalog-routines nil
4281 "Holds the procedure routine-info from the user scan.")
4282 (defvar idlwave-library-catalog-routines nil
4283 "Holds the procedure routine-info from the .idlwave_catalog library files.")
4284 (defvar idlwave-library-catalog-libname nil
4285 "Name of library catalog loaded from .idlwave_catalog files.")
4286 (defvar idlwave-path-alist nil
4287 "Alist with !PATH directories and zero or more flags if the dir has
4288 been scanned in a user catalog ('user) or discovered in a library
4290 (defvar idlwave-true-path-alist nil
4291 "Like `idlwave-path-alist', but with true filenames.")
4292 (defvar idlwave-routines nil
4293 "Holds the combined procedure/function/method routine-info.")
4294 (defvar idlwave-class-alist nil
4295 "Holds the class names known to IDLWAVE.")
4296 (defvar idlwave-class-history nil
4297 "The history of classes selected with the minibuffer.")
4298 (defvar idlwave-force-class-query nil
)
4299 (defvar idlwave-before-completion-wconf nil
4300 "The window configuration just before the completion buffer was displayed.")
4301 (defvar idlwave-last-system-routine-info-cons-cell nil
4302 "The last cons cell in the system routine info.")
4305 ;; The code to get routine info from different sources.
4307 (defvar idlwave-system-routines
)
4308 (defvar idlwave-catalog-process nil
4309 "The background process currently updating the catalog.")
4311 (defun idlwave-routines ()
4312 "Provide a list of IDL routines.
4313 This routine loads the builtin routines on the first call.
4314 Later it only returns the value of the variable."
4315 (if (and idlwave-catalog-process
4316 (processp idlwave-catalog-process
))
4319 ((equal (process-status idlwave-catalog-process
) 'exit
)
4320 (message "updating........")
4321 (setq idlwave-catalog-process nil
)
4322 (idlwave-update-routine-info '(4)))
4323 ((equal (process-status idlwave-catalog-process
) 'run
)
4324 ;; Keep it running...
4327 ;; Something is wrong, get rid of the process
4328 (message "Problem with catalog process") (beep)
4330 (kill-process idlwave-catalog-process
)
4332 (setq idlwave-catalog-process nil
)))))
4333 (or idlwave-routines
4335 (idlwave-update-routine-info)
4336 ;; return the current value
4339 (defvar idlwave-update-rinfo-hook nil
4340 "List of functions which should run after a global rinfo update.
4341 Does not run after automatic updates of buffer or the shell.")
4343 (defun idlwave-rescan-catalog-directories ()
4344 "Rescan the previously selected directories. For batch processing."
4345 (idlwave-update-routine-info '(16)))
4347 (defun idlwave-rescan-asynchronously ()
4348 "Dispatch another Emacs instance to update the idlwave catalog.
4349 After the process finishes normally, the first access to routine info
4350 will re-read the catalog."
4352 (if (processp idlwave-catalog-process
)
4353 (if (eq (process-status idlwave-catalog-process
) 'run
)
4354 (if (yes-or-no-p "A catalog-updating process is running. Kill it? ")
4357 (kill-process idlwave-catalog-process
)
4359 (error "Process killed, no new process started"))
4362 (kill-process idlwave-catalog-process
)
4364 (if (or (not idlwave-user-catalog-file
)
4365 (not (stringp idlwave-user-catalog-file
))
4366 (not (file-regular-p idlwave-user-catalog-file
)))
4367 (error "No catalog has been produced yet"))
4368 (let* ((emacs (concat invocation-directory invocation-name
))
4369 (args (list "-batch"
4370 "-l" (expand-file-name "~/.emacs")
4372 "-f" "idlwave-rescan-catalog-directories"))
4373 (process (apply 'start-process
"idlcat"
4375 (setq idlwave-catalog-process process
)
4376 (set-process-sentinel
4379 (when (string-match "finished" why
)
4380 (setq idlwave-routines nil
4381 idlwave-system-routines nil
4382 idlwave-catalog-process nil
)
4383 (or (idlwave-start-load-rinfo-timer)
4384 (idlwave-update-routine-info '(4))))))
4385 (message "Background job started to update catalog file")))
4388 ;; Format for all routine info user catalog, library catalogs, etc.:
4390 ;; ("ROUTINE" type class
4391 ;; (system) | (lib pro_file dir "LIBNAME") | (user pro_file dir "USERLIB") |
4392 ;; (buffer pro_file dir) | (compiled pro_file dir)
4393 ;; "calling_string" ("HELPFILE" (("KWD1" . link1) ...))
4394 ;; ("HELPFILE2" (("KWD2" . link) ...)) ...)
4396 ;; DIR will be supplied dynamically while loading library catalogs,
4397 ;; and is sinterned to save space, as is LIBNAME. PRO_FILE can be a
4398 ;; complete filepath, in which case DIR is unnecessary. HELPFILE can
4399 ;; be nil, as can LINK1, etc., if no HTML help is available.
4402 (defvar idlwave-load-rinfo-idle-timer
)
4403 (defvar idlwave-shell-path-query
)
4405 (defun idlwave-update-routine-info (&optional arg no-concatenate
)
4406 "Update the internal routine-info lists.
4407 These lists are used by `idlwave-routine-info' (\\[idlwave-routine-info])
4408 and by `idlwave-complete' (\\[idlwave-complete]) to provide information
4409 about individual routines.
4411 The information can come from 4 sources:
4412 1. IDL programs in the current editing session
4413 2. Compiled modules in an IDL shell running as Emacs subprocess
4414 3. A list which covers the IDL system routines.
4415 4. A list which covers the prescanned library files.
4417 Scans all IDLWAVE-mode buffers of the current editing session (see
4418 `idlwave-scan-all-buffers-for-routine-info').
4419 When an IDL shell is running, this command also queries the IDL program
4420 for currently compiled routines.
4422 With prefix ARG, also reload the system and library lists.
4423 With two prefix ARG's, also rescans the chosen user catalog tree.
4424 With three prefix args, dispatch asynchronous process to do the update.
4426 If NO-CONCATENATE is non-nil, don't pre-concatenate the routine info
4427 lists, but instead wait for the shell query to complete and
4428 asynchronously finish updating routine info. This is set
4429 automatically when called interactively. When you need routine
4430 information updated immediately, leave NO-CONCATENATE nil."
4431 (interactive "P\np")
4432 ;; Stop any idle processing
4433 (if (or (and (fboundp 'itimerp
)
4434 (itimerp idlwave-load-rinfo-idle-timer
))
4435 (and (fboundp 'timerp
)
4436 (timerp idlwave-load-rinfo-idle-timer
)))
4437 (cancel-timer idlwave-load-rinfo-idle-timer
))
4440 ;; Start a background process which updates the catalog.
4441 (idlwave-rescan-asynchronously))
4443 ;; Update the user catalog now, and wait for them.
4444 (idlwave-create-user-catalog-file t
))
4446 (let* ((load (or arg
4447 idlwave-buffer-case-takes-precedence
4448 (null idlwave-routines
)))
4449 ;; The override-idle means, even if the idle timer has done some
4450 ;; preparing work, load and renormalize everything anyway.
4451 (override-idle (or arg idlwave-buffer-case-takes-precedence
)))
4453 (setq idlwave-buffer-routines nil
4454 idlwave-compiled-routines nil
4455 idlwave-unresolved-routines nil
)
4456 ;; Reset the appropriate hashes
4457 (if (get 'idlwave-reset-sintern
'done-by-idle
)
4458 ;; reset was already done in idle time, so skip this step now once
4459 (put 'idlwave-reset-sintern
'done-by-idle nil
)
4460 (idlwave-reset-sintern (cond (load t
)
4461 ((null idlwave-system-routines
) t
)
4464 (if idlwave-buffer-case-takes-precedence
4465 ;; We can safely scan the buffer stuff first
4467 (idlwave-update-buffer-routine-info)
4468 (and load
(idlwave-load-all-rinfo override-idle
)))
4469 ;; We first do the system info, and then the buffers
4470 (and load
(idlwave-load-all-rinfo override-idle
))
4471 (idlwave-update-buffer-routine-info))
4473 ;; Let's see if there is a shell
4474 (let* ((shell-is-running (and (fboundp 'idlwave-shell-is-running
)
4475 (idlwave-shell-is-running)))
4476 (ask-shell (and shell-is-running
4477 idlwave-query-shell-for-routine-info
)))
4479 ;; Load the library catalogs again, first re-scanning the path
4481 (if shell-is-running
4482 (idlwave-shell-send-command idlwave-shell-path-query
4484 (idlwave-shell-get-path-info)
4485 (idlwave-scan-library-catalogs))
4487 (idlwave-scan-library-catalogs)))
4489 (if (or (not ask-shell
)
4490 (not no-concatenate
))
4491 ;; 1. If we are not going to ask the shell, we need to do the
4492 ;; concatenation now.
4493 ;; 2. When this function is called non-interactively, it
4494 ;; means that someone needs routine info *now*. The
4495 ;; shell update causes the concatenation to be
4496 ;; *delayed*, so not in time for the current command.
4497 ;; Therefore, we do a concatenation now, even though
4498 ;; the shell might do it again.
4499 (idlwave-concatenate-rinfo-lists nil
'run-hooks
))
4502 ;; Ask the shell about the routines it knows of.
4503 (message "Querying the shell")
4504 (idlwave-shell-update-routine-info nil t
)))))))
4507 (defvar idlwave-load-rinfo-steps-done
(make-vector 6 nil
))
4508 (defvar idlwave-load-rinfo-idle-timer nil
)
4509 (defun idlwave-start-load-rinfo-timer ()
4510 (if (or (and (fboundp 'itimerp
)
4511 (itimerp idlwave-load-rinfo-idle-timer
))
4512 (and (fboundp 'timerp
)
4513 (timerp idlwave-load-rinfo-idle-timer
)))
4514 (cancel-timer idlwave-load-rinfo-idle-timer
))
4515 (setq idlwave-load-rinfo-steps-done
(make-vector 6 nil
))
4516 (setq idlwave-load-rinfo-idle-timer nil
)
4517 (if (and idlwave-init-rinfo-when-idle-after
4518 (numberp idlwave-init-rinfo-when-idle-after
)
4519 (not (equal 0 idlwave-init-rinfo-when-idle-after
))
4520 (not idlwave-routines
))
4523 (setq idlwave-load-rinfo-idle-timer
4524 (run-with-idle-timer
4525 idlwave-init-rinfo-when-idle-after
4526 nil
'idlwave-load-rinfo-next-step
)))
4529 (defvar idlwave-library-routines nil
"Obsolete variable.")
4531 ;;------ XML Help routine info system
4532 (defun idlwave-load-system-routine-info ()
4533 ;; Load the system routine info from the cached routine info file,
4534 ;; which, if necessary, will be re-created from the XML file on
4535 ;; disk. As a last fallback, load the (likely outdated) idlw-rinfo
4536 ;; file distributed with older IDLWAVE versions (<6.0)
4537 (unless (and (load idlwave-xml-system-rinfo-converted-file
4538 'noerror
'nomessage
)
4539 (idlwave-xml-system-routine-info-up-to-date))
4540 ;; See if we can create it from XML source
4542 (idlwave-convert-xml-system-routine-info)
4544 (unless (load idlwave-xml-system-rinfo-converted-file
4545 'noerror
'nomessage
)
4546 (if idlwave-system-routines
4548 "Failed to load converted routine info, using old conversion.")
4550 "Failed to convert XML routine info, falling back on idlw-rinfo.")
4551 (if (not (load "idlw-rinfo" 'noerror
'nomessage
))
4553 "Could not locate any system routine information."))))))))
4555 (defun idlwave-xml-system-routine-info-up-to-date()
4556 (let* ((dir (file-name-as-directory
4557 (expand-file-name "help/online_help" (idlwave-sys-dir))))
4558 (catalog-file (expand-file-name "idl_catalog.xml" dir
)))
4559 (file-newer-than-file-p ;converted file is newer than catalog
4560 idlwave-xml-system-rinfo-converted-file
4563 (defvar idlwave-system-class-info nil
) ; Gathered from idlw-rinfo
4564 (defvar idlwave-system-variables-alist nil
4565 "Alist of system variables and the associated structure tags.
4566 Gets set in cached XML rinfo, or `idlw-rinfo.el'.")
4567 (defvar idlwave-executive-commands-alist nil
4568 "Alist of system variables and their help files.")
4569 (defvar idlwave-help-special-topic-words nil
)
4572 (defun idlwave-shorten-syntax (syntax name
&optional class
)
4573 ;; From a list of syntax statements, shorten with %s and group with "or"
4574 (let ((case-fold-search t
))
4577 (while (string-match name x
)
4578 (setq x
(replace-match "%s" t t x
)))
4580 (while (string-match class x
)
4581 (setq x
(replace-match "%s" t t x
))))
4586 (defun idlwave-xml-create-class-method-lists (xml-entry)
4587 ;; Create a class list entry from the xml parsed list., returning a
4588 ;; cons of form (class-entry method-entries).
4589 (let* ((nameblock (nth 1 xml-entry
))
4590 (class (cdr (assq 'name nameblock
)))
4591 (link (cdr (assq 'link nameblock
)))
4592 (params (cddr xml-entry
))
4593 (case-fold-search t
)
4595 method methods-entry extra-kwds
4596 props get-props set-props init-props inherits
4599 (setq pelem
(car params
))
4601 (setq ptype
(car pelem
)
4602 props
(car (cdr pelem
)))
4604 ((eq ptype
'SUPERCLASS
)
4605 (let ((pname (cdr (assq 'name props
)))
4606 (plink (cdr (assq 'link props
))))
4607 (unless (and (string= pname
"None")
4608 (string= plink
"None"))
4609 (push pname inherits
))))
4611 ((eq ptype
'PROPERTY
)
4612 (let ((pname (cdr (assq 'name props
)))
4613 (plink (cdr (assq 'link props
)))
4614 (get (string= (cdr (assq 'get props
)) "Yes"))
4615 (set (string= (cdr (assq 'set props
)) "Yes"))
4616 (init (string= (cdr (assq 'init props
)) "Yes")))
4617 (if get
(push (list pname plink
) get-props
))
4618 (if set
(push (list pname plink
) set-props
))
4619 (if init
(push (list pname plink
) init-props
))))
4622 (setq method
(cdr (assq 'name props
)))
4623 (setq extra-kwds
;;Assume all property keywords are gathered already
4625 ((string-match (concat class
"::Init") method
)
4626 (put 'init-props
'matched t
)
4628 ((string-match (concat class
"::GetProperty") method
)
4629 (put 'get-props
'matched t
)
4631 ((string-match (concat class
"::SetProperty") method
)
4632 (put 'set-props
'matched t
)
4636 (nconc (idlwave-xml-create-rinfo-list pelem class extra-kwds
)
4639 (setq params
(cdr params
)))
4640 ;;(unless (get 'init-props 'matched)
4641 ;; (message "Failed to match Init in class %s" class))
4642 ;;(unless (get 'get-props 'matched)
4643 ;; (message "Failed to match GetProperty in class %s" class))
4644 ;;(unless (get 'set-props 'matched)
4645 ;; (message "Failed to match SetProperty in class %s" class))
4648 (list class
(append '(inherits) inherits
) (list 'link link
))
4649 (list class
(list 'link link
))))
4650 (cons class-entry methods-entry
)))
4652 (defun idlwave-xml-create-rinfo-list (xml-entry &optional class extra-kws
)
4653 ;; Create correctly structured list elements from ROUTINE or METHOD
4654 ;; XML list structures. Return a list of list elements, with more
4655 ;; than one sub-list possible if a routine can serve as both
4656 ;; procedure and function (e.g. call_method).
4657 (let* ((nameblock (nth 1 xml-entry
))
4658 (name (cdr (assq 'name nameblock
)))
4659 (link (cdr (assq 'link nameblock
)))
4660 (params (cddr xml-entry
))
4661 (syntax-vec (make-vector 3 nil
)) ; procedure, function, exec command
4662 (case-fold-search t
)
4663 syntax kwd klink pref-list kwds pelem ptype props result type
)
4664 (if class
;; strip out class name from class method name string
4665 (if (string-match (concat class
"::") name
)
4666 (setq name
(substring name
(match-end 0)))))
4668 (setq pelem
(car params
))
4670 (setq ptype
(car pelem
)
4671 props
(car (cdr pelem
)))
4674 (setq syntax
(cdr (assq 'name props
)))
4675 (if (string-match "->" syntax
)
4676 (setq syntax
(replace-match "->" t nil syntax
)))
4677 (setq type
(cdr (assq 'type props
)))
4679 (aref syntax-vec
(cond
4680 ((string-match "^pro" type
) 0)
4681 ((string-match "^fun" type
) 1)
4682 ((string-match "^exec" type
) 2)))))
4683 ((eq ptype
'KEYWORD
)
4684 (setq kwd
(cdr (assq 'name props
))
4685 klink
(cdr (assq 'link props
)))
4686 (if (string-match "^\\[XY\\(Z?\\)\\]" kwd
)
4689 (if (match-string 1 kwd
) '("X" "Y" "Z") '("X" "Y"))
4690 kwd
(substring kwd
(match-end 0)))
4691 (loop for x in pref-list do
4692 (push (list (concat x kwd
) klink
) kwds
)))
4693 (push (list kwd klink
) kwds
)))
4695 (t))); Do nothing for the others
4696 (setq params
(cdr params
)))
4699 ;; (if (and (null (aref syntax-vec 0))
4700 ;; (null (aref syntax-vec 1))
4701 ;; (null (aref syntax-vec 2)))
4702 ;; (with-current-buffer (get-buffer-create "IDL_XML_catalog_complaints")
4704 ;; (insert (format "Missing SYNTAX entry for %s::%s\n" class name))
4705 ;; (insert (message "Missing SYNTAX entry for %s\n" name)))))
4707 ;; Executive commands are treated specially
4708 (if (aref syntax-vec
2)
4709 (cons (substring name
1) link
)
4710 (if extra-kws
(setq kwds
(nconc kwds extra-kws
)))
4711 (setq kwds
(idlwave-rinfo-group-keywords kwds link
))
4712 (loop for idx from
0 to
1 do
4713 (if (aref syntax-vec idx
)
4714 (push (append (list name
(if (eq idx
0) 'pro
'fun
)
4716 (idlwave-shorten-syntax
4717 (aref syntax-vec idx
) name class
))
4722 (defun idlwave-rinfo-group-keywords (kwds master-link
)
4723 ;; Group keywords by link file, as a list with elements
4724 ;; (linkfile ( ("KWD1" . link1) ("KWD2" . link2))
4725 (let (kwd link anchor linkfiles block master-elt
)
4727 (setq kwd
(car kwds
)
4728 link
(idlwave-split-link-target (nth 1 kwd
))
4732 (if (setq block
(assoc link linkfiles
))
4733 (push (cons kwd anchor
) (cdr block
))
4734 (push (list link
(cons kwd anchor
)) linkfiles
))
4735 (setq kwds
(cdr kwds
)))
4736 ;; Ensure the master link is there
4737 (if (setq master-elt
(assoc master-link linkfiles
))
4738 (if (eq (car linkfiles
) master-elt
)
4740 (cons master-elt
(delq master-elt linkfiles
)))
4741 (push (list master-link
) linkfiles
))))
4743 (defun idlwave-convert-xml-clean-statement-aliases (aliases)
4744 ;; Clean up the syntax of routines which are actually aliases by
4745 ;; removing the "OR" from the statements
4747 (loop for x in aliases do
4748 (setq entry
(assoc x idlwave-system-routines
))
4750 (while (string-match " +or +" (setq syntax
(nth 4 entry
)))
4751 (setf (nth 4 entry
) (replace-match ", " t t syntax
)))))))
4753 (defun idlwave-convert-xml-clean-routine-aliases (aliases)
4754 ;; Duplicate and trim original routine aliases from rinfo list
4755 ;; This if for, e.g. OPENR/OPENW/OPENU
4756 (let (alias remove-list new parts all-parts
)
4757 (loop for x in aliases do
4758 (when (setq parts
(split-string (cdr x
) "/"))
4759 (setq new
(assoc (cdr x
) all-parts
))
4761 (setq new
(cons (cdr x
) parts
))
4762 (push new all-parts
))
4763 (setcdr new
(delete (car x
) (cdr new
)))))
4765 ;; Add any missing aliases (separate by slashes)
4766 (loop for x in all-parts do
4768 (push (cons (nth 1 x
) (car x
)) aliases
)))
4770 (loop for x in aliases do
4771 (when (setq alias
(assoc (cdr x
) idlwave-system-routines
))
4772 (unless (memq alias remove-list
) (push alias remove-list
))
4773 (setq alias
(copy-sequence alias
))
4774 (setcar alias
(car x
))
4775 (push alias idlwave-system-routines
)))
4776 (loop for x in remove-list do
4777 (delq x idlwave-system-routines
))))
4779 (defun idlwave-convert-xml-clean-sysvar-aliases (aliases)
4780 ;; Duplicate and trim original routine aliases from rinfo list
4781 ;; This if for, e.g. !X, !Y, !Z.
4782 (let (alias remove-list
)
4783 (loop for x in aliases do
4784 (when (setq alias
(assoc (cdr x
) idlwave-system-variables-alist
))
4785 (unless (memq alias remove-list
) (push alias remove-list
))
4786 (setq alias
(copy-sequence alias
))
4787 (setcar alias
(car x
))
4788 (push alias idlwave-system-variables-alist
)))
4789 (loop for x in remove-list do
4790 (delq x idlwave-system-variables-alist
))))
4793 (defun idlwave-xml-create-sysvar-alist (xml-entry)
4794 ;; Create a sysvar list entry from the xml parsed list.
4795 (let* ((nameblock (nth 1 xml-entry
))
4796 (name (cdr (assq 'name nameblock
)))
4797 (sysvar (substring name
(progn (string-match "^ *!" name
)
4799 (link (cdr (assq 'link nameblock
)))
4800 (params (cddr xml-entry
))
4801 (case-fold-search t
)
4802 pelem ptype props tags
)
4804 (setq pelem
(car params
))
4806 (setq ptype
(car pelem
)
4807 props
(car (cdr pelem
)))
4810 (push (cons (cdr (assq 'name props
))
4812 (idlwave-split-link-target (cdr (assq 'link props
)))))
4814 (setq params
(cdr params
)))
4816 (list sysvar
(if tags
(cons 'tags tags
)) (list 'link link
)))))
4819 (defvar idlwave-xml-routine-info-file nil
)
4821 (defun idlwave-save-routine-info ()
4822 (if idlwave-xml-routine-info-file
4823 (with-temp-file idlwave-xml-system-rinfo-converted-file
4825 (concat ";; *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
4826 ;; IDLWAVE Routine Information File (IDLWAVE version " idlwave-mode-version
")
4827 ;; Automatically generated from source file:
4828 ;; " idlwave-xml-routine-info-file
"
4829 ;; on " (current-time-string) "
4831 (insert (format "\n(setq idlwave-xml-routine-info-file \n \"%s\")"
4832 idlwave-xml-routine-info-file
))
4833 (insert "\n(setq idlwave-system-routines\n '")
4834 (prin1 idlwave-system-routines
(current-buffer))
4836 (insert "\n(setq idlwave-system-variables-alist\n '")
4837 (prin1 idlwave-system-variables-alist
(current-buffer))
4839 (insert "\n(setq idlwave-system-class-info\n '")
4840 (prin1 idlwave-system-class-info
(current-buffer))
4842 (insert "\n(setq idlwave-executive-commands-alist\n '")
4843 (prin1 idlwave-executive-commands-alist
(current-buffer))
4845 (insert "\n(setq idlwave-help-special-topic-words\n '")
4846 (prin1 idlwave-help-special-topic-words
(current-buffer))
4849 (defun idlwave-convert-xml-system-routine-info ()
4850 "Convert XML supplied IDL routine info into internal form.
4851 Cache to disk for quick recovery."
4853 (let* ((dir (file-name-as-directory
4854 (expand-file-name "help/online_help" (idlwave-sys-dir))))
4855 (catalog-file (expand-file-name "idl_catalog.xml" dir
))
4857 props rinfo msg-cnt elem type nelem class-result alias
4858 routines routine-aliases statement-aliases sysvar-aliases
)
4859 (if (not (file-exists-p catalog-file
))
4860 (error "No such XML routine info file: %s" catalog-file
)
4861 (if (not (file-readable-p catalog-file
))
4862 (error "Cannot read XML routine info file: %s" catalog-file
)))
4863 (message "Reading XML routine info...")
4864 (setq rinfo
(xml-parse-file catalog-file
))
4865 (message "Reading XML routine info...done")
4866 (setq rinfo
(assq 'CATALOG rinfo
))
4867 (unless rinfo
(error "Failed to parse XML routine info"))
4868 ;;(setq rinfo (car rinfo)) ; Skip the catalog stuff.
4870 (setq rinfo
(cddr rinfo
))
4872 (setq nelem
(length rinfo
)
4873 msg-cnt
(/ nelem
20))
4875 (setq idlwave-xml-routine-info-file nil
)
4876 (message "Converting XML routine info...")
4877 (setq idlwave-system-routines nil
4878 idlwave-system-variables-alist nil
4879 idlwave-system-class-info nil
4880 idlwave-executive-commands-alist nil
4881 idlwave-help-special-topic-words nil
)
4884 (setq elem
(car rinfo
)
4888 (setq type
(car elem
)
4889 props
(car (cdr elem
)))
4890 (if (= (mod elem-cnt msg-cnt
) 0)
4891 (message "Converting XML routine info...%2d%%"
4892 (/ (* elem-cnt
100) nelem
)))
4895 (if (setq alias
(assq 'alias_to props
))
4896 (push (cons (cdr (assq 'name props
)) (cdr alias
))
4898 (setq routines
(idlwave-xml-create-rinfo-list elem
))
4899 (if (listp (cdr routines
))
4900 (setq idlwave-system-routines
4901 (nconc idlwave-system-routines routines
))
4902 ;; a cons cell is an executive commands
4903 (push routines idlwave-executive-commands-alist
))))
4906 (setq class-result
(idlwave-xml-create-class-method-lists elem
))
4907 (push (car class-result
) idlwave-system-class-info
)
4908 (setq idlwave-system-routines
4909 (nconc idlwave-system-routines
(cdr class-result
))))
4911 ((eq type
'STATEMENT
)
4912 (push (cons (cdr (assq 'name props
))
4913 (cdr (assq 'link props
)))
4914 idlwave-help-special-topic-words
)
4915 ;; Save the links to those which are statement aliases (not routines)
4916 (if (setq alias
(assq 'alias_to props
))
4917 (unless (member (cdr alias
) statement-aliases
)
4918 (push (cdr alias
) statement-aliases
))))
4921 (if (setq alias
(cdr (assq 'alias_to props
)))
4922 (push (cons (substring (cdr (assq 'name props
)) 1)
4923 (substring alias
1))
4925 (push (idlwave-xml-create-sysvar-alist elem
)
4926 idlwave-system-variables-alist
)))
4928 (idlwave-convert-xml-clean-routine-aliases routine-aliases
)
4929 (idlwave-convert-xml-clean-statement-aliases statement-aliases
)
4930 (idlwave-convert-xml-clean-sysvar-aliases sysvar-aliases
)
4932 (setq idlwave-xml-routine-info-file catalog-file
)
4933 (idlwave-save-routine-info)
4934 (message "Converting XML routine info...done")))
4937 ;; ("ROUTINE" type class
4938 ;; (system) | (lib pro_file dir "LIBNAME") | (user pro_file dir "USERLIB") |
4939 ;; (buffer pro_file dir) | (compiled pro_file dir)
4940 ;; "calling_string" ("HELPFILE" (("KWD1" . link1) ...))
4941 ;; ("HELPFILE2" (("KWD2" . link) ...)) ...)
4944 (defun idlwave-load-rinfo-next-step ()
4945 (let ((inhibit-quit t
)
4946 (arr idlwave-load-rinfo-steps-done
))
4948 (when (not (aref arr
0))
4949 (message "Loading system routine info in idle time...")
4950 (idlwave-load-system-routine-info)
4951 ;;(load "idlw-rinfo" 'noerror 'nomessage)
4952 (message "Loading system routine info in idle time...done")
4956 (when (not (aref arr
1))
4957 (message "Normalizing idlwave-system-routines in idle time...")
4958 (idlwave-reset-sintern t
)
4959 (put 'idlwave-reset-sintern
'done-by-idle t
)
4960 (setq idlwave-system-routines
4961 (idlwave-sintern-rinfo-list idlwave-system-routines
'sys
))
4962 (message "Normalizing idlwave-system-routines in idle time...done")
4966 (when (not (aref arr
2))
4967 (when (and (stringp idlwave-user-catalog-file
)
4968 (file-regular-p idlwave-user-catalog-file
))
4969 (message "Loading user catalog in idle time...")
4971 (load-file idlwave-user-catalog-file
)
4972 (error (throw 'exit nil
)))
4973 ;; Check for the old style catalog and warn
4975 (boundp 'idlwave-library-routines
)
4976 idlwave-library-routines
)
4978 (setq idlwave-library-routines nil
)
4980 (message "Outdated user catalog: %s... recreate"
4981 idlwave-user-catalog-file
))
4982 (message "Loading user catalog in idle time...done")))
4986 (when (not (aref arr
3))
4987 (when idlwave-user-catalog-routines
4988 (message "Normalizing user catalog routines in idle time...")
4989 (setq idlwave-user-catalog-routines
4990 (idlwave-sintern-rinfo-list
4991 idlwave-user-catalog-routines
'sys
))
4993 "Normalizing user catalog routines in idle time...done"))
4997 (when (not (aref arr
4))
4998 (idlwave-scan-library-catalogs
4999 "Loading and normalizing library catalogs in idle time...")
5002 (when (not (aref arr
5))
5003 (message "Finishing initialization in idle time...")
5005 (message "Finishing initialization in idle time...done")
5008 ;; restart the timer
5010 (idlwave-load-rinfo-next-step)
5011 (setq idlwave-load-rinfo-idle-timer
5012 (run-with-idle-timer
5013 idlwave-init-rinfo-when-idle-after
5014 nil
'idlwave-load-rinfo-next-step
))))))
5016 (defvar idlwave-after-load-rinfo-hook nil
)
5018 (defun idlwave-load-all-rinfo (&optional force
)
5019 ;; Load and case-treat the system, user catalog, and library routine
5023 (when (or force
(not (aref idlwave-load-rinfo-steps-done
0)))
5024 ;;(load "idlw-rinfo" 'noerror 'nomessage))
5025 (idlwave-load-system-routine-info))
5026 (when (or force
(not (aref idlwave-load-rinfo-steps-done
1)))
5027 (message "Normalizing idlwave-system-routines...")
5028 (setq idlwave-system-routines
5029 (idlwave-sintern-rinfo-list idlwave-system-routines
'sys
))
5030 (message "Normalizing idlwave-system-routines...done"))
5031 (when idlwave-system-routines
5032 (setq idlwave-routines
(copy-sequence idlwave-system-routines
))
5033 (setq idlwave-last-system-routine-info-cons-cell
5034 (nthcdr (1- (length idlwave-routines
)) idlwave-routines
)))
5037 (when (and (stringp idlwave-user-catalog-file
)
5038 (file-regular-p idlwave-user-catalog-file
))
5040 (when (or force
(not (aref idlwave-load-rinfo-steps-done
2)))
5041 (load-file idlwave-user-catalog-file
))
5044 (boundp 'idlwave-library-routines
)
5045 idlwave-library-routines
)
5046 (setq idlwave-library-routines nil
)
5047 (error "Outdated user catalog: %s... recreate"
5048 idlwave-user-catalog-file
))
5049 (setq idlwave-true-path-alist nil
)
5050 (when (or force
(not (aref idlwave-load-rinfo-steps-done
3)))
5051 (message "Normalizing user catalog routines...")
5052 (setq idlwave-user-catalog-routines
5053 (idlwave-sintern-rinfo-list
5054 idlwave-user-catalog-routines
'sys
))
5055 (message "Normalizing user catalog routines...done")))
5058 (when (or force
(not (aref idlwave-load-rinfo-steps-done
4)))
5059 (idlwave-scan-library-catalogs
5060 "Loading and normalizing library catalogs..."))
5061 (run-hooks 'idlwave-after-load-rinfo-hook
))
5064 (defun idlwave-update-buffer-routine-info ()
5067 ((eq idlwave-scan-all-buffers-for-routine-info t
)
5068 ;; Scan all buffers, current buffer last
5069 (message "Scanning all buffers...")
5070 (setq res
(idlwave-get-routine-info-from-buffers
5071 (reverse (buffer-list)))))
5072 ((null idlwave-scan-all-buffers-for-routine-info
)
5073 ;; Don't scan any buffers
5076 ;; Just scan this buffer
5077 (if (derived-mode-p 'idlwave-mode
)
5079 (message "Scanning current buffer...")
5080 (setq res
(idlwave-get-routine-info-from-buffers
5081 (list (current-buffer))))))))
5082 ;; Put the result into the correct variable
5083 (setq idlwave-buffer-routines
5084 (idlwave-sintern-rinfo-list res
'set
))))
5086 (defun idlwave-concatenate-rinfo-lists (&optional quiet run-hook
)
5087 "Put the different sources for routine information together."
5088 ;; The sequence here is important because earlier definitions shadow
5089 ;; later ones. We assume that if things in the buffers are newer
5090 ;; then in the shell of the system, they are meant to be different.
5091 (setcdr idlwave-last-system-routine-info-cons-cell
5092 (append idlwave-buffer-routines
5093 idlwave-compiled-routines
5094 idlwave-library-catalog-routines
5095 idlwave-user-catalog-routines
))
5096 (setq idlwave-class-alist nil
)
5098 ;; Give a message with information about the number of routines we have.
5101 "Routines Found: buffer(%d) compiled(%d) library(%d) user(%d) system(%d)"
5102 (length idlwave-buffer-routines
)
5103 (length idlwave-compiled-routines
)
5104 (length idlwave-library-catalog-routines
)
5105 (length idlwave-user-catalog-routines
)
5106 (length idlwave-system-routines
)))
5108 (run-hooks 'idlwave-update-rinfo-hook
)))
5110 (defun idlwave-class-alist ()
5111 "Return the class alist - make it if necessary."
5112 (or idlwave-class-alist
5114 (loop for x in idlwave-routines do
5115 (when (and (setq class
(nth 2 x
))
5116 (not (assq class idlwave-class-alist
)))
5117 (push (list class
) idlwave-class-alist
)))
5118 idlwave-class-alist
)))
5120 ;; Three functions for the hooks
5121 (defun idlwave-save-buffer-update ()
5122 (idlwave-update-current-buffer-info 'save-buffer
))
5123 (defun idlwave-kill-buffer-update ()
5124 (idlwave-update-current-buffer-info 'kill-buffer
))
5125 (defun idlwave-new-buffer-update ()
5126 (idlwave-update-current-buffer-info 'find-file
))
5128 (defun idlwave-update-current-buffer-info (why)
5129 "Update `idlwave-routines' for current buffer.
5130 Can run from `after-save-hook'."
5131 (when (and (derived-mode-p 'idlwave-mode
)
5132 (or (eq t idlwave-auto-routine-info-updates
)
5133 (memq why idlwave-auto-routine-info-updates
))
5134 idlwave-scan-all-buffers-for-routine-info
5138 (idlwave-replace-buffer-routine-info
5140 (if (eq why
'kill-buffer
)
5143 (idlwave-sintern-rinfo-list
5144 (idlwave-get-routine-info-from-buffers
5145 (list (current-buffer))) 'set
))))
5146 (idlwave-concatenate-rinfo-lists 'quiet
)
5150 (defun idlwave-replace-buffer-routine-info (file new
)
5151 "Cut the part from FILE out of `idlwave-buffer-routines' and add NEW."
5152 (let ((list idlwave-buffer-routines
)
5155 ;; The following test uses eq to make sure it works correctly
5156 ;; when two buffers visit the same file. Then the file names
5157 ;; will be equal, but not eq.
5158 (if (eq (idlwave-routine-source-file (nth 3 (car list
))) file
)
5163 ;; End of that section reached. Jump.
5165 (setq list
(cdr list
)))
5166 (setq idlwave-buffer-routines
5167 (append new
(delq nil idlwave-buffer-routines
)))))
5169 ;;----- Scanning buffers -------------------
5171 (defun idlwave-get-routine-info-from-buffers (buffers)
5172 "Call `idlwave-get-buffer-routine-info' on idlwave-mode buffers in BUFFERS."
5173 (let (buf routine-lists res
)
5175 (while (setq buf
(pop buffers
))
5177 (if (and (derived-mode-p 'idlwave-mode
)
5179 ;; yes, this buffer has the right mode.
5180 (progn (setq res
(condition-case nil
5181 (idlwave-get-buffer-routine-info)
5183 (push res routine-lists
)))))
5184 ;; Concatenate the individual lists and return the result
5185 (apply 'nconc routine-lists
)))
5187 (defun idlwave-get-buffer-routine-info ()
5188 "Scan the current buffer for routine info. Return (PRO-LIST FUNC-LIST)."
5189 (let* ((case-fold-search t
)
5190 routine-list string entry
)
5194 (goto-char (point-min))
5195 (while (re-search-forward
5196 "^[ \t]*\\(pro\\|function\\)[ \t]" nil t
)
5197 (setq string
(buffer-substring-no-properties
5200 (idlwave-end-of-statement)
5202 (setq entry
(idlwave-parse-definition string
))
5203 (push entry routine-list
))))
5206 (defvar idlwave-scanning-lib-dir
)
5207 (defvar idlwave-scanning-lib
)
5208 (defun idlwave-parse-definition (string)
5209 "Parse a module definition."
5210 (let ((case-fold-search t
)
5211 start name args type keywords class
)
5213 (while (string-match ";.*" string
)
5214 (setq string
(replace-match "" t t string
)))
5215 ;; Remove the continuation line stuff
5216 (while (string-match "\\([^a-zA-Z0-9$_]\\)\\$[ \t]*\n" string
)
5217 (setq string
(replace-match "\\1 " t nil string
)))
5218 (while (string-match "\n" string
)
5219 (setq string
(replace-match " " t nil string
)))
5220 ;; Match the name and type.
5222 "\\<\\(pro\\|function\\)\\>\\s-+\\(\\([a-zA-Z0-9$_]+\\)::\\)?\\([a-zA-Z0-9$_]+\\)" string
)
5223 (setq start
(match-end 0))
5224 (setq type
(downcase (match-string 1 string
)))
5225 (if (match-beginning 3)
5226 (setq class
(match-string 3 string
)))
5227 (setq name
(match-string 4 string
)))
5228 ;; Match normal args and keyword args
5229 (while (string-match
5230 ",\\s-*\\([a-zA-Z][a-zA-Z0-9$_]*\\|\\(_ref\\)?_extra\\)\\s-*\\(=\\)?"
5232 (setq start
(match-end 0))
5233 (if (match-beginning 3)
5234 (push (match-string 1 string
) keywords
)
5235 (push (match-string 1 string
) args
)))
5236 ;; Normalize and sort.
5237 (setq args
(nreverse args
))
5238 (setq keywords
(sort keywords
(lambda (a b
)
5239 (string< (downcase a
) (downcase b
)))))
5240 ;; Make and return the entry
5241 ;; We don't know which argument are optional, so this information
5242 ;; will not be contained in the calling sequence.
5244 (if (equal type
"pro") 'pro
'fun
)
5246 (cond ((not (boundp 'idlwave-scanning-lib
))
5247 (list 'buffer
(buffer-file-name)))
5248 ; ((string= (downcase
5249 ; (file-name-sans-extension
5250 ; (file-name-nondirectory (buffer-file-name))))
5253 ; (t (cons 'lib (file-name-nondirectory (buffer-file-name))))
5254 (t (list 'user
(file-name-nondirectory (buffer-file-name))
5255 idlwave-scanning-lib-dir
"UserLib")))
5257 (if (string= type
"function") "Result = " "")
5258 (if class
"Obj ->[%s::]" "")
5262 (if (string= type
"function") "(" ", ")
5263 (mapconcat 'identity args
", ")
5264 (if (string= type
"function") ")" ""))))
5266 (cons nil
(mapcar 'list keywords
)) ;No help file
5270 ;;----- Scanning the user catalog -------------------
5272 (defun idlwave-sys-dir ()
5273 "Return the syslib directory, or a dummy that never matches."
5275 ((and idlwave-system-directory
5276 (not (string= idlwave-system-directory
"")))
5277 idlwave-system-directory
)
5278 ((getenv "IDL_DIR"))
5282 (defun idlwave-create-user-catalog-file (&optional arg
)
5283 "Scan all files on selected dirs of IDL search path for routine information.
5285 A widget checklist will allow you to choose the directories. Write
5286 the result as a file `idlwave-user-catalog-file'. When this file
5287 exists, it will be automatically loaded to give routine information
5288 about library routines. With ARG, just rescan the same directories
5289 as last time - so no widget will pop up."
5291 ;; Make sure the file is loaded if it exists.
5292 (if (and (stringp idlwave-user-catalog-file
)
5293 (file-regular-p idlwave-user-catalog-file
))
5295 (load-file idlwave-user-catalog-file
)
5297 ;; Make sure the file name makes sense
5298 (unless (and (stringp idlwave-user-catalog-file
)
5299 (> (length idlwave-user-catalog-file
) 0)
5300 (file-accessible-directory-p
5301 (file-name-directory idlwave-user-catalog-file
))
5302 (not (string= "" (file-name-nondirectory
5303 idlwave-user-catalog-file
))))
5304 (error "`idlwave-user-catalog-file' does not point to a file in an accessible directory"))
5307 ;; Rescan the known directories
5308 ((and arg idlwave-path-alist
5309 (consp (car idlwave-path-alist
)))
5310 (idlwave-scan-user-lib-files idlwave-path-alist
))
5312 ;; Expand the directories from library-path and run the widget
5313 (idlwave-library-path
5314 (idlwave-display-user-catalog-widget
5315 (if idlwave-true-path-alist
5316 ;; Propagate any flags on the existing path-alist
5318 (let ((path-entry (assoc (file-truename x
)
5319 idlwave-true-path-alist
)))
5321 (cons x
(cdr path-entry
))
5323 (idlwave-expand-path idlwave-library-path
))
5324 (mapcar 'list
(idlwave-expand-path idlwave-library-path
)))))
5326 ;; Ask the shell for the path and then run the widget
5328 (message "Asking the shell for IDL path...")
5329 (require 'idlw-shell
)
5330 (idlwave-shell-send-command idlwave-shell-path-query
5331 '(idlwave-user-catalog-command-hook nil
)
5335 ;; Parse shell path information and select among it.
5336 (defun idlwave-user-catalog-command-hook (&optional arg
)
5337 ;; Command hook used by `idlwave-create-user-catalog-file'.
5340 (idlwave-scan-user-lib-files idlwave-path-alist
)
5341 ;; Set the path and display the widget
5342 (idlwave-shell-get-path-info 'no-write
) ; set to something path-alist
5343 (idlwave-scan-library-catalogs "Locating library catalogs..." 'no-load
)
5344 (idlwave-display-user-catalog-widget idlwave-path-alist
)))
5346 (defconst idlwave-user-catalog-widget-help-string
5347 "This is the front-end to the creation of the IDLWAVE user catalog.
5348 Please select the directories on IDL's search path from which you
5349 would like to extract routine information, to be stored in the file:
5353 If this is not the correct file, first set variable
5354 `idlwave-user-catalog-file', and call this command again.
5356 N.B. Many libraries include pre-scanned catalog files
5357 \(\".idlwave_catalog\"). These are marked with \"[LIB]\", and need
5358 not be scanned. You can scan your own libraries off-line using the
5359 perl script `idlwave_catalog'.
5361 After selecting the directories, choose [Scan & Save] to scan the library
5362 directories and save the routine info.
5365 (defvar idlwave-widget
)
5366 (defvar widget-keymap
)
5367 (defun idlwave-display-user-catalog-widget (dirs-list)
5368 "Create the widget to select IDL search path directories for scanning."
5373 (error "Don't know IDL's search path"))
5375 (kill-buffer (get-buffer-create "*IDLWAVE Widget*"))
5376 (switch-to-buffer (get-buffer-create "*IDLWAVE Widget*"))
5377 (kill-all-local-variables)
5378 (make-local-variable 'idlwave-widget
)
5379 (widget-insert (format idlwave-user-catalog-widget-help-string
5380 idlwave-user-catalog-file
))
5382 (widget-create 'push-button
5383 :notify
'idlwave-widget-scan-user-lib-files
5386 (widget-create 'push-button
5387 :notify
'idlwave-delete-user-catalog-file
5390 (widget-create 'push-button
5392 (lambda (&rest ignore
)
5393 (let ((path-list (widget-get idlwave-widget
:path-dirs
)))
5394 (dolist (x path-list
)
5395 (unless (memq 'lib
(cdr x
))
5396 (idlwave-path-alist-add-flag x
'user
)))
5397 (idlwave-display-user-catalog-widget path-list
)))
5398 "Select All Non-Lib")
5400 (widget-create 'push-button
5402 (lambda (&rest ignore
)
5403 (let ((path-list (widget-get idlwave-widget
:path-dirs
)))
5404 (dolist (x path-list
)
5405 (idlwave-path-alist-remove-flag x
'user
))
5406 (idlwave-display-user-catalog-widget path-list
)))
5409 (widget-create 'push-button
5410 :notify
(lambda (&rest ignore
)
5411 (kill-buffer (current-buffer)))
5413 (widget-insert "\n\n")
5415 (widget-insert "Select Directories: \n")
5417 (setq idlwave-widget
5418 (apply 'widget-create
5420 :value
(delq nil
(mapcar (lambda (x)
5421 (if (memq 'user
(cdr x
))
5425 :tag
"List of directories"
5428 (if (memq 'lib
(cdr x
))
5429 (concat "[LIB] " (car x
) )
5430 (car x
)))) dirs-list
)))
5431 (widget-put idlwave-widget
:path-dirs dirs-list
)
5432 (widget-insert "\n")
5433 (use-local-map widget-keymap
)
5435 (goto-char (point-min))
5436 (delete-other-windows))
5438 (defun idlwave-delete-user-catalog-file (&rest ignore
)
5440 (format "Delete file %s " idlwave-user-catalog-file
))
5442 (delete-file idlwave-user-catalog-file
)
5443 (message "%s has been deleted" idlwave-user-catalog-file
))))
5445 (defun idlwave-widget-scan-user-lib-files (&rest ignore
)
5446 ;; Call `idlwave-scan-user-lib-files' with data taken from the widget.
5447 (let* ((widget idlwave-widget
)
5448 (selected-dirs (widget-value widget
))
5449 (path-alist (widget-get widget
:path-dirs
))
5450 (this-path-alist path-alist
)
5452 (while (setq dir-entry
(pop this-path-alist
))
5454 (if (memq 'lib
(cdr dir-entry
))
5455 (concat "[LIB] " (car dir-entry
))
5458 (idlwave-path-alist-add-flag dir-entry
'user
)
5459 (idlwave-path-alist-remove-flag dir-entry
'user
)))
5460 (idlwave-scan-user-lib-files path-alist
)))
5462 (defvar font-lock-mode
)
5463 (defun idlwave-scan-user-lib-files (path-alist)
5464 ;; Scan the PRO files in PATH-ALIST and store the info in the user catalog
5465 (let* ((idlwave-scanning-lib t
)
5466 (idlwave-scanning-lib-dir "")
5467 (idlwave-completion-case nil
)
5468 dirs-alist dir files file
)
5469 (setq idlwave-user-catalog-routines nil
5470 idlwave-path-alist path-alist
; for library-path instead
5471 idlwave-true-path-alist nil
)
5472 (if idlwave-auto-write-paths
(idlwave-write-paths))
5473 (with-current-buffer (get-buffer-create "*idlwave-scan.pro*")
5475 (setq dirs-alist
(reverse path-alist
))
5476 (while (setq dir
(pop dirs-alist
))
5477 (when (memq 'user
(cdr dir
)) ; Has it marked for scan?
5478 (setq dir
(car dir
))
5479 (setq idlwave-scanning-lib-dir dir
)
5480 (when (file-directory-p dir
)
5481 (setq files
(directory-files dir
'full
"\\.[pP][rR][oO]\\'"))
5482 (while (setq file
(pop files
))
5483 (when (file-regular-p file
)
5484 (if (not (file-readable-p file
))
5485 (message "Skipping %s (no read permission)" file
)
5486 (message "Scanning %s..." file
)
5488 (insert-file-contents file
'visit
)
5489 (setq idlwave-user-catalog-routines
5490 (append (idlwave-get-routine-info-from-buffers
5491 (list (current-buffer)))
5492 idlwave-user-catalog-routines
)))))))))
5493 (message "Creating user catalog file...")
5494 (kill-buffer "*idlwave-scan.pro*")
5495 (kill-buffer (get-buffer-create "*IDLWAVE Widget*"))
5496 (let ((font-lock-maximum-size 0)
5497 (auto-mode-alist nil
))
5498 (find-file idlwave-user-catalog-file
))
5499 (if (and (boundp 'font-lock-mode
)
5503 (insert ";; IDLWAVE user catalog file\n")
5504 (insert (format ";; Created %s\n\n" (current-time-string)))
5506 ;; Define the routine info list
5507 (insert "\n(setq idlwave-user-catalog-routines\n '(")
5508 (let ((standard-output (current-buffer)))
5512 (goto-char (point-max)))
5513 idlwave-user-catalog-routines
))
5514 (insert (format "))\n\n;;; %s ends here\n"
5515 (file-name-nondirectory idlwave-user-catalog-file
)))
5516 (goto-char (point-min))
5519 (kill-buffer (current-buffer)))
5520 (message "Creating user catalog file...done")
5521 (message "Info for %d routines saved in %s"
5522 (length idlwave-user-catalog-routines
)
5523 idlwave-user-catalog-file
)
5525 (idlwave-update-routine-info t
))
5527 (defun idlwave-read-paths ()
5528 (if (and (stringp idlwave-path-file
)
5529 (file-regular-p idlwave-path-file
))
5531 (load idlwave-path-file t t t
)
5534 (defun idlwave-write-paths ()
5536 (when (and idlwave-path-alist idlwave-system-directory
)
5537 (let ((font-lock-maximum-size 0)
5538 (auto-mode-alist nil
))
5539 (find-file idlwave-path-file
))
5540 (if (and (boundp 'font-lock-mode
)
5544 (insert ";; IDLWAVE paths\n")
5545 (insert (format ";; Created %s\n\n" (current-time-string)))
5546 ;; Define the variable which knows the value of "!DIR"
5547 (insert (format "\n(setq idlwave-system-directory \"%s\")\n"
5548 idlwave-system-directory
))
5550 ;; Define the variable which contains a list of all scanned directories
5551 (insert "\n(setq idlwave-path-alist\n '(")
5552 (let ((standard-output (current-buffer)))
5556 (goto-char (point-max)))
5557 idlwave-path-alist
))
5560 (kill-buffer (current-buffer))))
5563 (defun idlwave-expand-path (path &optional default-dir
)
5564 ;; Expand parts of path starting with '+' recursively into directory list.
5565 ;; Relative recursive path elements are expanded relative to DEFAULT-DIR.
5566 (message "Expanding path...")
5567 (let (path1 dir recursive
)
5568 (while (setq dir
(pop path
))
5569 (if (setq recursive
(string= (substring dir
0 1) "+"))
5570 (setq dir
(substring dir
1)))
5572 (not (file-name-absolute-p dir
)))
5573 (setq dir
(expand-file-name dir default-dir
)))
5575 ;; Expand recursively
5576 (setq path1
(append (idlwave-recursive-directory-list dir
) path1
))
5579 (message "Expanding path...done")
5582 (defun idlwave-recursive-directory-list (dir)
5583 ;; Return a list of all directories below DIR, including DIR itself
5584 (let ((path (list dir
)) path1 file files
)
5585 (while (setq dir
(pop path
))
5586 (when (file-directory-p dir
)
5587 (setq files
(nreverse (directory-files dir t
"[^.]")))
5588 (while (setq file
(pop files
))
5589 (if (file-directory-p file
)
5590 (push (file-name-as-directory file
) path
)))
5595 ;;----- Scanning the library catalogs ------------------
5600 (defun idlwave-scan-library-catalogs (&optional message-base no-load
)
5601 "Scan for library catalog files (.idlwave_catalog) and ingest.
5603 All directories on `idlwave-path-alist' (or `idlwave-library-path'
5604 instead, if present) are searched. Print MESSAGE-BASE along with the
5605 libraries being loaded, if passed, and skip loading/normalizing if
5606 NO-LOAD is non-nil. The variable `idlwave-use-library-catalogs' can
5607 be set to nil to disable library catalog scanning."
5608 (when idlwave-use-library-catalogs
5610 (if idlwave-library-path
5611 (idlwave-expand-path idlwave-library-path
)
5612 (mapcar 'car idlwave-path-alist
)))
5614 dir-entry dir catalog all-routines
)
5615 (if message-base
(message message-base
))
5616 (while (setq dir
(pop dirs
))
5618 (when (file-readable-p
5619 (setq catalog
(expand-file-name ".idlwave_catalog" dir
)))
5621 (setq idlwave-library-catalog-routines nil
)
5622 ;; Load the catalog file
5624 (load catalog t t t
)
5625 (error (throw 'continue t
)))
5628 (not (string= idlwave-library-catalog-libname
5630 (message "%s" (concat message-base
5631 idlwave-library-catalog-libname
))
5632 (setq old-libname idlwave-library-catalog-libname
))
5633 (when idlwave-library-catalog-routines
5636 (idlwave-sintern-rinfo-list
5637 idlwave-library-catalog-routines
'sys dir
)
5640 ;; Add a 'lib flag if on path-alist
5641 (when (and idlwave-path-alist
5642 (setq dir-entry
(assoc dir idlwave-path-alist
)))
5643 (idlwave-path-alist-add-flag dir-entry
'lib
)))))
5644 (unless no-load
(setq idlwave-library-catalog-routines all-routines
))
5645 (if message-base
(message (concat message-base
"done"))))))
5647 ;;----- Communicating with the Shell -------------------
5649 ;; First, here is the idl program which can be used to query IDL for
5650 ;; defined routines.
5651 (defconst idlwave-routine-info.pro
5653 ;; START OF IDLWAVE SUPPORT ROUTINES
5654 pro idlwave_print_safe,item,limit
5656 if err ne 0 then begin
5657 print,'Could not print item.'
5660 if n_elements(item) gt limit then $
5661 print,item[0:limit-1],'<... truncated at ',strtrim(limit,2),' elements>' $
5665 pro idlwave_print_info_entry,name,func=func,separator=sep
5666 ;; See if it's an object method
5667 if name eq '' then return
5668 func = keyword_set(func)
5669 methsep = strpos(name,'::')
5670 meth = methsep ne -1
5673 pars = routine_info(name,/parameters,functions=func)
5674 source = routine_info(name,/source,functions=func)
5675 nargs = pars.num_args
5676 nkw = pars.num_kw_args
5677 if nargs gt 0 then args = pars.args
5678 if nkw gt 0 then kwargs = pars.kw_args
5680 ;; Trim the class, and make the name
5682 class = strmid(name,0,methsep)
5683 name = strmid(name,methsep+2,strlen(name)-1)
5684 if nargs gt 0 then begin
5685 ;; remove the self argument
5686 wh = where(args ne 'SELF',nargs)
5687 if nargs gt 0 then args = args[wh]
5690 ;; No class, just a normal routine.
5696 if func then cs = 'Result = '
5697 if meth then cs = cs + 'Obj -> [' + '%s' + '::]'
5699 if func then cs = cs + '(' else if nargs gt 0 then cs = cs + ', '
5700 if nargs gt 0 then begin
5701 for j=0,nargs-1 do begin
5703 if j lt nargs-1 then cs = cs + ', '
5706 if func then cs = cs + ')'
5707 ;; Keyword arguments
5709 if nkw gt 0 then begin
5710 for j=0,nkw-1 do begin
5711 kwstring = kwstring + ' ' + kwargs[j]
5715 ret=(['IDLWAVE-PRO','IDLWAVE-FUN'])[func]
5717 print,ret + ': ' + name + sep + class + sep + source[0].path $
5718 + sep + cs + sep + kwstring
5721 pro idlwave_routine_info,file
5724 print,'>>>BEGIN OF IDLWAVE ROUTINE INFO (\"' + sep + '\" IS THE SEPARATOR)'
5725 all = routine_info()
5726 fileQ=n_elements(file) ne 0
5727 if fileQ then file=strtrim(file,2)
5728 for i=0L,n_elements(all)-1L do begin
5730 if (routine_info(all[i],/SOURCE)).path eq file then $
5731 idlwave_print_info_entry,all[i],separator=sep
5732 endif else idlwave_print_info_entry,all[i],separator=sep
5734 all = routine_info(/functions)
5735 for i=0L,n_elements(all)-1L do begin
5737 if (routine_info(all[i],/FUNCTIONS,/SOURCE)).path eq file then $
5738 idlwave_print_info_entry,all[i],separator=sep,/FUNC
5739 endif else idlwave_print_info_entry,all[i],separator=sep,/FUNC
5741 print,'>>>END OF IDLWAVE ROUTINE INFO'
5744 pro idlwave_get_sysvars
5747 if error_status ne 0 then begin
5748 print, 'Cannot get info about system variables'
5750 help,/brief,output=s,/system_variables ; ? unsafe use of OUTPUT=
5751 s = strtrim(strjoin(s,' ',/single),2) ; make one line
5752 v = strsplit(s,' +',/regex,/extract) ; get variables
5753 for i=0L,n_elements(v)-1 do begin
5754 t = [''] ; get tag list
5755 a=execute('if n_tags('+v[i]+') gt 0 then t=tag_names('+v[i]+')')
5756 print, 'IDLWAVE-SYSVAR: '+v[i]+' '+strjoin(t,' ',/single)
5761 pro idlwave_get_class_tags, class
5762 res = execute('tags=tag_names({'+class+'})')
5763 if res then print,'IDLWAVE-CLASS-TAGS: '+class+' '+strjoin(tags,' ',/single)
5765 ;; END OF IDLWAVE SUPPORT ROUTINES
5767 "The IDL programs to get info from the shell.")
5769 (defvar idlwave-idlwave_routine_info-compiled nil
5770 "Remember if the routine info procedure is already compiled.")
5772 (defvar idlwave-shell-temp-pro-file
)
5773 (defvar idlwave-shell-temp-rinfo-save-file
)
5775 (defun idlwave-shell-compile-helper-routines (&optional wait
)
5776 (unless (and idlwave-idlwave_routine_info-compiled
5777 (file-readable-p (idlwave-shell-temp-file 'rinfo
)))
5778 (with-current-buffer (idlwave-find-file-noselect
5779 (idlwave-shell-temp-file 'pro
))
5781 (insert idlwave-routine-info.pro
)
5783 (idlwave-shell-send-command
5784 (concat ".run \"" idlwave-shell-temp-pro-file
"\"")
5786 (idlwave-shell-send-command
5787 (format "save,'idlwave_print_safe','idlwave_routine_info','idlwave_print_info_entry','idlwave_get_class_tags','idlwave_get_sysvars',FILE='%s',/ROUTINES"
5788 (idlwave-shell-temp-file 'rinfo
))
5790 (setq idlwave-idlwave_routine_info-compiled t
))
5792 ;; Restore if necessary. Must use execute to hide lame routine_info
5793 ;; errors on undefinded routine
5794 (idlwave-shell-send-command
5795 (format "if execute(\"_v=routine_info('idlwave_routine_info',/SOURCE)\") eq 0 then restore,'%s' else if _v.path eq '' then restore,'%s'"
5796 idlwave-shell-temp-rinfo-save-file
5797 idlwave-shell-temp-rinfo-save-file
)
5801 (defun idlwave-shell-update-routine-info (&optional quiet run-hooks wait file
)
5802 "Query the shell for routine_info of compiled modules and update the lists."
5803 ;; Save and compile the procedure. The compiled procedure is then
5804 ;; saved into an IDL SAVE file, to allow for fast RESTORE. We may
5805 ;; need to test for and possibly RESTORE the procedure each time we
5806 ;; use it, since the user may have killed or redefined it. In
5807 ;; particular, .RESET_SESSION will kill all user procedures. If
5808 ;; FILE is set, only update routine info for routines in that file.
5810 (idlwave-shell-compile-helper-routines wait
)
5811 ; execute the routine_info procedure, and analyze the output
5812 (idlwave-shell-send-command
5813 (format "idlwave_routine_info%s" (if file
(concat ",'" file
"'") ""))
5815 (idlwave-shell-routine-info-filter)
5816 (idlwave-concatenate-rinfo-lists ,quiet
,run-hooks
))
5819 ;; ---------------------------------------------------------------------------
5821 ;; Completion and displaying routine calling sequences
5823 (defvar idlwave-completion-help-info nil
)
5824 (defvar idlwave-completion-help-links nil
)
5825 (defvar idlwave-current-obj_new-class nil
)
5826 (defvar idlwave-complete-special nil
)
5827 (defvar method-selector
)
5828 (defvar class-selector
)
5829 (defvar type-selector
)
5830 (defvar super-classes
)
5832 (defun idlwave-complete (&optional arg module class
)
5833 "Complete a function, procedure or keyword name at point.
5834 This function is smart and figures out what can be completed
5836 - At the beginning of a statement it completes procedure names.
5837 - In the middle of a statement it completes function names.
5838 - After a `(' or `,' in the argument list of a function or procedure,
5839 it completes a keyword of the relevant function or procedure.
5840 - In the first arg of `OBJ_NEW', it completes a class name.
5842 When several completions are possible, a list will be displayed in
5843 the *Completions* buffer. If this list is too long to fit into the
5844 window, scrolling can be achieved by repeatedly pressing
5845 \\[idlwave-complete].
5847 The function also knows about object methods. When it needs a class
5848 name, the action depends upon `idlwave-query-class', which see. You
5849 can force IDLWAVE to ask you for a class name with a
5850 \\[universal-argument] prefix argument to this command.
5852 See also the variables `idlwave-keyword-completion-adds-equal' and
5853 `idlwave-function-completion-adds-paren'.
5855 The optional ARG can be used to specify the completion type in order
5856 to override IDLWAVE's idea of what should be completed at point.
5857 Possible values are:
5859 0 <=> query for the completion type
5861 2 <=> 'procedure-keyword
5863 4 <=> 'function-keyword
5864 5 <=> 'procedure-method
5865 6 <=> 'procedure-method-keyword
5866 7 <=> 'function-method
5867 8 <=> 'function-method-keyword
5870 As a special case, the universal argument C-u forces completion of
5871 function names in places where the default would be a keyword.
5873 Two prefix argument, C-u C-u, prompts for a regexp by which to limit
5876 For Lisp programmers only:
5877 When we force a keyword, optional argument MODULE can contain the module name.
5878 When we force a method or a method keyword, CLASS can specify the class."
5883 (or (and (integerp arg
) (not (equal arg
'(16))))
5885 (idlwave-make-force-complete-where-list arg module class
)
5887 (what (nth 2 where-list
))
5888 (idlwave-force-class-query (equal arg
'(4)))
5889 (completion-regexp-list
5890 (if (equal arg
'(16))
5891 (list (read-string (concat "Completion Regexp: "))))))
5893 (if (and module
(string-match "::" module
))
5894 (setq class
(substring module
0 (match-beginning 0))
5895 module
(substring module
(match-end 0))))
5900 (eq (car-safe last-command
) 'idlwave-display-completion-list
)
5901 (get-buffer-window "*Completions*"))
5902 (setq this-command last-command
)
5903 (idlwave-scroll-completions))
5905 ;; Complete a filename in quotes
5906 ((and (idlwave-in-quote)
5907 (not (eq what
'class
)))
5908 (idlwave-complete-filename))
5910 ;; Check for any special completion functions
5911 ((and idlwave-complete-special
5912 (idlwave-call-special idlwave-complete-special
)))
5915 (error "Nothing to complete here"))
5919 (setq idlwave-completion-help-info
'(class))
5920 (idlwave-complete-class))
5922 ((eq what
'procedure
)
5923 ;; Complete a procedure name
5924 (let* ((cw-list (nth 3 where-list
))
5925 (class-selector (idlwave-determine-class cw-list
'pro
))
5926 (super-classes (unless (idlwave-explicit-class-listed cw-list
)
5927 (idlwave-all-class-inherits class-selector
)))
5928 (isa (concat "procedure" (if class-selector
"-method" "")))
5929 (type-selector 'pro
))
5930 (setq idlwave-completion-help-info
5931 (list 'routine nil type-selector class-selector nil super-classes
))
5932 (idlwave-complete-in-buffer
5933 'procedure
(if class-selector
'method
'routine
)
5934 (idlwave-routines) 'idlwave-selector
5935 (format "Select a %s name%s"
5938 (format " (class is %s)"
5939 (if (eq class-selector t
)
5940 "unknown" class-selector
))
5943 'idlwave-attach-method-classes
'idlwave-add-file-link-selector
)))
5945 ((eq what
'function
)
5946 ;; Complete a function name
5947 (let* ((cw-list (nth 3 where-list
))
5948 (class-selector (idlwave-determine-class cw-list
'fun
))
5949 (super-classes (unless (idlwave-explicit-class-listed cw-list
)
5950 (idlwave-all-class-inherits class-selector
)))
5951 (isa (concat "function" (if class-selector
"-method" "")))
5952 (type-selector 'fun
))
5953 (setq idlwave-completion-help-info
5954 (list 'routine nil type-selector class-selector nil super-classes
))
5955 (idlwave-complete-in-buffer
5956 'function
(if class-selector
'method
'routine
)
5957 (idlwave-routines) 'idlwave-selector
5958 (format "Select a %s name%s"
5961 (format " (class is %s)"
5962 (if (eq class-selector t
)
5963 "unknown" class-selector
))
5966 'idlwave-attach-method-classes
'idlwave-add-file-link-selector
)))
5968 ((and (memq what
'(procedure-keyword function-keyword
)) ; Special Case
5970 (idlwave-complete 3))
5972 ((eq what
'procedure-keyword
)
5973 ;; Complete a procedure keyword
5974 (let* ((where (nth 3 where-list
))
5976 (method-selector name
)
5977 (type-selector 'pro
)
5978 (class (idlwave-determine-class where
'pro
))
5979 (class-selector class
)
5980 (super-classes (idlwave-all-class-inherits class-selector
))
5981 (isa (format "procedure%s-keyword" (if class
"-method" "")))
5982 (entry (idlwave-best-rinfo-assq
5983 name
'pro class
(idlwave-routines)))
5984 (system (if entry
(eq (car (nth 3 entry
)) 'system
)))
5985 (list (idlwave-entry-keywords entry
'do-link
)))
5986 (unless (or entry
(eq class t
))
5987 (error "Nothing known about procedure %s"
5988 (idlwave-make-full-name class name
)))
5989 (setq list
(idlwave-fix-keywords name
'pro class list
5990 super-classes system
))
5991 (unless list
(error "No keywords available for procedure %s"
5992 (idlwave-make-full-name class name
)))
5993 (setq idlwave-completion-help-info
5994 (list 'keyword name type-selector class-selector entry super-classes
))
5995 (idlwave-complete-in-buffer
5996 'keyword
'keyword list nil
5997 (format "Select keyword for procedure %s%s"
5998 (idlwave-make-full-name class name
)
5999 (if (or (member '("_EXTRA") list
)
6000 (member '("_REF_EXTRA") list
))
6001 " (note _EXTRA)" ""))
6003 'idlwave-attach-keyword-classes
)))
6005 ((eq what
'function-keyword
)
6006 ;; Complete a function keyword
6007 (let* ((where (nth 3 where-list
))
6009 (method-selector name
)
6010 (type-selector 'fun
)
6011 (class (idlwave-determine-class where
'fun
))
6012 (class-selector class
)
6013 (super-classes (idlwave-all-class-inherits class-selector
))
6014 (isa (format "function%s-keyword" (if class
"-method" "")))
6015 (entry (idlwave-best-rinfo-assq
6016 name
'fun class
(idlwave-routines)))
6017 (system (if entry
(eq (car (nth 3 entry
)) 'system
)))
6018 (list (idlwave-entry-keywords entry
'do-link
))
6020 (unless (or entry
(eq class t
))
6021 (error "Nothing known about function %s"
6022 (idlwave-make-full-name class name
)))
6023 (setq list
(idlwave-fix-keywords name
'fun class list
6024 super-classes system
))
6025 ;; OBJ_NEW: Messages mention the proper Init method
6026 (setq msg-name
(if (and (null class
)
6027 (string= (upcase name
) "OBJ_NEW"))
6028 (concat idlwave-current-obj_new-class
6029 "::Init (via OBJ_NEW)")
6030 (idlwave-make-full-name class name
)))
6031 (unless list
(error "No keywords available for function %s"
6033 (setq idlwave-completion-help-info
6034 (list 'keyword name type-selector class-selector nil super-classes
))
6035 (idlwave-complete-in-buffer
6036 'keyword
'keyword list nil
6037 (format "Select keyword for function %s%s" msg-name
6038 (if (or (member '("_EXTRA") list
)
6039 (member '("_REF_EXTRA") list
))
6040 " (note _EXTRA)" ""))
6042 'idlwave-attach-keyword-classes
)))
6044 (t (error "This should not happen (idlwave-complete)")))))
6046 (defvar idlwave-complete-special nil
6047 "List of special completion functions.
6048 These functions are called for each completion. Each function must
6049 check if its own special completion context is present. If yes, it
6050 should use `idlwave-complete-in-buffer' to do some completion and
6051 return t. If such a function returns t, *no further* attempts to
6052 complete other contexts will be done. If the function returns nil,
6053 other completions will be tried.")
6055 (defun idlwave-call-special (functions &rest args
)
6056 (let ((funcs functions
)
6059 (while (setq fun
(pop funcs
))
6060 (if (setq ret
(apply fun args
))
6064 (defun idlwave-make-force-complete-where-list (what &optional module class
)
6065 ;; Return an artificial WHERE specification to force the completion
6066 ;; routine to complete a specific item independent of context.
6067 ;; WHAT is the prefix arg of `idlwave-complete', see there for details.
6068 ;; MODULE and CLASS can be used to specify the routine name and class.
6069 ;; The class name will also be found in MODULE if that is like "class::mod".
6070 (let* ((what-list '(("procedure") ("procedure-keyword")
6071 ("function") ("function-keyword")
6072 ("procedure-method") ("procedure-method-keyword")
6073 ("function-method") ("function-method-keyword")
6075 (module (idlwave-sintern-routine-or-method module class
))
6076 (class (idlwave-sintern-class class
))
6080 (intern (completing-read
6081 "Complete what? " what-list nil t
))))
6083 (setq what
(intern (car (nth (1- what
) what-list
)))))
6086 (assoc (symbol-name what
) what-list
))
6088 (t (error "Invalid WHAT"))))
6089 (nil-list '(nil nil nil nil
))
6090 (class-list (list nil nil
(or class t
) nil
)))
6094 ((eq what
'procedure
)
6095 (list nil-list nil-list
'procedure nil-list nil
))
6097 ((eq what
'procedure-keyword
)
6098 (let* ((class-selector nil
)
6100 (type-selector 'pro
)
6102 (idlwave-completing-read
6103 "Procedure: " (idlwave-routines) 'idlwave-selector
))))
6104 (setq pro
(idlwave-sintern-routine pro
))
6105 (list nil-list nil-list
'procedure-keyword
6106 (list pro nil nil nil
) nil
)))
6108 ((eq what
'function
)
6109 (list nil-list nil-list
'function nil-list nil
))
6111 ((eq what
'function-keyword
)
6112 (let* ((class-selector nil
)
6114 (type-selector 'fun
)
6116 (idlwave-completing-read
6117 "Function: " (idlwave-routines) 'idlwave-selector
))))
6118 (setq func
(idlwave-sintern-routine func
))
6119 (list nil-list nil-list
'function-keyword
6120 (list func nil nil nil
) nil
)))
6122 ((eq what
'procedure-method
)
6123 (list nil-list nil-list
'procedure class-list nil
))
6125 ((eq what
'procedure-method-keyword
)
6126 (let* ((class (idlwave-determine-class class-list
'pro
))
6127 (class-selector class
)
6128 (super-classes (idlwave-all-class-inherits class-selector
))
6129 (type-selector 'pro
)
6131 (idlwave-completing-read
6132 (format "Procedure in %s class: " class-selector
)
6133 (idlwave-routines) 'idlwave-selector
))))
6134 (setq pro
(idlwave-sintern-method pro
))
6135 (list nil-list nil-list
'procedure-keyword
6136 (list pro nil class nil
) nil
)))
6138 ((eq what
'function-method
)
6139 (list nil-list nil-list
'function class-list nil
))
6141 ((eq what
'function-method-keyword
)
6142 (let* ((class (idlwave-determine-class class-list
'fun
))
6143 (class-selector class
)
6144 (super-classes (idlwave-all-class-inherits class-selector
))
6145 (type-selector 'fun
)
6147 (idlwave-completing-read
6148 (format "Function in %s class: " class-selector
)
6149 (idlwave-routines) 'idlwave-selector
))))
6150 (setq func
(idlwave-sintern-method func
))
6151 (list nil-list nil-list
'function-keyword
6152 (list func nil class nil
) nil
)))
6155 (list nil-list nil-list
'class nil-list nil
))
6157 (t (error "Invalid value for WHAT")))))
6159 (defun idlwave-completing-read (&rest args
)
6160 ;; Completing read, case insensitive
6161 (let ((old-value (default-value 'completion-ignore-case
)))
6164 (setq-default completion-ignore-case t
)
6165 (apply 'completing-read args
))
6166 (setq-default completion-ignore-case old-value
))))
6168 (defvar idlwave-shell-default-directory
)
6169 (defun idlwave-complete-filename ()
6170 "Use the comint stuff to complete a file name."
6172 (let* ((comint-file-name-chars "~/A-Za-z0-9+@:_.$#%={}\\-")
6173 (comint-completion-addsuffix nil
)
6175 (if (and (boundp 'idlwave-shell-default-directory
)
6176 (stringp idlwave-shell-default-directory
)
6177 (file-directory-p idlwave-shell-default-directory
))
6178 idlwave-shell-default-directory
6179 default-directory
)))
6180 (comint-dynamic-complete-filename)))
6182 (defun idlwave-make-full-name (class name
)
6183 ;; Make a fully qualified module name including the class name
6184 (concat (if class
(format "%s::" class
) "") name
))
6186 (defun idlwave-rinfo-assoc (name type class list
)
6187 "Like `idlwave-rinfo-assq', but sintern strings first."
6189 (idlwave-sintern-routine-or-method name class
)
6190 type
(idlwave-sintern-class class
) list
))
6192 (defun idlwave-rinfo-assq (name type class list
)
6193 ;; Works like assq, but also checks type and class
6196 (while (setq match
(assq name list
))
6197 (and (or (eq type t
)
6198 (eq (nth 1 match
) type
))
6199 (eq (nth 2 match
) class
)
6200 (throw 'exit match
))
6201 (setq list
(cdr (memq match list
)))))))
6203 (defun idlwave-rinfo-assq-any-class (name type class list
)
6204 ;; Return the first matching method on the inheritance list
6205 (let* ((classes (cons class
(idlwave-all-class-inherits class
)))
6208 (if (setq rtn
(idlwave-rinfo-assq name type
(pop classes
) list
))
6209 (setq classes nil
)))
6212 (defun idlwave-best-rinfo-assq (name type class list
&optional with-file
6214 "Like `idlwave-rinfo-assq', but get all twins and sort, then return first.
6215 If WITH-FILE is passed, find the best rinfo entry with a file
6216 included. If KEEP-SYSTEM is set, don't prune system for compiled
6218 (let ((twins (idlwave-routine-twins
6219 (idlwave-rinfo-assq-any-class name type class list
)
6222 (when (> (length twins
) 1)
6223 (setq twins
(sort twins
'idlwave-routine-entry-compare-twins
))
6224 (if (and (null keep-system
)
6225 (eq 'system
(car (nth 3 (car twins
))))
6226 (setq syslibp
(idlwave-any-syslib (cdr twins
)))
6227 (not (equal 1 syslibp
)))
6228 ;; Its a compiled syslib, so we need to remove the system entry
6229 (setq twins
(cdr twins
)))
6231 (setq twins
(delq nil
6233 (if (nth 1 (nth 3 x
)) x
))
6237 (defun idlwave-best-rinfo-assoc (name type class list
&optional with-file
6239 "Like `idlwave-best-rinfo-assq', but sintern strings first."
6240 (idlwave-best-rinfo-assq
6241 (idlwave-sintern-routine-or-method name class
)
6242 type
(idlwave-sintern-class class
) list with-file keep-system
))
6244 (defun idlwave-any-syslib (entries)
6245 "Does the entry list ENTRIES contain a syslib entry?
6246 If yes, return the index (>=1)."
6251 (setq file
(idlwave-routine-source-file (nth 3 (car entries
))))
6252 (if (and file
(idlwave-syslib-p file
))
6254 (setq entries
(cdr entries
))))
6257 (defun idlwave-all-assq (key list
)
6258 "Return a list of all associations of Key in LIST."
6260 (while (setq elt
(assq key list
))
6262 (setq list
(cdr (memq elt list
))))
6265 (defun idlwave-all-method-classes (method &optional type
)
6266 "Return all classes which have a method METHOD.
6267 TYPE is 'fun or 'pro.
6268 When TYPE is not specified, both procedures and functions will be considered."
6270 (mapcar 'car
(idlwave-class-alist))
6275 (eq type
(nth 1 x
)))
6276 (push (nth 2 x
) rtn
)))
6277 (idlwave-all-assq method
(idlwave-routines)))
6278 (idlwave-uniquify rtn
))))
6280 (defun idlwave-all-method-keyword-classes (method keyword
&optional type
)
6281 "Return all classes which have a method METHOD with keyword KEYWORD.
6282 TYPE is 'fun or 'pro.
6283 When TYPE is not specified, both procedures and functions will be considered."
6284 (if (or (null method
)
6289 (and (nth 2 x
) ; non-nil class
6290 (or (not type
) ; correct or unspecified type
6291 (eq type
(nth 1 x
)))
6292 (assoc keyword
(idlwave-entry-keywords x
))
6293 (push (nth 2 x
) rtn
)))
6294 (idlwave-all-assq method
(idlwave-routines)))
6295 (idlwave-uniquify rtn
))))
6297 (defun idlwave-members-only (list club
)
6298 "Return list of all elements in LIST which are also in CLUB."
6301 (if (member (car list
) club
)
6302 (setq rtn
(cons (car list
) rtn
)))
6303 (setq list
(cdr list
)))
6306 (defun idlwave-nonmembers-only (list club
)
6307 "Return list of all elements in LIST which are not in CLUB."
6310 (if (member (car list
) club
)
6312 (setq rtn
(cons (car list
) rtn
)))
6313 (setq list
(cdr list
)))
6316 (defun idlwave-explicit-class-listed (info)
6317 "Return whether or not the class is listed explicitly, ala a->b::c.
6318 INFO is as returned by `idlwave-what-function' or `-procedure'."
6319 (let ((apos (nth 3 info
)))
6321 (save-excursion (goto-char apos
)
6322 (looking-at "->[a-zA-Z][a-zA-Z0-9$_]*::")))))
6324 (defvar idlwave-determine-class-special nil
6325 "List of special functions for determining class.
6326 Must accept two arguments: `apos' and `info'.")
6328 (defun idlwave-determine-class (info type
)
6329 ;; Determine the class of a routine call.
6330 ;; INFO is the `cw-list' structure as returned by idlwave-where.
6331 ;; The second element in this structure is the class. When nil, we
6332 ;; return nil. When t, try to get the class from text properties at
6333 ;; the arrow. When the object is "self", we use the class of the
6334 ;; current routine. otherwise prompt the user for a class name.
6335 ;; Also stores the selected class as a text property at the arrow.
6336 ;; TYPE is 'fun or 'pro.
6337 (let* ((class (nth 2 info
))
6339 (nassoc (assoc (if (stringp (car info
))
6342 idlwave-query-class
))
6343 (dassoc (assq (if (car info
) 'keyword-default
'method-default
)
6344 idlwave-query-class
))
6345 (query (cond (nassoc (cdr nassoc
))
6346 (dassoc (cdr dassoc
))
6348 (arrow (and apos
(string= (buffer-substring apos
(+ 2 apos
)) "->")))
6351 (save-excursion (goto-char apos
)
6353 (let ((case-fold-search t
))
6354 (looking-at "self\\>")))))
6355 (force-query idlwave-force-class-query
)
6356 store special-class class-alist
)
6360 ;; There is an object which would like to know its class
6361 (if (and arrow
(get-text-property apos
'idlwave-class
)
6362 idlwave-store-inquired-class
6364 (setq class
(get-text-property apos
'idlwave-class
)
6365 class
(idlwave-sintern-class class
)))
6366 (if (and (eq t class
) is-self
)
6367 (setq class
(or (nth 2 (idlwave-current-routine)) class
)))
6369 ;; Before prompting, try any special class determination routines
6370 (when (and (eq t class
)
6371 idlwave-determine-class-special
6374 (idlwave-call-special idlwave-determine-class-special apos
))
6376 (setq class
(idlwave-sintern-class special-class
)
6377 store idlwave-store-inquired-class
)))
6379 ;; Prompt for a class, if we need to
6380 (when (and (eq class t
)
6381 (or force-query query
))
6383 (mapcar 'list
(idlwave-all-method-classes (car info
) type
)))
6385 (idlwave-sintern-class
6387 ((and (= (length class-alist
) 0) (not force-query
))
6388 (error "No classes available with method %s" (car info
)))
6389 ((and (= (length class-alist
) 1) (not force-query
))
6390 (car (car class-alist
)))
6392 (setq store idlwave-store-inquired-class
)
6393 (idlwave-completing-read
6394 (format "Class%s: " (if (stringp (car info
))
6395 (format " for %s method %s"
6398 class-alist nil nil nil
'idlwave-class-history
))))))
6400 ;; Store it, if requested
6401 (when (and class
(not (eq t class
)))
6402 ;; We have a real class here
6403 (when (and store arrow
)
6405 (add-text-properties
6407 `(idlwave-class ,class face
,idlwave-class-arrow-face
6410 (setf (nth 2 info
) class
))
6413 ;; Default as fallback
6416 (defun idlwave-selector (a)
6417 (and (eq (nth 1 a
) type-selector
)
6418 (or (and (nth 2 a
) (eq class-selector t
))
6419 (eq (nth 2 a
) class-selector
)
6420 (memq (nth 2 a
) super-classes
))))
6422 (defun idlwave-add-file-link-selector (a)
6423 ;; Record a file link, if any, for the tested names during selection.
6424 (let ((sel (idlwave-selector a
)) file
)
6425 (if (and sel
(setq file
(idlwave-entry-has-help a
)))
6426 (push (cons (car a
) file
) idlwave-completion-help-links
))
6430 (defun idlwave-where ()
6431 "Find out where we are.
6432 The return value is a list with the following stuff:
6433 \(PRO-LIST FUNC-LIST COMPLETE-WHAT CW-LIST LAST-CHAR)
6435 PRO-LIST (PRO POINT CLASS ARROW)
6436 FUNC-LIST (FUNC POINT CLASS ARROW)
6437 COMPLETE-WHAT a symbol indicating what kind of completion makes sense here
6438 CW-LIST (PRO-OR-FUNC POINT CLASS ARROW) Like PRO-LIST, for what can
6440 LAST-CHAR last relevant character before point (non-white non-comment,
6441 not part of current identifier or leading slash).
6443 In the lists, we have these meanings:
6446 POINT: Where is this
6447 CLASS: What class has the routine (nil=no, t=is method, but class unknown)
6448 ARROW: Location of the arrow"
6450 (let* (;(bos (save-excursion (idlwave-beginning-of-statement) (point)))
6451 (bos (save-excursion (idlwave-start-of-substatement 'pre
) (point)))
6452 (func-entry (idlwave-what-function bos
))
6453 (func (car func-entry
))
6454 (func-class (nth 1 func-entry
))
6455 (func-arrow (nth 2 func-entry
))
6456 (func-point (or (nth 3 func-entry
) 0))
6457 (func-level (or (nth 4 func-entry
) 0))
6458 (pro-entry (idlwave-what-procedure bos
))
6459 (pro (car pro-entry
))
6460 (pro-class (nth 1 pro-entry
))
6461 (pro-arrow (nth 2 pro-entry
))
6462 (pro-point (or (nth 3 pro-entry
) 0))
6463 (last-char (idlwave-last-valid-char))
6464 (case-fold-search t
)
6465 (match-string (buffer-substring bos
(point)))
6466 cw cw-mod cw-arrow cw-class cw-point
)
6467 (if (< func-point pro-point
) (setq func nil
))
6469 ((string-match "\\`[ \t]*\\(pro\\|function\\)[ \t]+[a-zA-Z0-9_]*\\'"
6473 "\\`[ \t]*\\([a-zA-Z][a-zA-Z0-9$_]*\\)?\\'"
6475 (buffer-substring pro-point
(point))
6477 (setq cw
'procedure cw-class pro-class cw-point pro-point
6478 cw-arrow pro-arrow
))
6479 ((string-match "\\`[ \t]*\\(pro\\|function\\)\\>"
6482 ((string-match "OBJ_NEW([ \t]*['\"]\\([a-zA-Z0-9$_]*\\)?\\'"
6485 ((string-match "\\<inherits\\s-+\\([a-zA-Z0-9$_]*\\)?\\'"
6489 (> func-point pro-point
)
6491 (memq last-char
'(?\
( ?
,)))
6492 (setq cw
'function-keyword cw-mod func cw-point func-point
6493 cw-class func-class cw-arrow func-arrow
))
6494 ((and pro
(eq last-char ?
,))
6495 (setq cw
'procedure-keyword cw-mod pro cw-point pro-point
6496 cw-class pro-class cw-arrow pro-arrow
))
6497 ; ((member last-char '(?\' ?\) ?\] ?!))
6498 ; ;; after these chars, a function makes no sense
6499 ; ;; FIXME: I am sure there can be more in this list
6500 ; ;; FIXME: Do we want to do this at all?
6502 ;; Everywhere else we try a function.
6506 (if (re-search-backward "->[ \t]*\\(\\$[ \t]*\\(;.*\\)?\n\\s-*\\)?\\(\\([$a-zA-Z0-9_]+\\)::\\)?[$a-zA-Z0-9_]*\\=" bos t
)
6507 (setq cw-arrow
(copy-marker (match-beginning 0))
6508 cw-class
(if (match-end 4)
6509 (idlwave-sintern-class (match-string 4))
6511 (list (list pro pro-point pro-class pro-arrow
)
6512 (list func func-point func-class func-arrow
)
6514 (list cw-mod cw-point cw-class cw-arrow
)
6517 (defun idlwave-this-word (&optional class
)
6518 ;; Grab the word around point. CLASS is for the `skip-chars=...' functions
6519 (setq class
(or class
"a-zA-Z0-9$_."))
6522 (progn (skip-chars-backward class
) (point))
6523 (progn (skip-chars-forward class
) (point)))))
6525 (defun idlwave-what-function (&optional bound
)
6526 ;; Find out if point is within the argument list of a function.
6527 ;; The return value is ("function-name" class arrow-start (point) level).
6528 ;; Level is 1 on the top level parentheses, higher further down.
6530 ;; If the optional BOUND is an integer, bound backwards directed
6531 ;; searches to this point.
6537 func arrow-start class
)
6538 (idlwave-with-special-syntax
6541 (narrow-to-region (max 1 (or bound
0)) (point-max))
6542 ;; move back out of the current parenthesis
6543 (while (condition-case nil
6544 (progn (up-list -
1) t
)
6548 (when (and (= (following-char) ?\
()
6550 "\\(::\\|\\<\\)\\([a-zA-Z][a-zA-Z0-9$_]*\\)[ \t]*\\="
6552 (setq func
(match-string 2)
6553 func-point
(goto-char (match-beginning 2))
6555 (if (re-search-backward
6556 "->[ \t]*\\(\\([a-zA-Z][a-zA-Z0-9$_]*\\)::\\)?\\=" bound t
)
6557 (setq arrow-start
(copy-marker (match-beginning 0))
6558 class
(or (match-string 2) t
)))
6562 (idlwave-sintern-routine-or-method func class
)
6563 (idlwave-sintern-class class
)
6564 arrow-start func-point cnt
)))
6566 (throw 'exit nil
)))))))
6568 (defun idlwave-what-procedure (&optional bound
)
6569 ;; Find out if point is within the argument list of a procedure.
6570 ;; The return value is ("procedure-name" class arrow-pos (point)).
6572 ;; If the optional BOUND is an integer, bound backwards directed
6573 ;; searches to this point.
6574 (let ((pos (point)) pro-point
6575 pro class arrow-start string
)
6577 ;;(idlwave-beginning-of-statement)
6578 (idlwave-start-of-substatement 'pre
)
6579 (setq string
(buffer-substring (point) pos
))
6581 "\\`[ \t]*\\([a-zA-Z][a-zA-Z0-9$_]*\\)[ \t]*\\(,\\|\\'\\)" string
)
6582 (setq pro
(match-string 1 string
)
6583 pro-point
(+ (point) (match-beginning 1)))
6584 (if (and (idlwave-skip-object)
6585 (setq string
(buffer-substring (point) pos
))
6587 "\\`[ \t]*\\(->\\)[ \t]*\\(\\([a-zA-Z][a-zA-Z0-9$_]*\\)::\\)?\\([a-zA-Z][a-zA-Z0-9$_]*\\)?[ \t]*\\(,\\|\\(\\$\\s *\\(;.*\\)?\\)?$\\)"
6589 (setq pro
(if (match-beginning 4)
6590 (match-string 4 string
))
6591 pro-point
(if (match-beginning 4)
6592 (+ (point) (match-beginning 4))
6594 arrow-start
(copy-marker (+ (point) (match-beginning 1)))
6595 class
(or (match-string 3 string
) t
)))))
6596 (list (idlwave-sintern-routine-or-method pro class
)
6597 (idlwave-sintern-class class
)
6601 (defun idlwave-skip-object ()
6602 ;; If there is an object at point, move over it and return t.
6603 (let ((pos (point)))
6606 (skip-chars-forward " ") ; white space
6607 (skip-chars-forward "*") ; de-reference
6609 ((looking-at idlwave-identifier
)
6610 (goto-char (match-end 0)))
6611 ((eq (following-char) ?\
()
6613 (t (throw 'exit nil
)))
6616 (cond ((eq (following-char) ?.
)
6618 (if (not (looking-at idlwave-identifier
))
6620 (goto-char (match-end 0)))
6621 ((memq (following-char) '(?\
( ?\
[))
6624 (error (throw 'exit nil
))))
6625 (t (throw 'endwhile t
)))))
6626 (if (looking-at "[ \t]*->")
6627 (throw 'exit
(setq pos
(match-beginning 0)))
6628 (throw 'exit nil
))))
6632 (defun idlwave-last-valid-char ()
6633 "Return the last character before point which is not white or a comment
6634 and also not part of the current identifier. Since we do this in
6635 order to identify places where keywords are, we consider the initial
6636 `/' of a keyword as part of the identifier.
6637 This function is not general, can only be used for completion stuff."
6640 ;; skip the current identifier
6641 (skip-chars-backward "a-zA-Z0-9_$")
6642 ;; also skip a leading slash which might be belong to the keyword
6643 (if (eq (preceding-char) ?
/)
6645 ;; FIXME: does not check if this is a valid identifier
6647 (skip-chars-backward " \t")
6649 ((memq (preceding-char) '(?\
; ?\$)) (throw 'exit nil))
6650 ((eq (preceding-char) ?
\n)
6651 (beginning-of-line 0)
6652 (if (looking-at "\\([^\n]*\\)\\$[ \t]*\\(;[^\n]*\\)?\n")
6653 ;; continuation line
6654 (goto-char (match-end 1))
6656 (t (throw 'exit
(preceding-char))))))))
6658 (defvar idlwave-complete-after-success-form nil
6659 "A form to evaluate after successful completion.")
6660 (defvar idlwave-complete-after-success-form-force nil
6661 "A form to evaluate after completion selection in *Completions* buffer.")
6662 (defconst idlwave-completion-mark
(make-marker)
6663 "A mark pointing to the beginning of the completion string.")
6664 (defvar completion-highlight-first-word-only
) ;XEmacs.
6666 (defun idlwave-complete-in-buffer (type stype list selector prompt isa
6667 &optional prepare-display-function
6669 "Perform TYPE completion of word before point against LIST.
6670 SELECTOR is the PREDICATE argument for the completion function. Show
6671 PROMPT in echo area. TYPE is one of the intern types, e.g. 'function,
6672 'procedure, 'class-tag, 'keyword, 'sysvar, etc. SPECIAL-SELECTOR is
6673 used only once, for `all-completions', and can be used to, e.g.,
6674 accumulate information on matching completions."
6675 (let* ((completion-ignore-case t
)
6676 beg
(end (point)) slash part spart completion all-completions
6680 (error (concat prompt
": No completions available")))
6682 ;; What is already in the buffer?
6684 (skip-chars-backward "a-zA-Z0-9_$")
6685 (setq slash
(eq (preceding-char) ?
/)
6687 idlwave-complete-after-success-form
6688 (list 'idlwave-after-successful-completion
6689 (list 'quote type
) slash beg
)
6690 idlwave-complete-after-success-form-force
6691 (list 'idlwave-after-successful-completion
6692 (list 'quote type
) slash
(list 'quote
'force
))))
6695 (setq part
(buffer-substring beg end
)
6696 dpart
(downcase part
)
6697 spart
(idlwave-sintern stype part
)
6698 completion
(try-completion part list selector
)
6699 dcompletion
(if (stringp completion
) (downcase completion
))
6700 idlwave-completion-help-links nil
)
6703 ;; nothing available.
6704 (error (concat prompt
": no completion for \"%s\"") part
))
6705 ((and (not (equal dpart dcompletion
))
6706 (not (eq t completion
)))
6707 ;; We can add something
6708 (delete-region beg end
)
6709 (insert (if (and (string= part dpart
)
6710 (or (not (string= part
""))
6711 idlwave-complete-empty-string-as-lower-case
)
6712 (not idlwave-completion-force-default-case
))
6715 (if (eq t
(try-completion completion list selector
))
6716 ;; Now this is a unique match
6717 (idlwave-after-successful-completion type slash beg
))
6719 ((or (eq completion t
)
6720 (and (= 1 (length (setq all-completions
6722 (all-completions part list
6723 (or special-selector
6725 (equal dpart dcompletion
)))
6726 ;; This is already complete
6727 (idlwave-after-successful-completion type slash beg
)
6728 (message "%s is already the complete %s" part isa
)
6731 ;; We cannot add something - offer a list.
6732 (message "Making completion list...")
6734 (unless idlwave-completion-help-links
; already set somewhere?
6735 (mapc (lambda (x) ; Pass link prop through to highlight-linked
6736 (let ((link (get-text-property 0 'link
(car x
))))
6738 (push (cons (car x
) link
)
6739 idlwave-completion-help-links
))))
6741 (let* ((list all-completions
)
6742 ;; "complete" means, this is already a valid completion
6743 (complete (memq spart all-completions
))
6744 (completion-highlight-first-word-only t
)) ; XEmacs
6745 ;; (completion-fixup-function ; Emacs
6746 ;; (lambda () (and (eq (preceding-char) ?>)
6747 ;; (re-search-backward " <" beg t)))))
6749 (setq list
(sort list
(lambda (a b
)
6750 (string< (downcase a
) (downcase b
)))))
6751 (if prepare-display-function
6752 (setq list
(funcall prepare-display-function list
)))
6753 (if (and (string= part dpart
)
6754 (or (not (string= part
""))
6755 idlwave-complete-empty-string-as-lower-case
)
6756 (not idlwave-completion-force-default-case
))
6757 (setq list
(mapcar (lambda (x)
6759 (setcar x
(downcase (car x
)))
6760 (setq x
(downcase x
)))
6763 (idlwave-display-completion-list list prompt beg complete
))
6766 (defun idlwave-complete-class ()
6767 "Complete a class at point."
6769 ;; Call `idlwave-routines' to make sure the class list will be available
6771 ;; Check for the special case of completing empty string after pro/function
6772 (if (let ((case-fold-search t
))
6775 (re-search-backward "\\<\\(pro\\|function\\)[ \t]+\\="
6777 (goto-char (point-min))
6779 "^[ \t]*\\(pro\\|function\\)[ \t]+\\([a-zA-Z0-9_]+::\\)" nil t
))))
6780 ;; Yank the full class specification
6781 (insert (match-string 2))
6782 ;; Do the completion, using list gathered from `idlwave-routines'
6783 (idlwave-complete-in-buffer
6784 'class
'class
(idlwave-class-alist) nil
6785 "Select a class" "class"
6786 (lambda (list) ;; Push it to help-links if system help available
6788 (let* ((entry (idlwave-class-info x
))
6789 (link (nth 1 (assq 'link entry
))))
6790 (if link
(push (cons x link
)
6791 idlwave-completion-help-links
))
6795 (defun idlwave-attach-classes (list type show-classes
)
6796 ;; Attach the proper class list to a LIST of completion items.
6797 ;; TYPE, when 'kwd, shows classes for method keywords, when
6798 ;; 'class-tag, for class tags, and otherwise for methods.
6799 ;; SHOW-CLASSES is the value of `idlwave-completion-show-classes'.
6800 (if (or (null show-classes
) ; don't want to see classes
6801 (null class-selector
) ; not a method call
6803 (stringp class-selector
) ; the class is already known
6804 (not super-classes
))) ; no possibilities for inheritance
6805 ;; In these cases, we do not have to do anything
6807 (let* ((do-prop (and (>= show-classes
0)
6808 (>= emacs-major-version
21)))
6809 (do-buf (not (= show-classes
0)))
6810 ;; (do-dots (featurep 'xemacs))
6812 (inherit (if (and (not (eq type
'class-tag
)) super-classes
)
6813 (cons class-selector super-classes
)))
6814 (max (abs show-classes
))
6815 (lmax (if do-dots
(apply 'max
(mapcar 'length list
))))
6816 classes nclasses class-info space
)
6820 (if (eq type
'class-tag
)
6821 ;; Just one class for tags
6824 (idlwave-class-or-superclass-with-tag class-selector x
)))
6825 ;; Multiple classes for method or method-keyword
6828 (idlwave-all-method-keyword-classes
6829 method-selector x type-selector
)
6830 (idlwave-all-method-classes x type-selector
)))
6834 (mapcar (lambda (x) (if (memq x inherit
) x nil
))
6836 (setq nclasses
(length classes
))
6837 ;; Make the separator between item and class-info
6839 (setq space
(concat " " (make-string (- lmax
(length x
)) ?.
)))
6842 ;; We do want info in the buffer
6843 (if (<= nclasses max
)
6844 (setq class-info
(concat
6846 "<" (mapconcat 'identity classes
",") ">"))
6847 (setq class-info
(format "%s<%d classes>" space nclasses
)))
6848 (setq class-info nil
))
6850 ;; We do want properties
6851 (setq x
(copy-sequence x
))
6852 (put-text-property 0 (length x
)
6853 'help-echo
(mapconcat 'identity classes
" ")
6860 (defun idlwave-attach-method-classes (list)
6861 ;; Call idlwave-attach-classes with method parameters
6862 (idlwave-attach-classes list
'method idlwave-completion-show-classes
))
6863 (defun idlwave-attach-keyword-classes (list)
6864 ;; Call idlwave-attach-classes with keyword parameters
6865 (idlwave-attach-classes list
'kwd idlwave-completion-show-classes
))
6866 (defun idlwave-attach-class-tag-classes (list)
6867 ;; Call idlwave-attach-classes with class structure tags
6868 (idlwave-attach-classes list
'class-tag idlwave-completion-show-classes
))
6871 ;;----------------------------------------------------------------------
6872 ;;----------------------------------------------------------------------
6873 ;;----------------------------------------------------------------------
6874 ;;----------------------------------------------------------------------
6875 ;;----------------------------------------------------------------------
6876 (when (featurep 'xemacs
)
6878 (defun idlwave-pset (item)
6881 (defun idlwave-popup-select (ev list title
&optional sort
)
6882 "Select an item in LIST with a popup menu.
6883 TITLE is the title to put atop the popup. If SORT is non-nil,
6884 sort the list before displaying."
6885 (let ((maxpopup idlwave-max-popup-menu-items
)
6888 ((= 1 (length list
))
6889 (setq rtn
(car list
)))
6891 (if sort
(setq list
(sort list
(lambda (a b
)
6892 (string< (upcase a
) (upcase b
))))))
6894 (append (list title
)
6895 (mapcar (lambda (x) (vector x
(list 'idlwave-pset
6898 (setq menu
(idlwave-split-menu-xemacs menu maxpopup
))
6899 (let ((resp (get-popup-menu-response menu
)))
6900 (funcall (event-function resp
) (event-object resp
))))
6902 (if sort
(setq list
(sort list
(lambda (a b
)
6903 (string< (upcase a
) (upcase b
))))))
6904 (setq menu
(cons title
6907 (mapcar (lambda(x) (cons x x
)) list
)))))
6908 (setq menu
(idlwave-split-menu-emacs menu maxpopup
))
6909 (setq rtn
(x-popup-menu ev menu
))))
6912 (defun idlwave-split-menu-xemacs (menu N
)
6913 "Split the MENU into submenus of maximum length N."
6914 (if (<= (length menu
) (1+ N
))
6915 ;; No splitting needed
6917 (let* ((title (car menu
))
6918 (entries (cdr menu
))
6923 (while (and entries
(< cnt N
))
6925 nextmenu
(cons (car entries
) nextmenu
)
6926 entries
(cdr entries
)))
6927 (setq nextmenu
(nreverse nextmenu
))
6928 (setq nextmenu
(cons (format "%s...%s"
6929 (aref (car nextmenu
) 0)
6930 (aref (nth (1- cnt
) nextmenu
) 0))
6932 (setq menu
(cons nextmenu menu
)
6937 (defun idlwave-split-menu-emacs (menu N
)
6938 "Split the MENU into submenus of maximum length N."
6939 (if (<= (length (nth 1 menu
)) (1+ N
))
6940 ;; No splitting needed
6942 (let* ((title (car menu
))
6943 (entries (cdr (nth 1 menu
)))
6948 (while (and entries
(< cnt N
))
6950 nextmenu
(cons (car entries
) nextmenu
)
6951 entries
(cdr entries
)))
6952 (setq nextmenu
(nreverse nextmenu
))
6954 (setq nextmenu
(cons (format "%s...%s"
6955 (car (car nextmenu
))
6956 (car (nth (1- cnt
) nextmenu
)))
6958 (setq menu
(cons nextmenu menu
)
6961 (setq menu
(nreverse menu
))
6962 (setq menu
(cons title menu
))
6965 (defvar idlwave-completion-setup-hook nil
)
6967 (defun idlwave-scroll-completions (&optional message
)
6968 "Scroll the completion window on this frame."
6969 (let ((cwin (get-buffer-window "*Completions*" 'visible
))
6970 (win (selected-window)))
6973 (select-window cwin
)
6976 (error (if (and (listp last-command
)
6977 (nth 2 last-command
))
6980 (eval idlwave-complete-after-success-form
))
6981 (set-window-start cwin
(point-min)))))
6982 (and message
(message "%s" message
)))
6983 (select-window win
))))
6985 (defun idlwave-display-completion-list (list &optional message beg complete
)
6986 "Display the completions in LIST in the completions buffer and echo MESSAGE."
6987 (unless (and (get-buffer-window "*Completions*")
6988 (idlwave-local-value 'idlwave-completion-p
"*Completions*"))
6989 (move-marker idlwave-completion-mark beg
)
6990 (setq idlwave-before-completion-wconf
(current-window-configuration)))
6992 (if (featurep 'xemacs
)
6993 (idlwave-display-completion-list-xemacs
6995 (idlwave-display-completion-list-emacs list
))
6997 ;; Store a special value in `this-command'. When `idlwave-complete'
6998 ;; finds this in `last-command', it will scroll the *Completions* buffer.
6999 (setq this-command
(list 'idlwave-display-completion-list message complete
))
7001 ;; Mark the completions buffer as created by cib
7002 (idlwave-set-local 'idlwave-completion-p t
"*Completions*")
7004 ;; Fontify the classes
7005 (if (and idlwave-completion-fontify-classes
7007 (idlwave-completion-fontify-classes))
7010 (run-hooks 'idlwave-completion-setup-hook
)
7012 ;; Display the message
7013 (message "%s" (or message
"Making completion list...done")))
7015 (defun idlwave-choose (function &rest args
)
7016 "Call FUNCTION as a completion chooser and pass ARGS to it."
7017 (let ((completion-ignore-case t
)) ; install correct value
7018 (apply function args
))
7019 (if (and (derived-mode-p 'idlwave-shell-mode
)
7020 (boundp 'font-lock-mode
)
7021 (not font-lock-mode
))
7022 ;; For the shell, remove the fontification of the word before point
7023 (let ((beg (save-excursion
7024 (skip-chars-backward "a-zA-Z0-9_")
7026 (remove-text-properties beg
(point) '(face nil
))))
7027 (eval idlwave-complete-after-success-form-force
))
7029 (defun idlwave-keyboard-quit ()
7032 (if (eq (car-safe last-command
) 'idlwave-display-completion-list
)
7033 (idlwave-restore-wconf-after-completion))
7036 (defun idlwave-restore-wconf-after-completion ()
7037 "Restore the old (before completion) window configuration."
7038 (and idlwave-completion-restore-window-configuration
7039 idlwave-before-completion-wconf
7040 (set-window-configuration idlwave-before-completion-wconf
)))
7042 (defun idlwave-one-key-select (sym prompt delay
)
7043 "Make the user select an element from the alist in the variable SYM.
7044 The keys of the alist are expected to be strings. The function returns the
7045 car of the selected association.
7046 To do this, PROMPT is displayed and the user must hit a letter key to
7047 select an entry. If the user does not reply within DELAY seconds, a help
7048 window with the options is displayed automatically.
7049 The key which is associated with each option is generated automatically.
7050 First, the strings are checked for preselected keys, like in \"[P]rint\".
7051 If these don't exist, a letter in the string is automatically selected."
7052 (let* ((alist (symbol-value sym
))
7053 (temp-buffer-show-hook (if (fboundp 'fit-window-to-buffer
)
7054 '(fit-window-to-buffer)))
7056 ;; First check the cache
7057 (if (and (eq (symbol-value sym
) (get sym
:one-key-alist-last
)))
7058 (setq keys-alist
(get sym
:one-key-alist-cache
))
7059 ;; Need to make new list
7060 (setq keys-alist
(idlwave-make-one-key-alist alist
))
7061 (put sym
:one-key-alist-cache keys-alist
)
7062 (put sym
:one-key-alist-last alist
))
7063 ;; Display prompt and wait for quick reply
7064 (message "%s[%s]" prompt
7065 (mapconcat (lambda(x) (char-to-string (car x
)))
7068 ;; No quick reply: Show help
7069 (save-window-excursion
7070 (with-output-to-temp-buffer "*Completions*"
7071 (dolist (x keys-alist
)
7074 (setq char
(read-char)))
7075 (setq char
(read-char)))
7077 ;; Return the selected result
7078 (nth 2 (assoc char keys-alist
))))
7080 ;; Used for, e.g., electric debug super-examine.
7081 (defun idlwave-make-one-key-alist (alist)
7082 "Make an alist for single key selection."
7083 (let ((l alist
) keys-alist name start char help
7085 (case-fold-search nil
))
7087 (setq name
(car (car l
))
7090 ;; First check if the configuration predetermined a key
7091 (if (string-match "\\[\\(.\\)\\]" name
)
7093 (setq char
(string-to-char (downcase (match-string 1 name
)))
7094 help
(format "%c: %s" char name
)
7095 keys-alist
(cons (list char help name
) keys-alist
))
7097 ;; Then check for capital letters
7099 (while (string-match "[A-Z]" name start
)
7100 (setq start
(match-end 0)
7101 char
(string-to-char (downcase (match-string 0 name
))))
7102 (if (not (assoc char keys-alist
))
7104 (setq help
(format "%c: %s" char
7106 (concat "[" (match-string 0 name
) "]")
7108 keys-alist
(cons (list char help name
) keys-alist
))
7110 ;; Now check for lowercase letters
7112 (while (string-match "[a-z]" name start
)
7113 (setq start
(match-end 0)
7114 char
(string-to-char (match-string 0 name
)))
7115 (if (not (assoc char keys-alist
))
7117 (setq help
(format "%c: %s" char
7119 (concat "[" (match-string 0 name
) "]")
7121 keys-alist
(cons (list char help name
) keys-alist
))
7123 ;; Bummer, nothing found! Use a stupid number
7124 (setq char
(string-to-char (int-to-string (setq cnt
(1+ cnt
))))
7125 help
(format "%c: %s" char name
)
7126 keys-alist
(cons (list char help name
) keys-alist
))))
7127 (nreverse keys-alist
)))
7129 (defun idlwave-set-local (var value
&optional buffer
)
7130 "Set the buffer-local value of VAR in BUFFER to VALUE."
7131 (with-current-buffer (or buffer
(current-buffer))
7132 (set (make-local-variable var
) value
)))
7134 (defun idlwave-local-value (var &optional buffer
)
7135 "Return the value of VAR in BUFFER, but only if VAR is local to BUFFER."
7136 (with-current-buffer (or buffer
(current-buffer))
7137 (and (local-variable-p var
(current-buffer))
7138 (symbol-value var
))))
7140 ;; In XEmacs, we can use :activate-callback directly to advice the
7141 ;; choose functions. We use the private keymap only for the online
7144 (defvar idlwave-completion-map nil
7145 "Keymap for `completion-list-mode' with `idlwave-complete'.")
7147 (defun idlwave-display-completion-list-xemacs (list &rest cl-args
)
7148 (with-output-to-temp-buffer "*Completions*"
7149 (apply 'display-completion-list list
7150 ':activate-callback
'idlwave-default-choose-completion
7152 (with-current-buffer "*Completions*"
7154 (or idlwave-completion-map
7155 (setq idlwave-completion-map
7156 (idlwave-make-modified-completion-map-xemacs
7157 (current-local-map)))))))
7159 (defun idlwave-default-choose-completion (&rest args
)
7160 "Execute `default-choose-completion' and then restore the win-conf."
7161 (apply 'idlwave-choose
'default-choose-completion args
))
7163 (defun idlwave-make-modified-completion-map-xemacs (old-map)
7164 "Replace `choose-completion' and `mouse-choose-completion' in OLD-MAP."
7165 (let ((new-map (copy-keymap old-map
)))
7166 (define-key new-map
[button3up] 'idlwave-mouse-completion-help)
7167 (define-key new-map [button3] (lambda ()
7169 (setq this-command last-command)))
7172 ;; In Emacs we also replace keybindings in the completion
7173 ;; map in order to install our wrappers.
7175 (defun idlwave-display-completion-list-emacs (list)
7176 "Display completion list and install the choose wrappers."
7177 (with-output-to-temp-buffer "*Completions*"
7178 (display-completion-list list))
7179 (with-current-buffer "*Completions*"
7181 (or idlwave-completion-map
7182 (setq idlwave-completion-map
7183 (idlwave-make-modified-completion-map-emacs
7184 (current-local-map)))))))
7186 (defun idlwave-make-modified-completion-map-emacs (old-map)
7187 "Replace `choose-completion' and `mouse-choose-completion' in OLD-MAP."
7188 (let ((new-map (copy-keymap old-map)))
7189 (substitute-key-definition
7190 'choose-completion 'idlwave-choose-completion new-map)
7191 (substitute-key-definition
7192 'mouse-choose-completion 'idlwave-mouse-choose-completion new-map)
7193 (define-key new-map [mouse-3] 'idlwave-mouse-completion-help)
7196 (defun idlwave-choose-completion (&rest args)
7197 "Choose the completion that point is in or next to."
7199 (apply 'idlwave-choose 'choose-completion args))
7201 (defun idlwave-mouse-choose-completion (&rest args)
7202 "Click on an alternative in the `*Completions*' buffer to choose it."
7204 (apply 'idlwave-choose 'mouse-choose-completion args))
7206 ;;----------------------------------------------------------------------
7207 ;;----------------------------------------------------------------------
7209 ;;; ------------------------------------------------------------------------
7210 ;;; Stucture parsing code, and code to manage class info
7213 ;; - Go again over the documentation how to write a completion
7214 ;; plugin. It is in self.el, but currently still very bad.
7215 ;; This could be in a separate file in the distribution, or
7216 ;; in an appendix for the manual.
7218 (defvar idlwave-struct-skip
7219 "[ \t]*\\(\\$.*\n\\(^[ \t]*\\(\\$[ \t]*\\)?\\(;.*\\)?\n\\)*\\)?[ \t]*"
7220 "Regexp for skipping continued blank or comment-only lines in structures.")
7222 (defvar idlwave-struct-tag-regexp
7223 (concat "[{,]" ;leading comma/brace
7224 idlwave-struct-skip ; 4 groups
7225 "\\([a-zA-Z][a-zA-Z0-9_]*\\)" ;the tag itself, group 5
7226 "[ \t]*:") ; the final colon
7227 "Regexp for structure tags.")
7229 (defun idlwave-struct-tags ()
7230 "Return a list of all tags in the structure defined at point.
7231 Point is expected just before the opening `{' of the struct definition."
7233 (let* ((borders (idlwave-struct-borders))
7239 (narrow-to-region beg end)
7240 (while (re-search-forward idlwave-struct-tag-regexp end t)
7241 ;; Check if we are still on the top level of the structure.
7242 (if (and (condition-case nil (progn (up-list -1) t) (error nil))
7244 (push (match-string-no-properties 5) tags))
7245 (goto-char (match-end 0))))
7248 (defun idlwave-find-struct-tag (tag)
7249 "Find a given TAG in the structure defined at point."
7250 (let* ((borders (idlwave-struct-borders))
7252 (case-fold-search t))
7253 (re-search-forward (concat "\\(^[ \t]*\\|[,{][ \t]*\\)" tag "[ \t]*:")
7256 (defun idlwave-struct-inherits ()
7257 "Return a list of all `inherits' names in the struct at point.
7258 Point is expected just before the opening `{' of the struct definition."
7260 (let* ((borders (idlwave-struct-borders))
7263 (case-fold-search t)
7267 (narrow-to-region beg end)
7268 (while (re-search-forward
7269 (concat "[{,]" ;leading comma/brace
7270 idlwave-struct-skip ; 4 groups
7271 "inherits" ; The INHERITS tag
7272 idlwave-struct-skip ; 4 more
7273 "\\([a-zA-Z][a-zA-Z0-9_]*\\)") ; The super-group, #9
7275 ;; Check if we are still on the top level of the structure.
7276 (if (and (condition-case nil (progn (up-list -1) t) (error nil))
7278 (push (match-string-no-properties 9) names))
7279 (goto-char (match-end 0))))
7282 (defun idlwave-in-structure ()
7283 "Return t if point is inside an IDL structure definition."
7284 (let ((beg (point)))
7286 (if (not (or (idlwave-in-comment) (idlwave-in-quote)))
7287 (if (idlwave-find-structure-definition nil nil 'back)
7288 (let ((borders (idlwave-struct-borders)))
7289 (or (= (car borders) (cdr borders)) ;; struct not yet closed...
7290 (and (> beg (car borders)) (< beg (cdr borders))))))))))
7292 (defun idlwave-struct-borders ()
7293 "Return the borders of the {...} after point as a cons cell."
7296 (skip-chars-forward "^{")
7298 (condition-case nil (forward-list 1)
7299 (error (goto-char beg)))
7300 (cons beg (point)))))
7302 (defun idlwave-find-structure-definition (&optional var name bound)
7303 "Search forward for a structure definition.
7304 If VAR is non-nil, search for a structure assigned to variable VAR.
7305 If NAME is non-nil, search for a named structure NAME, if a string,
7306 or a generic named structure otherwise. If BOUND is an integer, limit
7307 the search. If BOUND is the symbol `all', we search first back and
7308 then forward through the entire file. If BOUND is the symbol `back'
7309 we search only backward."
7310 (let* ((ws "[ \t]*\\(\\$.*\n[ \t]*\\)*")
7311 (case-fold-search t)
7312 (lim (if (integerp bound) bound nil))
7315 (concat "\\<" (regexp-quote (downcase var)) "\\>" ws)
7320 (concat ws "\\(\\<" (downcase name) "\\)[^a-zA-Z0-9_$]")
7321 ;; Just a generic name
7322 (concat ws "\\<\\([a-zA-Z_0-9$]+\\)" ws ","))
7324 (if (or (and (or (eq bound 'all) (eq bound 'back))
7325 (re-search-backward re nil t))
7326 (and (not (eq bound 'back)) (re-search-forward re lim t)))
7328 (goto-char (match-beginning 3))
7329 (match-string-no-properties 5)))))
7331 (defvar idlwave-class-info nil)
7332 (defvar idlwave-class-reset nil) ; to reset buffer-local classes
7334 (add-hook 'idlwave-update-rinfo-hook
7335 (lambda () (setq idlwave-class-reset t)))
7336 (add-hook 'idlwave-after-load-rinfo-hook
7337 (lambda () (setq idlwave-class-info nil)))
7339 (defun idlwave-class-info (class)
7341 (if idlwave-class-info
7342 (if idlwave-class-reset
7344 idlwave-class-reset nil
7345 idlwave-class-info ; Remove any visited in a buffer
7349 (idlwave-class-file-or-buffer
7350 (or (cdr (assq 'found-in x)) (car x)))))
7354 idlwave-class-info))))
7355 ;; Info is nil, put in the system stuff to start.
7356 (setq idlwave-class-info idlwave-system-class-info)
7357 (setq list idlwave-class-info)
7358 (while (setq entry (pop list))
7359 (idlwave-sintern-class-info entry)))
7360 (setq class (idlwave-sintern-class class))
7361 (or (assq class idlwave-class-info)
7362 (progn (idlwave-scan-class-info class)
7363 (assq class idlwave-class-info)))))
7365 (defun idlwave-sintern-class-info (entry)
7366 "Sintern the class names in a class-info entry."
7367 (let ((inherits (assq 'inherits entry)))
7368 (setcar entry (idlwave-sintern-class (car entry) 'set))
7370 (setcdr inherits (mapcar (lambda (x) (idlwave-sintern-class x 'set))
7373 (defun idlwave-find-class-definition (class &optional all-hook alt-class)
7374 "Find class structure definition(s).
7375 If ALL-HOOK is set, find all named structure definitions in a given
7376 class__define routine, on which ALL-HOOK will be run. If ALT-CLASS is
7377 set, look for the name__define pro, and inside of it, for the ALT-CLASS
7378 class/struct definition."
7379 (let ((case-fold-search t) end-lim name)
7380 (when (re-search-forward
7381 (concat "^[ \t]*pro[ \t]+" (downcase class) "__define" "\\>") nil t)
7384 ;; For everything there
7385 (setq end-lim (save-excursion (idlwave-end-of-subprogram) (point)))
7387 (idlwave-find-structure-definition nil t end-lim))
7388 (funcall all-hook name)))
7389 (idlwave-find-structure-definition nil (or alt-class class))))))
7392 (defun idlwave-class-file-or-buffer (class)
7393 "Find buffer visiting CLASS definition."
7394 (let* ((pro (concat (downcase class) "__define"))
7395 (file (idlwave-routine-source-file
7396 (nth 3 (idlwave-rinfo-assoc pro 'pro nil
7397 (idlwave-routines))))))
7398 (cons file (if file (idlwave-get-buffer-visiting file)))))
7401 (defun idlwave-scan-class-info (class)
7402 "Scan all class and named structure info in the class__define pro."
7403 (let* ((idlwave-auto-routine-info-updates nil)
7404 (filebuf (idlwave-class-file-or-buffer class))
7405 (file (car filebuf))
7407 (class (idlwave-sintern-class class)))
7410 (and ;; neither a regular file nor a visited buffer
7412 (not (file-regular-p file))))
7413 nil ; Cannot find the file/buffer to get any info
7415 (if buf (set-buffer buf)
7416 ;; Read the file in temporarily
7417 (set-buffer (get-buffer-create " *IDLWAVE-tmp*"))
7419 (unless (derived-mode-p 'idlwave-mode)
7421 (insert-file-contents file))
7424 (idlwave-find-class-definition class
7425 ;; Scan all of the structures found there
7427 (let* ((this-class (idlwave-sintern-class name))
7430 (cons 'tags (idlwave-struct-tags))
7431 (cons 'inherits (idlwave-struct-inherits)))))
7432 (if (not (eq this-class class))
7433 (setq entry (nconc entry (list (cons 'found-in class)))))
7434 (idlwave-sintern-class-info entry)
7435 (push entry idlwave-class-info)))))))))
7437 (defun idlwave-class-found-in (class)
7438 "Return the FOUND-IN property of the CLASS."
7439 (cdr (assq 'found-in (idlwave-class-info class))))
7440 (defun idlwave-class-tags (class)
7441 "Return the native tags in CLASS."
7442 (cdr (assq 'tags (idlwave-class-info class))))
7443 (defun idlwave-class-inherits (class)
7444 "Return the direct superclasses of CLASS."
7445 (cdr (assq 'inherits (idlwave-class-info class))))
7448 (defun idlwave-all-class-tags (class)
7449 "Return a list of native and inherited tags in CLASS."
7451 (apply 'append (mapcar 'idlwave-class-tags
7452 (cons class (idlwave-all-class-inherits class))))
7454 (idlwave-class-tag-reset)
7455 (error "%s" (error-message-string err)))))
7458 (defun idlwave-all-class-inherits (class)
7459 "Return a list of all superclasses of CLASS (recursively expanded).
7460 The list is cached in `idlwave-class-info' for faster access."
7462 ((not idlwave-support-inheritance) nil)
7463 ((eq class nil) nil)
7466 (let ((info (idlwave-class-info class))
7468 (if (setq entry (assq 'all-inherits info))
7470 ;; Save the depth of inheritance scan to check for circular references
7471 (let ((inherits (mapcar (lambda (x) (cons x 0))
7472 (idlwave-class-inherits class)))
7473 rtn all-inherits cl)
7475 (setq cl (pop inherits)
7476 rtn (cons (car cl) rtn)
7477 inherits (append (mapcar (lambda (x)
7478 (cons x (1+ (cdr cl))))
7479 (idlwave-class-inherits (car cl)))
7481 (if (> (cdr cl) 999)
7483 "Class scan: inheritance depth exceeded. Circular inheritance?")
7485 (setq all-inherits (nreverse rtn))
7486 (nconc info (list (cons 'all-inherits all-inherits)))
7489 (defun idlwave-entry-keywords (entry &optional record-link)
7490 "Return the flat entry keywords alist from routine-info entry.
7491 If RECORD-LINK is non-nil, the keyword text is copied and a text
7492 property indicating the link is added."
7496 (let ((file (car key-list)))
7497 (mapcar (lambda (key-cons)
7498 (let ((key (car key-cons))
7499 (link (cdr key-cons)))
7500 (when (and record-link file)
7501 (setq key (copy-sequence key))
7508 (concat idlwave-html-link-sep
7509 (number-to-string link))))
7511 (push (list key) kwds)))
7516 (defun idlwave-entry-find-keyword (entry keyword)
7517 "Find keyword KEYWORD in entry ENTRY, and return (with link) if set."
7521 (let ((file (car key-list))
7522 (kwd (assoc keyword (cdr key-list))))
7524 (setq kwd (cons (car kwd)
7525 (if (and file (cdr kwd))
7527 idlwave-html-link-sep
7528 (number-to-string (cdr kwd)))
7530 (throw 'exit kwd))))
7533 ;;==========================================================================
7535 ;; Completing class structure tags. This is a completion plugin.
7536 ;; The necessary taglist is constructed dynamically
7538 (defvar idlwave-current-tags-class nil)
7539 (defvar idlwave-current-class-tags nil)
7540 (defvar idlwave-current-native-class-tags nil)
7541 (defvar idlwave-sint-class-tags nil)
7542 (declare-function idlwave-sintern-class-tag "idlwave" t t)
7543 (idlwave-new-sintern-type 'class-tag)
7544 (add-to-list 'idlwave-complete-special 'idlwave-complete-class-structure-tag)
7545 (add-hook 'idlwave-update-rinfo-hook 'idlwave-class-tag-reset)
7547 (defun idlwave-complete-class-structure-tag ()
7548 "Complete a structure tag on a `self' argument in an object method."
7551 (case-fold-search t))
7553 ;; Check if the context is right
7554 (skip-chars-backward "a-zA-Z0-9._$")
7555 (and (< (point) (- pos 4))
7556 (looking-at "self\\.")))
7557 (let* ((class-selector (nth 2 (idlwave-current-routine)))
7558 (super-classes (idlwave-all-class-inherits class-selector)))
7559 ;; Check if we are in a class routine
7560 (unless class-selector
7561 (error "Not in a method procedure or function"))
7562 ;; Check if we need to update the "current" class
7563 (if (not (equal class-selector idlwave-current-tags-class))
7564 (idlwave-prepare-class-tag-completion class-selector))
7565 (setq idlwave-completion-help-info
7566 (list 'idlwave-complete-class-structure-tag-help
7567 (idlwave-sintern-routine
7568 (concat class-selector "__define"))
7570 ;; FIXME: idlwave-cpl-bold doesn't seem used anywhere.
7571 (let ((idlwave-cpl-bold idlwave-current-native-class-tags))
7572 (idlwave-complete-in-buffer
7573 'class-tag 'class-tag
7574 idlwave-current-class-tags nil
7575 (format "Select a tag of class %s" class-selector)
7577 'idlwave-attach-class-tag-classes))
7578 t) ; return t to skip other completions
7581 (defun idlwave-class-tag-reset ()
7582 (setq idlwave-current-tags-class nil))
7584 (defun idlwave-prepare-class-tag-completion (class)
7585 "Find and parse the necessary class definitions for class structure tags."
7586 (setq idlwave-sint-class-tags nil)
7587 (setq idlwave-current-tags-class class)
7588 (setq idlwave-current-class-tags
7590 (list (idlwave-sintern-class-tag x 'set)))
7591 (idlwave-all-class-tags class)))
7592 (setq idlwave-current-native-class-tags
7593 (mapcar 'downcase (idlwave-class-tags class))))
7595 ;===========================================================================
7597 ;; Completing system variables and their structure fields
7598 ;; This is also a plugin.
7600 (defvar idlwave-sint-sysvars nil)
7601 (defvar idlwave-sint-sysvartags nil)
7602 (declare-function idlwave-sintern-sysvar "idlwave" t t)
7603 (declare-function idlwave-sintern-sysvartag "idlwave" t t)
7604 (idlwave-new-sintern-type 'sysvar)
7605 (idlwave-new-sintern-type 'sysvartag)
7606 (add-to-list 'idlwave-complete-special 'idlwave-complete-sysvar-or-tag)
7607 (add-hook 'idlwave-update-rinfo-hook 'idlwave-sysvars-reset)
7608 (add-hook 'idlwave-after-load-rinfo-hook 'idlwave-sintern-sysvar-alist)
7611 (defun idlwave-complete-sysvar-or-tag ()
7612 "Complete a system variable."
7615 (case-fold-search t))
7616 (cond ((save-excursion
7617 ;; Check if the context is right for system variable
7618 (skip-chars-backward "[a-zA-Z0-9_$]")
7619 (equal (char-before) ?!))
7620 (setq idlwave-completion-help-info '(idlwave-complete-sysvar-help))
7621 (idlwave-complete-in-buffer 'sysvar 'sysvar
7622 idlwave-system-variables-alist nil
7623 "Select a system variable"
7625 t) ; return t to skip other completions
7627 ;; Check if the context is right for sysvar tag
7628 (skip-chars-backward "a-zA-Z0-9_$.")
7629 (and (equal (char-before) ?!)
7630 (looking-at "\\([a-zA-Z][a-zA-Z0-9_$]*\\)\\.")
7631 (<= (match-end 0) pos)))
7632 ;; Complete a system variable tag
7633 (let* ((var (idlwave-sintern-sysvar (match-string 1)))
7634 (entry (assq var idlwave-system-variables-alist))
7635 (tags (cdr (assq 'tags entry))))
7636 (or entry (error "!%s is not a known system variable" var))
7637 (or tags (error "System variable !%s is not a structure" var))
7638 (setq idlwave-completion-help-info
7639 (list 'idlwave-complete-sysvar-tag-help var))
7640 (idlwave-complete-in-buffer 'sysvartag 'sysvartag
7642 "Select a system variable tag"
7643 "system variable tag")
7644 t)) ; return t to skip other completions
7647 (defvar idlw-help-link) ;dynamic variables set by help callback
7648 (defun idlwave-complete-sysvar-help (mode word)
7649 (let ((word (or (nth 1 idlwave-completion-help-info) word))
7650 (entry (assoc word idlwave-system-variables-alist)))
7653 (and (stringp word) entry (nth 1 (assq 'link entry))))
7655 ;; Setting dynamic!!!
7656 (if entry (setq idlw-help-link (nth 1 (assq 'link entry)))))
7657 (t (error "This should not happen")))))
7659 (defun idlwave-complete-sysvar-tag-help (mode word)
7660 (let* ((var (nth 1 idlwave-completion-help-info))
7661 (entry (assoc var idlwave-system-variables-alist))
7662 (tags (cdr (assq 'tags entry)))
7663 (main (nth 1 (assq 'link entry)))
7666 ((eq mode 'test) ; we can at least link the main
7667 (and (stringp word) entry main))
7670 (setq idlw-help-link
7671 (if (setq target (cdr (assoc-string word tags t)))
7672 (idlwave-substitute-link-target main target)
7673 main)))) ;; setting dynamic!!!
7674 (t (error "This should not happen")))))
7676 (defun idlwave-split-link-target (link)
7677 "Split a given LINK into link file and anchor."
7678 (if (string-match idlwave-html-link-sep link)
7679 (cons (substring link 0 (match-beginning 0))
7680 (string-to-number (substring link (match-end 0))))))
7682 (defun idlwave-substitute-link-target (link target)
7683 "Substitute the TARGET anchor for the given LINK."
7685 (setq main-base (if (string-match "#" link)
7686 (substring link 0 (match-beginning 0))
7689 (concat main-base idlwave-html-link-sep (number-to-string target))
7692 ;; Fake help in the source buffer for class structure tags.
7693 ;; IDLW-HELP-LINK AND IDLW-HELP-NAME ARE GLOBAL-VARIABLES HERE.
7694 ;; (from idlwave-do-mouse-completion-help)
7695 (defvar idlw-help-name)
7696 (defvar idlw-help-link)
7697 (defvar idlwave-help-do-class-struct-tag nil)
7698 (defun idlwave-complete-class-structure-tag-help (mode word)
7700 ((eq mode 'test) ; nothing gets fontified for class tags
7703 (let (class-with found-in)
7704 (when (setq class-with
7705 (idlwave-class-or-superclass-with-tag
7706 idlwave-current-tags-class
7708 (if (assq (idlwave-sintern-class class-with)
7709 idlwave-system-class-info)
7710 (error "No help available for system class tags"))
7711 (if (setq found-in (idlwave-class-found-in class-with))
7712 (setq idlw-help-name (cons (concat found-in "__define") class-with))
7713 (setq idlw-help-name (concat class-with "__define")))))
7714 (setq idlw-help-link word
7715 idlwave-help-do-class-struct-tag t))
7716 (t (error "This should not happen"))))
7718 (defun idlwave-class-or-superclass-with-tag (class tag)
7719 "Find and return the CLASS or one of its superclass with the
7720 associated TAG, if any."
7721 (let ((sclasses (cons class (idlwave-all-class-inherits class)))
7725 (setq cl (pop sclasses))
7726 (let ((tags (idlwave-class-tags cl)))
7728 (if (eq t (compare-strings tag 0 nil (car tags) 0 nil t))
7730 (setq tags (cdr tags))))))))
7733 (defun idlwave-sysvars-reset ()
7734 (if (and (fboundp 'idlwave-shell-is-running)
7735 (idlwave-shell-is-running)
7736 idlwave-idlwave_routine_info-compiled)
7737 (idlwave-shell-send-command "idlwave_get_sysvars"
7738 'idlwave-process-sysvars 'hide)))
7740 (defun idlwave-process-sysvars ()
7741 (idlwave-shell-filter-sysvars)
7742 (setq idlwave-sint-sysvars nil
7743 idlwave-sint-sysvartags nil)
7744 (idlwave-sintern-sysvar-alist))
7746 (defun idlwave-sintern-sysvar-alist ()
7747 (let ((list idlwave-system-variables-alist) entry tags)
7748 (while (setq entry (pop list))
7749 (setcar entry (idlwave-sintern-sysvar (car entry) 'set))
7750 (setq tags (assq 'tags entry))
7754 (cons (idlwave-sintern-sysvartag (car x) 'set)
7758 (defvar idlwave-shell-command-output)
7759 (defun idlwave-shell-filter-sysvars ()
7760 "Get any new system variables and tags."
7761 (let ((text idlwave-shell-command-output)
7763 (old idlwave-system-variables-alist)
7764 var tags type name class link old-entry)
7765 (setq idlwave-system-variables-alist nil)
7766 (while (string-match "^IDLWAVE-SYSVAR: !\\([a-zA-Z0-9_$]+\\)\\( \\(.*\\)\\)?"
7768 (setq start (match-end 0)
7769 var (match-string 1 text)
7770 tags (if (match-end 3)
7771 (idlwave-split-string (match-string 3 text))))
7772 ;; Maintain old links, if present
7773 (setq old-entry (assq (idlwave-sintern-sysvar var) old))
7774 (setq link (assq 'link old-entry))
7775 (setq idlwave-system-variables-alist
7782 (idlwave-sintern-sysvartag x)
7783 (cdr (assq 'tags old-entry))))))
7785 idlwave-system-variables-alist)))
7786 ;; Keep the old value if query was not successful
7787 (setq idlwave-system-variables-alist
7788 (or idlwave-system-variables-alist old))))
7790 (defun idlwave-completion-fontify-classes ()
7791 "Goto the *Completions* buffer and fontify the class info."
7792 (when (featurep 'font-lock)
7793 (with-current-buffer "*Completions*"
7795 (goto-char (point-min))
7796 (let ((buffer-read-only nil))
7797 (while (re-search-forward "\\.*<[^>]+>" nil t)
7798 (put-text-property (match-beginning 0) (match-end 0)
7799 'face 'font-lock-string-face)))))))
7801 (defun idlwave-uniquify (list)
7802 (let ((ht (make-hash-table :size (length list) :test 'equal)))
7805 (unless (gethash x ht)
7810 (defun idlwave-after-successful-completion (type slash &optional verify)
7811 "Add `=' or `(' after successful completion of keyword and function.
7812 Restore the pre-completion window configuration if possible."
7814 ((eq type 'procedure)
7816 ((eq type 'function)
7818 ((equal idlwave-function-completion-adds-paren nil) nil)
7819 ((or (equal idlwave-function-completion-adds-paren t)
7820 (equal idlwave-function-completion-adds-paren 1))
7822 ((equal idlwave-function-completion-adds-paren 2)
7827 (if (and idlwave-keyword-completion-adds-equal
7829 (progn (insert "=") t)
7832 ;; Restore the pre-completion window configuration if this is safe.
7834 (if (or (eq verify 'force) ; force
7836 (get-buffer-window "*Completions*") ; visible
7837 (idlwave-local-value 'idlwave-completion-p
7838 "*Completions*") ; cib-buffer
7839 (eq (marker-buffer idlwave-completion-mark)
7840 (current-buffer)) ; buffer OK
7841 (equal (marker-position idlwave-completion-mark)
7843 (idlwave-restore-wconf-after-completion))
7844 (move-marker idlwave-completion-mark nil)
7845 (setq idlwave-before-completion-wconf nil))
7847 (defun idlwave-mouse-context-help (ev &optional arg)
7848 "Call `idlwave-context-help' on the clicked location."
7850 (mouse-set-point ev)
7851 (idlwave-context-help arg))
7853 (defvar idlwave-last-context-help-pos nil)
7854 (defun idlwave-context-help (&optional arg)
7855 "Display IDL Online Help on context.
7856 If point is on a keyword, help for that keyword will be shown. If
7857 point is on a routine name or in the argument list of a routine, help
7858 for that routine will be displayed. Works for system routines and
7859 keywords, it pulls up text help. For other routies and keywords,
7860 visits the source file, finding help in the header (if
7861 `idlwave-help-source-try-header' is non-nil) or the routine definition
7864 (idlwave-do-context-help arg))
7866 (defun idlwave-mouse-completion-help (ev)
7867 "Display online help about the completion at point."
7869 ;; Restore last-command for next command, to make
7870 ;; scrolling/cancelling of completions work.
7871 (setq this-command last-command)
7872 (idlwave-do-mouse-completion-help ev))
7874 (defun idlwave-routine-info (&optional arg external)
7875 "Display a routines calling sequence and list of keywords.
7876 When point is on the name a function or procedure, or in the argument
7877 list of a function or procedure, this command displays a help buffer with
7878 the information. When called with prefix arg, enforce class query.
7880 When point is on an object operator `->', display the class stored in
7881 this arrow, if any (see `idlwave-store-inquired-class'). With a prefix
7882 arg, the class property is cleared out."
7886 (if (string-match "->" (buffer-substring
7887 (max (point-min) (1- (point)))
7888 (min (+ 2 (point)) (point-max))))
7889 ;; Cursor is on an arrow
7890 (if (get-text-property (point) 'idlwave-class)
7891 ;; arrow has class property
7896 (when (looking-at ".?\\(->\\)")
7897 (remove-text-properties (match-beginning 1) (match-end 1)
7898 '(idlwave-class nil face nil))
7899 (message "Class property removed from arrow")))
7900 ;; Echo class property
7901 (message "Arrow has text property identifying object to be class %s"
7902 (get-text-property (point) 'idlwave-class)))
7903 ;; No property found
7904 (message "Arrow has no class text property"))
7906 ;; Not on an arrow...
7907 (let* ((idlwave-query-class nil)
7908 (idlwave-force-class-query (equal arg '(4)))
7909 (module (idlwave-what-module)))
7911 (apply 'idlwave-display-calling-sequence
7912 (idlwave-fix-module-if-obj_new module))
7913 (error "Don't know which calling sequence to show")))))
7915 (defun idlwave-resolve (&optional arg)
7916 "Call RESOLVE_ROUTINE on the module name at point.
7917 Like `idlwave-routine-info', this looks for a routine call at point.
7918 After confirmation in the minibuffer, it will use the shell to issue
7919 a RESOLVE call for this routine, to attempt to make it defined and its
7920 routine info available for IDLWAVE. If the routine is a method call,
7921 both `class__method' and `class__define' will be tried.
7922 With ARG, enforce query for the class of object methods."
7924 (let* ((idlwave-query-class nil)
7925 (idlwave-force-class-query (equal arg '(4)))
7926 (module (idlwave-what-module))
7927 (name (idlwave-make-full-name (nth 2 module) (car module)))
7928 (type (if (eq (nth 1 module) 'pro) "pro" "function"))
7929 (resolve (read-string "Resolve: " (format "%s %s" type name)))
7932 (if (string-match "\\(pro\\|function\\)[ \t]+\\(\\(.*\\)::\\)?\\(.*\\)"
7934 (setq type (match-string 1 resolve)
7935 class (if (match-beginning 2)
7936 (match-string 3 resolve)
7938 name (match-string 4 resolve)))
7939 (if (string= (downcase type) "function")
7940 (setq kwd ",/is_function"))
7944 (idlwave-shell-send-command
7945 (format "resolve_routine,'%s'%s" (downcase name) kwd)
7946 'idlwave-update-routine-info
7949 (idlwave-shell-send-command
7950 (format "resolve_routine,'%s__define'%s" (downcase class) kwd)
7951 (list 'idlwave-shell-send-command
7952 (format "resolve_routine,'%s__%s'%s"
7953 (downcase class) (downcase name) kwd)
7954 '(idlwave-update-routine-info)
7957 (defun idlwave-find-module-this-file ()
7959 (idlwave-find-module '(4)))
7961 (defun idlwave-find-module (&optional arg)
7962 "Find the source code of an IDL module.
7963 Works for modules for which IDLWAVE has routine info available.
7964 The function offers as default the module name `idlwave-routine-info'
7965 would use. With ARG limit to this buffer. With two prefix ARG's
7966 force class query for object methods."
7968 (let* ((idlwave-query-class nil)
7969 (idlwave-force-class-query (equal arg '(16)))
7970 (this-buffer (equal arg '(4)))
7971 (module (idlwave-fix-module-if-obj_new (idlwave-what-module)))
7973 (concat (idlwave-make-full-name
7974 (nth 2 module) (car module))
7975 (if (eq (nth 1 module) 'pro) "<p>" "<f>"))
7981 (if (eq 'system (car-safe (nth 3 x)))
7982 ;; Take out system routines with no source.
7985 (concat (idlwave-make-full-name
7987 (if (eq (nth 1 x) 'pro) "<p>" "<f>")))))
7989 (idlwave-save-buffer-update)
7990 (idlwave-routines))))))
7991 (name (idlwave-completing-read
7992 (if (or (not this-buffer)
7993 (assoc default list))
7994 (format "Module (Default %s): " default)
7995 (format "Module in this file: "))
7998 (if (string-match "\\`\\s-*\\'" name)
7999 ;; Nothing, use the default.
8000 (setq name default))
8001 (if (string-match "<[fp]>" name)
8002 (setq type (substring name -2 -1)
8003 name (substring name 0 -3)))
8004 (if (string-match "\\(.*\\)::\\(.*\\)" name)
8005 (setq class (match-string 1 name)
8006 name (match-string 2 name)))
8007 (setq name (idlwave-sintern-routine-or-method name class)
8008 class (idlwave-sintern-class class)
8009 type (cond ((equal type "f") 'fun)
8010 ((equal type "p") 'pro)
8012 (idlwave-do-find-module name type class nil this-buffer)))
8014 (defun idlwave-do-find-module (name type class
8015 &optional force-source this-buffer)
8016 (let ((name1 (idlwave-make-full-name class name))
8018 (buf (current-buffer))
8021 (setq entry (idlwave-best-rinfo-assq name type class (idlwave-routines)
8023 source (or force-source (nth 3 entry))
8024 name2 (if (nth 2 entry)
8025 (idlwave-make-full-name (nth 2 entry) name)
8028 (setq file (idlwave-routine-source-file source)))
8029 (unless file ; Try to find it on the path.
8031 (idlwave-expand-lib-file-name
8033 (format "%s__define.pro" (downcase class))
8034 (format "%s.pro" (downcase name))))))
8036 ((or (null name) (equal name ""))
8038 ((eq (car source) 'system)
8039 (error "Source code for system routine %s is not available"
8041 ((or (not file) (not (file-regular-p file)))
8042 (error "Source code for routine %s is not available"
8045 (when (not this-buffer)
8047 (idlwave-find-file-noselect file 'find))
8048 (pop-to-buffer buf1 t))
8049 (goto-char (point-max))
8050 (let ((case-fold-search t))
8051 (if (re-search-backward
8052 (concat "^[ \t]*\\<"
8053 (cond ((eq type 'fun) "function")
8054 ((eq type 'pro) "pro")
8055 (t "\\(pro\\|function\\)"))
8057 (regexp-quote (downcase name2))
8060 (goto-char (match-beginning 0))
8063 (error "Could not find routine %s" name2)))))))
8065 (defun idlwave-what-module ()
8066 "Return a default module for stuff near point.
8067 Used by `idlwave-routine-info' and `idlwave-find-module'."
8069 (if (let ((case-fold-search t))
8071 (idlwave-beginning-of-statement)
8072 (looking-at "[ \t]*\\(pro\\|function\\)[ \t]+\\(\\([a-zA-Z0-9_$]+\\)::\\)?\\([a-zA-Z0-9$_]+\\)\\([, \t\n]\\|$\\)")))
8073 ;; This is a function or procedure definition statement
8074 ;; We return the defined routine as module.
8076 (idlwave-sintern-routine-or-method (match-string-no-properties 4)
8077 (match-string-no-properties 2))
8078 (if (equal (downcase (match-string 1)) "pro") 'pro 'fun)
8079 (idlwave-sintern-class (match-string 3)))
8081 ;; Not a definition statement - analyze precise position.
8082 (let* ((where (idlwave-where))
8084 (pro (car (nth 0 where)))
8085 (func (car (nth 1 where)))
8086 (this-word (idlwave-this-word "a-zA-Z0-9$_"))
8087 (next-char (save-excursion (skip-chars-forward "a-zA-Z0-9$_")
8091 ((and (eq cw 'procedure)
8092 (not (equal this-word "")))
8093 (setq this-word (idlwave-sintern-routine-or-method
8094 this-word (nth 2 (nth 3 where))))
8095 (list this-word 'pro
8096 (idlwave-determine-class
8097 (cons this-word (cdr (nth 3 where)))
8099 ((and (eq cw 'function)
8100 (not (equal this-word ""))
8101 (or (eq next-char ?\() ; exclude arrays, vars.
8102 (looking-at "[a-zA-Z0-9_]*[ \t]*(")))
8103 (setq this-word (idlwave-sintern-routine-or-method
8104 this-word (nth 2 (nth 3 where))))
8105 (list this-word 'fun
8106 (idlwave-determine-class
8107 (cons this-word (cdr (nth 3 where)))
8109 ((and (memq cw '(function-keyword procedure-keyword))
8110 (not (equal this-word ""))
8111 (eq next-char ?\()) ; A function!
8112 (setq this-word (idlwave-sintern-routine this-word))
8113 (list this-word 'fun nil))
8115 (list func 'fun (idlwave-determine-class (nth 1 where) 'fun)))
8117 (list pro 'pro (idlwave-determine-class (nth 0 where) 'pro)))
8120 (defun idlwave-what-module-find-class ()
8121 "Call `idlwave-what-module' and find the inherited class if necessary."
8122 (let* ((module (idlwave-what-module))
8123 (class (nth 2 module)))
8124 (if (and (= (length module) 3)
8128 (apply 'idlwave-find-inherited-class module))
8131 (defun idlwave-find-inherited-class (name type class)
8132 "Find the class which defines TYPE NAME and is CLASS or inherited by CLASS."
8133 (let ((entry (idlwave-best-rinfo-assoc name type class (idlwave-routines))))
8138 (defun idlwave-fix-module-if-obj_new (module)
8139 "Check if MODULE points to obj_new.
8140 If yes, and if the cursor is in the keyword region, change to the
8141 appropriate Init method."
8142 (let* ((name (car module))
8144 (case-fold-search t)
8146 (if (and (stringp name)
8147 (equal (downcase name) "obj_new")
8149 (idlwave-beginning-of-statement)
8150 (setq string (buffer-substring (point) pos))
8151 (string-match "obj_new([^'\"]*['\"]\\([a-zA-Z0-9_]+\\)"
8154 (class (match-string 1 string)))
8155 (setq module (list (idlwave-sintern-method "Init")
8157 (idlwave-sintern-class class)))))
8160 (defun idlwave-fix-keywords (name type class keywords
8161 &optional super-classes system)
8162 "Update a list of keywords.
8163 Translate OBJ_NEW, adding all super-class keywords, or all keywords
8164 from all classes if CLASS equals t. If SYSTEM is non-nil, don't
8165 demand _EXTRA in the keyword list."
8166 (let ((case-fold-search t))
8168 ;; If this is the OBJ_NEW function, try to figure out the class and use
8169 ;; the keywords from the corresponding INIT method.
8170 (if (and (equal (upcase name) "OBJ_NEW")
8171 (derived-mode-p 'idlwave-mode 'idlwave-shell-mode))
8172 (let* ((bos (save-excursion (idlwave-beginning-of-statement) (point)))
8173 (string (buffer-substring bos (point)))
8174 (case-fold-search t)
8176 (and (string-match "obj_new([^'\"]*['\"]\\([a-zA-Z0-9_]+\\)"
8178 (setq class (idlwave-sintern-class (match-string 1 string)))
8179 (setq idlwave-current-obj_new-class class)
8182 (idlwave-entry-keywords
8184 (idlwave-sintern-method "INIT")
8187 (idlwave-routines)) 'do-link))))))
8189 ;; If the class is `t', combine all keywords of all methods NAME
8191 (mapc (lambda (entry)
8193 (nth 2 entry) ; non-nil class
8194 (eq (nth 1 entry) type) ; correct type
8197 (idlwave-entry-keywords entry 'do-link)))))
8198 (idlwave-all-assq name (idlwave-routines)))
8199 (setq keywords (idlwave-uniquify keywords)))
8201 ;; If we have inheritance, add all keywords from superclasses, if
8202 ;; the user indicated that method in `idlwave-keyword-class-inheritance'
8205 idlwave-keyword-class-inheritance
8209 (assq (idlwave-sintern-keyword "_extra") keywords)
8210 (assq (idlwave-sintern-keyword "_ref_extra") keywords))
8211 ;; Check if one of the keyword-class regexps matches the name
8212 (let ((regexps idlwave-keyword-class-inheritance) re)
8214 (while (setq re (pop regexps))
8215 (if (string-match re name) (throw 'exit t))))))
8217 (loop for entry in (idlwave-routines) do
8218 (and (nth 2 entry) ; non-nil class
8219 (memq (nth 2 entry) super-classes) ; an inherited class
8220 (eq (nth 1 entry) type) ; correct type
8221 (eq (car entry) name) ; correct name
8222 (mapc (lambda (k) (add-to-list 'keywords k))
8223 (idlwave-entry-keywords entry 'do-link))))
8224 (setq keywords (idlwave-uniquify keywords)))
8226 ;; Return the final list
8229 (defun idlwave-expand-keyword (keyword module)
8230 "Expand KEYWORD to one of the valid keyword parameters of MODULE.
8231 KEYWORD may be an exact match or an abbreviation of a keyword.
8232 If the match is exact, KEYWORD itself is returned, even if there may be other
8233 keywords of which KEYWORD is an abbreviation. This is necessary because some
8234 system routines have keywords which are prefixes of other keywords.
8235 If KEYWORD is an abbreviation of several keywords, a list of all possible
8236 completions is returned.
8237 If the abbreviation was unique, the correct keyword is returned.
8238 If it cannot be a keyword, the function return nil.
8239 If we do not know about MODULE, just return KEYWORD literally."
8240 (let* ((name (car module))
8241 (type (nth 1 module))
8242 (class (nth 2 module))
8243 (kwd (idlwave-sintern-keyword keyword))
8244 (entry (idlwave-best-rinfo-assoc name type class (idlwave-routines)))
8245 (kwd-alist (idlwave-entry-keywords entry))
8246 (extra (or (assq (idlwave-sintern-keyword "_EXTRA") kwd-alist)
8247 (assq (idlwave-sintern-keyword "_REF_EXTRA") kwd-alist)))
8248 (completion-ignore-case t)
8250 (cond ((assq kwd kwd-alist)
8252 ((setq candidates (all-completions kwd kwd-alist))
8253 (if (= (length candidates) 1)
8257 ;; Inheritance may cause this keyword to be correct
8260 ;; We do know the function, which does not have the keyword.
8263 ;; We do not know the function, so this just might be a correct
8264 ;; keyword - return it as it is.
8267 (defvar idlwave-rinfo-mouse-map
8268 (let ((map (make-sparse-keymap)))
8270 (if (featurep 'xemacs) [button2] [mouse-2])
8271 'idlwave-mouse-active-rinfo)
8273 (if (featurep 'xemacs) [(shift button2)] [(shift mouse-2)])
8274 'idlwave-mouse-active-rinfo-shift)
8276 (if (featurep 'xemacs) [button3] [mouse-3])
8277 'idlwave-mouse-active-rinfo-right)
8278 (define-key map " " 'idlwave-active-rinfo-space)
8279 (define-key map "q" 'idlwave-quit-help)
8282 (defvar idlwave-rinfo-map
8283 (let ((map (make-sparse-keymap)))
8284 (define-key map "q" 'idlwave-quit-help)
8287 (defvar idlwave-popup-source nil)
8288 (defvar idlwave-rinfo-marker (make-marker))
8290 (defun idlwave-quit-help ()
8292 (let ((ri-window (get-buffer-window "*Help*"))
8293 (olh-window (get-buffer-window "*IDLWAVE Help*")))
8294 (when (and olh-window
8295 (fboundp 'idlwave-help-quit))
8296 (select-window olh-window)
8297 (idlwave-help-quit))
8298 (when (window-live-p ri-window)
8299 (delete-window ri-window))))
8301 (defun idlwave-display-calling-sequence (name type class
8302 &optional initial-class)
8303 ;; Display the calling sequence of module NAME, type TYPE in class CLASS.
8304 (let* ((initial-class (or initial-class class))
8305 (entry (or (idlwave-best-rinfo-assq name type class
8307 (idlwave-rinfo-assq name type class
8308 idlwave-unresolved-routines)))
8309 (name (or (car entry) name))
8310 (class (or (nth 2 entry) class))
8311 (superclasses (idlwave-all-class-inherits initial-class))
8312 (twins (idlwave-routine-twins entry))
8313 (dtwins (idlwave-study-twins twins))
8315 (system (eq (car (nth 3 entry)) 'system))
8316 (calling-seq (nth 4 entry))
8317 (keywords (idlwave-entry-keywords entry 'do-link))
8318 (html-file (car (nth 5 entry)))
8320 "Button2: Insert KEYWORD (SHIFT=`/KEYWORD') | Button3: Online Help ")
8322 "Button2/3: Online Help")
8324 "Button2: Jump to source and back | Button3: Source in Help window.")
8326 "Button2: Display info about same method in superclass")
8328 (data (list name type class (current-buffer) nil initial-class))
8329 (km-prop (if (featurep 'xemacs) 'keymap 'local-map))
8330 (face 'idlwave-help-link)
8331 beg props win cnt total)
8332 ;; Fix keywords, but don't add chained super-classes, since these
8333 ;; are shown separately for that super-class
8334 (setq keywords (idlwave-fix-keywords name type class keywords))
8337 (error "No %s %s known %s" type name
8338 (if initial-class (concat "in class " initial-class) "")))
8339 ((or (null name) (equal name ""))
8340 (error "No function or procedure call at point"))
8342 (error "Calling sequence of %s %s not available" type name))
8344 (move-marker idlwave-rinfo-marker (point))
8345 (with-current-buffer (get-buffer-create "*Help*")
8346 (use-local-map idlwave-rinfo-map)
8347 (setq buffer-read-only nil)
8349 (set (make-local-variable 'idlwave-popup-source) nil)
8350 (set (make-local-variable 'idlwave-current-obj_new-class)
8351 idlwave-current-obj_new-class)
8353 (setq props (list 'mouse-face 'highlight
8354 km-prop idlwave-rinfo-mouse-map
8355 'help-echo help-echo-class
8356 'data (cons 'class data)))
8357 (let ((classes (cons initial-class superclasses)) c)
8358 (insert "Classes: ")
8359 (while (setq c (pop classes))
8363 (if (equal (downcase c) (downcase class))
8364 (add-text-properties beg (point) (list 'face 'bold))
8365 ;; If Method exists in a different class link it
8366 (if (idlwave-rinfo-assq name type c (idlwave-routines))
8367 (add-text-properties beg (point) props))))
8369 (setq props (list 'mouse-face 'highlight
8370 km-prop idlwave-rinfo-mouse-map
8371 'help-echo help-echo-use
8372 'data (cons 'usage data)))
8373 (if html-file (setq props (append (list 'face face 'link html-file)
8378 (format calling-seq class name class name class name)
8379 (format calling-seq name name name name))
8381 (add-text-properties beg (point) props)
8383 (insert "Keywords:")
8385 (insert " No keywords accepted.")
8389 (if (>= (+ col 1 (length (car x)))
8396 ;; Relevant keywords already have link property attached
8397 props (list 'mouse-face 'highlight
8398 km-prop idlwave-rinfo-mouse-map
8399 'data (cons 'keyword data)
8400 'help-echo help-echo-kwd
8402 (if system (setq props (append (list 'face face) props)))
8404 (add-text-properties beg (point) props)
8405 (setq col (+ col 1 (length (car x)))))
8408 (setq cnt 1 total (length all))
8409 ;; Here entry is (key file (list of type-conses))
8410 (while (setq entry (pop all))
8411 (setq props (list 'mouse-face 'highlight
8412 km-prop idlwave-rinfo-mouse-map
8413 'help-echo help-echo-src
8414 'source (list (car (car (nth 2 entry))) ;type
8417 (cdr (car (nth 2 entry))))
8418 'data (cons 'source data)))
8419 (idlwave-insert-source-location
8422 (if (> total 1) "Sources:" "Source:")
8424 (if (> total 1) "- " ""))
8427 (when (and all (> cnt idlwave-rinfo-max-source-lines))
8428 ;; No more source lines, please
8430 "\n Source information truncated to %d entries."
8431 idlwave-rinfo-max-source-lines))
8433 (goto-char (point-min))
8434 (setq buffer-read-only t))
8435 (display-buffer "*Help*")
8436 (if (and (setq win (get-buffer-window "*Help*"))
8437 idlwave-resize-routine-help-window)
8439 (let ((ww (selected-window)))
8443 (enlarge-window (- (/ (frame-height) 2)
8445 (shrink-window-if-larger-than-buffer))
8446 (select-window ww)))))))))
8448 (defun idlwave-insert-source-location (prefix entry &optional file-props)
8449 "Insert a source location into the routine info buffer.
8450 Start line with PREFIX. If a file name is inserted, add FILE-PROPS
8452 (let* ((key (car entry))
8453 (file (nth 1 entry))
8454 (types (nth 2 entry))
8455 (shell-flag (assq 'compiled types))
8456 (buffer-flag (assq 'buffer types))
8457 (user-flag (assq 'user types))
8458 (lib-flag (assq 'lib types))
8459 (ndupl (or (and buffer-flag (idlwave-count-memq 'buffer types))
8460 (and user-flag (idlwave-count-memq 'user types))
8461 (and lib-flag (idlwave-count-memq 'lib types))
8475 (insert "Builtin "))
8477 ((and (not file) shell-flag)
8478 (insert "Unresolved"))
8483 ((idlwave-syslib-p file)
8484 (if (string-match "obsolete" (file-name-directory file))
8485 (insert "Obsolete ")
8486 (insert "SystemLib ")))
8488 ;; New special syntax: taken directly from routine-info for
8489 ;; library catalog routines
8490 ((setq special (or (cdr lib-flag) (cdr user-flag)))
8491 (insert (format "%-10s" special)))
8493 ;; Old special syntax: a matching regexp
8494 ((setq special (idlwave-special-lib-test file))
8495 (insert (format "%-10s" special)))
8497 ;; Catch-all with file
8498 ((idlwave-lib-p file) (insert "Library "))
8501 (t (insert "Other ")))
8506 (if lib-flag "L" "-")
8507 (if user-flag "C" "-")
8508 (if shell-flag "S" "-")
8509 (if buffer-flag "B" "-")
8513 (insert (format "(%dx) " ndupl))
8514 (add-text-properties beg (point) (list 'face 'bold)))
8515 (when (and file (not (equal file "")))
8517 (insert (apply 'abbreviate-file-name
8518 (if (featurep 'xemacs) (list file t) (list file))))
8520 (add-text-properties beg (point) file-props)))))
8522 (defun idlwave-special-lib-test (file)
8523 "Check the path of FILE against the regexps which define special libs.
8524 Return the name of the special lib if there is a match."
8525 (let ((alist idlwave-special-lib-alist)
8529 (while (setq entry (pop alist))
8530 (if (string-match (car entry) file)
8531 (setq rtn (cdr entry)
8536 (defun idlwave-mouse-active-rinfo-right (ev)
8538 (idlwave-mouse-active-rinfo ev 'right))
8540 (defun idlwave-mouse-active-rinfo-shift (ev)
8542 (idlwave-mouse-active-rinfo ev nil 'shift))
8544 (defun idlwave-active-rinfo-space ()
8546 (idlwave-mouse-active-rinfo nil 'right))
8548 (defun idlwave-mouse-active-rinfo (ev &optional right shift)
8549 "Do the mouse actions in the routine info buffer.
8550 Optional args RIGHT and SHIFT indicate, if mouse-3 was used, and if SHIFT
8553 (if ev (mouse-set-point ev))
8554 (let (data id name type class buf bufwin source link keyword
8556 (setq data (get-text-property (point) 'data)
8557 source (get-text-property (point) 'source)
8558 keyword (get-text-property (point) 'keyword)
8559 link (get-text-property (point) 'link)
8561 name (nth 1 data) type (nth 2 data) class (nth 3 data)
8563 initial-class (nth 6 data)
8564 word (idlwave-this-word)
8565 bufwin (get-buffer-window buf t))
8567 (cond ((eq id 'class) ; Switch class being displayed
8568 (if (window-live-p bufwin) (select-window bufwin))
8569 (idlwave-display-calling-sequence
8570 (idlwave-sintern-method name)
8571 type (idlwave-sintern-class word)
8573 ((eq id 'usage) ; Online help on this routine
8574 (idlwave-online-help link name type class))
8575 ((eq id 'source) ; Source in help or buffer
8577 (let ((idlwave-extra-help-function 'idlwave-help-with-source)
8578 (idlwave-help-source-try-header nil)
8579 ;; Fake idlwave-routines so help will find the right entry
8581 (list (list name type class source ""))))
8582 (idlwave-help-get-special-help name type class nil))
8583 ;; Otherwise just pop to the source
8584 (setq idlwave-popup-source (not idlwave-popup-source))
8585 (if idlwave-popup-source
8587 (idlwave-do-find-module name type class source)
8589 (setq idlwave-popup-source nil)
8590 (if (window-live-p bufwin) (select-window bufwin))
8591 (error (nth 1 err))))
8593 (select-window bufwin)
8594 (pop-to-buffer buf))
8595 (goto-char (marker-position idlwave-rinfo-marker)))))
8598 (idlwave-online-help link name type class keyword)
8599 (idlwave-rinfo-insert-keyword keyword buf shift))))))
8601 (defun idlwave-rinfo-insert-keyword (keyword buffer &optional shift)
8602 "Insert KEYWORD in BUFFER. Make sure buffer is displayed in a window."
8603 (let ((bwin (get-buffer-window buffer)))
8604 (if idlwave-complete-empty-string-as-lower-case
8605 (setq keyword (downcase keyword)))
8607 (select-window bwin)
8608 (pop-to-buffer buffer)
8609 (setq bwin (get-buffer-window buffer)))
8610 (if (eq (preceding-char) ?/)
8612 (unless (save-excursion
8614 "[(,][ \t]*\\(\\$[ \t]*\\(;.*\\)?\n\\)?[ \t]*\\="
8615 (min (- (point) 100) (point-min)) t))
8617 (if shift (insert "/"))
8619 (if (and (not shift)
8620 idlwave-keyword-completion-adds-equal)
8623 (defun idlwave-list-buffer-load-path-shadows (&optional arg)
8624 "List the load path shadows of all routines defined in current buffer."
8627 (if (derived-mode-p 'idlwave-mode)
8628 (idlwave-list-load-path-shadows
8629 nil (idlwave-update-current-buffer-info 'save-buffer)
8630 "in current buffer")
8631 (error "Current buffer is not in idlwave-mode")))
8633 (defun idlwave-list-shell-load-path-shadows (&optional arg)
8634 "List the load path shadows of all routines compiled under the shell.
8635 This is very useful for checking an IDL application. Just compile the
8636 application, do RESOLVE_ALL, and `C-c C-i' to compile all referenced
8637 routines and update IDLWAVE internal info. Then check for shadowing
8641 ((or (not (fboundp 'idlwave-shell-is-running))
8642 (not (idlwave-shell-is-running)))
8643 (error "Shell is not running"))
8644 ((null idlwave-compiled-routines)
8645 (error "No compiled routines. Maybe you need to update with `C-c C-i'"))
8647 (idlwave-list-load-path-shadows nil idlwave-compiled-routines
8650 (defun idlwave-list-all-load-path-shadows (&optional arg)
8651 "List the load path shadows of all routines known to IDLWAVE."
8653 (idlwave-list-load-path-shadows nil nil "globally"))
8655 (defvar idlwave-sort-prefer-buffer-info t
8656 "Internal variable used to influence `idlwave-routine-twin-compare'.")
8658 (defun idlwave-list-load-path-shadows (arg &optional special-routines loc)
8659 "List the routines which are defined multiple times.
8660 Search the information IDLWAVE has about IDL routines for multiple
8662 When SPECIAL-ROUTINES in non-nil, only look for shadows of these routines.
8664 When IDL hits a routine call which is not defined, it will search on
8665 the load path in order to find a definition. The output of this command
8666 can be used to detect possible name clashes during this process."
8667 (idlwave-routines) ; Make sure everything is loaded.
8668 (unless (or idlwave-user-catalog-routines idlwave-library-catalog-routines)
8670 "You don't have any user or library catalogs. Continue anyway? ")
8672 (let* ((routines (append idlwave-system-routines
8673 idlwave-compiled-routines
8674 idlwave-library-catalog-routines
8675 idlwave-user-catalog-routines
8676 idlwave-buffer-routines
8678 (km-prop (if (featurep 'xemacs) 'keymap 'local-map))
8679 (keymap (make-sparse-keymap))
8680 (props (list 'mouse-face 'highlight
8682 'help-echo "Mouse2: Find source"))
8683 (nroutines (length (or special-routines routines)))
8684 (step (/ nroutines 100))
8687 (idlwave-sort-prefer-buffer-info nil)
8688 routine twins dtwins twin done props1 lroutines)
8690 (if special-routines
8691 ;; Just looking for shadows of a few special routines
8692 (setq lroutines routines
8693 routines special-routines))
8695 (message "Sorting routines...")
8696 (setq routines (sort routines
8698 (string< (downcase (idlwave-make-full-name
8700 (downcase (idlwave-make-full-name
8701 (nth 2 b) (car b)))))))
8702 (message "Sorting routines...done")
8704 (define-key keymap (if (featurep 'xemacs) [(button2)] [(mouse-2)])
8707 (mouse-set-point ev)
8708 (apply 'idlwave-do-find-module
8709 (get-text-property (point) 'find-args))))
8710 (define-key keymap [(return)]
8713 (apply 'idlwave-do-find-module
8714 (get-text-property (point) 'find-args))))
8715 (message "Compiling list...( 0%%)")
8716 (with-current-buffer (get-buffer-create "*Shadows*")
8717 (setq buffer-read-only nil)
8719 (while (setq routine (pop routines))
8720 (if (= (mod (setq n (1+ n)) step) 0)
8721 (message "Compiling list...(%2d%%)" (/ (* n 100) nroutines)))
8723 ;; Get a list of all twins
8724 (setq twins (idlwave-routine-twins routine (or lroutines routines)))
8725 (if (memq routine done)
8727 (setq dtwins (idlwave-study-twins twins)))
8728 ;; Mark all twins as dealt with
8729 (setq done (append twins done))
8730 (when (or (> (length dtwins) 1)
8731 (> (idlwave-count-memq 'lib (nth 2 (car dtwins))) 1)
8732 (> (idlwave-count-memq 'user (nth 2 (car dtwins))) 1)
8733 (> (idlwave-count-memq 'buffer (nth 2 (car dtwins))) 1))
8735 (insert (format "\n%s%s"
8736 (idlwave-make-full-name (nth 2 routine)
8738 (if (eq (nth 1 routine) 'fun) "()" "")))
8739 (while (setq twin (pop dtwins))
8740 (setq props1 (append (list 'find-args
8741 (list (nth 0 routine)
8745 (idlwave-insert-source-location "\n - " twin props1))))
8746 (goto-char (point-min))
8747 (setq buffer-read-only t))
8748 (setq loc (or loc ""))
8751 (display-buffer (get-buffer "*Shadows*"))
8752 (message "%d case%s of shadowing found %s"
8753 cnt (if (= cnt 1) "" "s") loc))
8754 (message "No shadowing conflicts found %s" loc))))
8756 (defun idlwave-print-source (routine)
8757 (let* ((source (nth 3 routine))
8758 (stype (car source))
8759 (sfile (idlwave-routine-source-file source)))
8760 (if (idlwave-syslib-p sfile) (setq stype 'syslib))
8761 (if (and (eq stype 'compiled)
8762 (or (not (stringp sfile))
8763 (not (string-match "\\S-" sfile))))
8764 (setq stype 'unresolved))
8765 (princ (format " %-10s %s\n"
8767 (if sfile sfile "No source code available")))))
8769 (defun idlwave-routine-twins (entry &optional list)
8770 "Return all twin entries of ENTRY in LIST.
8771 LIST defaults to `idlwave-routines'.
8772 Twin entries are those which have the same name, type, and class.
8773 ENTRY will also be returned, as the first item of this list."
8774 (let* ((name (car entry))
8775 (type (nth 1 entry))
8776 (class (nth 2 entry))
8777 (candidates (idlwave-all-assq name (or list (idlwave-routines))))
8779 (while (setq candidate (pop candidates))
8780 (if (and (not (eq candidate entry))
8781 (eq type (nth 1 candidate))
8782 (eq class (nth 2 candidate)))
8783 (push candidate twins)))
8784 (if (setq candidate (idlwave-rinfo-assq name type class
8785 idlwave-unresolved-routines))
8786 (push candidate twins))
8787 (cons entry (nreverse twins))))
8789 (defun idlwave-study-twins (entries)
8790 "Return dangerous twins of first entry in ENTRIES.
8791 Dangerous twins are routines with same name, but in different files on
8792 the load path. If a file is in the system library and has an entry in
8793 the `idlwave-system-routines' list, we omit the latter as
8794 non-dangerous because many IDL routines are implemented as library
8795 routines, and may have been scanned."
8796 (let* ((entry (car entries))
8797 (idlwave-twin-name (car entry)) ;
8798 (type (nth 1 entry)) ; Must be bound for
8799 (idlwave-twin-class (nth 2 entry)) ; idlwave-routine-twin-compare
8801 source type type-cons file alist syslibp key)
8802 (while (setq entry (pop entries))
8804 (setq source (nth 3 entry)
8806 type-cons (cons type (nth 3 source))
8807 file (idlwave-routine-source-file source))
8809 ;; Make KEY to index entry properly
8810 (setq key (cond ((eq type 'system) type)
8811 (file (file-truename file))
8814 ;; Check for an entry in the system library
8817 (idlwave-syslib-p file))
8820 ;; If there's more than one matching entry for the same file, just
8821 ;; append the type-cons to the type list.
8822 (if (setq entry (assoc key alist))
8823 (push type-cons (nth 2 entry))
8824 (push (list key file (list type-cons)) alist)))
8826 (setq alist (nreverse alist))
8829 ;; File is in system *library* - remove any 'system entry
8830 (setq alist (delq (assq 'system alist) alist)))
8832 ;; If 'system remains and we've scanned the syslib, it's a builtin
8833 ;; (rather than a !DIR/lib/.pro file bundled as source).
8834 (when (and (idlwave-syslib-scanned-p)
8835 (setq entry (assoc 'system alist)))
8836 (setcar entry 'builtin))
8837 (sort alist 'idlwave-routine-twin-compare)))
8839 ;; FIXME: Dynamically scoped vars need to use the `idlwave-' prefix.
8841 (defmacro idlwave-xor (a b)
8845 (defun idlwave-routine-entry-compare (a b)
8846 "Compare two routine info entries for sorting.
8847 This is the general case. It first compares class, names, and type.
8848 If it turns out that A and B are twins (same name, class, and type),
8849 calls another routine which compares twins on the basis of their file
8850 names and path locations."
8851 (let ((name (car a)) (type (nth 1 a)) (class (nth 2 a)))
8853 ((not (equal (idlwave-downcase-safe class)
8854 (idlwave-downcase-safe (nth 2 b))))
8856 (cond ((null (nth 2 b)) nil)
8858 (t (string< (downcase class) (downcase (nth 2 b))))))
8859 ((not (equal (downcase name) (downcase (car b))))
8861 (string< (downcase name) (downcase (car b))))
8862 ((not (eq type (nth 1 b)))
8864 (< (if (eq type 'fun) 1 0) (if (eq (nth 1 b) 'fun) 1 0)))
8866 ;; A and B are twins - so the decision is more complicated.
8867 ;; Call twin-compare with the proper arguments.
8868 (idlwave-routine-entry-compare-twins a b)))))
8870 (defun idlwave-routine-entry-compare-twins (a b)
8871 "Compare two routine entries, under the assumption that they are twins.
8872 This basically calls `idlwave-routine-twin-compare' with the correct args."
8873 (let* ((idlwave-twin-name (car a))
8875 (idlwave-twin-class (nth 2 a)) ; used in idlwave-routine-twin-compare
8880 (afile (idlwave-routine-source-file asrc))
8881 (bfile (idlwave-routine-source-file bsrc)))
8882 (idlwave-routine-twin-compare
8884 (list (file-truename afile) afile (list atype))
8885 (list atype afile (list atype)))
8887 (list (file-truename bfile) bfile (list btype))
8888 (list btype bfile (list btype))))))
8890 ;; Bound in idlwave-study-twins,idlwave-routine-entry-compare-twins.
8891 (defvar idlwave-twin-class)
8892 (defvar idlwave-twin-name)
8894 (defun idlwave-routine-twin-compare (a b)
8895 "Compare two routine twin entries for sorting.
8896 In here, A and B are not normal routine info entries, but special
8897 lists (KEY FILENAME (TYPES...)).
8898 This expects NAME TYPE IDLWAVE-TWIN-CLASS to be bound to the right values."
8899 (let* (;; Dis-assemble entries
8900 (akey (car a)) (bkey (car b))
8901 (afile (nth 1 a)) (bfile (nth 1 b))
8902 (atypes (nth 2 a)) (btypes (nth 2 b))
8904 (asysp (memq akey '(builtin system)))
8905 (bsysp (memq bkey '(builtin system)))
8906 ;; Compiled routines?
8907 (acompp (memq 'compiled atypes))
8908 (bcompp (memq 'compiled btypes))
8910 (aunresp (or (eq akey 'unresolved)
8911 (and acompp (not afile))))
8912 (bunresp (or (eq bkey 'unresolved)
8913 (and bcompp (not bfile))))
8914 ;; Buffer info available?
8915 (abufp (memq 'buffer atypes))
8916 (bbufp (memq 'buffer btypes))
8918 (tpath-alist (idlwave-true-path-alist))
8919 (apathp (and (stringp akey)
8920 (assoc (file-name-directory akey) tpath-alist)))
8921 (bpathp (and (stringp bkey)
8922 (assoc (file-name-directory bkey) tpath-alist)))
8923 ;; How early on search path? High number means early since we
8924 ;; measure the tail of the path list
8925 (anpath (length (memq apathp tpath-alist)))
8926 (bnpath (length (memq bpathp tpath-alist)))
8927 ;; Look at file names
8928 (aname (if (stringp afile) (downcase (file-name-nondirectory afile)) ""))
8929 (bname (if (stringp bfile) (downcase (file-name-nondirectory bfile)) ""))
8930 (fname-re (if idlwave-twin-class
8931 (format "\\`%s__\\(%s\\|define\\)\\.pro\\'"
8932 (regexp-quote (downcase idlwave-twin-class))
8933 (regexp-quote (downcase idlwave-twin-name)))
8934 (format "\\`%s\\.pro" (regexp-quote (downcase idlwave-twin-name)))))
8935 ;; Is file name derived from the routine name?
8936 ;; Method file or class definition file?
8937 (anamep (string-match fname-re aname))
8938 (adefp (and idlwave-twin-class anamep
8939 (string= "define" (match-string 1 aname))))
8940 (bnamep (string-match fname-re bname))
8941 (bdefp (and idlwave-twin-class bnamep
8942 (string= "define" (match-string 1 bname)))))
8944 ;; Now: follow JD's ideas about sorting. Looks really simple now,
8945 ;; doesn't it? The difficult stuff is hidden above...
8947 ((idlwave-xor asysp bsysp) asysp) ; System entries first
8948 ((idlwave-xor aunresp bunresp) bunresp) ; Unresolved last
8949 ((and idlwave-sort-prefer-buffer-info
8950 (idlwave-xor abufp bbufp)) abufp) ; Buffers before non-buffers
8951 ((idlwave-xor acompp bcompp) acompp) ; Compiled entries
8952 ((idlwave-xor apathp bpathp) apathp) ; Library before non-library
8953 ((idlwave-xor anamep bnamep) anamep) ; Correct file names first
8954 ((and idlwave-twin-class anamep bnamep ; both file names match ->
8955 (idlwave-xor adefp bdefp)) bdefp) ; __define after __method
8956 ((> anpath bnpath) t) ; Who is first on path?
8957 (t nil)))) ; Default
8959 (defun idlwave-routine-source-file (source)
8961 (expand-file-name (nth 1 source) (nth 2 source))
8964 (defun idlwave-downcase-safe (string)
8965 "Donwcase if string, else return unchanged."
8966 (if (stringp string)
8970 (defun idlwave-count-eq (elt list)
8971 "How often is ELT in LIST?"
8972 (length (delq nil (mapcar (lambda (x) (eq x elt)) list))))
8974 (defun idlwave-count-memq (elt alist)
8975 "How often is ELT a key in ALIST?"
8976 (length (delq nil (mapcar (lambda (x) (eq (car x) elt)) alist))))
8978 (defun idlwave-syslib-p (file)
8979 "Non-nil if FILE is in the system library."
8980 (let* ((true-syslib (file-name-as-directory
8982 (expand-file-name "lib" (idlwave-sys-dir)))))
8983 (true-file (file-truename file)))
8984 (string-match (concat "^" (regexp-quote true-syslib)) true-file)))
8986 (defun idlwave-lib-p (file)
8987 "Non-nil if FILE is in the library."
8988 (let ((true-dir (file-name-directory (file-truename file))))
8989 (assoc true-dir (idlwave-true-path-alist))))
8991 (defun idlwave-path-alist-add-flag (list-entry flag)
8992 "Add a flag to the path list entry, if not set."
8993 (let ((flags (cdr list-entry)))
8994 (add-to-list 'flags flag)
8995 (setcdr list-entry flags)))
8997 (defun idlwave-path-alist-remove-flag (list-entry flag)
8998 "Remove a flag to the path list entry, if set."
8999 (let ((flags (delq flag (cdr list-entry))))
9000 (setcdr list-entry flags)))
9002 (defun idlwave-true-path-alist ()
9003 "Return `idlwave-path-alist' alist with true-names.
9004 Info is cached, but relies on the functions setting `idlwave-path-alist'
9005 to reset the variable `idlwave-true-path-alist' to nil."
9006 (or idlwave-true-path-alist
9007 (setq idlwave-true-path-alist
9008 (mapcar (lambda(x) (cons
9009 (file-name-as-directory
9011 (directory-file-name
9014 idlwave-path-alist))))
9016 (defun idlwave-syslib-scanned-p ()
9017 "Non-nil if the system lib file !DIR/lib has been scanned."
9018 (let* ((true-syslib (file-name-as-directory
9020 (expand-file-name "lib" (idlwave-sys-dir))))))
9021 (cdr (assoc true-syslib (idlwave-true-path-alist)))))
9023 ;; ----------------------------------------------------------------------------
9025 ;; Online Help display
9028 ;; ----------------------------------------------------------------------------
9030 ;; Additions for use with imenu.el and func-menu.el
9031 ;; (pop-up a list of IDL units in the current file).
9034 (defun idlwave-prev-index-position ()
9035 "Search for the previous procedure or function.
9036 Return nil if not found. For use with imenu.el."
9039 ((idlwave-find-key "\\<\\(pro\\|function\\)\\>" -1 'nomark))
9040 ;; ((idlwave-find-key idlwave-begin-unit-reg 1 'nomark)
9043 (defun idlwave-unit-name ()
9044 "Return the unit name.
9045 Assumes that point is at the beginning of the unit as found by
9046 `idlwave-prev-index-position'."
9049 (let ((begin (point)))
9051 "[a-zA-Z_][a-zA-Z0-9$_]+\\(::[a-zA-Z_][a-zA-Z0-9$_]+\\)?")
9052 (if (fboundp 'buffer-substring-no-properties)
9053 (buffer-substring-no-properties begin (point))
9054 (buffer-substring begin (point)))))
9056 (defalias 'idlwave-function-menu
9059 (require 'func-menu)
9061 (error (condition-case nil
9067 ;; Here we hack func-menu.el in order to support this new mode.
9068 ;; The latest versions of func-menu.el already have this stuff in, so
9069 ;; we hack only if it is not already there.
9070 (when (fboundp 'eval-after-load)
9071 (eval-after-load "func-menu"
9073 (or (assq 'idlwave-mode fume-function-name-regexp-alist)
9074 (not (boundp 'fume-function-name-regexp-idl)) ; avoid problems
9075 (setq fume-function-name-regexp-alist
9076 (cons '(idlwave-mode . fume-function-name-regexp-idl)
9077 fume-function-name-regexp-alist)))
9078 (or (assq 'idlwave-mode fume-find-function-name-method-alist)
9079 (not (fboundp 'fume-find-next-idl-function-name)) ; avoid problems
9080 (setq fume-find-function-name-method-alist
9081 (cons '(idlwave-mode . fume-find-next-idl-function-name)
9082 fume-find-function-name-method-alist))))))
9084 (defun idlwave-edit-in-idlde ()
9085 "Edit the current file in IDL Development environment."
9087 (start-process "idldeclient" nil
9088 idlwave-shell-explicit-file-name "-c" "-e"
9089 (buffer-file-name)))
9091 (defvar idlwave-help-use-assistant)
9092 (defun idlwave-launch-idlhelp ()
9093 "Start the IDLhelp application."
9095 (if idlwave-help-use-assistant
9096 (idlwave-help-assistant-raise)
9097 (start-process "idlhelp" nil idlwave-help-application)))
9099 ;; Menus - using easymenu.el
9100 (defvar idlwave-mode-menu-def
9102 ["PRO/FUNC menu" idlwave-function-menu t]
9104 ["Subprogram Start" idlwave-beginning-of-subprogram t]
9105 ["Subprogram End" idlwave-end-of-subprogram t]
9106 ["Block Start" idlwave-beginning-of-block t]
9107 ["Block End" idlwave-end-of-block t]
9108 ["Up Block" idlwave-backward-up-block t]
9109 ["Down Block" idlwave-down-block t]
9110 ["Skip Block Backward" idlwave-backward-block t]
9111 ["Skip Block Forward" idlwave-forward-block t])
9113 ["Subprogram" idlwave-mark-subprogram t]
9114 ["Block" idlwave-mark-block t]
9115 ["Header" idlwave-mark-doclib t])
9117 ["Indent Entire Statement" idlwave-indent-statement
9118 :active t :keys "C-u \\[indent-for-tab-command]" ]
9119 ["Indent Subprogram" idlwave-indent-subprogram t]
9120 ["(Un)Comment Region" idlwave-toggle-comment-region t]
9121 ["Continue/Split line" idlwave-split-line t]
9123 ["Toggle Auto Fill" idlwave-auto-fill-mode :style toggle
9124 :selected (symbol-value idlwave-fill-function)])
9126 ["Procedure" idlwave-procedure t]
9127 ["Function" idlwave-function t]
9128 ["Doc Header" idlwave-doc-header t]
9129 ["Log" idlwave-doc-modification t]
9131 ["Case" idlwave-case t]
9132 ["For" idlwave-for t]
9133 ["Repeat" idlwave-repeat t]
9134 ["While" idlwave-while t]
9136 ["Close Block" idlwave-close-block t])
9138 ["Complete" idlwave-complete t]
9139 ("Complete Specific"
9140 ["1 Procedure Name" (idlwave-complete 'procedure) t]
9141 ["2 Procedure Keyword" (idlwave-complete 'procedure-keyword) t]
9143 ["3 Function Name" (idlwave-complete 'function) t]
9144 ["4 Function Keyword" (idlwave-complete 'function-keyword) t]
9146 ["5 Procedure Method Name" (idlwave-complete 'procedure-method) t]
9147 ["6 Procedure Method Keyword" (idlwave-complete 'procedure-method-keyword) t]
9149 ["7 Function Method Name" (idlwave-complete 'function-method) t]
9150 ["8 Function Method Keyword" (idlwave-complete 'function-method-keyword) t]
9152 ["9 Class Name" idlwave-complete-class t]))
9154 ["Show Routine Info" idlwave-routine-info t]
9155 ["Online Context Help" idlwave-context-help t]
9157 ["Find Routine Source" idlwave-find-module t]
9158 ["Resolve Routine" idlwave-resolve (featurep 'idlw-shell)]
9160 ["Update Routine Info" idlwave-update-routine-info t]
9161 ["Rescan XML Help Catalog" idlwave-convert-xml-system-routine-info t]
9164 ["Select Catalog Directories" (idlwave-create-user-catalog-file nil) t]
9165 ["Scan Directories" (idlwave-update-routine-info '(16))
9166 (and idlwave-path-alist (not idlwave-catalog-process))]
9167 ["Scan Directories &" (idlwave-update-routine-info '(64))
9168 (and idlwave-path-alist (not idlwave-catalog-process))]
9171 ["Check Current Buffer" idlwave-list-buffer-load-path-shadows t]
9172 ["Check Compiled Routines" idlwave-list-shell-load-path-shadows t]
9173 ["Check Everything" idlwave-list-all-load-path-shadows t])
9175 ["Kill auto-created buffers" idlwave-kill-autoloaded-buffers t]
9177 ["Insert TAB character" idlwave-hard-tab t])
9180 ["Start IDL shell" idlwave-shell t]
9181 ["Edit file in IDLDE" idlwave-edit-in-idlde t]
9182 ["Launch IDL Help" idlwave-launch-idlhelp t])
9185 ["Browse IDLWAVE Group" idlwave-customize t]
9187 ["Build Full Customize Menu" idlwave-create-customize-menu
9188 (fboundp 'customize-menu-create)])
9190 ["Describe Mode" describe-mode t]
9191 ["Abbreviation List" idlwave-list-abbrevs t]
9193 ["Commentary in idlwave.el" idlwave-show-commentary t]
9194 ["Commentary in idlw-shell.el" idlwave-shell-show-commentary t]
9196 ["Info" idlwave-info t]
9198 ["Help with Topic" idlwave-help-assistant-help-with-topic
9199 idlwave-help-use-assistant]
9200 ["Launch IDL Help" idlwave-launch-idlhelp t])))
9202 (defvar idlwave-mode-debug-menu-def
9204 ["Start IDL shell" idlwave-shell t]
9205 ["Save and .RUN buffer" idlwave-shell-save-and-run
9206 (and (boundp 'idlwave-shell-automatic-start)
9207 idlwave-shell-automatic-start)]))
9209 (if (or (featurep 'easymenu) (load "easymenu" t))
9211 (easy-menu-define idlwave-mode-menu idlwave-mode-map
9212 "IDL and WAVE CL editing menu"
9213 idlwave-mode-menu-def)
9214 (easy-menu-define idlwave-mode-debug-menu idlwave-mode-map
9215 "IDL and WAVE CL editing menu"
9216 idlwave-mode-debug-menu-def)))
9218 (defun idlwave-customize ()
9219 "Call the customize function with `idlwave' as argument."
9221 ;; Try to load the code for the shell, so that we can customize it
9223 (or (featurep 'idlw-shell)
9224 (load "idlw-shell" t))
9225 (customize-browse 'idlwave))
9227 (defun idlwave-create-customize-menu ()
9228 "Create a full customization menu for IDLWAVE, insert it into the menu."
9230 (if (fboundp 'customize-menu-create)
9232 ;; Try to load the code for the shell, so that we can customize it
9234 (or (featurep 'idlw-shell)
9235 (load "idlw-shell" t))
9237 '("IDLWAVE") "Customize"
9238 `(["Browse IDLWAVE group" idlwave-customize t]
9240 ,(customize-menu-create 'idlwave)
9241 ["Set" Custom-set t]
9242 ["Save" Custom-save t]
9243 ["Reset to Current" Custom-reset-current t]
9244 ["Reset to Saved" Custom-reset-saved t]
9245 ["Reset to Standard Settings" Custom-reset-standard t]))
9246 (message "\"IDLWAVE\"-menu now contains full customization menu"))
9247 (error "Cannot expand menu (outdated version of cus-edit.el)")))
9249 (defun idlwave-show-commentary ()
9250 "Use the finder to view the file documentation from `idlwave.el'."
9252 (finder-commentary "idlwave.el"))
9254 (defun idlwave-shell-show-commentary ()
9255 "Use the finder to view the file documentation from `idlw-shell.el'."
9257 (finder-commentary "idlw-shell.el"))
9259 (defun idlwave-info ()
9260 "Read documentation for IDLWAVE in the info system."
9264 (defun idlwave-list-abbrevs (arg)
9265 "Show the code abbreviations define in IDLWAVE mode.
9266 This lists all abbrevs where the replacement text differs from the input text.
9267 These are the ones the users want to learn to speed up their writing.
9269 The function does *not* list abbrevs which replace a word with itself
9270 to call a hook. These hooks are used to change the case of words or
9271 to blink the matching `begin', and the user does not need to know them.
9273 With arg, list all abbrevs with the corresponding hook.
9275 This function was written since `list-abbrevs' looks terrible for IDLWAVE mode."
9278 (let ((table (symbol-value 'idlwave-mode-abbrev-table))
9280 str rpl func fmt (len-str 0) (len-rpl 0))
9283 (if (symbol-value sym)
9285 (setq str (symbol-name sym)
9286 rpl (symbol-value sym)
9287 func (symbol-function sym))
9289 (setq func (prin1-to-string func))
9290 (if (and (listp func) (stringp (nth 2 func)))
9291 (setq rpl (concat "EVAL: " (nth 2 func))
9294 (if (or arg (not (string= rpl str)))
9296 (setq len-str (max len-str (length str)))
9297 (setq len-rpl (max len-rpl (length rpl)))
9298 (setq abbrevs (cons (list str rpl func) abbrevs)))))))
9301 (setq abbrevs (sort abbrevs (lambda (a b) (string< (car a) (car b)))))
9303 (setq fmt (format "%%-%ds %%-%ds %%s\n" len-str len-rpl))
9304 (with-output-to-temp-buffer "*Help*"
9307 (princ "Abbreviations and Actions in IDLWAVE-Mode\n")
9308 (princ "=========================================\n\n")
9309 (princ (format fmt "KEY" "REPLACE" "HOOK"))
9310 (princ (format fmt "---" "-------" "----")))
9311 (princ "Code Abbreviations and Templates in IDLWAVE-Mode\n")
9312 (princ "================================================\n\n")
9313 (princ (format fmt "KEY" "ACTION" ""))
9314 (princ (format fmt "---" "------" "")))
9315 (dolist (list abbrevs)
9316 (setq str (car list)
9319 (princ (format fmt str rpl func)))))
9320 ;; Make sure each abbreviation uses only one display line
9321 (with-current-buffer "*Help*"
9322 (setq truncate-lines t)))
9324 ;; Add .pro files to speedbar for support, if it's loaded
9325 (eval-after-load "speedbar" '(speedbar-add-supported-extension ".pro"))
9327 ;; Set an idle timer to load the routine info.
9328 ;; Will only work on systems which support this.
9329 (or idlwave-routines (idlwave-start-load-rinfo-timer))
9332 (run-hooks 'idlwave-load-hook)
9336 ;;; idlwave.el ends here