代码拉取完成,页面将自动刷新
/*
Copyright 2019 The Vitess 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 main
import (
"bytes"
"flag"
"fmt"
"go/parser"
"go/token"
"io/ioutil"
"os"
)
var (
inputFile = flag.String("input", "", "input file to use")
outputFile = flag.String("output", "", "output file")
compare = flag.Bool("compareOnly", false, "instead of writing to the output file, compare if the generated visitor is still valid for this ast.go")
)
const usage = `Usage of visitorgen:
go run /path/to/visitorgen/main -input=/path/to/ast.go -output=/path/to/rewriter.go
`
func main() {
log := xlog.NewStdLog(xlog.Level(xlog.INFO))
defer func() {
if x := recover(); x != nil {
log.Error("sqlparser.visitorgen.failed: %v", x)
}
}()
flag.Usage = printUsage
flag.Parse()
if *inputFile == "" || *outputFile == "" {
printUsage()
os.Exit(0)
}
log.Info("sqlparser.visitorgen.inputFile[%s].outputFile[%s].compare[%t].start...\n", *inputFile, *outputFile, *compare)
fs := token.NewFileSet()
file, err := parser.ParseFile(fs, *inputFile, nil, parser.DeclarationErrors)
if err != nil {
panic(fmt.Sprintf("parse.file[%s].error[%v]", *inputFile, err))
}
astWalkResult := visitorgen.Walk(file)
vp := visitorgen.Transform(astWalkResult)
vd := visitorgen.ToVisitorPlan(vp)
replacementMethods := visitorgen.EmitReplacementMethods(vd)
typeSwitch := visitorgen.EmitTypeSwitches(vd)
b := &bytes.Buffer{}
fmt.Fprint(b, fileHeader)
fmt.Fprintln(b)
fmt.Fprintln(b, replacementMethods)
fmt.Fprint(b, applyHeader)
fmt.Fprintln(b, typeSwitch)
fmt.Fprintln(b, fileFooter)
if *compare {
currentFile, err := ioutil.ReadFile(*outputFile)
if err != nil {
panic(fmt.Sprintf("read.file[%s].error[%v]", *outputFile, err))
}
if !bytes.Equal(b.Bytes(), currentFile) {
fmt.Println("rewriter needs to be re-generated: go generate " + *outputFile)
os.Exit(1)
}
log.Info("sqlparser.visitorgen.compare.success")
} else {
err = ioutil.WriteFile(*outputFile, b.Bytes(), 0644)
if err != nil {
panic(fmt.Sprintf("write.file[%s].error[%v]", *outputFile, err))
}
}
log.Info("sqlparser.visitorgen.finish...")
}
func printUsage() {
os.Stderr.WriteString(usage)
os.Stderr.WriteString("\nOptions:\n")
flag.PrintDefaults()
}
const fileHeader = `// Code generated by visitorgen/main/main.go. DO NOT EDIT.
package sqlparser
//go:generate go run ./visitorgen/main -input=ast.go -output=rewriter.go
import (
"reflect"
)
type replacerFunc func(newNode, parent SQLNode)
// application carries all the shared data so we can pass it around cheaply.
type application struct {
pre, post ApplyFunc
cursor Cursor
}
`
const applyHeader = `
// apply is where the visiting happens. Here is where we keep the big switch-case that will be used
// to do the actual visiting of SQLNodes
func (a *application) apply(parent, node SQLNode, replacer replacerFunc) {
if node == nil || isNilValue(node) {
return
}
// avoid heap-allocating a new cursor for each apply call; reuse a.cursor instead
saved := a.cursor
a.cursor.replacer = replacer
a.cursor.node = node
a.cursor.parent = parent
if a.pre != nil && !a.pre(&a.cursor) {
a.cursor = saved
return
}
// walk children
// (the order of the cases is alphabetical)
switch n := node.(type) {
case nil:
`
const fileFooter = `
default:
panic("unknown ast type " + reflect.TypeOf(node).String())
}
if a.post != nil && !a.post(&a.cursor) {
panic(abort)
}
a.cursor = saved
}
func isNilValue(i interface{}) bool {
valueOf := reflect.ValueOf(i)
kind := valueOf.Kind()
isNullable := kind == reflect.Ptr || kind == reflect.Array || kind == reflect.Slice
return isNullable && valueOf.IsNil()
}`
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。