1 ;;; ada-prj.el --- GUI editing of project files for the ada-mode
3 ;; Copyright (C) 1998-2014 Free Software Foundation, Inc.
5 ;; Author: Emmanuel Briot <briot@gnat.com>
6 ;; Maintainer: Stephen Leake <stephen_leake@stephe-leake.org>
7 ;; Keywords: languages, ada, project file
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;;; This package provides a set of functions to easily edit the project
28 ;;; files used by the ada-mode.
29 ;;; The only function publicly available here is `ada-customize'.
30 ;;; See the documentation of the Ada mode for more information on the project
32 ;;; Internally, a project file is represented as a property list, with each
33 ;;; field of the project file matching one property of the list.
42 ;; ----- Requirements -----------------------------------------------------
50 ;; ----- Buffer local variables -------------------------------------------
52 (defvar ada-prj-current-values nil
53 "Hold the current value of the fields, This is a property list.")
54 (make-variable-buffer-local 'ada-prj-current-values
)
56 (defvar ada-prj-default-values nil
57 "Hold the default value for the fields, This is a property list.")
58 (make-variable-buffer-local 'ada-prj-default-values
)
60 (defvar ada-prj-ada-buffer nil
61 "Indicates what Ada source file was being edited.")
63 (defvar ada-old-cross-prefix nil
64 "The cross-prefix associated with the currently loaded runtime library.")
67 ;; ----- Functions --------------------------------------------------------
70 "Open a new project file."
73 (if (and ada-prj-default-project-file
74 (not (string= ada-prj-default-project-file
"")))
75 ada-prj-default-project-file
77 (filename (read-file-name "Project file: "
82 (if (not (string= (file-name-extension filename t
) ".adp"))
83 (error "File name extension for project files must be .adp"))
85 (ada-customize nil filename
)))
87 (defun ada-prj-edit ()
88 "Editing the project file associated with the current Ada buffer.
89 If there is none, opens a new project file."
91 (if ada-prj-default-project-file
95 (defun ada-prj-initialize-values (symbol _ada-buffer filename
)
96 "Set SYMBOL to the property list of the project file FILENAME.
97 If FILENAME is null, read the file associated with ADA-BUFFER.
98 If no project file is found, return the default values."
99 ;; FIXME: rationalize arguments; make ada-buffer optional?
101 (not (string= filename
""))
102 (assoc filename ada-xref-project-files
))
103 (set symbol
(copy-sequence (cdr (assoc filename ada-xref-project-files
))))
105 ;; Set default values (except for the file name if this was given
107 (set symbol
(ada-default-prj-properties))
108 (if (and filename
(not (string= filename
"")))
109 (set symbol
(plist-put (eval symbol
) 'filename filename
)))
113 (defun ada-prj-save-specific-option (field)
114 "Return the string to print in the project file to save FIELD.
115 If the current value of FIELD is the default value, return an empty string."
116 (if (string= (plist-get ada-prj-current-values field
)
117 (plist-get ada-prj-default-values field
))
119 (concat (symbol-name field
)
120 "=" (plist-get ada-prj-current-values field
) "\n")))
122 (defun ada-prj-save ()
123 "Save the edited project file."
125 (let ((file-name (or (plist-get ada-prj-current-values
'filename
)
126 (read-file-name "Save project as: ")))
131 ;; Save the fields that do not depend on the current buffer
132 ;; only if they are different from the default value
134 (ada-prj-save-specific-option 'comp_opt
)
135 (ada-prj-save-specific-option 'bind_opt
)
136 (ada-prj-save-specific-option 'link_opt
)
137 (ada-prj-save-specific-option 'gnatmake_opt
)
138 (ada-prj-save-specific-option 'gnatfind_opt
)
139 (ada-prj-save-specific-option 'cross_prefix
)
140 (ada-prj-save-specific-option 'remote_machine
)
141 (ada-prj-save-specific-option 'debug_cmd
)
143 ;; Always save the fields that depend on the current buffer
144 "main=" (plist-get ada-prj-current-values
'main
) "\n"
145 "build_dir=" (plist-get ada-prj-current-values
'build_dir
) "\n"
146 (ada-prj-set-list "check_cmd"
147 (plist-get ada-prj-current-values
'check_cmd
)) "\n"
148 (ada-prj-set-list "make_cmd"
149 (plist-get ada-prj-current-values
'make_cmd
)) "\n"
150 (ada-prj-set-list "comp_cmd"
151 (plist-get ada-prj-current-values
'comp_cmd
)) "\n"
152 (ada-prj-set-list "run_cmd"
153 (plist-get ada-prj-current-values
'run_cmd
)) "\n"
154 (ada-prj-set-list "src_dir"
155 (plist-get ada-prj-current-values
'src_dir
)
157 (ada-prj-set-list "obj_dir"
158 (plist-get ada-prj-current-values
'obj_dir
)
160 (ada-prj-set-list "debug_pre_cmd"
161 (plist-get ada-prj-current-values
'debug_pre_cmd
))
163 (ada-prj-set-list "debug_post_cmd"
164 (plist-get ada-prj-current-values
'debug_post_cmd
))
168 (find-file file-name
)
172 ;; kill the project buffer
175 ;; kill the editor buffer
176 (kill-buffer "*Edit Ada Mode Project*")
178 ;; automatically set the new project file as the active one
179 (set 'ada-prj-default-project-file file-name
)
181 ;; force Emacs to reread the project files
182 (ada-reread-prj-file file-name
)
186 (defun ada-prj-load-from-file (symbol)
187 "Load SYMBOL value from file.
188 One item per line should be found in the file."
190 (let ((file (read-file-name "File name: " nil nil t
))
191 (buffer (current-buffer))
196 (goto-char (point-min))
198 (set 'line
(buffer-substring-no-properties (point) (point-at-eol)))
199 (add-to-list 'list line
)
203 (set 'ada-prj-current-values
204 (plist-put ada-prj-current-values
206 (append (plist-get ada-prj-current-values symbol
)
208 (ada-prj-display-page 2)))
210 (defun ada-prj-subdirs-of (dir)
211 "Return a list of all the subdirectories of DIR, recursively."
212 (let ((subdirs (directory-files dir t
"^[^.].*"))
213 (dirlist (list dir
)))
215 (if (file-directory-p (car subdirs
))
216 (let ((sub (ada-prj-subdirs-of (car subdirs
))))
218 (set 'dirlist
(append sub dirlist
)))))
219 (set 'subdirs
(cdr subdirs
)))
222 (defun ada-prj-load-directory (field &optional file-name
)
223 "Append to FIELD in the current project the subdirectories of FILE-NAME.
224 If FILE-NAME is nil, ask the user for the name."
226 ;; Do not use an external dialog for this, since it wouldn't allow
227 ;; the user to select a directory
228 (let ((use-dialog-box nil
))
230 (set 'file-name
(read-directory-name "Root directory: " nil nil t
))))
232 (set 'ada-prj-current-values
233 (plist-put ada-prj-current-values
235 (append (plist-get ada-prj-current-values field
)
236 (reverse (ada-prj-subdirs-of
237 (expand-file-name file-name
))))))
238 (ada-prj-display-page 2))
240 (defun ada-prj-display-page (tab-num)
241 "Display page TAB-NUM in the notebook.
242 The current buffer must be the project editing buffer."
244 (let ((inhibit-read-only t
))
247 ;; Widget support in Emacs 21 requires that we clear the buffer first
248 (if (and (not (featurep 'xemacs
)) (>= emacs-major-version
21))
250 (setq widget-field-new nil
251 widget-field-list nil
)
252 (mapc (lambda (x) (delete-overlay x
)) (car (overlay-lists)))
253 (mapc (lambda (x) (delete-overlay x
)) (cdr (overlay-lists)))))
257 (widget-insert "\n Project configuration.\n
258 ___________ ____________ ____________ ____________ ____________\n / ")
259 (widget-create 'push-button
:notify
260 (lambda (&rest _dummy
) (ada-prj-display-page 1)) "General")
261 (widget-insert " \\ / ")
262 (widget-create 'push-button
:notify
263 (lambda (&rest _dummy
) (ada-prj-display-page 2)) "Paths")
264 (widget-insert " \\ / ")
265 (widget-create 'push-button
:notify
266 (lambda (&rest _dummy
) (ada-prj-display-page 3)) "Switches")
267 (widget-insert " \\ / ")
268 (widget-create 'push-button
:notify
269 (lambda (&rest _dummy
) (ada-prj-display-page 4)) "Ada Menu")
270 (widget-insert " \\ / ")
271 (widget-create 'push-button
:notify
272 (lambda (&rest _dummy
) (ada-prj-display-page 5)) "Debugger")
273 (widget-insert " \\\n")
275 ;; Display the currently selected page
280 ;; First page (General)
283 (widget-insert "/ \\/______________\\/______________\\/______________\\/______________\\\n")
285 (widget-insert "Project file name:\n")
286 (widget-insert (plist-get ada-prj-current-values
'filename
))
287 (widget-insert "\n\n")
288 (ada-prj-field 'casing
"Casing Exceptions"
289 "List of files that contain casing exception
290 dictionaries. All these files contain one
291 identifier per line, with a special casing.
292 The first file has the highest priority."
294 (mapconcat (lambda(x)
296 (ada-xref-get-project-field 'casing
)
299 (ada-prj-field 'main
"Executable file name"
300 "Name of the executable generated when you
301 compile your application. This should include
302 the full directory name, using ${build_dir} if
304 (ada-prj-field 'build_dir
"Build directory"
305 "Reference directory for relative paths in
306 src_dir and obj_dir below. This is also the directory
307 where the compilation is done.")
308 (ada-prj-field 'remote_machine
"Name of the remote machine (if any)"
309 "If you want to remotely compile, debug and
310 run your application, specify the name of a
311 remote machine here. This capability requires
312 the 'rsh' protocol on the remote machine.")
313 (ada-prj-field 'cross_prefix
"Prefix used in for the cross tool chain"
314 "When working on multiple cross targets, it is
315 most convenient to specify the prefix of the
316 tool chain here. For instance, on PowerPc
317 vxworks, you would enter 'powerpc-wrs-vxworks-'.
318 To use JGNAT, enter 'j'.")
323 ;; Second page (Paths)
326 (if (not (equal (plist-get ada-prj-current-values
'cross_prefix
)
327 ada-old-cross-prefix
))
329 (setq ada-old-cross-prefix
330 (plist-get ada-prj-current-values
'cross_prefix
))
331 (ada-initialize-runtime-library ada-old-cross-prefix
)))
334 (widget-insert "/_____________\\/ \\/______________\\/______________\\/______________\\\n")
335 (ada-prj-field 'src_dir
"Source directories"
336 "Enter the list of directories where your Ada
337 sources can be found. These directories will be
338 used for the cross-references and for the default
339 compilation commands.
340 Note that src_dir includes both the build directory
341 and the standard runtime."
343 (mapconcat (lambda(x)
345 ada-xref-runtime-library-specs-path
348 (widget-insert "\n\n")
350 (ada-prj-field 'obj_dir
"Object directories"
351 "Enter the list of directories where the GNAT
352 library files (ALI files) can be found. These
353 files are used for cross-references and by the
355 Note that obj_dir includes both the build directory
356 and the standard runtime."
358 (mapconcat (lambda(x)
360 ada-xref-runtime-library-ali-path
363 (widget-insert "\n\n")
367 ;; Third page (Switches)
370 (widget-insert "/_____________\\/______________\\/ \\/______________\\/______________\\\n")
371 (ada-prj-field 'comp_opt
"Switches for the compiler"
372 "These switches are used in the default
373 compilation commands, both for compiling a
374 single file and rebuilding the whole project")
375 (ada-prj-field 'bind_opt
"Switches for the binder"
376 "These switches are used in the default build
377 command and are passed to the binder")
378 (ada-prj-field 'link_opt
"Switches for the linker"
379 "These switches are used in the default build
380 command and are passed to the linker")
381 (ada-prj-field 'gnatmake_opt
"Switches for gnatmake"
382 "These switches are used in the default gnatmake
384 (ada-prj-field 'gnatfind_opt
"Switches for gnatfind"
385 "The command gnatfind is run every time the Ada/Goto/List_References menu.
386 You should for instance add -a if you are working in an environment
387 where most ALI files are write-protected, since otherwise they get
388 ignored by gnatfind and you don't see the references within.")
395 (widget-insert "/_____________\\/______________\\/______________\\/ \\/______________\\\n")
397 "All the fields below can use variable substitution. The syntax is ${name},
398 where name is the name that appears after the Help buttons in this buffer. As
399 a special case, ${current} is replaced with the name of the file currently
400 edited, with directory name but no extension, whereas ${full_current} is
401 replaced with the name of the current file with directory name and
404 "The environment variables ADA_INCLUDE_PATH and ADA_OBJECTS_PATH are set to
405 ${src_dir} and ${obj_dir} before running the compilation commands, so that you
406 don't need to specify the -aI and -aO switches on the command line\n")
408 "You can reference any environment variable using the same ${...} syntax as
409 above, and put the name of the variable between the quotes.\n\n")
410 (ada-prj-field 'check_cmd
411 "Check syntax of a single file (menu Ada->Check File)"
412 "This command is run to check the syntax and semantics of a file.
413 The file name is added at the end of this command." t
)
414 (ada-prj-field 'comp_cmd
415 "Compiling a single file (menu Ada->Compile File)"
416 "This command is run when the recompilation
417 of a single file is needed. The file name is
418 added at the end of this command." t
)
419 (ada-prj-field 'make_cmd
"Rebuilding the whole project (menu Ada->Build)"
420 "This command is run when you want to rebuild
421 your whole application. It is never issues
422 automatically and you will need to ask for it.
423 If remote_machine has been set, this command
424 will be executed on the remote machine." t
)
425 (ada-prj-field 'run_cmd
"Running the application (menu Ada->Run)"
426 "This command specifies how to run the
427 application, including any switch you need to
428 specify. If remote_machine has been set, this
429 command will be executed on the remote host." t
)
436 (widget-insert "/_____________\\/______________\\/______________\\/______________\\/ \\\n")
437 (ada-prj-field 'debug_pre_cmd
"Commands to execute before launching the
439 "The following commands are executed one after the other before starting
440 the debugger. These can be used to set up your environment." t
)
442 (ada-prj-field 'debug_cmd
"Debugging the application"
443 "Specifies how to debug the application, possibly
444 remotely if remote_machine has been set. We
445 recommend the following debuggers:
448 > ddd --tty -fullname -toolbar")
450 (ada-prj-field 'debug_post_cmd
"Commands to execute in the debugger"
451 "The following commands are executed one in the debugger once it has been
452 started. These can be used to initialize the debugger, for instance to
453 connect to the target when working with cross-environments" t
)
459 (widget-insert "______________________________________________________________________\n\n ")
460 (widget-create 'push-button
461 :notify
(lambda (&rest _ignore
)
462 (setq ada-prj-current-values
(ada-default-prj-properties))
463 (ada-prj-display-page 1))
464 "Reset to Default Values")
466 (widget-create 'push-button
:notify
(lambda (&rest _ignore
) (kill-buffer nil
))
469 (widget-create 'push-button
:notify
(lambda (&rest _ignore
) (ada-prj-save))
471 (widget-insert "\n\n")
475 (beginning-of-buffer))
479 (defun ada-customize (&optional new-file filename
)
480 "Edit the project file associated with the current buffer.
481 If there is none or NEW-FILE is non-nil, make a new one.
482 If FILENAME is given, edit that file."
485 (let ((ada-buffer (current-buffer))
486 (inhibit-read-only t
))
488 ;; We can only edit interactively the standard ada-mode project files. If
489 ;; the user is using other formats for the project file (through hooks in
490 ;; `ada-load-project-hook', we simply edit the file
492 (if (and (not new-file
)
493 (or ada-prj-default-project-file filename
)
494 (string= (file-name-extension
495 (or filename ada-prj-default-project-file
))
498 (find-file ada-prj-default-project-file
)
499 (add-hook 'after-save-hook
'ada-reread-prj-file t t
)
503 (ada-reread-prj-file filename
)
504 (if (not (string= ada-prj-default-project-file
""))
505 (ada-reread-prj-file ada-prj-default-project-file
)
506 (ada-reread-prj-file)))
508 (switch-to-buffer "*Edit Ada Mode Project*")
510 (ada-prj-initialize-values 'ada-prj-current-values
512 ada-prj-default-project-file
)
514 (set (make-local-variable 'ada-prj-ada-buffer
) ada-buffer
)
517 (let ((map (make-sparse-keymap)))
518 (set-keymap-parent map custom-mode-map
)
519 (define-key map
"\C-x\C-s" 'ada-prj-save
)
522 ;; FIXME: Not sure if this works!!
523 (set (make-local-variable 'widget-keymap
)
524 (let ((map (make-sparse-keymap)))
525 (set-keymap-parent map widget-keymap
)
526 (define-key map
"\C-x\C-s" 'ada-prj-save
)
529 (set (make-local-variable 'ada-old-cross-prefix
)
530 (ada-xref-get-project-field 'cross-prefix
))
532 (ada-prj-display-page 1)
535 ;; ---------------- Utilities --------------------------------
537 (defun ada-prj-set-list (string ada-list
&optional is-directory
)
538 "Prepend STRING to strings in ADA-LIST, return new-line separated string.
539 If IS-DIRECTORY is non-nil, each element of ADA-LIST is explicitly
540 converted to a directory name."
542 (mapconcat (lambda (x) (concat string
"="
544 (file-name-as-directory x
)
549 (defun ada-prj-field-modified (widget &rest _dummy
)
550 "Callback for modification of WIDGET.
551 Remaining args DUMMY are ignored.
552 Save the change in `ada-prj-current-values' so that selecting
553 another page and coming back keeps the new value."
554 (set 'ada-prj-current-values
555 (plist-put ada-prj-current-values
556 (widget-get widget
':prj-field
)
557 (widget-value widget
))))
559 (defun ada-prj-display-help (widget _widget-modified event
)
560 "Callback for help button in WIDGET.
561 Parameters WIDGET-MODIFIED, EVENT match :notify for the widget."
562 (let ((text (widget-get widget
'prj-help
)))
564 ;; If we have a mouse-event, popup a menu
565 (widget-choose "Help"
566 (mapcar (lambda (a) (cons a t
))
567 (split-string text
"\n"))
569 ;; Else display the help string just before the next group of
571 (momentary-string-display
572 (concat "*****Help*****\n" text
"\n**************\n")
575 (defun ada-prj-show-value (widget _widget-modified event
)
576 "Show the current field value in WIDGET.
577 Parameters WIDGET-MODIFIED, EVENT match :notify for the widget."
578 (let* ((field (widget-get widget
':prj-field
))
579 (value (plist-get ada-prj-current-values field
))
580 (inhibit-read-only t
)
583 ;; If the other widget is already visible, delete it
584 (if (widget-get widget
'prj-other-widget
)
586 (widget-delete (widget-get widget
'prj-other-widget
))
587 (widget-put widget
'prj-other-widget nil
)
588 (widget-put widget
':prj-field field
)
589 (widget-default-value-set widget
"Show Value")
594 (mouse-set-point event
)
597 (setq w
(widget-create 'editable-list
598 :entry-format
"%i%d %v"
599 :notify
'ada-prj-field-modified
600 :help-echo
(widget-get widget
'prj-help
)
602 (list 'editable-field
:keymap widget-keymap
)))
603 (widget-put widget
'prj-other-widget w
)
604 (widget-put w
':prj-field field
)
605 (widget-put widget
':prj-field field
)
606 (widget-default-value-set widget
"Hide Value")
612 (defun ada-prj-field (field text help-text
&optional is-list is-paths after-text
)
613 "Create a widget to edit FIELD in the current buffer.
614 TEXT is a short explanation of what the field means, whereas HELP-TEXT
615 is the text displayed when the user pressed the help button.
616 If IS-LIST is non-nil, the field contains a list. Otherwise, it contains
618 If IS-PATHS is true, some special buttons are added to load paths,...
619 AFTER-TEXT is inserted just after the widget."
620 (let ((value (plist-get ada-prj-current-values field
))
621 (inhibit-read-only t
)
625 (if is-list
'() "")))
628 (move-to-column 54 t
)
629 (widget-put (widget-create 'push-button
630 :notify
'ada-prj-display-help
634 (widget-insert (concat " (" (symbol-name field
) ")\n"))
637 (widget-create 'push-button
639 (list 'lambda
'(&rest dummy
) '(interactive)
640 (list 'ada-prj-load-from-file
641 (list 'quote field
)))
644 (widget-create 'push-button
646 (list 'lambda
'(&rest dummy
) '(interactive)
647 (list 'ada-prj-load-directory
648 (list 'quote field
)))
649 "Load Recursive Directory")
650 (widget-insert "\n ${build_dir}\n")))
654 (if (< (length value
) 15)
655 (widget-create 'editable-list
656 :entry-format
"%i%d %v"
657 :notify
'ada-prj-field-modified
660 (list 'editable-field
:keymap widget-keymap
))
662 (let ((w (widget-create 'push-button
663 :notify
'ada-prj-show-value
666 (widget-put w
'prj-help help-text
)
667 (widget-put w
'prj-other-widget nil
)
670 (widget-create 'editable-field
672 :notify
'ada-prj-field-modified
674 :keymap widget-keymap
676 (widget-put widget
':prj-field field
)
678 (widget-insert after-text
))
685 ;;; ada-prj.el ends here