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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
|
// Copyright 2019 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package gomarshal
import (
"bytes"
"flag"
"fmt"
"go/ast"
"go/token"
"io"
"os"
"path"
"reflect"
"sort"
"strconv"
"strings"
)
var debug = flag.Bool("debug", false, "enables debugging output")
// receiverName returns an appropriate receiver name given a type spec.
func receiverName(t *ast.TypeSpec) string {
if len(t.Name.Name) < 1 {
// Zero length type name?
panic("unreachable")
}
return strings.ToLower(t.Name.Name[:1])
}
// kindString returns a user-friendly representation of an AST expr type.
func kindString(e ast.Expr) string {
switch e.(type) {
case *ast.Ident:
return "scalar"
case *ast.ArrayType:
return "array"
case *ast.StructType:
return "struct"
case *ast.StarExpr:
return "pointer"
case *ast.FuncType:
return "function"
case *ast.InterfaceType:
return "interface"
case *ast.MapType:
return "map"
case *ast.ChanType:
return "channel"
default:
return reflect.TypeOf(e).String()
}
}
// fieldDispatcher is a collection of callbacks for handling different types of
// fields in a struct declaration.
type fieldDispatcher struct {
primitive func(n, t *ast.Ident)
selector func(n, tX, tSel *ast.Ident)
array func(n, t *ast.Ident, size int)
unhandled func(n *ast.Ident)
}
// Precondition: All dispatch callbacks that will be invoked must be
// provided. Embedded fields are not allowed, len(f.Names) >= 1.
func (fd fieldDispatcher) dispatch(f *ast.Field) {
// Each field declaration may actually be multiple declarations of the same
// type. For example, consider:
//
// type Point struct {
// x, y, z int
// }
//
// We invoke the call-backs once per such instance. Embedded fields are not
// allowed, and results in a panic.
if len(f.Names) < 1 {
panic("Precondition not met: attempted to dispatch on embedded field")
}
for _, name := range f.Names {
switch v := f.Type.(type) {
case *ast.Ident:
fd.primitive(name, v)
case *ast.SelectorExpr:
fd.selector(name, v.X.(*ast.Ident), v.Sel)
case *ast.ArrayType:
len := 0
if v.Len != nil {
// Non-literal array length is handled by generatorInterfaces.validate().
if lenLit, ok := v.Len.(*ast.BasicLit); ok {
var err error
len, err = strconv.Atoi(lenLit.Value)
if err != nil {
panic(err)
}
}
}
switch t := v.Elt.(type) {
case *ast.Ident:
fd.array(name, t, len)
default:
fd.array(name, nil, len)
}
default:
fd.unhandled(name)
}
}
}
// debugEnabled indicates whether debugging is enabled for gomarshal.
func debugEnabled() bool {
return *debug
}
// abort aborts the go_marshal tool with the given error message.
func abort(msg string) {
if !strings.HasSuffix(msg, "\n") {
msg += "\n"
}
fmt.Print(msg)
os.Exit(1)
}
// abortAt aborts the go_marshal tool with the given error message, with
// a reference position to the input source.
func abortAt(p token.Position, msg string) {
abort(fmt.Sprintf("%v:\n %s\n", p, msg))
}
// debugf conditionally prints a debug message.
func debugf(f string, a ...interface{}) {
if debugEnabled() {
fmt.Printf(f, a...)
}
}
// debugfAt conditionally prints a debug message with a reference to a position
// in the input source.
func debugfAt(p token.Position, f string, a ...interface{}) {
if debugEnabled() {
fmt.Printf("%s:\n %s", p, fmt.Sprintf(f, a...))
}
}
// emit generates a line of code in the output file.
//
// emit is a wrapper around writing a formatted string to the output
// buffer. emit can be invoked in one of two ways:
//
// (1) emit("some string")
// When emit is called with a single string argument, it is simply copied to
// the output buffer without any further formatting.
// (2) emit(fmtString, args...)
// emit can also be invoked in a similar fashion to *Printf() functions,
// where the first argument is a format string.
//
// Calling emit with a single argument that is not a string will result in a
// panic, as the caller's intent is ambiguous.
func emit(out io.Writer, indent int, a ...interface{}) {
const spacesPerIndentLevel = 4
if len(a) < 1 {
panic("emit() called with no arguments")
}
if indent > 0 {
if _, err := fmt.Fprint(out, strings.Repeat(" ", indent*spacesPerIndentLevel)); err != nil {
// Writing to the emit output should not fail. Typically the output
// is a byte.Buffer; writes to these never fail.
panic(err)
}
}
first, ok := a[0].(string)
if !ok {
// First argument must be either the string to emit (case 1 from
// function-level comment), or a format string (case 2).
panic(fmt.Sprintf("First argument to emit() is not a string: %+v", a[0]))
}
if len(a) == 1 {
// Single string argument. Assume no formatting requested.
if _, err := fmt.Fprint(out, first); err != nil {
// Writing to out should not fail.
panic(err)
}
return
}
// Formatting requested.
if _, err := fmt.Fprintf(out, first, a[1:]...); err != nil {
// Writing to out should not fail.
panic(err)
}
}
// sourceBuffer represents fragments of generated go source code.
//
// sourceBuffer provides a convenient way to build up go souce fragments in
// memory. May be safely zero-value initialized. Not thread-safe.
type sourceBuffer struct {
// Current indentation level.
indent int
// Memory buffer containing contents while they're being generated.
b bytes.Buffer
}
func (b *sourceBuffer) reset() {
b.indent = 0
b.b.Reset()
}
func (b *sourceBuffer) incIndent() {
b.indent++
}
func (b *sourceBuffer) decIndent() {
if b.indent <= 0 {
panic("decIndent() without matching incIndent()")
}
b.indent--
}
func (b *sourceBuffer) emit(a ...interface{}) {
emit(&b.b, b.indent, a...)
}
func (b *sourceBuffer) emitNoIndent(a ...interface{}) {
emit(&b.b, 0 /*indent*/, a...)
}
func (b *sourceBuffer) inIndent(body func()) {
b.incIndent()
body()
b.decIndent()
}
func (b *sourceBuffer) write(out io.Writer) error {
_, err := fmt.Fprint(out, b.b.String())
return err
}
// Write implements io.Writer.Write.
func (b *sourceBuffer) Write(buf []byte) (int, error) {
return (b.b.Write(buf))
}
// importStmt represents a single import statement.
type importStmt struct {
// Local name of the imported package.
name string
// Import path.
path string
// Indicates whether the local name is an alias, or simply the final
// component of the path.
aliased bool
// Indicates whether this import was referenced by generated code.
used bool
}
func newImport(p string) *importStmt {
name := path.Base(p)
return &importStmt{
name: name,
path: p,
aliased: false,
}
}
func newImportFromSpec(spec *ast.ImportSpec, f *token.FileSet) *importStmt {
p := spec.Path.Value[1 : len(spec.Path.Value)-1] // Strip the " quotes around path.
name := path.Base(p)
if name == "" || name == "/" || name == "." {
panic(fmt.Sprintf("Couldn't process local package name for import at %s, (processed as %s)",
f.Position(spec.Path.Pos()), name))
}
if spec.Name != nil {
name = spec.Name.Name
}
return &importStmt{
name: name,
path: p,
aliased: spec.Name != nil,
}
}
func (i *importStmt) String() string {
if i.aliased {
return fmt.Sprintf("%s \"%s\"", i.name, i.path)
}
return fmt.Sprintf("\"%s\"", i.path)
}
func (i *importStmt) markUsed() {
i.used = true
}
func (i *importStmt) equivalent(other *importStmt) bool {
return i.name == other.name && i.path == other.path && i.aliased == other.aliased
}
// importTable represents a collection of importStmts.
type importTable struct {
// Map of imports and whether they should be copied to the output.
is map[string]*importStmt
}
func newImportTable() *importTable {
return &importTable{
is: make(map[string]*importStmt),
}
}
// Merges import statements from other into i. Collisions in import statements
// result in a panic.
func (i *importTable) merge(other *importTable) {
for name, im := range other.is {
if dup, ok := i.is[name]; ok && !dup.equivalent(im) {
panic(fmt.Sprintf("Found colliding import statements: ours: %+v, other's: %+v", dup, im))
}
i.is[name] = im
}
}
func (i *importTable) addStmt(s *importStmt) *importStmt {
if old, ok := i.is[s.name]; ok && !old.equivalent(s) {
// A collision should always be between an import inserted by the
// go-marshal tool and an import from the original source file (assuming
// the original source file was valid). We could theoretically handle
// the collision by assigning a local name to our import. However, this
// would need to be plumbed throughout the generator. Given that
// collisions should be rare, simply panic on collision.
panic(fmt.Sprintf("Import collision: old: %s as %v; new: %v as %v", old.path, old.name, s.path, s.name))
}
i.is[s.name] = s
return s
}
func (i *importTable) add(s string) *importStmt {
n := newImport(s)
return i.addStmt(n)
}
func (i *importTable) addFromSpec(spec *ast.ImportSpec, f *token.FileSet) *importStmt {
return i.addStmt(newImportFromSpec(spec, f))
}
// Marks the import named n as used. If no such import is in the table, returns
// false.
func (i *importTable) markUsed(n string) bool {
if n, ok := i.is[n]; ok {
n.markUsed()
return true
}
return false
}
func (i *importTable) clear() {
for _, i := range i.is {
i.used = false
}
}
func (i *importTable) write(out io.Writer) error {
if len(i.is) == 0 {
// Nothing to import, we're done.
return nil
}
imports := make([]string, 0, len(i.is))
for _, i := range i.is {
if i.used {
imports = append(imports, i.String())
}
}
sort.Strings(imports)
var b sourceBuffer
b.emit("import (\n")
b.incIndent()
for _, i := range imports {
b.emit("%s\n", i)
}
b.decIndent()
b.emit(")\n\n")
return b.write(out)
}
|