mirror of
https://github.com/securego/gosec.git
synced 2024-12-25 03:55:54 +00:00
Skip files if they don't exist
This commit is contained in:
parent
d20506048f
commit
2c9d8fc461
1 changed files with 29 additions and 7 deletions
36
tools.go
36
tools.go
|
@ -70,16 +70,23 @@ func (u *utilities) run(args ...string) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func shouldSkip(path string) bool {
|
||||||
|
st, e := os.Stat(path)
|
||||||
|
if e != nil {
|
||||||
|
fmt.Fprintf(os.Stderr, "Skipping: %s - %s\n", path, e)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
if st.IsDir() {
|
||||||
|
fmt.Fprintf(os.Stderr, "Skipping: %s - directory\n", path)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
func dumpAst(files ...string) {
|
func dumpAst(files ...string) {
|
||||||
for _, arg := range files {
|
for _, arg := range files {
|
||||||
// Ensure file exists and not a directory
|
// Ensure file exists and not a directory
|
||||||
st, e := os.Stat(arg)
|
if shouldSkip(arg) {
|
||||||
if e != nil {
|
|
||||||
fmt.Fprintf(os.Stderr, "Skipping: %s - %s\n", arg, e)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if st.IsDir() {
|
|
||||||
fmt.Fprintf(os.Stderr, "Skipping: %s - directory\n", arg)
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -142,6 +149,9 @@ func printObject(obj types.Object) {
|
||||||
func dumpCallObj(files ...string) {
|
func dumpCallObj(files ...string) {
|
||||||
|
|
||||||
for _, file := range files {
|
for _, file := range files {
|
||||||
|
if shouldSkip(file) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
context := createContext(file)
|
context := createContext(file)
|
||||||
ast.Inspect(context.root, func(n ast.Node) bool {
|
ast.Inspect(context.root, func(n ast.Node) bool {
|
||||||
var obj types.Object
|
var obj types.Object
|
||||||
|
@ -163,6 +173,9 @@ func dumpCallObj(files ...string) {
|
||||||
|
|
||||||
func dumpUses(files ...string) {
|
func dumpUses(files ...string) {
|
||||||
for _, file := range files {
|
for _, file := range files {
|
||||||
|
if shouldSkip(file) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
context := createContext(file)
|
context := createContext(file)
|
||||||
for ident, obj := range context.info.Uses {
|
for ident, obj := range context.info.Uses {
|
||||||
fmt.Printf("IDENT: %v, OBJECT: %v\n", ident, obj)
|
fmt.Printf("IDENT: %v, OBJECT: %v\n", ident, obj)
|
||||||
|
@ -172,6 +185,9 @@ func dumpUses(files ...string) {
|
||||||
|
|
||||||
func dumpTypes(files ...string) {
|
func dumpTypes(files ...string) {
|
||||||
for _, file := range files {
|
for _, file := range files {
|
||||||
|
if shouldSkip(file) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
context := createContext(file)
|
context := createContext(file)
|
||||||
for expr, tv := range context.info.Types {
|
for expr, tv := range context.info.Types {
|
||||||
fmt.Printf("EXPR: %v, TYPE: %v\n", expr, tv)
|
fmt.Printf("EXPR: %v, TYPE: %v\n", expr, tv)
|
||||||
|
@ -181,6 +197,9 @@ func dumpTypes(files ...string) {
|
||||||
|
|
||||||
func dumpDefs(files ...string) {
|
func dumpDefs(files ...string) {
|
||||||
for _, file := range files {
|
for _, file := range files {
|
||||||
|
if shouldSkip(file) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
context := createContext(file)
|
context := createContext(file)
|
||||||
for ident, obj := range context.info.Defs {
|
for ident, obj := range context.info.Defs {
|
||||||
fmt.Printf("IDENT: %v, OBJ: %v\n", ident, obj)
|
fmt.Printf("IDENT: %v, OBJ: %v\n", ident, obj)
|
||||||
|
@ -190,6 +209,9 @@ func dumpDefs(files ...string) {
|
||||||
|
|
||||||
func dumpComments(files ...string) {
|
func dumpComments(files ...string) {
|
||||||
for _, file := range files {
|
for _, file := range files {
|
||||||
|
if shouldSkip(file) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
context := createContext(file)
|
context := createContext(file)
|
||||||
for _, group := range context.comments.Comments() {
|
for _, group := range context.comments.Comments() {
|
||||||
fmt.Println(group.Text())
|
fmt.Println(group.Text())
|
||||||
|
|
Loading…
Reference in a new issue