aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/parser.lux
blob: 411b4665b2892c9dc949ef4942748c1938da3645 (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
238
239
240
241
242
243
244
(.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)]
   ["#." dependency]
   ["#." repository #_
    ["#" remote]]
   ["#." artifact (#+ Artifact)
    ["#/." type]]])

(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 //repository.Address)
  ..url)

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

(def: dependency
  (Parser //dependency.Dependency)
  (<c>.tuple
   ($_ <>.and
       ..artifact'
       (<>.default //artifact/type.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 //repository.Address]))
  (<c>.record (<>.some
               (<>.and <c>.text
                       ..repository))))

(def: default_repository
  "https://repo1.maven.org/maven2/")

(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 //repository.Address))
                            (|> (..plural input "repositories" ..repository)
                                (\ ! map (set.from_list text.hash))
                                (<>.default (set.new text.hash))
                                (\ ! map (set.add ..default_repository))))
           ^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 //repository.Address))
                                   (<| (\ ! 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)))