123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486 |
- (require 'skeleton nil t)
- (require 'easymenu)
- (require 'ada-mode)
- (defun ada-func-or-proc-name ()
- "Return 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)
- (match-string 5)
- "NAME?"))))
- (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 ?\
- (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 statement, 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
- < "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'."
- ()
-
- (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-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)
- " 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 accept alternative, prompting for the condition name."
- ()
- < "or\n"
- (ada-accept))
- (define-skeleton ada-or-delay
- "Insert a delay alternative, prompting for the delay value."
- "[delay value]: "
- < "or\n"
- > "delay " str ";")
- (define-skeleton ada-or-terminate
- "Insert a terminate alternative."
- ()
- < "or\n"
- > "terminate;")
- (provide 'ada-stmt)
|