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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
|
// Copyright 2018 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.
// Stateify provides a simple way to generate Load/Save methods based on
// existing types and struct tags.
package main
import (
"flag"
"fmt"
"go/ast"
"go/parser"
"go/token"
"io/ioutil"
"os"
"path/filepath"
"reflect"
"strings"
"sync"
)
var (
pkg = flag.String("pkg", "", "output package")
imports = flag.String("imports", "", "extra imports for the output file")
output = flag.String("output", "", "output file")
statePkg = flag.String("statepkg", "", "state import package; defaults to empty")
arch = flag.String("arch", "", "specify the target platform")
)
// The known architectures.
var okgoarch = []string{
"386",
"amd64",
"arm",
"arm64",
"mips",
"mipsle",
"mips64",
"mips64le",
"ppc64",
"ppc64le",
"riscv64",
"s390x",
"sparc64",
"wasm",
}
// readfile returns the content of the named file.
func readfile(file string) string {
data, err := ioutil.ReadFile(file)
if err != nil {
panic(fmt.Sprintf("readfile err: %v", err))
}
return string(data)
}
// matchfield reports whether the field (x,y,z) matches this build.
// all the elements in the field must be satisfied.
func matchfield(f string, goarch string) bool {
for _, tag := range strings.Split(f, ",") {
if !matchtag(tag, goarch) {
return false
}
}
return true
}
// matchtag reports whether the tag (x or !x) matches this build.
func matchtag(tag string, goarch string) bool {
if tag == "" {
return false
}
if tag[0] == '!' {
if len(tag) == 1 || tag[1] == '!' {
return false
}
return !matchtag(tag[1:], goarch)
}
return tag == goarch
}
// canBuild reports whether we can build this file for target platform by
// checking file name and build tags. The code is derived from the Go source
// cmd.dist.build.shouldbuild.
func canBuild(file, goTargetArch string) bool {
name := filepath.Base(file)
excluded := func(list []string, ok string) bool {
for _, x := range list {
if x == ok || (ok == "android" && x == "linux") || (ok == "illumos" && x == "solaris") {
continue
}
i := strings.Index(name, x)
if i <= 0 || name[i-1] != '_' {
continue
}
i += len(x)
if i == len(name) || name[i] == '.' || name[i] == '_' {
return true
}
}
return false
}
if excluded(okgoarch, goTargetArch) {
return false
}
// Check file contents for // +build lines.
for _, p := range strings.Split(readfile(file), "\n") {
p = strings.TrimSpace(p)
if p == "" {
continue
}
if !strings.HasPrefix(p, "//") {
break
}
if !strings.Contains(p, "+build") {
continue
}
fields := strings.Fields(p[2:])
if len(fields) < 1 || fields[0] != "+build" {
continue
}
for _, p := range fields[1:] {
if matchfield(p, goTargetArch) {
goto fieldmatch
}
}
return false
fieldmatch:
}
return true
}
// resolveTypeName returns a qualified type name.
func resolveTypeName(name string, typ ast.Expr) (field string, qualified string) {
for done := false; !done; {
// Resolve star expressions.
switch rs := typ.(type) {
case *ast.StarExpr:
qualified += "*"
typ = rs.X
case *ast.ArrayType:
if rs.Len == nil {
// Slice type declaration.
qualified += "[]"
} else {
// Array type declaration.
qualified += "[" + rs.Len.(*ast.BasicLit).Value + "]"
}
typ = rs.Elt
default:
// No more descent.
done = true
}
}
// Resolve a package selector.
sel, ok := typ.(*ast.SelectorExpr)
if ok {
qualified = qualified + sel.X.(*ast.Ident).Name + "."
typ = sel.Sel
}
// Figure out actual type name.
ident, ok := typ.(*ast.Ident)
if !ok {
panic(fmt.Sprintf("type not supported: %s (involves anonymous types?)", name))
}
field = ident.Name
qualified = qualified + field
return
}
// extractStateTag pulls the relevant state tag.
func extractStateTag(tag *ast.BasicLit) string {
if tag == nil {
return ""
}
if len(tag.Value) < 2 {
return ""
}
return reflect.StructTag(tag.Value[1 : len(tag.Value)-1]).Get("state")
}
// scanFunctions is a set of functions passed to scanFields.
type scanFunctions struct {
zerovalue func(name string)
normal func(name string)
wait func(name string)
value func(name, typName string)
}
// scanFields scans the fields of a struct.
//
// Each provided function will be applied to appropriately tagged fields, or
// skipped if nil.
//
// Fields tagged nosave are skipped.
func scanFields(ss *ast.StructType, fn scanFunctions) {
if ss.Fields.List == nil {
// No fields.
return
}
// Scan all fields.
for _, field := range ss.Fields.List {
// Calculate the name.
name := ""
if field.Names != nil {
// It's a named field; override.
name = field.Names[0].Name
} else {
// Anonymous types can't be embedded, so we don't need
// to worry about providing a useful name here.
name, _ = resolveTypeName("", field.Type)
}
// Skip _ fields.
if name == "_" {
continue
}
switch tag := extractStateTag(field.Tag); tag {
case "zerovalue":
if fn.zerovalue != nil {
fn.zerovalue(name)
}
case "":
if fn.normal != nil {
fn.normal(name)
}
case "wait":
if fn.wait != nil {
fn.wait(name)
}
case "manual", "nosave", "ignore":
// Do nothing.
default:
if strings.HasPrefix(tag, ".(") && strings.HasSuffix(tag, ")") {
if fn.value != nil {
fn.value(name, tag[2:len(tag)-1])
}
}
}
}
}
func camelCased(name string) string {
return strings.ToUpper(name[:1]) + name[1:]
}
func main() {
// Parse flags.
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "Usage: %s [options]\n", os.Args[0])
flag.PrintDefaults()
}
flag.Parse()
if len(flag.Args()) == 0 {
flag.Usage()
os.Exit(1)
}
if *pkg == "" {
fmt.Fprintf(os.Stderr, "Error: package required.")
os.Exit(1)
}
// Open the output file.
var (
outputFile *os.File
err error
)
if *output == "" || *output == "-" {
outputFile = os.Stdout
} else {
outputFile, err = os.OpenFile(*output, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644)
if err != nil {
fmt.Fprintf(os.Stderr, "Error opening output %q: %v", *output, err)
}
defer outputFile.Close()
}
// Set the statePrefix for below, depending on the import.
statePrefix := ""
if *statePkg != "" {
parts := strings.Split(*statePkg, "/")
statePrefix = parts[len(parts)-1] + "."
}
// initCalls is dumped at the end.
var initCalls []string
// Declare our emission closures.
emitRegister := func(name string) {
initCalls = append(initCalls, fmt.Sprintf("%sRegister(\"%s.%s\", (*%s)(nil), state.Fns{Save: (*%s).save, Load: (*%s).load})", statePrefix, *pkg, name, name, name, name))
}
emitZeroCheck := func(name string) {
fmt.Fprintf(outputFile, " if !%sIsZeroValue(x.%s) { m.Failf(\"%s is %%v, expected zero\", x.%s) }\n", statePrefix, name, name, name)
}
emitLoadValue := func(name, typName string) {
fmt.Fprintf(outputFile, " m.LoadValue(\"%s\", new(%s), func(y interface{}) { x.load%s(y.(%s)) })\n", name, typName, camelCased(name), typName)
}
emitLoad := func(name string) {
fmt.Fprintf(outputFile, " m.Load(\"%s\", &x.%s)\n", name, name)
}
emitLoadWait := func(name string) {
fmt.Fprintf(outputFile, " m.LoadWait(\"%s\", &x.%s)\n", name, name)
}
emitSaveValue := func(name, typName string) {
fmt.Fprintf(outputFile, " var %s %s = x.save%s()\n", name, typName, camelCased(name))
fmt.Fprintf(outputFile, " m.SaveValue(\"%s\", %s)\n", name, name)
}
emitSave := func(name string) {
fmt.Fprintf(outputFile, " m.Save(\"%s\", &x.%s)\n", name, name)
}
// Emit the package name.
fmt.Fprint(outputFile, "// automatically generated by stateify.\n\n")
fmt.Fprintf(outputFile, "package %s\n\n", *pkg)
// Emit the imports lazily.
var once sync.Once
maybeEmitImports := func() {
once.Do(func() {
// Emit the imports.
fmt.Fprint(outputFile, "import (\n")
if *statePkg != "" {
fmt.Fprintf(outputFile, " \"%s\"\n", *statePkg)
}
if *imports != "" {
for _, i := range strings.Split(*imports, ",") {
fmt.Fprintf(outputFile, " \"%s\"\n", i)
}
}
fmt.Fprint(outputFile, ")\n\n")
})
}
files := make([]*ast.File, 0, len(flag.Args()))
// Parse the input files.
for _, filename := range flag.Args() {
// Parse the file.
fset := token.NewFileSet()
f, err := parser.ParseFile(fset, filename, nil, parser.ParseComments)
if err != nil {
// Not a valid input file?
fmt.Fprintf(os.Stderr, "Input %q can't be parsed: %v\n", filename, err)
os.Exit(1)
}
if !canBuild(filename, *arch) {
continue
}
files = append(files, f)
}
type method struct {
receiver string
name string
}
// Search for and add all methods with a pointer receiver and no other
// arguments to a set. We support auto-detecting the existence of
// several different methods with this signature.
simpleMethods := map[method]struct{}{}
for _, f := range files {
// Go over all functions.
for _, decl := range f.Decls {
d, ok := decl.(*ast.FuncDecl)
if !ok {
continue
}
if d.Name == nil || d.Recv == nil || d.Type == nil {
// Not a named method.
continue
}
if len(d.Recv.List) != 1 {
// Wrong number of receivers?
continue
}
if d.Type.Params != nil && len(d.Type.Params.List) != 0 {
// Has argument(s).
continue
}
if d.Type.Results != nil && len(d.Type.Results.List) != 0 {
// Has return(s).
continue
}
pt, ok := d.Recv.List[0].Type.(*ast.StarExpr)
if !ok {
// Not a pointer receiver.
continue
}
t, ok := pt.X.(*ast.Ident)
if !ok {
// This shouldn't happen with valid Go.
continue
}
simpleMethods[method{t.Name, d.Name.Name}] = struct{}{}
}
}
for _, f := range files {
// Go over all named types.
for _, decl := range f.Decls {
d, ok := decl.(*ast.GenDecl)
if !ok || d.Tok != token.TYPE {
continue
}
// Only generate code for types marked
// "// +stateify savable" in one of the proceeding
// comment lines.
if d.Doc == nil {
continue
}
savable := false
for _, l := range d.Doc.List {
if l.Text == "// +stateify savable" {
savable = true
break
}
}
if !savable {
continue
}
for _, gs := range d.Specs {
ts := gs.(*ast.TypeSpec)
switch ts.Type.(type) {
case *ast.InterfaceType, *ast.ChanType, *ast.FuncType, *ast.ParenExpr, *ast.StarExpr:
// Don't register.
break
case *ast.StructType:
maybeEmitImports()
ss := ts.Type.(*ast.StructType)
// Define beforeSave if a definition was not found. This
// prevents the code from compiling if a custom beforeSave
// was defined in a file not provided to this binary and
// prevents inherited methods from being called multiple times
// by overriding them.
if _, ok := simpleMethods[method{ts.Name.Name, "beforeSave"}]; !ok {
fmt.Fprintf(outputFile, "func (x *%s) beforeSave() {}\n", ts.Name.Name)
}
// Generate the save method.
fmt.Fprintf(outputFile, "func (x *%s) save(m %sMap) {\n", ts.Name.Name, statePrefix)
fmt.Fprintf(outputFile, " x.beforeSave()\n")
scanFields(ss, scanFunctions{zerovalue: emitZeroCheck})
scanFields(ss, scanFunctions{value: emitSaveValue})
scanFields(ss, scanFunctions{normal: emitSave, wait: emitSave})
fmt.Fprintf(outputFile, "}\n\n")
// Define afterLoad if a definition was not found. We do this
// for the same reason that we do it for beforeSave.
_, hasAfterLoad := simpleMethods[method{ts.Name.Name, "afterLoad"}]
if !hasAfterLoad {
fmt.Fprintf(outputFile, "func (x *%s) afterLoad() {}\n", ts.Name.Name)
}
// Generate the load method.
//
// Note that the manual loads always follow the
// automated loads.
fmt.Fprintf(outputFile, "func (x *%s) load(m %sMap) {\n", ts.Name.Name, statePrefix)
scanFields(ss, scanFunctions{normal: emitLoad, wait: emitLoadWait})
scanFields(ss, scanFunctions{value: emitLoadValue})
if hasAfterLoad {
// The call to afterLoad is made conditionally, because when
// AfterLoad is called, the object encodes a dependency on
// referred objects (i.e. fields). This means that afterLoad
// will not be called until the other afterLoads are called.
fmt.Fprintf(outputFile, " m.AfterLoad(x.afterLoad)\n")
}
fmt.Fprintf(outputFile, "}\n\n")
// Add to our registration.
emitRegister(ts.Name.Name)
case *ast.Ident, *ast.SelectorExpr, *ast.ArrayType:
maybeEmitImports()
_, val := resolveTypeName(ts.Name.Name, ts.Type)
// Dispatch directly.
fmt.Fprintf(outputFile, "func (x *%s) save(m %sMap) {\n", ts.Name.Name, statePrefix)
fmt.Fprintf(outputFile, " m.SaveValue(\"\", (%s)(*x))\n", val)
fmt.Fprintf(outputFile, "}\n\n")
fmt.Fprintf(outputFile, "func (x *%s) load(m %sMap) {\n", ts.Name.Name, statePrefix)
fmt.Fprintf(outputFile, " m.LoadValue(\"\", new(%s), func(y interface{}) { *x = (%s)(y.(%s)) })\n", val, ts.Name.Name, val)
fmt.Fprintf(outputFile, "}\n\n")
// See above.
emitRegister(ts.Name.Name)
}
}
}
}
if len(initCalls) > 0 {
// Emit the init() function.
fmt.Fprintf(outputFile, "func init() {\n")
for _, ic := range initCalls {
fmt.Fprintf(outputFile, " %s\n", ic)
}
fmt.Fprintf(outputFile, "}\n")
}
}
|