aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/pipe.lux
blob: c0b99bd5b3b6ae334d356c048fb3d2d4b57d67aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
##  Copyright (c) Eduardo Julian. All rights reserved.
##  This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
##  If a copy of the MPL was not distributed with this file,
##  You can obtain one at http://mozilla.org/MPL/2.0/.

(;module: {#;doc "Composable extensions to the piping macro |> that enhance it with various abilities."}
  lux
  (lux (control monad)
       (data (struct [list #+ Monad<List> "" Fold<List> "List/" Monad<List>])
             maybe)
       [compiler #+ with-gensyms Monad<Lux>]
       (macro ["s" syntax #+ syntax: Syntax]
              [ast])
       ))

## [Syntax]
(def: body^
  (Syntax (List AST))
  (s;tuple (s;many s;any)))

(syntax: #export (_> [tokens (s;at-least +2 s;any)])
  {#;doc (doc "Ignores the piped argument, and begins a new pipe."
              (|> 20
                  (i.* 3)
                  (i.+ 4)
                  (_> 0 i.inc)))}
  (case (list;reverse tokens)
    (^ (list& _ r-body))
    (wrap (list (` (|> (~@ (list;reverse r-body))))))

    _
    (undefined)))

(syntax: #export (@> [name (s;default "@" s;local-symbol)]
                     [body body^]
                     prev)
  {#;doc (doc "Gives the name '@' to the piped-argument, within the given expression."
              (|> 5
                  (@> [(i.+ @ @)]))

              (|> 5
                  (@> X [(i.+ X X)])))}
  (wrap (list (fold (lambda [next prev]
                      (` (let% [(~ (ast;symbol ["" name])) (~ prev)]
                           (~ next))))
                    prev
                    body))))

(syntax: #export (?> [branches (s;many (s;seq body^ body^))]
                     [?else (s;opt body^)]
                     prev)
  {#;doc (doc "Branching for pipes."
              "Both the tests and the bodies are piped-code, and must be given inside a tuple."
              "If a last else-pipe isn't given, the piped-argument will be used instead."
              (|> 5
                  (?> [i.even?] [(i.* 2)]
                      [i.odd?] [(i.* 3)]
                      [(_> -1)])))}
  (with-gensyms [g!temp]
    (wrap (list (` (let% [(~ g!temp) (~ prev)]
                     (cond (~@ (do Monad<List>
                                 [[test then] branches]
                                 (list (` (|> (~ g!temp) (~@ test)))
                                       (` (|> (~ g!temp) (~@ then))))))
                           (~ (case ?else
                                (#;Some else)
                                (` (|> (~ g!temp) (~@ else)))

                                _
                                g!temp)))))))))

(syntax: #export (!> [test body^] [then body^] prev)
  {#;doc (doc "Loops for pipes."
              "Both the testing and calculating steps are pipes and must be given inside tuples."
              (|> 1
                  (!> [(i.< 10)]
                      [i.inc])))}
  (with-gensyms [g!temp]
    (wrap (list (` (loop [(~ g!temp) (~ prev)]
                     (if (|> (~ g!temp) (~@ test))
                       ((~' recur) (|> (~ g!temp) (~@ then)))
                       (~ g!temp))))))))

(syntax: #export (%> monad [steps (s;some body^)] prev)
  {#;doc (doc "Monadic pipes."
              "Each steps in the monadic computation is a pipe and must be given inside a tuple."
              (|> 5
                  (%> Id/Monad
                      [(i.* 3)]
                      [(i.+ 4)]
                      [i.inc])))}
  (with-gensyms [g!temp]
    (case (list;reverse steps)
      (^ (list& last-step prev-steps))
      (let [step-bindings (do Monad<List>
                            [step (list;reverse prev-steps)]
                            (list g!temp (` (|> (~ g!temp) (~@ step)))))]
        (wrap (list (` (do (~ monad)
                         [(~ g!temp) (~ prev)
                          (~@ step-bindings)]
                         (|> (~ g!temp) (~@ last-step)))))))

      _
      (wrap (list prev)))))

(syntax: #export (~> [body body^] prev)
  {#;doc (doc "Non-updating pipes."
              "Will generate piped computations, but their results won't be used in the larger scope."
              (|> 5
                  (~> [int-to-nat %n log!])
                  (i.* 10)))}
  (do @
    [g!temp (compiler;gensym "")]
    (wrap (list (` (let [(~ g!temp) (~ prev)]
                     (exec (|> (~ g!temp) (~@ body))
                       (~ g!temp))))))))

(syntax: #export (&> [paths (s;many body^)] prev)
  {#;doc (doc "Parallel branching for pipes."
              "Allows to run multiple pipelines for a value and gives you a tuple of the outputs."
              (|> 5
                  (&> [(i.* 10)]
                      [i.dec (i./ 2)]
                      [Int/encode]))
              "Will become: [50 2 \"5\"]")}
  (do @
    [g!temp (compiler;gensym "")]
    (wrap (list (` (let [(~ g!temp) (~ prev)]
                     [(~@ (List/map (lambda [body] (` (|> (~ g!temp) (~@ body))))
                                    paths))]))))))

(syntax: #export (case> [branches (s;many (s;seq s;any s;any))] prev)
  {#;doc (doc "Pattern-matching for pipes."
              "The bodies of each branch are NOT pipes; just regular values."
              (|> 5
                  (case> 0 "zero"
                         1 "one"
                         2 "two"
                         3 "three"
                         4 "four"
                         5 "five"
                         6 "six"
                         7 "seven"
                         8 "eight"
                         9 "nine"
                         _ "???")))}
  (let [(^open "List/") Monad<List>]
    (wrap (list (` (case (~ prev)
                     (~@ (List/join (List/map (lambda [[pattern body]] (list pattern body))
                                              branches)))))))))