-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollector.go
58 lines (49 loc) · 1.36 KB
/
collector.go
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
// Copyright 2022 Explore.dev Unipessoal Lda. All Rights Reserved.
// Use of this source code is governed by a license that can be
// found in the LICENSE file.
package gotomd
import (
"go/ast"
"go/parser"
"go/token"
"log"
"strings"
)
func commentHasAnnotation(comment, prefix, annotation string) bool {
normalizedComment := strings.ToLower(strings.Trim(comment, " "))
normalizedAnnotation := strings.ToLower(annotation)
if strings.HasPrefix(normalizedComment, prefix) {
rest := normalizedComment[len(prefix)-1:]
annotations := strings.Split(rest, " ")
for _, annot := range annotations {
if normalizedAnnotation == annot {
return true
}
}
}
return false
}
func Collect(file, prefix, annotation string) []string {
fset := token.NewFileSet()
astFile, err := parser.ParseFile(fset, file, nil, parser.ParseComments)
if err != nil {
log.Fatal(err)
}
fnComments := make([]string, 0)
for _, decl := range astFile.Decls {
if fd, ok := decl.(*ast.FuncDecl); ok {
if fd.Doc == nil || len(fd.Doc.List) == 0 {
continue
}
docText := fd.Doc.Text()
comments := strings.Split(docText, "\n")
if len(comments) > 0 {
if commentHasAnnotation(comments[0], prefix, annotation) {
docTextWithoutAnnotation := strings.Join(comments[1:], "\n")
fnComments = append(fnComments, docTextWithoutAnnotation)
}
}
}
}
return fnComments
}