aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/parser.lux
blob: 1799db09ebc4a5ad7a9fa3a7722abe16433fa5db (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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
(.module:
  [lux (#- Module type)
   [abstract
    [monad (#+ do)]]
   [control
    ["<>" parser
     ["<c>" code (#+ Parser)]]]
   [data
    ["." text]
    [collection
     ["." dictionary (#+ Dictionary)]
     ["." set (#+ Set)]]]
   [tool
    [compiler
     [meta
      [archive
       [descriptor (#+ Module)]]]]]
   [world
    [net (#+ URL)]]]
  ["." // #_
   ["/" profile]
   ["#." project (#+ Project)]
   ["#." artifact (#+ Artifact)]
   ["#." dependency]])

(def: (as-input input)
  (-> (Maybe Code) (List Code))
  (case input
    (#.Some input)
    (list input)
    
    #.None
    (list)))

(def: (singular input tag parser)
  (All [a] (-> (Dictionary Text Code) Text (Parser a) (Parser a)))
  (<c>.local (..as-input (dictionary.get tag input))
             parser))

(def: (plural input tag parser)
  (All [a] (-> (Dictionary Text Code) Text (Parser a) (Parser (List a))))
  (<c>.local (..as-input (dictionary.get tag input))
             (<c>.tuple (<>.some parser))))

(def: group
  (Parser //artifact.Group)
  <c>.text)

(def: name
  (Parser //artifact.Name)
  <c>.text)

(def: version
  (Parser //artifact.Version)
  <c>.text)

(def: artifact'
  (Parser //artifact.Artifact)
  ($_ <>.and ..group ..name ..version))

(def: artifact
  (Parser //artifact.Artifact)
  (<c>.tuple ..artifact'))

(def: url
  (Parser URL)
  <c>.text)

(def: scm
  (Parser /.SCM)
  ..url)

(def: description
  (Parser Text)
  <c>.text)

(def: license
  (Parser /.License)
  (do {@ <>.monad}
    [input (:: @ map
               (dictionary.from-list text.hash)
               (<c>.record (<>.some (<>.and <c>.local-tag
                                            <c>.any))))]
    ($_ <>.and
        (..singular input "name" ..name)
        (..singular input "url" ..url)
        (<>.default #/.Repo
                    (..singular input "type"
                                (<>.or (<c>.this! (' #repo))
                                       (<c>.this! (' #manual))))))))

(def: organization
  (Parser /.Organization)
  (do {@ <>.monad}
    [input (:: @ map
               (dictionary.from-list text.hash)
               (<c>.record (<>.some (<>.and <c>.local-tag
                                            <c>.any))))]
    ($_ <>.and
        (..singular input "name" ..name)
        (..singular input "url" ..url))))

(def: developer
  (Parser /.Developer)
  (do {@ <>.monad}
    [input (:: @ map
               (dictionary.from-list text.hash)
               (<c>.record (<>.some (<>.and <c>.local-tag
                                            <c>.any))))]
    ($_ <>.and
        (..singular input "name" ..name)
        (..singular input "url" ..url)
        (<>.maybe (..singular input "organization" ..organization))
        )))

(def: contributor
  (Parser /.Contributor)
  ..developer)

(def: info
  (Parser /.Info)
  (do {@ <>.monad}
    [input (:: @ map
               (dictionary.from-list text.hash)
               (<c>.record (<>.some (<>.and <c>.local-tag
                                            <c>.any))))]
    ($_ <>.and
        (<>.maybe (..singular input "url" ..url))
        (<>.maybe (..singular input "scm" ..scm))
        (<>.maybe (..singular input "description" ..description))
        (<>.default (list) (..plural input "licenses" ..license))
        (<>.maybe (..singular input "organization" ..organization))
        (<>.default (list) (..plural input "developers" ..developer))
        (<>.default (list) (..plural input "contributors" ..contributor))
        )))

(def: repository
  (Parser //dependency.Repository)
  ..url)

(def: type
  (Parser //dependency.Type)
  <c>.text)

(def: dependency
  (Parser //dependency.Dependency)
  (<c>.tuple
   ($_ <>.and
       ..artifact'
       (<>.default //dependency.lux-library ..type)
       )))

(def: source
  (Parser /.Source)
  <c>.text)

(def: target
  (Parser /.Target)
  <c>.text)

(def: module
  (Parser Module)
  <c>.text)

(def: deploy-repository
  (Parser (List [Text //dependency.Repository]))
  (<c>.record (<>.some
               (<>.and <c>.text
                       ..repository))))

(def: profile
  (Parser /.Profile)
  (do {@ <>.monad}
    [input (:: @ map
               (dictionary.from-list text.hash)
               (<c>.record (<>.some (<>.and <c>.local-tag
                                            <c>.any))))
     #let [^parents (: (Parser (List /.Name))
                       (<>.default (list)
                                   (..plural input "parents" <c>.text)))
           ^identity (: (Parser (Maybe Artifact))
                        (<>.maybe
                         (..singular input "identity" ..artifact)))
           ^info (: (Parser (Maybe /.Info))
                    (<>.maybe
                     (..singular input "info" ..info)))
           ^repositories (: (Parser (Set //dependency.Repository))
                            (|> (..plural input "repositories" ..repository)
                                (:: @ map (set.from-list text.hash))
                                (<>.default (set.new text.hash))))
           ^dependencies (: (Parser (Set //dependency.Dependency))
                            (|> (..plural input "dependencies" ..dependency)
                                (:: @ map (set.from-list //dependency.hash))
                                (<>.default (set.new //dependency.hash))))
           ^sources (: (Parser (Set /.Source))
                       (|> (..plural input "sources" ..source)
                           (:: @ map (set.from-list text.hash))
                           (<>.default (set.from-list text.hash (list /.default-source)))))
           ^target (: (Parser (Maybe /.Target))
                      (<>.maybe
                       (..singular input "target" ..target)))
           ^program (: (Parser (Maybe Module))
                       (<>.maybe
                        (..singular input "program" ..module)))
           ^test (: (Parser (Maybe Module))
                    (<>.maybe
                     (..singular input "test" ..module)))
           ^deploy-repositories (: (Parser (Dictionary Text //dependency.Repository))
                                   (<| (:: @ map (dictionary.from-list text.hash))
                                       (<>.default (list))
                                       (..singular input "deploy-repositories" ..deploy-repository)))]]
    ($_ <>.and
        ^parents
        ^identity
        ^info
        ^repositories
        ^dependencies
        ^sources
        ^target
        ^program
        ^test
        ^deploy-repositories
        )))

(def: #export project
  (Parser Project)
  (let [default-profile (: (Parser Project)
                           (:: <>.monad map
                               (|>> [/.default] (list) (dictionary.from-list text.hash))
                               ..profile))
        multi-profile (: (Parser Project)
                         (:: <>.monad map
                             (dictionary.from-list text.hash)
                             (<c>.record (<>.many (<>.and <c>.text
                                                          ..profile)))))]
    (<>.either multi-profile
               default-profile)))