added filetree walking

This commit is contained in:
specCon18 2025-03-16 04:56:52 -04:00
parent 345d0b82d7
commit 0f9ceffeff
5 changed files with 103 additions and 0 deletions

72
cmd/root.go Normal file
View file

@ -0,0 +1,72 @@
/*
Copyright © 2025 Steven Carpenter <steven.carpenter@skdevstudios.com>
*/
package cmd
import (
"fmt"
"os"
"io/fs"
"path/filepath"
"github.com/spf13/cobra"
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "v2",
Short: "Tooling to make dealing with TODO statements in comments easier to manage.",
Long: `YUNODO redux is a better written version of a tool I wrote for internal use.
This application is a tool that takes comments that start with TODO: and outputs them in a given format.
format for comment is as follows:
<COMMENT_SYMBOL>TODO: P<PRIORITY_VALUE> <COMMENT>
where COMMENT_SYMBOL is your languages comment symbol,
PRIORITY_VALUE is a priority from 0-9 where 9 is least critical and 0 is needs patched NOW!!!,
and PATH_TO_PROJECT is the path to your codebase's root.
Usage:
yunodo -p <PATH_TO_PROJECT>
`,
// Uncomment the following line if your bare application
// has an action associated with it:
Run: func(cmd *cobra.Command, args []string) {
path, _ := cmd.Flags().GetString("path")
if path != "" {
//TODO: recursivly read each file in the path and store content as string in slice
readFileTree(path)
} else {
fmt.Println("ERROR: No path provided, please provide path using the -p flag")
os.Exit(1)
}
},
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
}
func init() {
rootCmd.PersistentFlags().StringP("path", "p", "","assign the path to get comments from.")
}
func readFileTree(path string){
var count int
fsys := os.DirFS(path)
fs.WalkDir(fsys, ".", func(p string, d fs.DirEntry, err error) error {
if filepath.Ext(p) == ".go" {
//TODO:add case statement to check for C style comments i.e. // and /* as well as luas -- and other langs #
}
return nil
})
fmt.Println(count)
}