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
|
(in-package :clim-demo)
;;;; Method-Browser Example
;;; (C) Copyright 2005 by Andy Hefner (ahefner@gmail.com)
;;; This library is free software; you can redistribute it and/or
;;; modify it under the terms of the GNU Library General Public
;;; License as published by the Free Software Foundation; either
;;; version 2 of the License, or (at your option) any later version.
;;;
;;; This library is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;; Library General Public License for more details.
;;;
;;; You should have received a copy of the GNU Library General Public
;;; License along with this library; if not, write to the
;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;;; Boston, MA 02111-1307 USA.
;;; --------------------------------------------------------------------
;;; This is an example of how to write a CLIM application with a
;;; "normal" GUI, where "normal" is a completely event driven app
;;; built using gadgets and not using the command-oriented framework.
;;; Running the method-browser:
;;; (clim-demo::run-test 'clim-demo::method-browser)
;;; How to use this app: Position the mouse over the text field labelled
;;; "Enter Name of Generic Function." Type the name of a generic
;;; function (the text field currently behaves in a focus-follows-mouse
;;; fashion) and hit enter. The specializers pane below will fill
;;; with buttons for each required argument of the function. Clicking
;;; each button produces a menu of types which that argument of the
;;; function is specialized on. As you adjust the argument types,
;;; the bottom pane of the application will display which methods
;;; would be applicable for the given arguments.
;;; This example demonstrates:
;;; * Conventional gadget-oriented interface
;;; * Dynamic creation of interface objects
;;; * Use of CLIM extended-output-streams (fonts, text-styles, etc)
;;; * CLIM table formatting
;;; * Portable MOP provided by CLIM-MOP package
;;; TODO:
;;; * Nicer, more clever display of methods than simply listing them
;;; in a row. To do this right really involes some nonportable
;;; fun and a codewalker. You could probably write something that
;;; just understood the standard method combination and qualifiers
;;; with substantially less work.
;;; * Change focus behavior of McCLIM text entry gadget
;;; * Implement focus-aware cursor shapes in McCLIM and/or Goatee
;;; (actually I did this ages ago, but let it rot away on my disk..)
;;; * Make sure the MOP usage works outside CMUCL/SBCL
;;;; CLOS / MOP Utilities
(defun compute-gf-specializers (gf)
"Computes a list of lists of the types for which required argument is
specialized on, removing duplicates"
(let* ((specializers (mapcar #'clim-mop:method-specializers
(clim-mop:generic-function-methods gf))))
(loop for index from 0 below (length (first specializers))
collect (remove-duplicates (mapcar (lambda (specs) (nth index specs))
specializers)))))
;;; FIXME: why is this necessary? I'm pretty sure the #+CMU clause
;;; here has been superseded by events for quite a while now. (Should
;;; clim-mop:class not cater for these implementation differences?)
(defun classp (x)
(or (typep x 'cl:class)
#+CMU (typep x 'pcl::class)
#+scl (typep x 'clos::std-class)))
;; FIXME: returns nil if there is both an EQL specializer and a
;; class specializer for which no prototype instance is available.
(defun compute-applicable-methods-from-specializers (gf specializers)
(if (every #'classp specializers)
(clim-mop:compute-applicable-methods-using-classes gf specializers)
(let ((instances
(mapcar (lambda (s)
(cond ((classp s)
;; Implementation-dependent whether prototypes for
;; built-in classes (like integer, t) are available.
(multiple-value-bind (prot err)
(ignore-errors (clim-mop:class-prototype s))
(if err 'no-prototype prot)))
((typep s 'clim-mop:eql-specializer)
(clim-mop:eql-specializer-object s))
(t
(error "Can't compute effective methods, specializer ~A is not understood."
s))))
specializers)))
(unless (member 'no-prototype instances)
(clim-mop:compute-applicable-methods gf instances)))))
;; FIXME: Support EQL specializers.
;; This is hard to do ideally, and I'm not really trying.
;; So we just make sure that T ends up at the head of the list.
(defun sorted-gf-specializers (gf)
"Sort a list of specializers for aesthetic purposes"
(mapcar (lambda (types)
(sort (copy-list types)
(lambda (a b)
(cond
((eql a (find-class t)) t)
((eql b (find-class t)) nil)
((and (classp a)
(classp b))
(string< (class-name a)
(class-name b)))
((and (typep a 'clim-mop:eql-specializer)
(not (typep b 'clim-mop:eql-specializer)))
nil)
((and (not (typep a 'clim-mop:eql-specializer))
(typep b 'clim-mop:eql-specializer))
t)
((and (typep a 'clim-mop:eql-specializer)
(typep b 'clim-mop:eql-specializer))
(string<
(princ-to-string (clim-mop:eql-specializer-object a))
(princ-to-string (clim-mop:eql-specializer-object b))))
(t (warn "Received specializer of unknown type")
nil) ))))
(compute-gf-specializers gf)))
(defun simple-generic-function-lambda-list (gf)
"Returns the required arguments of a generic function"
(let ((ll (clim-mop:generic-function-lambda-list gf)))
(subseq ll 0 (apply #'min
(remove-if #'null
(list
(length ll)
(position '&key ll)
(position '&optional ll)
(position '&rest ll)
(position '&aux ll)))))))
(defun specializer-pretty-name (spec)
"Pretty print the name of a method specializer"
(cond ((classp spec)
(princ-to-string (class-name spec)))
((typep spec 'clim-mop:eql-specializer)
(format nil "(EQL '~A)" (clim-mop:eql-specializer-object spec)))
(t (princ-to-string spec))))
(defun maybe-find-gf (name)
"Search for the generic function named by the user"
(ignore-errors
(let ((sym (read-from-string name)))
(and sym
(fboundp sym)
(typep (symbol-function sym) 'generic-function)
(symbol-function sym)))))
(defun methodp (object)
(typep object 'method))
;; Walk the form returned by compute-effective-method, noting any methods in
;; the order we find them. This is good enough for the sort of output we are
;; producing. I hope.
(defun walk-em-form (form)
"Walks an effective methods form, attempting to determine what order methods will be called"
(cond
((typep form 'cons)
(append (walk-em-form (car form))
(walk-em-form (cdr form))))
((methodp form) (list form))
(t nil)))
;;;; CLIM GUI
;; Every CLIM app starts with an application frame, an object which
;; encapsulates the state of an application. Windowing and abstractions
;; such as commands and menus are designed around application frames.
;; DEFINE-APPLICATION-FRAME is an extension of DEFCLASS adding options
;; to define the layout(s) and content of your application window,
;; commands within your application, a menu bar, etc.
;; The :panes option is typically used to define and name the important
;; elements of your interface. CLIM provides some syntactic sugar, for
;; example (arg-pane :vrack-pane) below is equivalent to
;; (arg-pane (make-pane 'vrack-pane)).
;; The :layouts option defines the hierarchy of windows to instantiate.
;; Multiple layouts can be defined, but a single default layout is sufficient.
;; When defining a layout, the things defined by :pane can be referred to by
;; name. The forms within the default layout below are actual lisp code -
;; vertically, labelling, scrolling, etc. are macros which can be called at
;; any time, provided some context is established first. Similarly, you could
;; call make-pane here to construct a pane anonymously.
(define-application-frame method-browser ()
((gf :accessor gf :initarg :gf :initform nil)
(arg-types :accessor arg-types :initarg :arg-types :initform nil))
(:panes
;; Text box for the user to enter a function name
(gf-name-input :text-field
:activate-callback 'gf-name-input-callback
:background +white+
:text-style (make-text-style :sans-serif :roman :large))
;; Empty vertical layout pane where option-panes for arguments are added
(arg-pane :vrack-pane)
;; Blank pane where the program can render output
(output-pane :application-pane
:text-style (make-text-style :sans-serif :roman :normal)
:display-time t
:display-function 'display-methods))
(:layouts
(default
(vertically ()
(labelling (:label "Enter Name of Generic Function")
gf-name-input)
(labelling (:label "Specializers")
(spacing (:thickness 6) arg-pane))
(scrolling (:width 800 :height 600)
output-pane)))))
;;; When the user types a method name and hits enter, the callback function
;;; below will be called, setting in motion the process of updating the
;;; slots in the application-frame, examining the generic function to
;;; build a set of controls for selecting argument types, and finally
;;; printing a table listing the methods.
(defun gf-name-input-callback (gadget)
"Callback invoked by the text input gadget when the user hits enter"
(let ((gf (maybe-find-gf (gadget-value gadget))))
(when gf
(setup-new-gf *application-frame* gf))))
(defun setup-new-gf (frame gf)
"Update the application frame to display the supplied generic function"
(setf (gf frame) gf)
(setf (arg-types frame) (compute-initial-arg-types gf))
(changing-space-requirements ()
(gen-arg-pane frame (arg-types frame)))
(redisplay-frame-pane frame (get-frame-pane frame 'output-pane) :force-p t))
(defun compute-initial-arg-types (gf)
"Returns a list containing the initial specializers to use for each required argument of a function"
(mapcar #'first (sorted-gf-specializers gf)))
;; Within the macro WITH-LOOK-AND-FEEL-REALIZATION, panes may be created
;; at runtime. This macro sets the environment up such that an abstract pane
;; class such as 'push-button can be translated to a concrete pane class
;; appropriate for your window system.
(defun gen-arg-pane (frame arg-types)
"Generates contents of argument pane. For each required argument an
option-pane is created allowing the user to select one of the specializers
available for that argument."
(let ((container (find-pane-named frame 'arg-pane)))
;; Delete the children of the container pane
(dolist (child (sheet-children container))
(sheet-disown-child container child))
;; Repopulate the container pane with a new table pane containing
;; option-panes for each specializer argument.
(let ((fm (frame-manager *application-frame*)))
(with-look-and-feel-realization (fm *application-frame*)
(sheet-adopt-child container
(make-pane 'table-pane :spacing 8 ;; McCLIM issue: spacing initarg
:contents (loop for index from 0 by 1
for curval in arg-types
for specs in (sorted-gf-specializers (gf frame))
for name in (simple-generic-function-lambda-list (gf frame))
collect (list
(make-pane 'label-pane :label (princ-to-string name))
(make-pane 'option-pane
:items specs
:value curval
:value-changed-callback
(let ((index index))
(lambda (value-gadget value)
(declare (ignore value-gadget))
(setf (nth index (arg-types frame)) value)
(redisplay-frame-pane frame (find-pane-named frame 'output-pane)
:force-p t)))
:name-key #'specializer-pretty-name)))) )))))
;;; Generate contents of output-pane
(defparameter *method-qualifier-ink* +red+)
(defparameter *specializer-text-style* (make-text-style :sans-serif :roman :normal))
(defmethod present-method (method stream)
"Produces one table row to describe a method"
(let ((*print-pretty* nil))
;; Method type, if not standard-method
(formatting-cell (stream :align-x :left)
(when (not (typep method 'standard-method))
(princ (type-of method) stream)))
;; Method qualifiers
(formatting-cell (stream :align-x :center)
(with-drawing-options (stream :ink *method-qualifier-ink*)
(when (clim-mop:method-qualifiers method)
(let ((first t))
(dolist (symbol (clim-mop:method-qualifiers method))
(if first
(setf first nil)
(princ " " stream))
(present symbol (presentation-type-of symbol) :stream stream))))))
;; Method specializers
; This is very silly, but put the surrounding parens in their own column
; because I'm anal about the formatting.
(formatting-cell (stream :align-x :right)
(princ " (" stream))
(dolist (spec (clim-mop:method-specializers method))
(formatting-cell (stream :align-x :center)
(with-drawing-options (stream :text-style *specializer-text-style*
:ink (ink-for-specializer spec))
(with-output-as-presentation (stream spec (presentation-type-of spec))
(princ (specializer-pretty-name spec) stream)))))
(formatting-cell (stream :align-x :left)
(princ ")" stream))))
(defun display-methods (frame pane)
"Generates the display of applicable methods in the output-pane"
(when (gf frame)
(let* ((gf (gf frame))
(methods (compute-applicable-methods-from-specializers gf (arg-types frame)))
(combination (clim-mop:generic-function-method-combination gf))
(effective-methods (clim-mop:compute-effective-method gf combination methods))
(serial-methods (walk-em-form effective-methods)))
;; Print the header
(fresh-line)
(with-drawing-options (pane :text-style (make-text-style :sans-serif :bold :large)
:ink +royal-blue+)
(surrounding-output-with-border (pane :shape :underline)
(princ "Applicable Methods" pane)))
(terpri)
;; Generate a table for the methods
(formatting-table (pane :x-spacing " ")
(formatting-row (pane)
(gf-column-headers (gf frame) pane))
(dolist (method serial-methods)
(formatting-row (pane)
(present-method method pane))))
(terpri pane))))
(defun ink-for-specializer (spec)
"Determine a color to use when displaying a specializer, highlighting if one
of the types selected by the user."
(if (not (typep *application-frame* 'method-browser))
+foreground-ink+
(if (member spec (arg-types *application-frame*))
+OliveDrab4+
+grey18+)))
(defparameter *column-header-ink* +gray50+)
(defparameter *column-header-text-style* (make-text-style :sans-serif :bold :small))
(defun gf-column-headers (gf stream)
"Produces a row of column titles for the method table"
(flet ((header (label)
(formatting-cell (stream :align-x :center)
(unless (zerop (length label))
(with-drawing-options (stream :ink *column-header-ink*
:text-style *column-header-text-style*)
(surrounding-output-with-border (stream :shape :underline)
(princ label stream)))))))
;; Method type
(header "")
(header "Qualifier")
(header "")
(dolist (arg (simple-generic-function-lambda-list gf))
(header (princ-to-string arg)))))
|