Skip to content

Commit abdc963

Browse files
committed
go-clang-compdb: first import
1 parent 69954d9 commit abdc963

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

go-clang-compdb/main.go

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
// go-clang-compdb dumps the content of a CLang compilation database
2+
package main
3+
4+
import (
5+
"fmt"
6+
"os"
7+
"path/filepath"
8+
"strings"
9+
10+
clang "github.com/sbinet/go-clang"
11+
)
12+
13+
func main() {
14+
if len(os.Args) <= 1 {
15+
fmt.Printf("**error: you need to give a directory containing a 'compile_commands.json' file\n")
16+
os.Exit(1)
17+
}
18+
dir := os.ExpandEnv(os.Args[1])
19+
fmt.Printf(":: inspecting [%s]...\n", dir)
20+
21+
fname := filepath.Join(dir, "compile_commands.json")
22+
f, err := os.Open(fname)
23+
if err != nil {
24+
fmt.Printf("**error: could not open file [%s]: %v\n", fname, err)
25+
os.Exit(1)
26+
}
27+
f.Close()
28+
29+
db, err := clang.NewCompilationDatabase(dir)
30+
if err != nil {
31+
fmt.Printf("**error: could not open compilation database at [%s]: %v\n", dir, err)
32+
os.Exit(1)
33+
}
34+
defer db.Dispose()
35+
36+
cmds := db.GetAllCompileCommands()
37+
ncmds := cmds.GetSize()
38+
fmt.Printf(":: got %d compile commands\n", ncmds)
39+
for i := 0; i < ncmds; i++ {
40+
cmd := cmds.GetCommand(i)
41+
fmt.Printf(":: --- cmd=%d ---\n", i)
42+
fmt.Printf(":: dir= %q\n", cmd.GetDirectory())
43+
nargs := cmd.GetNumArgs()
44+
fmt.Printf(":: nargs= %d\n", nargs)
45+
sargs := make([]string, 0, nargs)
46+
for iarg := 0; iarg < nargs; iarg++ {
47+
arg := cmd.GetArg(iarg)
48+
sfmt := "%q, "
49+
if iarg+1 == nargs {
50+
sfmt = "%q"
51+
}
52+
sargs = append(sargs, fmt.Sprintf(sfmt, arg))
53+
54+
}
55+
fmt.Printf(":: args= {%s}\n", strings.Join(sargs, ""))
56+
if i+1 != ncmds {
57+
fmt.Printf("::\n")
58+
}
59+
}
60+
fmt.Printf(":: inspecting [%s]... [done]\n", dir)
61+
}

0 commit comments

Comments
 (0)