-
Notifications
You must be signed in to change notification settings - Fork 5
/
etf.go
144 lines (128 loc) · 2.71 KB
/
etf.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
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
package etf
import (
"fmt"
)
type cacheFlag struct {
isNew bool
segmentIdx uint8
}
type atomCacheRef struct {
idx uint8
text *string
}
type Context struct {
atomCache [2048]*string
currentCache []*string
}
type Term interface{}
type Tuple []Term
type List []Term
type Atom string
type Pid struct {
Node Atom
Id uint32
Serial uint32
Creation byte
}
type Port struct {
Node Atom
Id uint32
Creation byte
}
type Ref struct {
Node Atom
Creation byte
Id []uint32
}
type Function struct {
Arity byte
Unique [16]byte
Index uint32
Free uint32
Module Atom
OldIndex uint32
OldUnique uint32
Pid Pid
FreeVars []Term
}
type Export struct {
Module Atom
Function Atom
Arity byte
}
// Erlang external term tags.
const (
ettAtom = 'd'
ettAtomUTF8 = 'v' // this is beyond retarded
ettBinary = 'm'
ettBitBinary = 'M'
ettCachedAtom = 'C'
ettCacheRef = 'R'
ettExport = 'q'
ettFloat = 'c'
ettFun = 'u'
ettInteger = 'b'
ettLargeBig = 'o'
ettLargeTuple = 'i'
ettList = 'l'
ettNewCache = 'N'
ettNewFloat = 'F'
ettNewFun = 'p'
ettNewRef = 'r'
ettNil = 'j'
ettPid = 'g'
ettPort = 'f'
ettRef = 'e'
ettSmallAtom = 's'
ettSmallAtomUTF8 = 'w' // this is beyond retarded
ettSmallBig = 'n'
ettSmallInteger = 'a'
ettSmallTuple = 'h'
ettString = 'k'
)
const (
// Erlang external term format version
EtVersion = byte(131)
)
const (
// Erlang distribution header
EtDist = byte('D')
)
var tagNames = map[byte]string{
ettAtom: "ATOM_EXT",
ettAtomUTF8: "ATOM_UTF8_EXT",
ettBinary: "BINARY_EXT",
ettBitBinary: "BIT_BINARY_EXT",
ettCachedAtom: "ATOM_CACHE_REF",
ettExport: "EXPORT_EXT",
ettFloat: "FLOAT_EXT",
ettFun: "FUN_EXT",
ettInteger: "INTEGER_EXT",
ettLargeBig: "LARGE_BIG_EXT",
ettLargeTuple: "LARGE_TUPLE_EXT",
ettList: "LIST_EXT",
ettNewCache: "NEW_CACHE_EXT",
ettNewFloat: "NEW_FLOAT_EXT",
ettNewFun: "NEW_FUN_EXT",
ettNewRef: "NEW_REFERENCE_EXT",
ettNil: "NIL_EXT",
ettPid: "PID_EXT",
ettPort: "PORT_EXT",
ettRef: "REFERENCE_EXT",
ettSmallAtom: "SMALL_ATOM_EXT",
ettSmallAtomUTF8: "SMALL_ATOM_UTF8_EXT",
ettSmallBig: "SMALL_BIG_EXT",
ettSmallInteger: "SMALL_INTEGER_EXT",
ettSmallTuple: "SMALL_TUPLE_EXT",
ettString: "STRING_EXT",
}
func (t Tuple) Element(i int) Term {
return t[i-1]
}
func tagName(t byte) (name string) {
name = tagNames[t]
if name == "" {
name = fmt.Sprintf("%d", t)
}
return
}