mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
75 lines
1.2 KiB
Go
75 lines
1.2 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"flag"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"gopkg.in/src-d/simple-linguist.v1"
|
|
)
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
root, err := filepath.Abs(flag.Arg(0))
|
|
ifError(err)
|
|
|
|
if root == "" {
|
|
usage()
|
|
}
|
|
|
|
o := make(map[string][]string, 0)
|
|
err = filepath.Walk(root, func(path string, f os.FileInfo, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if slinguist.IsVendor(f.Name()) || slinguist.IsDotFile(f.Name()) {
|
|
if f.IsDir() {
|
|
return filepath.SkipDir
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
if f.IsDir() {
|
|
return nil
|
|
}
|
|
|
|
l, safe := slinguist.GetLanguageByExtension(path)
|
|
if !safe {
|
|
content, _ := ioutil.ReadFile(path)
|
|
l, safe = slinguist.GetLanguageByContent(path, content)
|
|
|
|
}
|
|
|
|
r, _ := filepath.Rel(root, path)
|
|
o[l] = append(o[l], r)
|
|
return nil
|
|
})
|
|
|
|
ifError(err)
|
|
|
|
js, _ := json.MarshalIndent(o, "", " ")
|
|
fmt.Printf("%s\n", js)
|
|
}
|
|
|
|
func usage() {
|
|
fmt.Fprintf(
|
|
os.Stderr, "simple-linguist, A simple (and faster) implementation of linguist \nusage: %s <path>\n",
|
|
os.Args[0],
|
|
)
|
|
|
|
flag.PrintDefaults()
|
|
os.Exit(2)
|
|
}
|
|
|
|
func ifError(err error) {
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, err.Error())
|
|
os.Exit(2)
|
|
}
|
|
}
|