mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
Merge pull request #41 from dpaz/newCli
Update CLI to get the same output of linguist
This commit is contained in:
commit
5a8c748dbe
@ -1,6 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
@ -14,7 +15,10 @@ import (
|
|||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
flag.Usage = usage
|
flag.Usage = usage
|
||||||
|
breakdownFlag := flag.Bool("breakdown", false, "")
|
||||||
|
jsonFlag := flag.Bool("json", false, "")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
root, err := filepath.Abs(flag.Arg(0))
|
root, err := filepath.Abs(flag.Arg(0))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
@ -77,15 +81,61 @@ func main() {
|
|||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
data, _ := json.MarshalIndent(out, "", " ")
|
var buff bytes.Buffer
|
||||||
fmt.Printf("%s\n", data)
|
switch {
|
||||||
|
case *jsonFlag && !*breakdownFlag:
|
||||||
|
printJson(out, &buff)
|
||||||
|
case *jsonFlag && *breakdownFlag:
|
||||||
|
printBreakDown(out, &buff)
|
||||||
|
case *breakdownFlag:
|
||||||
|
printPercents(out, &buff)
|
||||||
|
buff.WriteByte('\n')
|
||||||
|
printBreakDown(out, &buff)
|
||||||
|
default:
|
||||||
|
printPercents(out, &buff)
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Print(buff.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
func usage() {
|
func usage() {
|
||||||
fmt.Fprintf(
|
fmt.Fprintf(
|
||||||
os.Stderr, "enry, A simple (and faster) implementation of github/linguist \nusage: %s <path>\n",
|
os.Stderr, "enry, A simple (and faster) implementation of github/linguist \nusage: %s <path>\n %s <path> [-json] [-breakdown]\n %s [-json] [-breakdown]\n",
|
||||||
os.Args[0],
|
os.Args[0], os.Args[0], os.Args[0],
|
||||||
)
|
)
|
||||||
|
}
|
||||||
flag.PrintDefaults()
|
|
||||||
|
func printBreakDown(out map[string][]string, buff *bytes.Buffer) {
|
||||||
|
for name, language := range out {
|
||||||
|
writeStringLn(name, buff)
|
||||||
|
for _, file := range language {
|
||||||
|
writeStringLn(file, buff)
|
||||||
|
}
|
||||||
|
|
||||||
|
writeStringLn("", buff)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func printJson(out map[string][]string, buff *bytes.Buffer) {
|
||||||
|
data, _ := json.Marshal(out)
|
||||||
|
buff.Write(data)
|
||||||
|
}
|
||||||
|
|
||||||
|
func printPercents(out map[string][]string, buff *bytes.Buffer) {
|
||||||
|
fileCount := make(map[string]int, len(out))
|
||||||
|
total := 0
|
||||||
|
for name, language := range out {
|
||||||
|
fileCount[name] = len(language)
|
||||||
|
total += len(language)
|
||||||
|
}
|
||||||
|
|
||||||
|
for name, count := range fileCount {
|
||||||
|
percent := float32(count) / float32(total) * 100
|
||||||
|
buff.WriteString(fmt.Sprintf("%.2f%% %s\n", percent, name))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func writeStringLn(s string, buff *bytes.Buffer) {
|
||||||
|
buff.WriteString(s)
|
||||||
|
buff.WriteByte('\n')
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user