]> code.delx.au - gnu-emacs-elpa/blob - packages/fsm/fsm.el
Merge commit 'e93367512080e540dc5dd126dfcb38b4a5e9415b' from diff-hl
[gnu-emacs-elpa] / packages / fsm / fsm.el
1 ;;; fsm.el --- state machine library -*- lexical-binding: t; -*-
2
3 ;; Copyright (C) 2006, 2007, 2008, 2015 Free Software Foundation, Inc.
4
5 ;; Author: Magnus Henoch <magnus.henoch@gmail.com>
6 ;; Maintainer: Thomas Fitzsimmons <fitzsim@fitzsim.org>
7 ;; Version: 0.2
8 ;; Package-Requires: ((emacs "24.1") (cl-lib "0.5"))
9 ;; Keywords: extensions
10
11 ;; This file is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; This file is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;; fsm.el is an exercise in metaprogramming inspired by gen_fsm of
29 ;; Erlang/OTP. It aims to make asynchronous programming in Emacs Lisp
30 ;; easy and fun. By "asynchronous" I mean that long-lasting tasks
31 ;; don't interfer with normal editing.
32
33 ;; Some people say that it would be nice if Emacs Lisp had threads
34 ;; and/or continuations. They are probably right, but there are few
35 ;; things that can't be made to run in the background using facilities
36 ;; already available: timers, filters and sentinels. As the code can
37 ;; become a bit messy when using such means, with callbacks everywhere
38 ;; and such things, it can be useful to structure the program as a
39 ;; state machine.
40
41 ;; In this model, a state machine passes between different "states",
42 ;; which are actually only different event handler functions. The
43 ;; state machine receives "events" (from timers, filters, user
44 ;; requests, etc) and reacts to them, possibly entering another state,
45 ;; possibly returning a value.
46
47 ;; The essential macros/functions are:
48 ;;
49 ;; define-state-machine - create start-FOO function
50 ;; define-state - event handler for each state (required)
51 ;; define-enter-state - called when entering a state (optional)
52 ;; define-fsm - encapsulates the above three (more sugar!)
53 ;; fsm-send - send an event to a state machine
54 ;; fsm-call - send an event and wait for reply
55
56 ;; fsm.el is similar to but different from Distel:
57 ;; <URL:http://fresh.homeunix.net/~luke/distel/>
58 ;; Emacs' tq library is a similar idea.
59
60 ;; Here is a simple (not using all the features of fsm.el) example:
61 ;;
62 ;; ;; -*- lexical-binding: t; -*-
63 ;; (require 'fsm)
64 ;; (cl-labels ((hey (n ev)
65 ;; (message "%d (%s)\tp%sn%s!" n ev
66 ;; (if (zerop (% n 4)) "o" "i")
67 ;; (make-string (max 1 (abs n)) ?g))))
68 ;; (cl-macrolet ((zow (next timeout)
69 ;; `(progn (hey (cl-incf count) event)
70 ;; (list ,next count ,timeout))))
71 ;; (define-fsm pingpong
72 ;; :start ((init) "Start a pingpong fsm."
73 ;; (interactive "nInit (number, negative to auto-terminate): ")
74 ;; (list :ping (ash (ash init -2) 2) ; 4 is death
75 ;; (when (interactive-p) 0)))
76 ;; :state-data-name count
77 ;; :states
78 ;; ((:ping
79 ;; (:event (zow :pingg 0.1)))
80 ;; (:pingg
81 ;; (:event (zow :pinggg 0.1)))
82 ;; (:pinggg
83 ;; (:event (zow :pong 1)))
84 ;; (:pong
85 ;; (:event (zow :ping (if (= 0 count)
86 ;; (fsm-goodbye-cruel-world 'pingpong)
87 ;; 3))))))))
88 ;; (fsm-send (start-pingpong -16) t)
89 ;;
90 ;; Copy into a buffer, uncomment, and type M-x eval-buffer RET.
91 ;; Alternatively, you can replace the `fsm-goodbye-cruel-world'
92 ;; form with `nil', eval just the `cl-labels' form and then type
93 ;; M-x start-pingpong RET -16 RET.
94
95 ;; Version 0.2:
96 ;; -- Delete trailing whitespace.
97 ;; -- Fix formatting.
98 ;; -- Use lexical binding.
99 ;; -- Port to cl-lib.
100 ;; -- Remove unnecessary fsm-debug-output message.
101 ;; -- Add FSM name to fsm-debug-output messages that were not including it.
102 ;; -- Fix checkdoc errors.
103 ;; -- Change FSMs from plists to uninterned symbols.
104
105 ;; NOTE: This is version 0.1ttn4 of fsm.el, with the following
106 ;; mods (an exercise in meta-meta-programming ;-) by ttn:
107 ;; -- Refill for easy (traditional 80-column) perusal.
108 ;; -- New var `fsm-debug-timestamp-format'.
109 ;; -- Make variables satisfy `user-variable-p'.
110 ;; -- Use `format' instead of `concat'.
111 ;; -- New func `fsm-goodbye-cruel-world'.
112 ;; -- Make start-function respect `interactive' spec.
113 ;; -- Make enter-/event-functions anonymous.
114 ;; -- New macro `define-fsm'.
115 ;; -- Example usage in Commentary.
116
117 ;;; Code:
118
119 ;; We require cl-lib at runtime, since we insert `cl-destructuring-bind' into
120 ;; modules that use fsm.el.
121 (require 'cl-lib)
122
123 (defvar fsm-debug "*fsm-debug*"
124 "*Name of buffer for fsm debug messages.
125 If nil, don't output debug messages.")
126
127 (defvar fsm-debug-timestamp-format nil
128 "*Timestamp format (a string) for `fsm-debug-output'.
129 Default format is whatever `current-time-string' returns
130 followed by a colon and a space.")
131
132 (defun fsm-debug-output (format &rest args)
133 "Append debug output to buffer named by the variable `fsm-debug'.
134 FORMAT and ARGS are passed to `format'."
135 (when fsm-debug
136 (with-current-buffer (get-buffer-create fsm-debug)
137 (save-excursion
138 (goto-char (point-max))
139 (insert (if fsm-debug-timestamp-format
140 (format-time-string fsm-debug-timestamp-format)
141 (concat (current-time-string) ": "))
142 (apply 'format format args) "\n")))))
143
144 (cl-defmacro define-state-machine (name &key start sleep)
145 "Define a state machine class called NAME.
146 A function called start-NAME is created, which uses the argument
147 list and body specified in the :start argument. BODY should
148 return a list of the form (STATE STATE-DATA [TIMEOUT]), where
149 STATE is the initial state (defined by `define-state'),
150 STATE-DATA is any object, and TIMEOUT is the number of seconds
151 before a :timeout event will be sent to the state machine. BODY
152 may refer to the instance being created through the dynamically
153 bound variable `fsm'.
154
155 SLEEP-FUNCTION, if provided, takes one argument, the number of
156 seconds to sleep while allowing events concerning this state
157 machine to happen. There is probably no reason to change the
158 default, which is accept-process-output with rearranged
159 arguments.
160
161 \(fn NAME :start ((ARG ...) DOCSTRING BODY) [:sleep SLEEP-FUNCTION])"
162 (declare (debug (&define name :name start
163 &rest
164 &or [":start"
165 (lambda-list
166 [&optional ("interactive" interactive)]
167 stringp def-body)]
168 [":sleep" function-form])))
169 (let ((start-name (intern (format "start-%s" name)))
170 interactive-spec)
171 (cl-destructuring-bind (arglist docstring &body body) start
172 (when (and (consp (car body)) (eq 'interactive (caar body)))
173 (setq interactive-spec (list (pop body))))
174 (unless (stringp docstring)
175 (error "Docstring is not a string"))
176 `(progn
177 (put ',name :fsm-enter (make-hash-table :size 11 :test 'eq))
178 (put ',name :fsm-event (make-hash-table :size 11 :test 'eq))
179 (defun ,start-name ,arglist
180 ,docstring
181 ,@interactive-spec
182 (fsm-debug-output "Starting %s" ',name)
183 (let ((fsm (cl-gensym (concat "fsm-" ,(symbol-name name) "-"))))
184 (cl-destructuring-bind (state state-data &optional timeout)
185 (progn ,@body)
186 (put fsm :name ',name)
187 (put fsm :state nil)
188 (put fsm :state-data nil)
189 (put fsm :sleep ,(or sleep (lambda (secs)
190 (accept-process-output
191 nil secs))))
192 (put fsm :deferred nil)
193 (fsm-update fsm state state-data timeout)
194 fsm)))))))
195
196 (cl-defmacro define-state (fsm-name state-name arglist &body body)
197 "Define a state called STATE-NAME in the state machine FSM-NAME.
198 ARGLIST and BODY make a function that gets called when the state
199 machine receives an event in this state. The arguments are:
200
201 FSM the state machine instance (treat it as opaque)
202 STATE-DATA An object
203 EVENT The occurred event, an object.
204 CALLBACK A function of one argument that expects the response
205 to this event, if any (often `ignore' is used)
206
207 If the event should return a response, the state machine should
208 arrange to call CALLBACK at some point in the future (not necessarily
209 in this handler).
210
211 The function should return a list of the form (NEW-STATE
212 NEW-STATE-DATA TIMEOUT):
213
214 NEW-STATE The next state, a symbol
215 NEW-STATE-DATA An object
216 TIMEOUT A number: send timeout event after this many seconds
217 nil: cancel existing timer
218 :keep: let existing timer continue
219
220 Alternatively, the function may return the keyword :defer, in
221 which case the event will be resent when the state machine enters
222 another state."
223 (declare (debug (&define name name :name handler lambda-list def-body)))
224 `(setf (gethash ',state-name (get ',fsm-name :fsm-event))
225 (lambda ,arglist ,@body)))
226
227 (cl-defmacro define-enter-state (fsm-name state-name arglist &body body)
228 "Define a function to call when FSM-NAME enters the state STATE-NAME.
229 ARGLIST and BODY make a function that gets called when the state
230 machine enters this state. The arguments are:
231
232 FSM the state machine instance (treat it as opaque)
233 STATE-DATA An object
234
235 The function should return a list of the form (NEW-STATE-DATA
236 TIMEOUT):
237
238 NEW-STATE-DATA An object
239 TIMEOUT A number: send timeout event after this many seconds
240 nil: cancel existing timer
241 :keep: let existing timer continue"
242 (declare (debug (&define name name :name enter lambda-list def-body)))
243 `(setf (gethash ',state-name (get ',fsm-name :fsm-enter))
244 (lambda ,arglist ,@body)))
245
246 (cl-defmacro define-fsm (name &key
247 start sleep states
248 (fsm-name 'fsm)
249 (state-data-name 'state-data)
250 (callback-name 'callback)
251 (event-name 'event))
252 "Define a state machine class called NAME, along with its STATES.
253 This macro is (further) syntatic sugar for `define-state-machine',
254 `define-state' and `define-enter-state' macros, q.v.
255
256 NAME is a symbol. Everything else is specified with a keyword arg.
257
258 START and SLEEP are the same as for `define-state-machine'.
259
260 STATES is a list, each element having the form (STATE-NAME . STATE-SPEC).
261 STATE-NAME is a symbol. STATE-SPEC is an alist with keys `:event' or
262 `:enter', and values a series of expressions representing the BODY of
263 a `define-state' or `define-enter-state' call, respectively.
264
265 FSM-NAME, STATE-DATA-NAME, CALLBACK-NAME, and EVENT-NAME are symbols,
266 used to construct the state functions' arglists."
267 `(progn
268 (define-state-machine ,name :start ,start :sleep ,sleep)
269 ,@(cl-loop for (state-name . spec) in states
270 if (assq :enter spec) collect
271 `(define-enter-state ,name ,state-name
272 (,fsm-name ,state-data-name)
273 ,@(cdr it))
274 end
275 if (assq :event spec) collect
276 `(define-state ,name ,state-name
277 (,fsm-name ,state-data-name
278 ,event-name
279 ,callback-name)
280 ,@(cdr it))
281 end)))
282
283 (defun fsm-goodbye-cruel-world (name)
284 "Unbind functions related to fsm NAME (a symbol).
285 Includes start-NAME, and each fsm-NAME-STATE and fsm-NAME-enter-STATE.
286 Functions are `fmakunbound', which will probably give (fatal) pause to
287 any state machines using them. Return nil."
288 (interactive "SUnbind function definitions for fsm named: ")
289 (fmakunbound (intern (format "start-%s" name)))
290 (let (ht)
291 (when (hash-table-p (setq ht (get name :fsm-event)))
292 (clrhash ht)
293 (cl-remprop name :fsm-event))
294 (when (hash-table-p (setq ht (get name :fsm-enter)))
295 (clrhash ht)
296 (cl-remprop name :fsm-enter)))
297 nil)
298
299 (defun fsm-start-timer (fsm secs)
300 "Send a timeout event to FSM after SECS seconds.
301 The timer is canceled if another event occurs before, unless the
302 event handler explicitly asks to keep the timer."
303 (fsm-stop-timer fsm)
304 (put fsm
305 :timeout (run-with-timer
306 secs nil
307 #'fsm-send-sync fsm :timeout)))
308
309 (defun fsm-stop-timer (fsm)
310 "Stop the timeout timer of FSM."
311 (let ((timer (get fsm :timeout)))
312 (when (timerp timer)
313 (cancel-timer timer)
314 (put fsm :timeout nil))))
315
316 (defun fsm-maybe-change-timer (fsm timeout)
317 "Change the timer of FSM according to TIMEOUT."
318 (cond
319 ((numberp timeout)
320 (fsm-start-timer fsm timeout))
321 ((null timeout)
322 (fsm-stop-timer fsm))
323 ;; :keep needs no timer change
324 ))
325
326 (defun fsm-send (fsm event &optional callback)
327 "Send EVENT to FSM asynchronously.
328 If the state machine generates a response, eventually call
329 CALLBACK with the response as only argument."
330 (run-with-timer 0 nil #'fsm-send-sync fsm event callback))
331
332 (defun fsm-update (fsm new-state new-state-data timeout)
333 "Update FSM with NEW-STATE, NEW-STATE-DATA and TIMEOUT."
334 (let ((fsm-name (get fsm :name))
335 (old-state (get fsm :state)))
336 (put fsm :state new-state)
337 (put fsm :state-data new-state-data)
338 (fsm-maybe-change-timer fsm timeout)
339
340 ;; On state change, call enter function and send deferred events
341 ;; again.
342 (unless (eq old-state new-state)
343 (fsm-debug-output "%s enters %s" fsm-name new-state)
344 (let ((enter-fn (gethash new-state (get fsm-name :fsm-enter))))
345 (when (functionp enter-fn)
346 (fsm-debug-output "Found enter function for %s/%s" fsm-name new-state)
347 (condition-case e
348 (cl-destructuring-bind (newer-state-data newer-timeout)
349 (funcall enter-fn fsm new-state-data)
350 (put fsm :state-data newer-state-data)
351 (fsm-maybe-change-timer fsm newer-timeout))
352 ((debug error)
353 (fsm-debug-output "%s/%s update didn't work: %S"
354 fsm-name new-state e)))))
355
356 (let ((deferred (nreverse (get fsm :deferred))))
357 (put fsm :deferred nil)
358 (dolist (event deferred)
359 (apply 'fsm-send-sync fsm event))))))
360
361 (defun fsm-send-sync (fsm event &optional callback)
362 "Send EVENT to FSM synchronously.
363 If the state machine generates a response, eventually call
364 CALLBACK with the response as only argument."
365 (save-match-data
366 (let* ((fsm-name (get fsm :name))
367 (state (get fsm :state))
368 (state-data (get fsm :state-data))
369 (state-fn (gethash state (get fsm-name :fsm-event))))
370 ;; If the event is a list, output only the car, to avoid an
371 ;; overflowing debug buffer.
372 (fsm-debug-output "Sent %S to %s in state %s"
373 (or (car-safe event) event) fsm-name state)
374 (let ((result (condition-case e
375 (funcall state-fn fsm state-data event
376 (or callback 'ignore))
377 ((debug error) (cons :error-signaled e)))))
378 ;; Special case for deferring an event until next state change.
379 (cond
380 ((eq result :defer)
381 (let ((deferred (get fsm :deferred)))
382 (put fsm :deferred (cons (list event callback) deferred))))
383 ((null result)
384 (fsm-debug-output "Warning: event %S ignored in state %s/%s"
385 event fsm-name state))
386 ((eq (car-safe result) :error-signaled)
387 (fsm-debug-output "Error in %s/%s: %s"
388 fsm-name state
389 (error-message-string (cdr result))))
390 ((and (listp result)
391 (<= 2 (length result))
392 (<= (length result) 3))
393 (cl-destructuring-bind (new-state new-state-data &optional timeout)
394 result
395 (fsm-update fsm new-state new-state-data timeout)))
396 (t
397 (fsm-debug-output "Incorrect return value in %s/%s: %S"
398 fsm-name state
399 result)))))))
400
401 (defun fsm-call (fsm event)
402 "Send EVENT to FSM synchronously, and wait for a reply.
403 Return the reply. `with-timeout' might be useful."
404 (let (reply)
405 (fsm-send-sync fsm event (lambda (r) (setq reply (list r))))
406 (while (null reply)
407 (fsm-sleep fsm 1))
408 (car reply)))
409
410 (defun fsm-make-filter (fsm)
411 "Return a filter function that sends events to FSM.
412 Events sent are of the form (:filter PROCESS STRING)."
413 (let ((fsm fsm))
414 (lambda (process string)
415 (fsm-send-sync fsm (list :filter process string)))))
416
417 (defun fsm-make-sentinel (fsm)
418 "Return a sentinel function that sends events to FSM.
419 Events sent are of the form (:sentinel PROCESS STRING)."
420 (let ((fsm fsm))
421 (lambda (process string)
422 (fsm-send-sync fsm (list :sentinel process string)))))
423
424 (defun fsm-sleep (fsm secs)
425 "Sleep up to SECS seconds in a way that lets FSM receive events."
426 (funcall (get fsm :sleep) secs))
427
428 (defun fsm-get-state-data (fsm)
429 "Return the state data of FSM.
430 Note the absence of a set function. The fsm should manage its
431 state data itself; other code should just send messages to it."
432 (get fsm :state-data))
433
434 (provide 'fsm)
435
436 ;;; fsm.el ends here