[slime-cvs] CVS slime
trittweiler
trittweiler at common-lisp.net
Thu Aug 23 16:20:23 UTC 2007
Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv6366
Modified Files:
swank-backend.lisp
Log Message:
Added arglist display for declaration specifiers and type
specifiers.
Examples:
`(declare (type' will display
(declare (type type-specifier &rest vars))
`(declare (type (float' will display
[Typespec] (float &optional lower-limit upper-limit)
`(declare (optimize' will display
(declare (optimize &any (safety 1) (space 1) (speed 1) ...))
&ANY is a new lambda keyword that is introduced for arglist
description purpose, and is very similiar to &KEY, but isn't based
upon plists; they're more based upon *FEATURES* lists. (See the
comment near the ARGLIST defstruct in `swank.lisp'.)
* slime.el:
(slime-to-feature-keyword): Renamed to `slime-keywordify'.
(slime-eval-feature-conditional): Adapted to use `slime-keywordify'.
(slime-ensure-list): New utility.
(slime-sexp-at-point): Now takes an argument that specify how many
sexps at point should be returned.
(slime-enclosing-operator-names): Renamed to
`slime-enclosing-form-specs'.
(slime-enclosing-form-specs): Returns a list of ``raw form specs''
instead of what was called ``extended operator names'' before, see
`swank::parse-form-spec' for more information. This is a
simplified superset. Additionally as tertiary return value return
a list of points to let the caller see where each form spec is
located. Adapted callers accordingly. Extended docstring.
(slime-parse-extended-operator-name): Adapted to changes in
`slime-enclosing-form-specs'. Now gets more context, and is such
more powerful. This was needed to allow parsing DECLARE forms.
(slime-make-extended-operator-parser/look-ahead): Because the
protocol for arglist display was simplified, it was possible to
replace the plethora of parsing function just by this one.
(slime-extended-operator-name-parser-alist): Use it. Also add
parser for DECLARE forms.
(slime-parse-extended-operator/declare): Responsible for parsing
DECLARE forms.
(%slime-in-mid-of-typespec-p): Helper function for
`slime-parse-extended-operator/declare'.
(slime-incomplete-form-at-point): New. Return the ``raw form
spec'' near point.
(slime-complete-form): Use `slime-incomplete-form-at-point'.
* swank.lisp: New Helper functions.
(length=, ensure-list, recursively-empty-p): New.
(maybecall, exactly-one-p): New.
* swank.lisp (arglist-for-echo-area): Adapted to take ``raw form
specs'' from Slime.
(parse-form-spec): New. Takes a ``raw form spec'' and returns a
``form spec'' for further processing in Swank. Docstring documents
these two terms.
(split-form-spec): New. Return relevant information from a form spec.
(parse-first-valid-form-spec): Replaces `find-valid-operator-name'.
(find-valid-operator-name): Removed.
(operator-designator-to-form): Removed. Obsoleted by `parse-form-spec'.
(defstruct arglist): Add `any-p' and `any-args' slots to contain
arguments belonging to the &ANY lambda keyword.
(print-arglist): Adapted to also print &ANY args.
(print-decoded-arglist-as-template): Likewise.
(decode-arglist): Adapted to also decode &ANY args.
(remove-actual-args): Adapted to also remove &ANY args.
(remove-&key-args): Split out from `remove-actual-args'.
(remove-&any-args): New. Removes already provided &ANY args.
(arglist-from-form-spec): New. Added detailed docstring.
(arglist-dispatch): Dispatching generic function for
`arglist-from-form-spec' that does all the work. Renamed from
prior `form-completion'.
(arglist-dispatch) Added methods for dealing with declaration and
type-specifiers.
(complete-form): Adapted to take ``raw form specs'' from Slime.
(completions-for-keyword): Likewise.
(format-arglist-for-echo-area): Removed. Not needed anymore.
* swank-backend.lisp (declaration-arglist): New generic
function. Returns the arglist for a given declaration
identifier. (Backends are supposed to specialize it if they can
provide additional information.)
(type-specifier-arglist): New generic function. Returns the
arglist for a given type-specifier operator. (Backends are
supposed to specialize it if they can provide additional
information.)
(*type-specifier-arglists*): New variable. Contains the arglists
for the type specifiers in Common Lisp.
* swank-sbcl.lisp: Now depends upon sb-cltl2.
(declaration-arglist 'optimize): Specialize the `optimize'
declaration identifier to pass it to
sb-cltl2:declaration-information.
--- /project/slime/cvsroot/slime/swank-backend.lisp 2007/08/23 13:56:22 1.119
+++ /project/slime/cvsroot/slime/swank-backend.lisp 2007/08/23 16:20:22 1.120
@@ -31,6 +31,8 @@
#:quit-lisp
#:references
#:unbound-slot-filler
+ #:declaration-arglist
+ #:type-specifier-arglist
;; inspector related symbols
#:inspector
#:inspect-for-emacs
@@ -481,11 +483,55 @@
"Return the lambda list for the symbol NAME. NAME can also be
a lisp function object, on lisps which support this.
-The result can be a list or the :not-available if the arglist
-cannot be determined."
+The result can be a list or the :not-available keyword if the
+arglist cannot be determined."
(declare (ignore name))
:not-available)
+(defgeneric declaration-arglist (decl-identifier)
+ (:documentation
+ "Return the argument list of the declaration specifier belonging to the
+declaration identifier DECL-IDENTIFIER. If the arglist cannot be determined,
+the keyword :NOT-AVAILABLE is returned.
+
+The different SWANK backends can specialize this generic function to
+include implementation-dependend declaration specifiers, or to provide
+additional information on the specifiers defined in ANSI Common Lisp.")
+ (:method (decl-identifier)
+ (case decl-identifier
+ (dynamic-extent '(&rest vars))
+ (ignore '(&rest vars))
+ (ignorable '(&rest vars))
+ (special '(&rest vars))
+ (inline '(&rest function-names))
+ (notinline '(&rest function-name))
+ (optimize '(&any compilation-speed debug safety space speed))
+ (type '(type-specifier &rest args))
+ (ftype '(type-specifier &rest function-names))
+ (otherwise
+ (flet ((typespec-p (symbol) (member :type (describe-symbol-for-emacs symbol))))
+ (cond ((and (symbolp decl-identifier) (typespec-p decl-identifier))
+ '(&rest vars))
+ ((and (listp decl-identifier) (typespec-p (first decl-identifier)))
+ '(&rest vars))
+ (t :not-available)))))))
+
+(defgeneric type-specifier-arglist (typespec-operator)
+ (:documentation
+ "Return the argument list of the type specifier belonging to
+TYPESPEC-OPERATOR.. If the arglist cannot be determined, the keyword
+:NOT-AVAILABLE is returned.
+
+The different SWANK backends can specialize this generic function to
+include implementation-dependend declaration specifiers, or to provide
+additional information on the specifiers defined in ANSI Common Lisp.")
+ (:method (typespec-operator)
+ (declare (special *type-specifier-arglists*)) ; defined at end of file.
+ (typecase typespec-operator
+ (symbol (or (cdr (assoc typespec-operator *type-specifier-arglists*))
+ :not-available))
+ (t :not-available))))
+
(definterface function-name (function)
"Return the name of the function object FUNCTION.
@@ -1025,3 +1071,37 @@
when (funcall matchp prefix name)
collect name))
+
+(defparameter *type-specifier-arglists*
+ '((and . (&rest type-specifiers))
+ (array . (&optional element-type dimension-spec))
+ (base-string . (&optional size))
+ (bit-vector . (&optional size))
+ (complex . (&optional type-specifier))
+ (cons . (&optional car-typespec cdr-typespec))
+ (double-float . (&optional lower-limit upper-limit))
+ (eql . (object))
+ (float . (&optional lower-limit upper-limit))
+ (function . (&optional arg-typespec value-typespec))
+ (integer . (&optional lower-limit upper-limit))
+ (long-float . (&optional lower-limit upper-limit))
+ (member . (&rest eql-objects))
+ (mod . (n))
+ (not . (type-specifier))
+ (or . (&rest type-specifiers))
+ (rational . (&optional lower-limit upper-limit))
+ (real . (&optional lower-limit upper-limit))
+ (satisfies . (predicate-symbol))
+ (short-float . (&optional lower-limit upper-limit))
+ (signed-byte . (&optional size))
+ (simple-array . (&optional element-type dimension-spec))
+ (simple-base-string . (&optional size))
+ (simple-bit-vector . (&optional size))
+ (simple-string . (&optional size))
+ (single-float . (&optional lower-limit upper-limit))
+ (simple-vector . (&optional size))
+ (string . (&optional size))
+ (unsigned-byte . (&optional size))
+ (values . (&rest typespecs))
+ (vector . (&optional element-type size))
+ ))
\ No newline at end of file
More information about the slime-cvs
mailing list