forked from eoscanada/eos-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
name.go
93 lines (76 loc) · 1.79 KB
/
name.go
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
package eos
import (
"strings"
)
// ExtendedStringToName acts similar to StringToName with the big differences
// that it will automtically try to infer from which format to convert to a name.
// Current rules are:
// - If the `s` contains a `,` character, assumes it's a `Symbol`
// - If the `s` contains only upper-case characters and length is <= 7, assumes it's a `SymbolCode`
// - Otherwise, forwards `s` to `StringToName` directly
func ExtendedStringToName(s string) (val uint64, err error) {
if strings.Contains(s, ",") {
symbol, err := StringToSymbol(s)
if err != nil {
return 0, err
}
return symbol.ToUint64()
}
if symbolCodeRegex.MatchString(s) {
symbolCode, err := StringToSymbolCode(s)
if err != nil {
return 0, err
}
return uint64(symbolCode), nil
}
return StringToName(s)
}
func StringToName(s string) (val uint64, err error) {
// ported from the eosio codebase, libraries/chain/include/eosio/chain/name.hpp
var i uint32
sLen := uint32(len(s))
for ; i <= 12; i++ {
var c uint64
if i < sLen {
c = uint64(charToSymbol(s[i]))
}
if i < 12 {
c &= 0x1f
c <<= 64 - 5*(i+1)
} else {
c &= 0x0f
}
val |= c
}
return
}
func charToSymbol(c byte) byte {
if c >= 'a' && c <= 'z' {
return c - 'a' + 6
}
if c >= '1' && c <= '5' {
return c - '1' + 1
}
return 0
}
var base32Alphabet = []byte(".12345abcdefghijklmnopqrstuvwxyz")
func NameToString(in uint64) string {
// ported from libraries/chain/name.cpp in eosio
a := []byte{'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.'}
tmp := in
i := uint32(0)
for ; i <= 12; i++ {
bit := 0x1f
if i == 0 {
bit = 0x0f
}
c := base32Alphabet[tmp&uint64(bit)]
a[12-i] = c
shift := uint(5)
if i == 0 {
shift = 4
}
tmp >>= shift
}
return strings.TrimRight(string(a), ".")
}