2017-12-01 13:29:23 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-12-01 16:04:31 +00:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
2017-12-01 13:29:23 +00:00
|
|
|
"os"
|
2018-01-09 22:03:53 +00:00
|
|
|
"path/filepath"
|
2018-04-10 17:15:15 +00:00
|
|
|
"sync"
|
2017-12-01 13:29:23 +00:00
|
|
|
|
2017-12-01 16:04:31 +00:00
|
|
|
"github.com/yookoala/realpath"
|
2018-04-10 20:59:57 +00:00
|
|
|
"github.com/z7zmey/php-parser/parser"
|
2018-01-26 13:24:56 +00:00
|
|
|
"github.com/z7zmey/php-parser/php5"
|
2018-02-06 10:39:42 +00:00
|
|
|
"github.com/z7zmey/php-parser/php7"
|
2018-02-04 19:35:46 +00:00
|
|
|
"github.com/z7zmey/php-parser/visitor"
|
2017-12-01 16:04:31 +00:00
|
|
|
)
|
2017-12-01 13:29:23 +00:00
|
|
|
|
2018-04-10 17:15:15 +00:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
var usePhp5 *bool
|
2018-06-05 09:22:36 +00:00
|
|
|
var noDump *bool
|
2018-02-06 10:39:42 +00:00
|
|
|
|
2018-04-10 17:15:15 +00:00
|
|
|
func main() {
|
2018-04-10 20:59:57 +00:00
|
|
|
usePhp5 = flag.Bool("php5", false, "use PHP5 parserWorker")
|
2018-06-05 09:22:36 +00:00
|
|
|
noDump = flag.Bool("noDump", false, "disable dumping to stdout")
|
2017-12-01 16:04:31 +00:00
|
|
|
flag.Parse()
|
|
|
|
|
2018-04-10 17:15:15 +00:00
|
|
|
pathCh := make(chan string)
|
2018-04-10 20:59:57 +00:00
|
|
|
resultCh := make(chan parser.Parser)
|
2018-04-10 17:15:15 +00:00
|
|
|
|
2018-04-10 20:59:57 +00:00
|
|
|
// run 4 concurrent parserWorkers
|
2018-04-10 17:15:15 +00:00
|
|
|
for i := 0; i < 4; i++ {
|
2018-04-10 20:59:57 +00:00
|
|
|
go parserWorker(pathCh, resultCh)
|
2018-04-10 17:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// run printer goroutine
|
|
|
|
go printer(resultCh)
|
|
|
|
|
|
|
|
// process files
|
|
|
|
processPath(flag.Args(), pathCh)
|
|
|
|
|
|
|
|
// wait the all files done
|
|
|
|
wg.Wait()
|
|
|
|
close(pathCh)
|
|
|
|
close(resultCh)
|
|
|
|
}
|
|
|
|
|
|
|
|
func processPath(pathList []string, pathCh chan<- string) {
|
|
|
|
for _, path := range pathList {
|
2017-12-01 16:04:31 +00:00
|
|
|
real, err := realpath.Realpath(path)
|
|
|
|
checkErr(err)
|
|
|
|
|
2018-01-09 22:03:53 +00:00
|
|
|
err = filepath.Walk(real, func(path string, f os.FileInfo, err error) error {
|
|
|
|
if !f.IsDir() && filepath.Ext(path) == ".php" {
|
2018-04-10 17:15:15 +00:00
|
|
|
wg.Add(1)
|
|
|
|
pathCh <- path
|
2018-01-09 22:03:53 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
checkErr(err)
|
2017-12-01 14:04:53 +00:00
|
|
|
}
|
2017-12-01 16:04:31 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 20:59:57 +00:00
|
|
|
func parserWorker(pathCh <-chan string, result chan<- parser.Parser) {
|
|
|
|
var parserWorker parser.Parser
|
2018-04-10 17:15:15 +00:00
|
|
|
|
|
|
|
for {
|
2018-06-06 16:47:28 +00:00
|
|
|
path, ok := <-pathCh
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-04-10 17:15:15 +00:00
|
|
|
src, _ := os.Open(path)
|
|
|
|
|
|
|
|
if *usePhp5 {
|
2018-04-10 20:59:57 +00:00
|
|
|
parserWorker = php5.NewParser(src, path)
|
2018-04-10 17:15:15 +00:00
|
|
|
} else {
|
2018-04-10 20:59:57 +00:00
|
|
|
parserWorker = php7.NewParser(src, path)
|
2018-04-10 17:15:15 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 20:59:57 +00:00
|
|
|
parserWorker.Parse()
|
|
|
|
result <- parserWorker
|
2018-04-10 17:15:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-10 20:59:57 +00:00
|
|
|
func printer(result <-chan parser.Parser) {
|
2018-04-10 17:15:15 +00:00
|
|
|
for {
|
2018-06-06 16:47:28 +00:00
|
|
|
parserWorker, ok := <-result
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-04-10 20:59:57 +00:00
|
|
|
fmt.Printf("==> %s\n", parserWorker.GetPath())
|
2018-04-10 17:15:15 +00:00
|
|
|
|
2018-04-10 20:59:57 +00:00
|
|
|
for _, e := range parserWorker.GetErrors() {
|
2018-04-10 17:15:15 +00:00
|
|
|
fmt.Println(e)
|
|
|
|
}
|
|
|
|
|
2018-06-05 09:22:36 +00:00
|
|
|
if !*noDump {
|
|
|
|
nsResolver := visitor.NewNamespaceResolver()
|
|
|
|
parserWorker.GetRootNode().Walk(nsResolver)
|
2018-04-10 17:15:15 +00:00
|
|
|
|
2018-06-05 09:22:36 +00:00
|
|
|
dumper := visitor.Dumper{
|
|
|
|
Writer: os.Stdout,
|
|
|
|
Indent: " | ",
|
|
|
|
Comments: parserWorker.GetComments(),
|
|
|
|
Positions: parserWorker.GetPositions(),
|
|
|
|
NsResolver: nsResolver,
|
|
|
|
}
|
|
|
|
parserWorker.GetRootNode().Walk(dumper)
|
2018-04-10 17:15:15 +00:00
|
|
|
}
|
|
|
|
wg.Done()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-01 16:04:31 +00:00
|
|
|
func checkErr(err error) {
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
2017-12-01 14:04:53 +00:00
|
|
|
}
|
|
|
|
}
|