Refactoring and documentations

Revert debug code
pull/94/head
Pagran 5 years ago
parent 971e595d34
commit 7d890c474f

@ -7,13 +7,15 @@ import (
mathrand "math/rand"
)
// PosMax is the largest line or column value that can be represented without loss.
// Incoming values (arguments) larger than PosMax will be set to PosMax.
// Source: https://golang.org/src/cmd/compile/internal/syntax/pos.go
const PosMax = 1 << 30
const PosMin = 1
var emptyLine = &ast.CommentGroup{List: []*ast.Comment{{Text: "//line :1"}}}
const (
// PosMax is the largest line or column value that can be represented without loss.
// Source: https://golang.org/src/cmd/compile/internal/syntax/pos.go
PosMax = 1 << 30
// PosMin is the smallest correct value for the line number.
// Source: https://github.com/golang/go/blob/2001685ec01c240eda84762a3bc612ddd3ca93fe/src/cmd/compile/internal/syntax/parser_test.go#L229
PosMin = 1
)
func transformLineInfo(fileIndex int, file *ast.File) *ast.File {
pre := func(cursor *astutil.Cursor) bool {
@ -28,12 +30,12 @@ func transformLineInfo(fileIndex int, file *ast.File) *ast.File {
}
if envGarbleTiny {
funcDecl.Doc = emptyLine
funcDecl.Doc = &ast.CommentGroup{List: []*ast.Comment{{Text: "//line :1"}}}
return true
}
line := hashWithAsUint64(buildInfo.buildID, fmt.Sprintf("%d:%s", fileIndex, funcDecl.Name), PosMin, PosMax)
comment := &ast.Comment{Text: fmt.Sprintf("//line %c.go:%d", nameCharset[mathrand.Intn(len(nameCharset))], line)}
linePos := hashWithAsUint64(buildInfo.buildID, fmt.Sprintf("%d:%s", fileIndex, funcDecl.Name), PosMin, PosMax)
comment := &ast.Comment{Text: fmt.Sprintf("//line %c.go:%d", nameCharset[mathrand.Intn(len(nameCharset))], linePos)}
funcDecl.Doc = &ast.CommentGroup{List: []*ast.Comment{comment}}
return true
}

@ -45,7 +45,7 @@ var (
func init() {
flagSet.Usage = usage
flagSet.BoolVar(&flagGarbleLiterals, "literals", false, "Encrypt all literals with AES, currently only literal strings are supported")
flagSet.BoolVar(&flagGarbleTiny, "tiny", false, "Encrypt all literals with AES, currently only literal strings are supported")
flagSet.BoolVar(&flagGarbleTiny, "tiny", false, "Removes information about file names and line numbers irretrievably")
flagSet.StringVar(&flagDebugDir, "debugdir", "", "Write the garbled source to a given directory: '-debugdir=./debug'")
flagSet.StringVar(&flagSeed, "seed", "", "Provide a custom base64-encoded seed: '-seed=o9WDTZ4CN4w=' \nFor a random seed provide: '-seed=random'")
}
@ -462,7 +462,7 @@ func transformCompile(args []string) ([]string, error) {
return nil, err
}
deferred = append(deferred, func() error {
return nil //return os.RemoveAll(tempDir)
return os.RemoveAll(tempDir)
})
// Add our temporary dir to the beginning of -trimpath, so that we don't

Loading…
Cancel
Save