summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorAlex Kost <alezost@gmail.com>2015-06-06 22:14:13 +0300
committerAlex Kost <alezost@gmail.com>2015-06-08 11:46:05 +0300
commit132e74fec99eaf0febb62269ca38bacebeaa0882 (patch)
tree7d0f32713dc7f0db838b132281193e8fa06f7661 /emacs
parent2a4e2e4b015ceeb5a0a55e9ab0484b5136c324cd (diff)
downloadpatches-132e74fec99eaf0febb62269ca38bacebeaa0882.tar
patches-132e74fec99eaf0febb62269ca38bacebeaa0882.tar.gz
emacs: Add "memoization" code.
* emacs/guix-utils.el (guix-memoize): New function. (guix-memoized-defun): New macro.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/guix-utils.el33
1 files changed, 31 insertions, 2 deletions
diff --git a/emacs/guix-utils.el b/emacs/guix-utils.el
index 823c646610..dc0c58a114 100644
--- a/emacs/guix-utils.el
+++ b/emacs/guix-utils.el
@@ -1,6 +1,6 @@
-;;; guix-utils.el --- General utility functions
+;;; guix-utils.el --- General utility functions -*- lexical-binding: t -*-
-;; Copyright © 2014 Alex Kost <alezost@gmail.com>
+;; Copyright © 2014, 2015 Alex Kost <alezost@gmail.com>
;; This file is part of GNU Guix.
@@ -170,6 +170,35 @@ accessed with KEYS."
"Same as `diff', but use `guix-diff-switches' as default."
(diff old new (or switches guix-diff-switches) no-async))
+
+;;; Memoizing
+
+(defun guix-memoize (function)
+ "Return a memoized version of FUNCTION."
+ (let ((cache (make-hash-table :test 'equal)))
+ (lambda (&rest args)
+ (let ((result (gethash args cache 'not-found)))
+ (if (eq result 'not-found)
+ (let ((result (apply function args)))
+ (puthash args result cache)
+ result)
+ result)))))
+
+(defmacro guix-memoized-defun (name arglist docstring &rest body)
+ "Define a memoized function NAME.
+See `defun' for the meaning of arguments."
+ (declare (doc-string 3) (indent 2))
+ `(defalias ',name
+ (guix-memoize (lambda ,arglist ,@body))
+ ;; Add '(name args ...)' string with real arglist to the docstring,
+ ;; because *Help* will display '(name &rest ARGS)' for a defined
+ ;; function (since `guix-memoize' returns a lambda with '(&rest
+ ;; args)').
+ ,(format "(%S %s)\n\n%s"
+ name
+ (mapconcat #'symbol-name arglist " ")
+ docstring)))
+
(provide 'guix-utils)
;;; guix-utils.el ends here