-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
176 lines (146 loc) · 4.06 KB
/
main.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
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
package main
import (
"encoding/json"
"fmt"
"log"
"os"
"path/filepath"
"strings"
"github.com/urfave/cli/v2"
)
type ProjectProcessor struct {
ProjectPath string
OutputPath string
}
func main() {
app := createCliApp()
if err := app.Run(os.Args); err != nil {
log.Fatal(err)
}
}
func createCliApp() *cli.App {
return &cli.App{
Name: "parse",
Usage: "Parse a go project and generate a json file with all functions and test functions",
Flags: createFlags(),
Action: runApp,
}
}
func createFlags() []cli.Flag {
return []cli.Flag{
&cli.StringFlag{
Name: "project",
Usage: "The path to the go project",
Required: true,
},
&cli.StringFlag{
Name: "output",
Usage: "The path to the output directory",
Required: true,
},
}
}
func runApp(context *cli.Context) error {
processor := ProjectProcessor{
ProjectPath: context.String("project"),
OutputPath: context.String("output"),
}
return processor.Process()
}
func (p *ProjectProcessor) Process() error {
if err := p.validatePaths(); err != nil {
return err
}
goFiles, err := p.findGoFiles()
if err != nil {
return fmt.Errorf("failed to find Go files: %w", err)
}
funcDescriptions := parseFunctions(goFiles)
if err := p.writeOutputFiles(funcDescriptions); err != nil {
return err
}
return nil
}
func (p *ProjectProcessor) validatePaths() error {
if _, err := os.Stat(p.ProjectPath); os.IsNotExist(err) {
return fmt.Errorf("project path does not exist: %v", err)
}
if err := os.MkdirAll(p.OutputPath, 0755); err != nil {
return fmt.Errorf("error creating output directory: %v", err)
}
return nil
}
func (p *ProjectProcessor) findGoFiles() ([]string, error) {
var goFiles []string
err := filepath.Walk(p.ProjectPath, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if !info.IsDir() && strings.HasSuffix(info.Name(), ".go") && !strings.Contains(info.Name(), "generated") {
goFiles = append(goFiles, path)
}
return nil
})
if err != nil {
return nil, fmt.Errorf("failed to walk project directory: %w", err)
}
return goFiles, nil
}
func parseFunctions(goFiles []string) Func {
funcDescriptions := Func{}
for _, goFile := range goFiles {
param := Param{
FilePath: goFile,
FileName: filepath.Base(goFile),
IncludeBody: false,
}
funcDescriptions.ParseFunctions(param)
}
return funcDescriptions
}
func (p *ProjectProcessor) writeOutputFiles(funcDescriptions Func) error {
allDescriptions := combineDescriptions(funcDescriptions)
if err := p.writeToFile(allDescriptions, "all_function_descriptions.txt"); err != nil {
return fmt.Errorf("failed to write descriptions to file: %w", err)
}
if err := p.writeJSONFile(funcDescriptions.TestFunctionDescriptions, "test_functions.json"); err != nil {
return fmt.Errorf("failed to write test functions to file: %w", err)
}
if err := p.writeJSONFile(funcDescriptions.FunctionDescriptions, "functions.json"); err != nil {
return fmt.Errorf("failed to write functions to file: %w", err)
}
return nil
}
func combineDescriptions(funcDescriptions Func) string {
var allDescriptions strings.Builder
allDescriptions.WriteString("#### This is detailed description of all functions in the project its references\n")
for _, desc := range funcDescriptions.FullDescriptions {
allDescriptions.WriteString(desc)
}
return allDescriptions.String()
}
func (p *ProjectProcessor) writeToFile(content, filename string) error {
fullPath := filepath.Join(p.OutputPath, filename)
file, err := os.Create(fullPath)
if err != nil {
return fmt.Errorf("failed to create file: %w", err)
}
defer func(file *os.File) {
err := file.Close()
if err != nil {
log.Printf("failed to close file: %v", err)
}
}(file)
_, err = file.WriteString(content)
if err != nil {
return fmt.Errorf("failed to write to file: %w", err)
}
return nil
}
func (p *ProjectProcessor) writeJSONFile(data interface{}, filename string) error {
b, err := json.Marshal(data)
if err != nil {
return fmt.Errorf("failed to marshal data: %w", err)
}
return p.writeToFile(string(b), filename)
}