aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/name.lux
blob: bd4b80c69b23e8dd1feee2572d615e838e00f97c (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
(.module:
  [lux #*
   [abstract
    [equivalence (#+ Equivalence)]
    [codec (#+ Codec)]
    hash]
   [data
    ["." text ("#@." monoid hash)]]])

## (type: Name
##   [Text Text])

(template [<name> <side>]
  [(def: #export (<name> [module short])
     (-> Name Text)
     <side>)]

  [module module]
  [short  short]
  )

(structure: #export equivalence (Equivalence Name)
  (def: (= [xmodule xname] [ymodule yname])
    (and (text@= xmodule ymodule)
         (text@= xname yname))))

(structure: #export codec (Codec Text Name)
  (def: (encode [module short])
    (case module
      "" short
      _ ($_ text@compose module "." short)))
  
  (def: (decode input)
    (if (text@= "" input)
      (#.Left (text@compose "Invalid format for Name: " input))
      (case (text.split-all-with "." input)
        (^ (list short))
        (#.Right ["" short])

        (^ (list module short))
        (#.Right [module short])

        _
        (#.Left (text@compose "Invalid format for Name: " input))))))

(structure: #export hash (Hash Name)
  (def: &equivalence ..equivalence)
  
  (def: (hash [module name])
    (n/+ (text@hash module) (text@hash name))))