1 ;;; url-future.el --- general futures facility for url.el
3 ;; Copyright (C) 2011-2015 Free Software Foundation, Inc.
5 ;; Author: Teodor Zlatanov <tzz@lifelogs.com>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;; Make a url-future (basically a defstruct):
26 ;; (make-url-future :value (lambda () (calculation goes here))
27 ;; :callback (lambda (future) (use future on success))
28 ;; :errorback (lambda (future &rest error) (error handler)))
30 ;; Then either call it with `url-future-call' or cancel it with
31 ;; `url-future-cancel'. Generally the functions will return the
32 ;; future itself, not the value it holds. Also the functions will
33 ;; throw a url-future-already-done error if you try to call or cancel
34 ;; a future more than once.
36 ;; So, to get the value:
37 ;; (when (url-future-completed-p future) (url-future-value future))
39 ;; See `url-future-tests' and the code below for further details.
43 (eval-when-compile (require 'cl-lib
))
45 (cl-defstruct url-future callback errorback status value
)
47 (define-inline url-future-done-p
(url-future)
48 (inline-quote (url-future-status ,url-future
)))
50 (define-inline url-future-completed-p
(url-future)
51 (inline-quote (eq (url-future-status ,url-future
) t
)))
53 (define-inline url-future-errored-p
(url-future)
54 (inline-quote (eq (url-future-status ,url-future
) 'error
)))
56 (define-inline url-future-cancelled-p
(url-future)
57 (inline-quote (eq (url-future-status ,url-future
) 'cancel
)))
59 (defun url-future-finish (url-future &optional status
)
60 (if (url-future-done-p url-future
)
61 (signal 'error
'url-future-already-done
)
62 (setf (url-future-status url-future
) (or status t
))
63 ;; the status must be such that the future was completed
64 ;; to run the callback
65 (when (url-future-completed-p url-future
)
66 (funcall (or (url-future-callback url-future
) 'ignore
)
70 (defun url-future-errored (url-future errorcons
)
71 (if (url-future-done-p url-future
)
72 (signal 'error
'url-future-already-done
)
73 (setf (url-future-status url-future
) 'error
)
74 (setf (url-future-value url-future
) errorcons
)
75 (funcall (or (url-future-errorback url-future
) 'ignore
)
76 url-future errorcons
)))
78 (defun url-future-call (url-future)
79 (if (url-future-done-p url-future
)
80 (signal 'error
'url-future-already-done
)
81 (let ((ff (url-future-value url-future
)))
83 (condition-case catcher
84 (setf (url-future-value url-future
)
86 (error (url-future-errored url-future catcher
)))
87 ;; Unused return value.
88 ;;; (url-future-value url-future)
90 (if (url-future-errored-p url-future
)
92 (url-future-finish url-future
))))
94 (defun url-future-cancel (url-future)
95 (if (url-future-done-p url-future
)
96 (signal 'error
'url-future-already-done
)
97 (url-future-finish url-future
'cancel
)))
100 ;;; url-future.el ends here