aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/char.lux
blob: 49c247f93157addc17b1b7186c7d60b3cbddce5b (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
##  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:
  lux
  (lux/control eq
               [ord]
               codec
               hash)
  (.. [text "Text/" Monoid<Text>]))

## [Structures]
(struct: #export _ (Eq Char)
  (def: (= x y)
    (_lux_proc ["jvm" "ceq"] [x y])))

(struct: #export _ (Hash Char)
  (def: eq Eq<Char>)
  (def: hash
    (|>. []
         (_lux_proc ["jvm" "c2i"])
         []
         (_lux_proc ["jvm" "i2l"])
         int-to-nat)))

(struct: #export _ (ord;Ord Char)
  (def: eq Eq<Char>)

  (do-template [<name> <op>]
    [(def: (<name> test subject)
       (_lux_proc ["jvm" <op>] [subject test]))]

    [<  "clt"]
    [>  "cgt"]
    )

  (do-template [<name> <op>]
    [(def: (<name> test subject)
       (or (_lux_proc ["jvm" "ceq"] [subject test])
           (_lux_proc ["jvm" <op>] [subject test])))]

    [<= "clt"]
    [>= "cgt"]
    ))

(struct: #export _ (Codec Text Char)
  (def: (encode x)
    (let [as-text (case x
                    #"\t" "\\t"
                    #"\b" "\\b"
                    #"\n" "\\n"
                    #"\r" "\\r"
                    #"\f" "\\f"
                    #"\"" "\\\""
                    #"\\" "\\\\"
                    _     (_lux_proc ["jvm" "invokevirtual:java.lang.Object:toString:"] [x]))]
      ($_ Text/append "#\"" as-text "\"")))

  (def: (decode y)
    (let [size (text;size y)]
      (if (and (text;starts-with? "#\"" y)
               (text;ends-with? "\"" y)
               (or (n.= +4 size)
                   (n.= +5 size)))
        (if (n.= +4 size)
          (case (text;nth +2 y)
            #;None
            (#;Left (Text/append "Wrong syntax for Char: " y))

            (#;Some char)
            (#;Right char))
          (case [(text;nth +2 y) (text;nth +3 y)]
            [(#;Some #"\\") (#;Some char)]
            (case char
              #"t" (#;Right #"\t")
              #"b" (#;Right #"\b")
              #"n" (#;Right #"\n")
              #"r" (#;Right #"\r")
              #"f" (#;Right #"\f")
              #"\"" (#;Right #"\"")
              #"\\" (#;Right #"\\")
              #"t" (#;Right #"\t")
              _    (#;Left (Text/append "Wrong syntax for Char: " y)))

            _
            (#;Left (Text/append "Wrong syntax for Char: " y))))
        (#;Left (Text/append "Wrong syntax for Char: " y))))))

## [Values]
(def: #export (space? x)
  {#;doc "Checks whether the character is white-space."}
  (-> Char Bool)
  (_lux_proc ["jvm" "invokestatic:java.lang.Character:isWhitespace:char"] [x]))

(def: #export (as-text x)
  (-> Char Text)
  (_lux_proc ["jvm" "invokevirtual:java.lang.Object:toString:"] [x]))

(def: #export (char x)
  (-> Nat Char)
  (_lux_proc ["nat" "to-char"] [x]))

(def: #export (code x)
  (-> Char Nat)
  (_lux_proc ["char" "to-nat"] [x]))