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 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
|
;; Copyright (C) 2003-2008 Shawn Betts
;;
;; This file is part of stumpwm.
;;
;; stumpwm is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; stumpwm 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 General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this software; see the file COPYING. If not, see
;; <http://www.gnu.org/licenses/>.
;; Commentary:
;;
;; implementation of commands
;;
;; Code:
(in-package #:stumpwm)
(export '(argument-line-end-p
argument-pop
argument-pop-or-read
argument-pop-rest
define-stumpwm-command
defcommand
defcommand-alias
define-stumpwm-type
run-commands
%interactivep%))
(defstruct command-alias
from to)
(defstruct command
name class args)
(defvar *command-hash* (make-hash-table :test 'eq)
"A list of interactive stumpwm commands.")
(defvar *max-command-alias-depth* 10
"The maximum number of times an command alias is expanded before an Error is raised.")
(define-condition command-docstring-warning (style-warning)
;; Don't define an accessor to prevent collision with the generic command
((command :initarg :command))
(:report
(lambda (condition stream)
(format stream "The command ~A doesn't have a docstring" (slot-value condition 'command)))))
(defmacro defcommand (name (&rest args) (&rest interactive-args) &body body)
"Create a command function and store its interactive hints in
*command-hash*. The local variable %interactivep% can be used to check
if the command was called interactively. If it is non-NIL then it was
called from a keybinding or from the colon command.
The NAME argument can be a string, or a list of two symbols. If the
latter, the first symbol names the command, and the second indicates
the type of group under which this command will be usable. Currently,
tile-group, floating-group and dynamic-group are the possible values.
INTERACTIVE-ARGS is a list of the following form: ((TYPE PROMPT) (TYPE PROMPT) ...)
each element in INTERACTIVE-ARGS declares the type and prompt for the
command's arguments.
TYPE can be one of the following:
@table @var
@item :y-or-n
A yes or no question returning T or NIL.
@item :variable
A lisp variable
@item :function
A lisp function
@item :command
A stumpwm command as a string.
@item :key-seq
A key sequence starting from *TOP-MAP*
@item :window-number
An existing window number
@item :number
An integer number
@item :string
A string
@item :key
A single key chord
@item :window-name
An existing window's name
@item :direction
A direction symbol. One of :UP :DOWN :LEFT :RIGHT
@item :gravity
A gravity symbol. One of :center :top :right :bottom :left :top-right :top-left :bottom-right :bottom-left
@item :group
An existing group
@item :frame
A frame
@item :shell
A shell command
@item :rest
The rest of the input yet to be parsed.
@item :module
An existing stumpwm module
@item :rotation
A rotation symbol. One of :CL, :CLOCKWISE, :CCL, OR :COUNTERCLOCKWISE
@end table
Note that new argument types can be created with DEFINE-STUMPWM-TYPE.
PROMPT can be string. In this case, if the corresponding argument is
missing from an interactive call, stumpwm will use prompt for its
value using PROMPT. If PROMPT is missing or nil, then the argument is
considered an optional interactive argument and is not prompted for
when missing.
Alternatively, instead of specifying nil for PROMPT or leaving it
out, an element can just be the argument type."
(check-type name (or symbol list))
(multiple-value-bind (body decls docstring) (parse-body body :documentation t)
(let ((name (if (atom name)
name
(first name)))
(group (if (atom name)
t
(second name))))
(unless docstring
(make-condition 'command-docstring-warning :command name))
`(progn
(defun ,name ,args
,@(when docstring
(list docstring))
,@decls
(let ((%interactivep% *interactivep*)
(*interactivep* nil))
(declare (ignorable %interactivep%))
(run-hook-with-args *pre-command-hook* ',name)
(multiple-value-prog1
(progn ,@body)
(run-hook-with-args *post-command-hook* ',name))))
(export ',name)
(setf (gethash ',name *command-hash*)
(make-command :name ',name
:class ',group
:args ',interactive-args))))))
(defmacro define-stumpwm-command (name (&rest args) &body body)
"Deprecated. Use `defcommand' instead."
(check-type name string)
(setf name (intern1 name))
`(progn
(defun ,name ,(mapcar 'car args) ,@body)
(setf (gethash ',name *command-hash*)
(make-command :name ',name
:args ',(mapcar 'rest args)))))
(defmacro defcommand-alias (alias original)
"Since interactive commands are functions and can conflict with
package symbols. But for backwards compatibility this macro creates an
alias name for the command that is only accessible interactively."
`(setf (gethash ',alias *command-hash*)
(make-command-alias :from ',alias
:to ',original)))
(defun dereference-command-symbol (command)
"Given a string or symbol look it up in the command database and return
whatever it finds: a command, an alias, or nil."
(maphash (lambda (k v)
(when (string-equal k command)
(return-from dereference-command-symbol v)))
*command-hash*))
(defun command-active-p (command)
(declare (special *dynamic-group-blacklisted-commands*))
(let* ((group (current-group))
(active (or (typep group (command-class command))
(some (lambda (f) (funcall f group command))
*custom-command-filters*))))
(if (typep (current-group) 'dynamic-group)
(unless (member command *dynamic-group-blacklisted-commands*)
active)
active)))
(defun get-command-structure (command &optional (only-active t))
"Return the command structure for COMMAND. COMMAND can be a string,
symbol, command, or command-alias. By default only search active
commands."
(declare (type (or string symbol command command-alias) command))
(when (or (stringp command) (symbolp command))
(setf command (dereference-command-symbol command)))
(when (command-alias-p command)
(setf command (loop for c = (gethash (command-alias-to command) *command-hash*)
then (gethash (command-alias-to c) *command-hash*)
for depth from 1
until (or (null c)
(command-p c))
when (> depth *max-command-alias-depth*)
do (error "Maximum command alias depth exceeded.")
finally (return c))))
(when (and command
(or (not only-active)
(command-active-p command)))
command))
(defun all-commands (&optional (only-active t))
"Return a list of all interactive commands as strings. By default
only return active commands."
(let (acc)
(maphash (lambda (k v)
;; make sure its an active command
(when (get-command-structure v only-active)
(push (string-downcase k) acc)))
*command-hash*)
(sort acc 'string<)))
;;; command arguments
(defstruct argument-line
string start)
(defvar *command-type-hash* (make-hash-table)
"A hash table of types and functions to deal with these types.")
(defun argument-line-end-p (input)
"Return T if we're outta arguments from the input line."
(>= (argument-line-start input)
(length (argument-line-string input))))
(defun argument-pop (input)
"Pop the next argument off."
(unless (argument-line-end-p input)
(flet ((pop-word (input start)
;; Return the first word of INPUT starting from START and
;; its end position.
(let* ((p1 (position #\space input :start start :test #'char/=))
(p2 (or (and p1 (position #\Space input :start p1))
(length input))))
;; we wanna return nil if they're the same
(unless (= p1 p2)
(values (subseq input p1 p2)
(1+ p2)))))
(pop-string (input start)
;; Return a delimited string from INPUT starting from
;; START (if there is one) and the end position of the
;; string.
(let ((start
(loop for i from start below (length input)
for char = (char input i)
do (case char
(#\space) ;Skip spaces
(#\" (return (1+ i))) ;Start position found
(otherwise (return-from pop-string nil))))))
(let ((str (make-string-output-stream)))
(loop for i from start below (length input)
for char = (char input i)
do (case char
(#\\ ;Escape next char
(incf i)
(if (< i (length input))
(write-char (char input i) str)
(return nil)))
(#\" ;End delimiter
(return (values (get-output-stream-string str)
(1+ i))))
(otherwise
(write-char char str))))))))
(multiple-value-bind (arg end)
(nth-value-or 0
(pop-string (argument-line-string input)
(argument-line-start input))
(pop-word (argument-line-string input)
(argument-line-start input)))
(setf (argument-line-start input) end)
arg))))
(defun argument-pop-or-read (input prompt &optional completions)
(or (argument-pop input)
(if completions
(completing-read (current-screen) prompt completions)
(read-one-line (current-screen) prompt))
(throw 'error :abort)))
(defun argument-pop-rest (input)
"Return the remainder of the argument text."
(unless (argument-line-end-p input)
(prog1
(subseq (argument-line-string input) (argument-line-start input))
(setf (argument-line-start input) (length (argument-line-string input))))))
(defun argument-pop-rest-or-read (input prompt &optional completions)
(or (argument-pop-rest input)
(if completions
(completing-read (current-screen) prompt completions)
(read-one-line (current-screen) prompt))
(throw 'error :abort)))
(defmacro define-stumpwm-type (type (input prompt) &body body)
"Create a new type that can be used for command arguments. @var{type} can be any symbol.
When @var{body} is evaluated @var{input} is bound to the
argument-line. It is passed to @code{argument-pop},
@code{argument-pop-rest}, etc. @var{prompt} is the prompt that should
be used when prompting the user for the argument.
@example
\(define-stumpwm-type :symbol (input prompt)
(or (find-symbol
(string-upcase
(or (argument-pop input)
;; Whitespace messes up find-symbol.
(string-trim \" \"
(completing-read (current-screen)
prompt
;; find all symbols in the
;; stumpwm package.
(let (acc)
(do-symbols (s (find-package \"STUMPWM\"))
(push (string-downcase (symbol-name s)) acc))
acc)))
(throw 'error \"Abort.\")))
\"STUMPWM\")
(throw 'error \"Symbol not in STUMPWM package\")))
\(defcommand \"symbol\" (sym) ((:symbol \"Pick a symbol: \"))
(message \"~a\" (with-output-to-string (s)
(describe sym s))))
@end example
This code creates a new type called @code{:symbol} which finds the
symbol in the stumpwm package. The command @code{symbol} uses it and
then describes the symbol."
`(setf (gethash ,type *command-type-hash*)
(lambda (,input ,prompt)
,@body)))
(define-stumpwm-type :y-or-n (input prompt)
(let* ((positive-responses '("y" t))
(s (or (argument-pop input)
(read-one-line (current-screen) (concat prompt "(y/n): ")))))
(member s positive-responses :test #'equalp)))
(defun lookup-symbol (string)
;; FIXME: should we really use string-upcase?
(let* ((ofs (split-string string ":"))
(pkg (if (> (length ofs) 1)
(find-package (string-upcase (pop ofs)))
*package*))
(var (string-upcase (pop ofs)))
(ret (find-symbol var pkg)))
(when (plusp (length ofs))
(throw 'error "Too many :'s"))
(if ret
(values ret pkg var)
(throw 'error (format nil "No such symbol: ~a::~a."
(package-name pkg) var)))))
(define-stumpwm-type :variable (input prompt)
(lookup-symbol (argument-pop-or-read input prompt)))
(define-stumpwm-type :function (input prompt)
(multiple-value-bind (sym pkg var)
(lookup-symbol (argument-pop-or-read input prompt))
(if (fboundp sym)
sym
(throw 'error (format nil "The symbol ~A::~A is not bound to any function."
(package-name pkg) var)))))
(define-stumpwm-type :command (input prompt)
(or (argument-pop input)
(completing-read (current-screen)
prompt
(all-commands))))
(define-stumpwm-type :key-seq (input prompt)
(labels ((update (seq)
(message "~a ~{~a ~}"
prompt
(mapcar 'print-key (reverse seq)))))
(let ((rest (argument-pop-rest input)))
(or (and rest (parse-key-seq rest))
;; read a key sequence from the user
(with-focus (screen-key-window (current-screen))
(message "~a" prompt)
(nreverse (nth-value 1 (read-from-keymap (top-maps) #'update))))))))
(define-stumpwm-type :window-number (input prompt)
(when-let ((n (or (argument-pop input)
(completing-read (current-screen)
prompt
(mapcar 'window-map-number
(group-windows (current-group)))))))
(if-let ((win (find n (group-windows (current-group))
:test #'string=
:key #'window-map-number)))
(window-number win)
(throw 'error "No such window."))))
(defun parse-fraction (n)
"Parse two integers separated by a / and divide the first by the second. "
(multiple-value-bind (num i) (parse-integer n :junk-allowed t)
(cond ((= i (length n))
num)
((char-equal (char n i) #\/)
(/ num (parse-integer (subseq n (+ i 1)))))
(t (error 'parse-error)))))
(define-stumpwm-type :number (input prompt)
(when-let ((n (or (argument-pop input)
(read-one-line (current-screen) prompt))))
(handler-case
(parse-fraction n)
(parse-error (c)
(declare (ignore c))
(throw 'error "Number required.")))))
(define-stumpwm-type :string (input prompt)
(or (argument-pop input)
(read-one-line (current-screen) prompt)))
(define-stumpwm-type :password (input prompt)
(or (argument-pop input)
(read-one-line (current-screen) prompt :password t)))
(define-stumpwm-type :key (input prompt)
(when-let ((s (or (argument-pop input)
(read-one-line (current-screen) prompt))))
(kbd s)))
(define-stumpwm-type :window-name (input prompt)
(or (argument-pop input)
(completing-read (current-screen) prompt
(mapcar 'window-name
(group-windows (current-group))))))
(define-stumpwm-type :direction (input prompt)
(let* ((values '(("up" :up)
("down" :down)
("left" :left)
("right" :right)))
(string (argument-pop-or-read input prompt (mapcar 'first values)))
(dir (second (assoc string values :test 'string-equal))))
(or dir
(throw 'error "No matching direction."))))
(define-stumpwm-type :gravity (input prompt)
"Set the current window's gravity."
(let* ((values '(("center" :center)
("top" :top)
("right" :right)
("bottom" :bottom)
("left" :left)
("top-right" :top-right)
("top-left" :top-left)
("bottom-right" :bottom-right)
("bottom-left" :bottom-left)))
(string (argument-pop-or-read input prompt (mapcar 'first values)))
(gravity (second (assoc string values :test 'string-equal))))
(or gravity
(throw 'error "No matching gravity."))))
(defun select-group (screen query)
"Attempt to match string QUERY against group number or partial name."
(labels ((match-num (grp)
(string-equal (group-map-number grp) query))
(match-whole (grp)
(string-equal (group-name grp) query))
(match-partial (grp)
(let* ((end (min (length (group-name grp)) (length query))))
(string-equal (group-name grp) query :end1 end :end2 end))))
(when query
(or (find-if #'match-num (screen-groups screen))
(find-if #'match-whole (screen-groups screen))
(find-if #'match-partial (screen-groups screen))))))
(define-stumpwm-type :group (input prompt)
(let ((match (select-group (current-screen)
(or (argument-pop input)
(completing-read (current-screen) prompt
(mapcar 'group-name
(screen-groups (current-screen))))))))
(or match
(throw 'error "No such group."))))
(define-stumpwm-type :frame (input prompt)
(declare (ignore prompt))
(if-let ((arg (argument-pop input)))
(or (find arg (group-frames (current-group))
:key (lambda (f)
(string (get-frame-number-translation f)))
:test 'string=)
(throw 'error "Frame not found."))
(or (choose-frame-by-number (current-group))
(throw 'error :abort))))
(define-stumpwm-type :shell (input prompt)
(declare (ignore prompt))
(let ((prompt (format nil "~A -c " *shell-program*))
(*input-history* *input-shell-history*))
(unwind-protect
(or (argument-pop-rest input)
(completing-read (current-screen) prompt 'complete-program))
(setf *input-shell-history* *input-history*))))
(define-stumpwm-type :rest (input prompt)
(or (argument-pop-rest input)
(read-one-line (current-screen) prompt)))
;;;
(defun call-interactively (command &optional (input ""))
"Parse the command's arguments from input given the command's
argument specifications then execute it. Returns a string or nil if
user aborted."
(declare (type (or string symbol) command)
(type (or string argument-line) input))
;; Catch parse errors
(catch 'error
(let* ((arg-line (if (stringp input)
(make-argument-line :string input
:start 0)
input))
(cmd-data (or (get-command-structure command)
(throw 'error (format nil "Command '~a' not found." command))))
(arg-specs (command-args cmd-data))
(args (loop for spec in arg-specs
collect (let* ((type (if (listp spec)
(first spec)
spec))
(prompt (when (listp spec)
(second spec)))
(fn (gethash type *command-type-hash*)))
(unless fn
(throw 'error (format nil "Bad argument type: ~s" type)))
;; If the prompt is NIL then it's
;; considered an optional argument and
;; we shouldn't prompt for it if the
;; arg line is empty.
(if (and (null prompt)
(argument-line-end-p arg-line))
(loop-finish)
(funcall fn arg-line prompt))))))
;; Did the whole string get parsed?
(unless (or (argument-line-end-p arg-line)
(position-if 'alphanumericp (argument-line-string arg-line) :start (argument-line-start arg-line)))
(throw 'error (format nil "Trailing garbage: ~{~A~^ ~}" (subseq (argument-line-string arg-line)
(argument-line-start arg-line)))))
;; Success
(prog1
(apply (command-name cmd-data) args)
(setf *last-command* command)))))
(defun eval-command (cmd &optional interactivep)
"exec cmd and echo the result."
(labels ((parse-and-run-command (input)
(let* ((arg-line (make-argument-line :string input
:start 0))
(cmd (argument-pop arg-line)))
(let ((*interactivep* interactivep))
(call-interactively cmd arg-line)))))
(multiple-value-bind (result error-p)
;; this fancy footwork lets us grab the backtrace from where the
;; error actually happened.
(restart-case
(handler-bind
((error (lambda (c)
(invoke-restart 'eval-command-error
(format nil "^B^1*Error In Command '^b~a^B': ^n~A~a"
cmd c (if *show-command-backtrace*
(backtrace-string) ""))))))
(parse-and-run-command cmd))
(eval-command-error (err-text)
:interactive (lambda ()
(list (format nil "^B^1*Error In Command '^b~a^B'"
cmd)))
:report (lambda (s)
(format s "Exit command ~S" cmd))
(values err-text t)))
;; interactive commands update the modeline
(update-all-mode-lines)
(cond ((stringp result)
(if error-p
(message-no-timeout "~a" result)
(message "~a" result)))
((eq result :abort)
(unless *suppress-abort-messages*
(message "Abort.")))))))
(defun run-commands (&rest commands)
"Run each stumpwm command in sequence. This could be used if you're
used to ratpoison's rc file and you just want to run commands or don't
know lisp very well. One might put the following in one's rc file:
@example
\(stumpwm:run-commands
\"escape C-z\"
\"exec firefox\"
\"split\")
@end example"
(loop for i in commands do
(eval-command i)))
(defcommand colon (&optional initial-input) (:rest)
"Read a command from the user. @var{initial-text} is optional. When
supplied, the text will appear in the prompt.
String arguments with spaces may be passed to the command by
delimiting them with double quotes. A backslash can be used to escape
double quotes or backslashes inside the string. This does not apply to
commands taking :REST or :SHELL type arguments."
(let ((cmd (completing-read (current-screen) ": " (all-commands) :initial-input (or initial-input ""))))
(unless cmd
(throw 'error :abort))
(when (plusp (length cmd))
(eval-command cmd t))))
|