1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
|
;;; ada-stmt.el --- an extension to Ada mode for inserting statement templates
;; Copyright(C) 1987, 1993, 1994, 1996, 1997, 1998, 1999
;; Free Software Foundation, Inc.
;; Ada Core Technologies's version: $Revision: 1.10 $
;; This file is part of GNU Emacs.
;; Authors: Daniel Pfeiffer, Markus Heritsch, Rolf Ebert <ebert@waporo.muc.de>
;; Maintainer: Emmanuel Briot <briot@gnat.com>
;; Keywords: languages, ada
;; Rolf Ebert's version: 2.26
;;; Commentary:
;;
;; put the following statement in your .emacs:
;; (require 'ada-stmt)
;;
;;; History:
;; Created May 1987.
;; Original version from V. Bowman as in ada.el of Emacs-18
;; (borrowed heavily from Mick Jordan's Modula-2 package for GNU,
;; as modified by Peter Robinson, Michael Schmidt, and Tom Perrine.)
;;
;; Sep 1993. Daniel Pfeiffer <pfeiffer@cict.fr> (DP)
;; Introduced statement.el for smaller code and user configurability.
;;
;; Nov 1993. Rolf Ebert <ebert@enpc.fr> (RE) Moved the
;; skeleton generation into this separate file. The code still is
;; essentially written by DP
;;
;; Adapted Jun 1994. Markus Heritsch
;; <Markus.Heritsch@studbox.uni-stuttgart.de> (MH)
;; added menu bar support for templates
;;
;; 1994/12/02 Christian Egli <cegli@hcsd.hac.com>
;; General cleanup and bug fixes.
;;
;; 1995/12/20 John Hutchison <hutchiso@epi.syr.ge.com>
;; made it work with skeleton.el from Emacs-19.30. Several
;; enhancements and bug fixes.
;; BUGS:
;;;> I have the following suggestions for the function template: 1) I
;;;> don't want it automatically assigning it a name for the return variable. I
;;;> never want it to be called "Result" because that is nondescriptive. If you
;;;> must define a variable, give me the ability to specify its name.
;;;>
;;;> 2) You do not provide a type for variable 'Result'. Its type is the same
;;;> as the function's return type, which the template knows, so why force me
;;;> to type it in?
;;;>
;;;It would be nice if one could configure such layout details separately
;;;without patching the LISP code. Maybe the metalanguage used in ada-stmt.el
;;;could be taken even further, providing the user with some nice syntax
;;;for describing layout. Then my own hacks would survive the next
;;;update of the package :-)
;;; Code:
(eval-when-compile
(condition-case nil (require 'skeleton)
(error nil)))
(require 'easymenu)
(defun ada-stmt-add-to-ada-menu ()
"Add a new submenu to the Ada menu."
(interactive)
(let ((menu '(["Header" ada-header t]
["-" nil nil]
["Package Body" ada-package-body t]
["Package Spec" ada-package-spec t]
["Function Spec" ada-function-spec t]
["Procedure Spec" ada-procedure-spec t]
["Proc/func Body" ada-subprogram-body t]
["Task Body" ada-task-body t]
["Task Spec" ada-task-spec t]
["Declare Block" ada-declare-block t]
["Exception Block" ada-exception-block t]
["--" nil nil]
["Entry" ada-entry t]
["Entry family" ada-entry-family t]
["Select" ada-select t]
["Accept" ada-accept t]
["Or accept" ada-or-accep t]
["Or delay" ada-or-delay t]
["Or terminate" ada-or-terminate t]
["---" nil nil]
["Type" ada-type t]
["Private" ada-private t]
["Subtype" ada-subtype t]
["Record" ada-record t]
["Array" ada-array t]
["----" nil nil]
["If" ada-if t]
["Else" ada-else t]
["Elsif" ada-elsif t]
["Case" ada-case t]
["-----" nil nil]
["While Loop" ada-while-loop t]
["For Loop" ada-for-loop t]
["Loop" ada-loop t]
["------" nil nil]
["Exception" ada-exception t]
["Exit" ada-exit t]
["When" ada-when t])))
(if ada-xemacs
(funcall (symbol-function 'add-submenu)
'("Ada") (append (list "Statements"
:included '(string= mode-name "Ada"))
menu))
(define-key-after (lookup-key ada-mode-map [menu-bar Ada]) [Statements]
(list 'menu-item
"Statements"
(easy-menu-create-menu "Statements" menu)
:visible '(string= mode-name "Ada"))
t))))
(defun ada-func-or-proc-name ()
;; Get the name of the current function or procedure."
(save-excursion
(let ((case-fold-search t))
(if (re-search-backward ada-procedure-start-regexp nil t)
(buffer-substring (match-beginning 2) (match-end 2))
"NAME?"))))
(defvar ada-template-map
(let ((map (make-sparse-keymap)))
(define-key map "h" 'ada-header)
(define-key map "\C-a" 'ada-array)
(define-key map "b" 'ada-exception-block)
(define-key map "d" 'ada-declare-block)
(define-key map "c" 'ada-case)
(define-key map "\C-e" 'ada-elsif)
(define-key map "e" 'ada-else)
(define-key map "\C-k" 'ada-package-spec)
(define-key map "k" 'ada-package-body)
(define-key map "\C-p" 'ada-procedure-spec)
(define-key map "p" 'ada-subprogram-body)
(define-key map "\C-f" 'ada-function-spec)
(define-key map "f" 'ada-for-loop)
(define-key map "i" 'ada-if)
(define-key map "l" 'ada-loop)
(define-key map "\C-r" 'ada-record)
(define-key map "\C-s" 'ada-subtype)
(define-key map "S" 'ada-tabsize)
(define-key map "\C-t" 'ada-task-spec)
(define-key map "t" 'ada-task-body)
(define-key map "\C-y" 'ada-type)
(define-key map "\C-v" 'ada-private)
(define-key map "u" 'ada-use)
(define-key map "\C-u" 'ada-with)
(define-key map "\C-w" 'ada-when)
(define-key map "w" 'ada-while-loop)
(define-key map "\C-x" 'ada-exception)
(define-key map "x" 'ada-exit)
map)
"Keymap used in Ada mode for smart template operations.")
(define-key ada-mode-map "\C-ct" ada-template-map)
;;; ---- statement skeletons ------------------------------------------
(define-skeleton ada-array
"Insert array type definition.
Prompt for component type and index subtypes."
()
"array (" ("index definition: " str ", " ) -2 ") of " _ ?\;)
(define-skeleton ada-case
"Build skeleton case statement.
Prompt for the selector expression. Also builds the first when clause."
"[selector expression]: "
"case " str " is" \n
> "when " ("discrete choice: " str " | ") -3 " =>" \n
> _ \n
< < "end case;")
(define-skeleton ada-when
"Start a case statement alternative with a when clause."
()
< "when " ("discrete choice: " str " | ") -3 " =>" \n
>)
(define-skeleton ada-declare-block
"Insert a block with a declare part.
Indent for the first declaration."
"[block name]: "
< str & ?: & \n
> "declare" \n
> _ \n
< "begin" \n
> \n
< "end " str | -1 ?\;)
(define-skeleton ada-exception-block
"Insert a block with an exception part.
Indent for the first line of code."
"[block name]: "
< str & ?: & \n
> "begin" \n
> _ \n
< "exception" \n
> \n
< "end " str | -1 ?\;)
(define-skeleton ada-exception
"Insert an indented exception part into a block."
()
< "exception" \n
>)
(define-skeleton ada-exit-1
"Insert then exit condition of the exit statement, prompting for condition."
"[exit condition]: "
"when " str | -5)
(define-skeleton ada-exit
"Insert an exit statement, prompting for loop name and condition."
"[name of loop to exit]: "
"exit " str & ?\ (ada-exit-1) | -1 ?\;)
;;;###autoload
(defun ada-header ()
"Insert a descriptive header at the top of the file."
(interactive "*")
(save-excursion
(goto-char (point-min))
(if (fboundp 'make-header)
(funcall (symbol-function 'make-header))
(ada-header-tmpl))))
(define-skeleton ada-header-tmpl
"Insert a comment block containing the module title, author, etc."
"[Description]: "
"-- -*- Mode: Ada -*-"
"\n" ada-fill-comment-prefix "Filename : " (buffer-name)
"\n" ada-fill-comment-prefix "Description : " str
"\n" ada-fill-comment-prefix "Author : " (user-full-name)
"\n" ada-fill-comment-prefix "Created On : " (current-time-string)
"\n" ada-fill-comment-prefix "Last Modified By: ."
"\n" ada-fill-comment-prefix "Last Modified On: ."
"\n" ada-fill-comment-prefix "Update Count : 0"
"\n" ada-fill-comment-prefix "Status : Unknown, Use with caution!"
"\n")
(define-skeleton ada-display-comment
"Inserts three comment lines, making a display comment."
()
"--\n" ada-fill-comment-prefix _ "\n--")
(define-skeleton ada-if
"Insert skeleton if statment, prompting for a boolean-expression."
"[condition]: "
"if " str " then" \n
> _ \n
< "end if;")
(define-skeleton ada-elsif
"Add an elsif clause to an if statement,
prompting for the boolean-expression."
"[condition]: "
< "elsif " str " then" \n
>)
(define-skeleton ada-else
"Add an else clause inside an if-then-end-if clause."
()
< "else" \n
>)
(define-skeleton ada-loop
"Insert a skeleton loop statement. The exit statement is added by hand."
"[loop name]: "
< str & ?: & \n
> "loop" \n
> _ \n
< "end loop " str | -1 ?\;)
(define-skeleton ada-for-loop-prompt-variable
"Prompt for the loop variable."
"[loop variable]: "
str)
(define-skeleton ada-for-loop-prompt-range
"Prompt for the loop range."
"[loop range]: "
str)
(define-skeleton ada-for-loop
"Build a skeleton for-loop statement, prompting for the loop parameters."
"[loop name]: "
< str & ?: & \n
> "for "
(ada-for-loop-prompt-variable)
" in "
(ada-for-loop-prompt-range)
" loop" \n
> _ \n
< "end loop " str | -1 ?\;)
(define-skeleton ada-while-loop-prompt-entry-condition
"Prompt for the loop entry condition."
"[entry condition]: "
str)
(define-skeleton ada-while-loop
"Insert a skeleton while loop statement."
"[loop name]: "
< str & ?: & \n
> "while "
(ada-while-loop-prompt-entry-condition)
" loop" \n
> _ \n
< "end loop " str | -1 ?\;)
(define-skeleton ada-package-spec
"Insert a skeleton package specification."
"[package name]: "
"package " str " is" \n
> _ \n
< "end " str ?\;)
(define-skeleton ada-package-body
"Insert a skeleton package body -- includes a begin statement."
"[package name]: "
"package body " str " is" \n
> _ \n
; < "begin" \n
< "end " str ?\;)
(define-skeleton ada-private
"Undent and start a private section of a package spec. Reindent."
()
< "private" \n
>)
(define-skeleton ada-function-spec-prompt-return
"Prompts for function result type."
"[result type]: "
str)
(define-skeleton ada-function-spec
"Insert a function specification. Prompts for name and arguments."
"[function name]: "
"function " str
" (" ("[parameter_specification]: " str "; " ) -2 ")"
" return "
(ada-function-spec-prompt-return)
";" \n )
(define-skeleton ada-procedure-spec
"Insert a procedure specification, prompting for its name and arguments."
"[procedure name]: "
"procedure " str
" (" ("[parameter_specification]: " str "; " ) -2 ")"
";" \n )
(define-skeleton ada-subprogram-body
"Insert frame for subprogram body.
Invoke right after `ada-function-spec' or `ada-procedure-spec'."
()
;; Remove `;' from subprogram decl
(save-excursion
(let ((pos (1+ (point))))
(ada-search-ignore-string-comment ada-subprog-start-re t nil)
(when (ada-search-ignore-string-comment "(" nil pos t 'search-forward)
(backward-char 1)
(forward-sexp 1)))
(if (looking-at ";")
(delete-char 1)))
" is" \n
_ \n
< "begin" \n
\n
< "exception" \n
"when others => null;" \n
< < "end "
(ada-func-or-proc-name)
";" \n)
(define-skeleton ada-separate
"Finish a body stub with `separate'."
()
> "separate;" \n
<)
;(define-skeleton ada-with
; "Inserts a with clause, prompting for the list of units depended upon."
; "[list of units depended upon]: "
; "with " str ?\;)
;(define-skeleton ada-use
; "Inserts a use clause, prompting for the list of packages used."
; "[list of packages used]: "
; "use " str ?\;)
(define-skeleton ada-record
"Insert a skeleton record type declaration."
()
"record" \n
> _ \n
< "end record;")
(define-skeleton ada-subtype
"Start insertion of a subtype declaration, prompting for the subtype name."
"[subtype name]: "
"subtype " str " is " _ ?\;
(not (message "insert subtype indication.")))
(define-skeleton ada-type
"Start insertion of a type declaration, prompting for the type name."
"[type name]: "
"type " str ?\(
("[discriminant specs]: " str " ")
| (backward-delete-char 1) | ?\)
" is "
(not (message "insert type definition.")))
(define-skeleton ada-task-body
"Insert a task body, prompting for the task name."
"[task name]: "
"task body " str " is\n"
"begin\n"
> _ \n
< "end " str ";" )
(define-skeleton ada-task-spec
"Insert a task specification, prompting for the task name."
"[task name]: "
"task " str
" (" ("[discriminant]: " str "; ") ") is\n"
> "entry " _ \n
<"end " str ";" )
(define-skeleton ada-get-param1
"Prompt for arguments and if any enclose them in brackets."
()
("[parameter_specification]: " str "; " ) & -2 & ")")
(define-skeleton ada-get-param
"Prompt for arguments and if any enclose them in brackets."
()
" ("
(ada-get-param1) | -2)
(define-skeleton ada-entry
"Insert a task entry, prompting for the entry name."
"[entry name]: "
"entry " str
(ada-get-param)
";" \n)
(define-skeleton ada-entry-family-prompt-discriminant
"Insert a entry specification, prompting for the entry name."
"[discriminant name]: "
str)
(define-skeleton ada-entry-family
"Insert a entry specification, prompting for the entry name."
"[entry name]: "
"entry " str
" (" (ada-entry-family-prompt-discriminant) ")"
(ada-get-param)
";" \n)
(define-skeleton ada-select
"Insert a select block."
()
"select\n"
> _ \n
< "end select;")
(define-skeleton ada-accept-1
"Insert a condition statement, prompting for the condition name."
"[condition]: "
"when " str | -5 )
(define-skeleton ada-accept-2
"Insert an accept statement, prompting for the name and arguments."
"[accept name]: "
> "accept " str
(ada-get-param)
;;; " (" ("[parameter_specification]: " str "; ") -2 ")"
" do" \n
> _ \n
< "end " str ";" )
(define-skeleton ada-accept
"Insert an accept statement (prompt for condition, name and arguments)."
()
> (ada-accept-1) & " =>\n"
(ada-accept-2))
(define-skeleton ada-or-accept
"Insert an or statement, prompting for the condition name."
()
< "or\n"
(ada-accept))
(define-skeleton ada-or-delay
"Insert a delay statement, prompting for the delay value."
"[delay value]: "
< "or\n"
> "delay " str ";")
(define-skeleton ada-or-terminate
"Insert a terminate statement."
()
< "or\n"
> "terminate;")
;; ----
(defun ada-adjust-case-skeleton ()
"Adjust the case of the text inserted by a skeleton."
(save-excursion
(let ((aa-end (point)))
(ada-adjust-case-region
(progn (goto-char (symbol-value 'beg)) (forward-word -1) (point))
(goto-char aa-end)))))
(defun ada-stmt-mode-hook ()
(set (make-local-variable 'skeleton-further-elements)
'((< '(backward-delete-char-untabify
(min ada-indent (current-column))))))
(add-hook 'skeleton-end-hook
'ada-adjust-case-skeleton nil t)
(ada-stmt-add-to-ada-menu))
(add-hook 'ada-mode-hook 'ada-stmt-mode-hook)
(provide 'ada-stmt)
;;; ada-stmt.el ends here
|