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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
|
package format
import (
"unsafe"
"codeberg.org/gruf/go-xunsafe"
)
// iterArrayType returns a FormatFunc capable of iterating
// and formatting the given array type currently in TypeIter{}.
// note this will fetch a sub-FormatFunc for the array element
// type, and also handle special cases of [n]byte, [n]rune arrays.
func (fmt *Formatter) iterArrayType(t xunsafe.TypeIter) FormatFunc {
// Array element type.
elem := t.Type.Elem()
// Get nested elem TypeIter with appropriate flags.
flags := xunsafe.ReflectArrayElemFlags(t.Flag, elem)
et := t.Child(elem, flags)
// Get elem format func.
fn := fmt.loadOrGet(et)
if fn == nil {
panic("unreachable")
}
// Handle possible sizes.
switch t.Type.Len() {
case 0:
return emptyArrayType(t)
case 1:
return iterSingleArrayType(t, fn)
default:
return iterMultiArrayType(t, fn)
}
}
func emptyArrayType(t xunsafe.TypeIter) FormatFunc {
if !needs_typestr(t) {
// Simply append empty.
return func(s *State) {
s.B = append(s.B, "[]"...)
}
}
// Array type string with refs.
typestr := typestr_with_refs(t)
// Append empty with type.
return func(s *State) {
if s.A.WithType() {
s.B = append(s.B, typestr...)
s.B = append(s.B, "{}"...)
} else {
s.B = append(s.B, "[]"...)
}
}
}
func iterSingleArrayType(t xunsafe.TypeIter, fn FormatFunc) FormatFunc {
if !needs_typestr(t) {
return func(s *State) {
// Wrap 'fn' in braces.
s.B = append(s.B, '[')
fn(s)
s.B = append(s.B, ']')
}
}
// Array type string with refs.
typestr := typestr_with_refs(t)
// Wrap in type+braces.
return func(s *State) {
// Open / close braces.
var open, close uint8
open, close = '[', ']'
// Include type info.
if s.A.WithType() {
s.B = append(s.B, typestr...)
open, close = '{', '}'
}
// Wrap 'fn' in braces.
s.B = append(s.B, open)
fn(s)
s.B = append(s.B, close)
}
}
func iterMultiArrayType(t xunsafe.TypeIter, fn FormatFunc) FormatFunc {
// Array element in-memory size.
esz := t.Type.Elem().Size()
// Number of elements.
n := t.Type.Len()
if !needs_typestr(t) {
// Wrap elems in braces.
return func(s *State) {
ptr := s.P
// Prepend array brace.
s.B = append(s.B, '[')
for i := 0; i < n; i++ {
// Format at array index.
offset := esz * uintptr(i)
s.P = add(ptr, offset)
fn(s)
// Append separator.
s.B = append(s.B, ',')
}
// Drop final space.
s.B = s.B[:len(s.B)-1]
// Prepend array brace.
s.B = append(s.B, ']')
}
}
// Array type string with refs.
typestr := typestr_with_refs(t)
// Wrap in type+braces.
return func(s *State) {
ptr := s.P
// Open / close braces.
var open, close uint8
open, close = '[', ']'
// Include type info.
if s.A.WithType() {
s.B = append(s.B, typestr...)
open, close = '{', '}'
}
// Prepend array brace.
s.B = append(s.B, open)
for i := 0; i < n; i++ {
// Format at array index.
offset := esz * uintptr(i)
s.P = add(ptr, offset)
fn(s)
// Append separator.
s.B = append(s.B, ',')
}
// Drop final comma.
s.B = s.B[:len(s.B)-1]
// Prepend array brace.
s.B = append(s.B, close)
}
}
func wrapByteArray(t xunsafe.TypeIter, fn FormatFunc) FormatFunc {
n := t.Type.Len()
if !needs_typestr(t) {
return func(s *State) {
if s.A.AsText() || s.A.AsQuotedText() || s.A.AsQuotedASCII() {
var v string
p := (*xunsafe.Unsafeheader_String)(unsafe.Pointer(&v))
p.Len = n
p.Data = s.P
appendString(s, v)
} else {
fn(s)
}
}
}
typestr := typestr_with_ptrs(t)
return func(s *State) {
if s.A.AsText() || s.A.AsQuotedText() || s.A.AsQuotedASCII() {
var v string
p := (*xunsafe.Unsafeheader_String)(unsafe.Pointer(&v))
p.Len = n
p.Data = s.P
if s.A.WithType() {
s.B = append(s.B, "("+typestr+")("...)
appendString(s, v)
s.B = append(s.B, ")"...)
} else {
appendString(s, v)
}
} else {
fn(s)
}
}
}
func wrapRuneArray(t xunsafe.TypeIter, fn FormatFunc) FormatFunc {
n := t.Type.Len()
if !needs_typestr(t) {
return func(s *State) {
if s.A.AsText() || s.A.AsQuotedText() || s.A.AsQuotedASCII() {
var v []rune
p := (*xunsafe.Unsafeheader_Slice)(unsafe.Pointer(&v))
p.Cap = n
p.Len = n
p.Data = s.P
appendString(s, string(v))
} else {
fn(s)
}
}
}
typestr := typestr_with_ptrs(t)
return func(s *State) {
if s.A.AsText() || s.A.AsQuotedText() || s.A.AsQuotedASCII() {
var v []rune
p := (*xunsafe.Unsafeheader_Slice)(unsafe.Pointer(&v))
p.Cap = n
p.Len = n
p.Data = s.P
if s.A.WithType() {
s.B = append(s.B, "("+typestr+")("...)
appendString(s, string(v))
s.B = append(s.B, ")"...)
} else {
appendString(s, string(v))
}
} else {
fn(s)
}
}
}
|