aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/artifact/build.lux
blob: d9a8b729e59040e25c9b55152e0d4feef9107e16 (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
(.module:
  [lux #*
   [abstract
    [equivalence (#+ Equivalence)]
    [monad (#+ do)]]
   [control
    ["<>" parser
     ["<.>" xml (#+ Parser)]
     ["<.>" text]]]
   [data
    [text
     ["%" format]]
    [format
     ["." xml (#+ XML)]]]
   [math
    [number
     ["." nat]]]])

(type: #export Build
  Nat)

(def: #export equivalence
  (Equivalence Build)
  nat.equivalence)

(def: tag
  xml.Tag
  ["" "buildNumber"])

(def: #export format
  (-> Build XML)
  (|>> %.nat
       #xml.Text
       list
       (#xml.Node ..tag xml.attributes)))

(def: #export parser
  (Parser Build)
  (do <>.monad
    [_ (<xml>.node ..tag)]
    (<text>.embed (<>.codec nat.decimal
                            (<text>.many <text>.decimal))
                  (<xml>.children <xml>.text))))