Refactoring

pull/152/head
Pagran 5 years ago
parent a59b1136f4
commit 1eddc9555a

@ -46,7 +46,7 @@ func getLocalName(text string) (string, bool) {
if !isDirective(text, nameSpecialDirectives) {
return "", false
}
parts := strings.SplitN(text, " ", 3)
parts := strings.Fields(text)
if len(parts) < 2 {
return "", false
}
@ -110,7 +110,9 @@ func clearNodeComments(node ast.Node) {
}
}
func processSpecialComments(commentGroups []*ast.CommentGroup) (extraComments, localnameBlacklist []string) {
// processDetachedDire collects all not attached to declarations comments and build tags
// It returns detached comments and local name blacklist
func processDetachedDirectives(commentGroups []*ast.CommentGroup) (detachedComments, localNameBlacklist []string) {
var buildTags []string
var specialComments []string
for _, commentGroup := range commentGroups {
@ -126,26 +128,28 @@ func processSpecialComments(commentGroups []*ast.CommentGroup) (extraComments, l
specialComments = append(specialComments, comment.Text)
if localName, ok := getLocalName(comment.Text); ok {
localnameBlacklist = append(localnameBlacklist, localName)
localNameBlacklist = append(localNameBlacklist, localName)
}
}
}
extraComments = append(extraComments, buildTags...)
extraComments = append(extraComments, specialComments...)
extraComments = append(extraComments, "")
return extraComments, localnameBlacklist
detachedComments = append(detachedComments, buildTags...)
detachedComments = append(detachedComments, specialComments...)
detachedComments = append(detachedComments, "")
return detachedComments, localNameBlacklist
}
func transformLineInfo(file *ast.File, cgoFile bool) ([]string, []string, *ast.File) {
// transformLineInfo removes the comment except go directives and build tags. Converts comments to the node view.
// It returns comments not attached to declarations and names of declarations which cannot be renamed.
func transformLineInfo(file *ast.File, cgoFile bool) (detachedComments, localNameBlacklist []string, f *ast.File) {
prefix := ""
if cgoFile {
prefix = "_cgo_"
}
// Save build tags and add file name leak protection
extraComments, localNameBlacklist := processSpecialComments(file.Comments)
extraComments = append(extraComments, "", "//line "+prefix+":1")
detachedComments, localNameBlacklist = processDetachedDirectives(file.Comments)
detachedComments = append(detachedComments, "", "//line "+prefix+":1")
file.Comments = nil
newLines := mathrand.Perm(len(file.Decls))
@ -170,5 +174,5 @@ func transformLineInfo(file *ast.File, cgoFile bool) ([]string, []string, *ast.F
return true
}
return extraComments, localNameBlacklist, astutil.Apply(file, pre, nil).(*ast.File)
return detachedComments, localNameBlacklist, astutil.Apply(file, pre, nil).(*ast.File)
}

@ -591,19 +591,19 @@ func transformCompile(args []string) ([]string, error) {
privateNameMap := make(map[string]string)
existingNames := collectNames(files)
packageCounter := 0
filesExtraComments := make([][]string, len(files))
detachedComments := make([][]string, len(files))
for i, file := range files {
name := filepath.Base(filepath.Clean(paths[i]))
cgoFile := strings.HasPrefix(name, "_cgo_")
extraComments, localNameBlacklist, file := transformLineInfo(file, cgoFile)
fileDetachedComments, localNameBlacklist, file := transformLineInfo(file, cgoFile)
for _, name := range localNameBlacklist {
obj := pkg.Scope().Lookup(name)
if obj != nil {
blacklist[obj] = struct{}{}
}
}
filesExtraComments[i] = extraComments
detachedComments[i] = fileDetachedComments
files[i] = file
}
@ -662,9 +662,9 @@ func transformCompile(args []string) ([]string, error) {
printWriter = io.MultiWriter(tempFile, debugFile)
}
extraComments := filesExtraComments[i]
if len(extraComments) > 0 {
for _, comment := range extraComments {
fileDetachedComments := detachedComments[i]
if len(fileDetachedComments) > 0 {
for _, comment := range fileDetachedComments {
if _, err = printWriter.Write([]byte(comment + "\n")); err != nil {
return nil, err
}

Loading…
Cancel
Save