gnu: Add r-flowsom.
[jackhill/guix/guix.git] / guix / combinators.scm
CommitLineData
958dd3ce 1;;; GNU Guix --- Functional package management for GNU
f9704f17 2;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
958dd3ce
LC
3;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (guix combinators)
21 #:use-module (ice-9 match)
22 #:use-module (ice-9 vlist)
f9704f17 23 #:export (fold2
958dd3ce
LC
24 fold-tree
25 fold-tree-leaves
26 compile-time-value))
27
28;;; Commentary:
29;;;
30;;; This module provides useful combinators that complement SRFI-1 and
31;;; friends.
32;;;
33;;; Code:
34
958dd3ce
LC
35(define fold2
36 (case-lambda
37 ((proc seed1 seed2 lst)
38 "Like `fold', but with a single list and two seeds."
39 (let loop ((result1 seed1)
40 (result2 seed2)
41 (lst lst))
42 (if (null? lst)
43 (values result1 result2)
44 (call-with-values
45 (lambda () (proc (car lst) result1 result2))
46 (lambda (result1 result2)
47 (loop result1 result2 (cdr lst)))))))
48 ((proc seed1 seed2 lst1 lst2)
49 "Like `fold', but with a two lists and two seeds."
50 (let loop ((result1 seed1)
51 (result2 seed2)
52 (lst1 lst1)
53 (lst2 lst2))
54 (if (or (null? lst1) (null? lst2))
55 (values result1 result2)
56 (call-with-values
57 (lambda () (proc (car lst1) (car lst2) result1 result2))
58 (lambda (result1 result2)
59 (fold2 proc result1 result2 (cdr lst1) (cdr lst2)))))))))
60
61(define (fold-tree proc init children roots)
62 "Call (PROC NODE RESULT) for each node in the tree that is reachable from
63ROOTS, using INIT as the initial value of RESULT. The order in which nodes
64are traversed is not specified, however, each node is visited only once, based
65on an eq? check. Children of a node to be visited are generated by
66calling (CHILDREN NODE), the result of which should be a list of nodes that
67are connected to NODE in the tree, or '() or #f if NODE is a leaf node."
68 (let loop ((result init)
69 (seen vlist-null)
70 (lst roots))
71 (match lst
72 (() result)
73 ((head . tail)
74 (if (not (vhash-assq head seen))
75 (loop (proc head result)
76 (vhash-consq head #t seen)
77 (match (children head)
78 ((or () #f) tail)
79 (children (append tail children))))
80 (loop result seen tail))))))
81
82(define (fold-tree-leaves proc init children roots)
83 "Like fold-tree, but call (PROC NODE RESULT) only for leaf nodes."
84 (fold-tree
85 (lambda (node result)
86 (match (children node)
87 ((or () #f) (proc node result))
88 (else result)))
89 init children roots))
90
91(define-syntax compile-time-value ;not quite at home
92 (syntax-rules ()
93 "Evaluate the given expression at compile time. The expression must
94evaluate to a simple datum."
95 ((_ exp)
96 (let-syntax ((v (lambda (s)
97 (let ((val exp))
98 (syntax-case s ()
99 (_ #`'#,(datum->syntax s val)))))))
100 v))))
101
102;;; combinators.scm ends here