summaryrefslogtreecommitdiff
path: root/guix/store.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-03-14 16:53:38 +0100
committerLudovic Courtès <ludo@gnu.org>2016-03-14 23:34:33 +0100
commitf09aea1b58b3ef961d3cc712f116fe4617bc8f90 (patch)
tree5effa1bf142d36e43387f1894af27e9468223b98 /guix/store.scm
parent3667bb6cb0f6d42ab1bb2434c1f3c1a93c6f4800 (diff)
downloadguix-patches-f09aea1b58b3ef961d3cc712f116fe4617bc8f90.tar
guix-patches-f09aea1b58b3ef961d3cc712f116fe4617bc8f90.tar.gz
store: 'references/substitutes' caches its results.
* guix/store.scm (%reference-cache): New variable. (references/substitutes): Use it.
Diffstat (limited to 'guix/store.scm')
-rw-r--r--guix/store.scm18
1 files changed, 15 insertions, 3 deletions
diff --git a/guix/store.scm b/guix/store.scm
index a220b6e6f9..01248738dc 100644
--- a/guix/store.scm
+++ b/guix/store.scm
@@ -726,14 +726,23 @@ error if there is no such root."
"Return the list of references of PATH."
store-path-list))
+(define %reference-cache
+ ;; Brute-force cache mapping store items to their list of references.
+ ;; Caching matters because when building a profile in the presence of
+ ;; grafts, we keep calling 'graft-derivation', which in turn calls
+ ;; 'references/substitutes' many times with the same arguments. Ideally we
+ ;; would use a cache associated with the daemon connection instead (XXX).
+ (make-hash-table 100))
+
(define (references/substitutes store items)
"Return the list of list of references of ITEMS; the result has the same
length as ITEMS. Query substitute information for any item missing from the
store at once. Raise a '&nix-protocol-error' exception if reference
information for one of ITEMS is missing."
(let* ((local-refs (map (lambda (item)
- (guard (c ((nix-protocol-error? c) #f))
- (references store item)))
+ (or (hash-ref %reference-cache item)
+ (guard (c ((nix-protocol-error? c) #f))
+ (references store item))))
items))
(missing (fold-right (lambda (item local-ref result)
(if local-ref
@@ -757,7 +766,10 @@ the list of references")
(result '()))
(match items
(()
- (reverse result))
+ (let ((result (reverse result)))
+ (for-each (cut hash-set! %reference-cache <> <>)
+ items result)
+ result))
((item items ...)
(match local-refs
((#f tail ...)