aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/input.lux
blob: 606fefdeb232c2f8e66124eed995459300fa2525 (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
(.module:
  [lux #*
   [abstract
    [monad (#+ Monad do)]]
   [control
    [pipe (#+ do>)]
    ["." try (#+ Try)]
    [parser
     ["<.>" code]]]
   [data
    [binary (#+ Binary)]
    ["." text
     [encoding
      ["." utf8]]]]
   [meta
    ["." location]]
   [tool
    [compiler
     [language
      [lux
       ["." syntax]]]]]
   [world
    ["." file]]]
  ["." // #_
   [profile (#+ Profile)]
   ["#." project (#+ Project)]
   ["#." parser]])

(def: (parse_lux source_code)
  (-> Text (Try Code))
  (let [parse (syntax.parse ""
                            syntax.no_aliases
                            (text.size source_code))]
    (case (parse [location.dummy 0 source_code])
      (#.Left [_ error])
      (#try.Failure error)
      
      (#.Right [_ lux_code])
      (#try.Success lux_code))))

(def: parse_project
  (-> Binary (Try Project))
  (|>> (do> try.monad
            [(\ utf8.codec decode)]
            [..parse_lux]
            [(list) (<code>.run //parser.project)])))

(def: #export (read monad fs profile)
  (All [!] (-> (Monad !) (file.System !) Text (! (Try Profile))))
  (|> //project.file
      (\ fs read)
      (\ monad map (|>> (do> try.monad
                             []
                             [..parse_project]
                             [(//project.profile profile)])))))