issue #8: cli - parse concurrently
This commit is contained in:
parent
0cf164c11c
commit
316ed6e851
116
main.go
116
main.go
@ -6,66 +6,50 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"sync"
|
||||||
|
|
||||||
"github.com/yookoala/realpath"
|
"github.com/yookoala/realpath"
|
||||||
"github.com/z7zmey/php-parser/comment"
|
|
||||||
"github.com/z7zmey/php-parser/errors"
|
|
||||||
"github.com/z7zmey/php-parser/node"
|
|
||||||
"github.com/z7zmey/php-parser/php5"
|
"github.com/z7zmey/php-parser/php5"
|
||||||
"github.com/z7zmey/php-parser/php7"
|
"github.com/z7zmey/php-parser/php7"
|
||||||
"github.com/z7zmey/php-parser/position"
|
|
||||||
"github.com/z7zmey/php-parser/visitor"
|
"github.com/z7zmey/php-parser/visitor"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
var wg sync.WaitGroup
|
||||||
var nodes node.Node
|
var usePhp5 *bool
|
||||||
var comments comment.Comments
|
|
||||||
var positions position.Positions
|
|
||||||
var errors []*errors.Error
|
|
||||||
|
|
||||||
usePhp5 := flag.Bool("php5", false, "use PHP5 parser")
|
func main() {
|
||||||
|
usePhp5 = flag.Bool("php5", false, "use PHP5 parser")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
for _, path := range flag.Args() {
|
pathCh := make(chan string)
|
||||||
|
resultCh := make(chan Parser)
|
||||||
|
|
||||||
|
// run 4 concurrent parsers
|
||||||
|
for i := 0; i < 4; i++ {
|
||||||
|
go parser(pathCh, resultCh)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 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 {
|
||||||
real, err := realpath.Realpath(path)
|
real, err := realpath.Realpath(path)
|
||||||
checkErr(err)
|
checkErr(err)
|
||||||
|
|
||||||
err = filepath.Walk(real, func(path string, f os.FileInfo, err error) error {
|
err = filepath.Walk(real, func(path string, f os.FileInfo, err error) error {
|
||||||
if !f.IsDir() && filepath.Ext(path) == ".php" {
|
if !f.IsDir() && filepath.Ext(path) == ".php" {
|
||||||
fmt.Printf("==> %s\n", path)
|
wg.Add(1)
|
||||||
|
pathCh <- path
|
||||||
src, _ := os.Open(string(path))
|
|
||||||
if *usePhp5 {
|
|
||||||
parser := php5.NewParser(src, path)
|
|
||||||
parser.Parse()
|
|
||||||
nodes = parser.GetRootNode()
|
|
||||||
errors = parser.GetErrors()
|
|
||||||
comments = parser.GetComments()
|
|
||||||
positions = parser.GetPositions()
|
|
||||||
} else {
|
|
||||||
parser := php7.NewParser(src, path)
|
|
||||||
parser.Parse()
|
|
||||||
nodes = parser.GetRootNode()
|
|
||||||
errors = parser.GetErrors()
|
|
||||||
comments = parser.GetComments()
|
|
||||||
positions = parser.GetPositions()
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, e := range errors {
|
|
||||||
fmt.Println(e)
|
|
||||||
}
|
|
||||||
|
|
||||||
nsResolver := visitor.NewNamespaceResolver()
|
|
||||||
nodes.Walk(nsResolver)
|
|
||||||
|
|
||||||
dumper := visitor.Dumper{
|
|
||||||
Writer: os.Stdout,
|
|
||||||
Indent: " | ",
|
|
||||||
Comments: comments,
|
|
||||||
Positions: positions,
|
|
||||||
NsResolver: nsResolver,
|
|
||||||
}
|
|
||||||
nodes.Walk(dumper)
|
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
@ -73,6 +57,48 @@ func main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func parser(pathCh <-chan string, result chan<- Parser) {
|
||||||
|
var parser Parser
|
||||||
|
|
||||||
|
for {
|
||||||
|
path := <-pathCh
|
||||||
|
src, _ := os.Open(path)
|
||||||
|
|
||||||
|
if *usePhp5 {
|
||||||
|
parser = php5.NewParser(src, path)
|
||||||
|
} else {
|
||||||
|
parser = php7.NewParser(src, path)
|
||||||
|
}
|
||||||
|
|
||||||
|
parser.Parse()
|
||||||
|
result <- parser
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func printer(result <-chan Parser) {
|
||||||
|
for {
|
||||||
|
parser := <-result
|
||||||
|
fmt.Printf("==> %s\n", parser.GetPath())
|
||||||
|
|
||||||
|
for _, e := range parser.GetErrors() {
|
||||||
|
fmt.Println(e)
|
||||||
|
}
|
||||||
|
|
||||||
|
nsResolver := visitor.NewNamespaceResolver()
|
||||||
|
parser.GetRootNode().Walk(nsResolver)
|
||||||
|
|
||||||
|
dumper := visitor.Dumper{
|
||||||
|
Writer: os.Stdout,
|
||||||
|
Indent: " | ",
|
||||||
|
Comments: parser.GetComments(),
|
||||||
|
Positions: parser.GetPositions(),
|
||||||
|
NsResolver: nsResolver,
|
||||||
|
}
|
||||||
|
parser.GetRootNode().Walk(dumper)
|
||||||
|
wg.Done()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func checkErr(err error) {
|
func checkErr(err error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
|
17
parser.go
Normal file
17
parser.go
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/z7zmey/php-parser/comment"
|
||||||
|
"github.com/z7zmey/php-parser/errors"
|
||||||
|
"github.com/z7zmey/php-parser/node"
|
||||||
|
"github.com/z7zmey/php-parser/position"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Parser interface {
|
||||||
|
Parse() int
|
||||||
|
GetPath() string
|
||||||
|
GetRootNode() node.Node
|
||||||
|
GetErrors() []*errors.Error
|
||||||
|
GetComments() comment.Comments
|
||||||
|
GetPositions() position.Positions
|
||||||
|
}
|
@ -18,6 +18,7 @@ func (lval *yySymType) Token(t token.Token) {
|
|||||||
// Parser structure
|
// Parser structure
|
||||||
type Parser struct {
|
type Parser struct {
|
||||||
*scanner.Lexer
|
*scanner.Lexer
|
||||||
|
path string
|
||||||
lastToken *token.Token
|
lastToken *token.Token
|
||||||
positionBuilder *position.Builder
|
positionBuilder *position.Builder
|
||||||
errors []*errors.Error
|
errors []*errors.Error
|
||||||
@ -27,11 +28,12 @@ type Parser struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NewParser creates and returns new Parser
|
// NewParser creates and returns new Parser
|
||||||
func NewParser(src io.Reader, fName string) *Parser {
|
func NewParser(src io.Reader, path string) *Parser {
|
||||||
lexer := scanner.NewLexer(src, fName)
|
lexer := scanner.NewLexer(src, path)
|
||||||
|
|
||||||
return &Parser{
|
return &Parser{
|
||||||
lexer,
|
lexer,
|
||||||
|
path,
|
||||||
nil,
|
nil,
|
||||||
nil,
|
nil,
|
||||||
nil,
|
nil,
|
||||||
@ -81,6 +83,11 @@ func (l *Parser) listGetFirstNodeComments(list []node.Node) []comment.Comment {
|
|||||||
return l.comments[node]
|
return l.comments[node]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetPath return path to file
|
||||||
|
func (l *Parser) GetPath() string {
|
||||||
|
return l.path
|
||||||
|
}
|
||||||
|
|
||||||
// GetRootNode returns root node
|
// GetRootNode returns root node
|
||||||
func (l *Parser) GetRootNode() node.Node {
|
func (l *Parser) GetRootNode() node.Node {
|
||||||
return l.rootNode
|
return l.rootNode
|
||||||
|
@ -18,6 +18,7 @@ func (lval *yySymType) Token(t token.Token) {
|
|||||||
// Parser structure
|
// Parser structure
|
||||||
type Parser struct {
|
type Parser struct {
|
||||||
*scanner.Lexer
|
*scanner.Lexer
|
||||||
|
path string
|
||||||
lastToken *token.Token
|
lastToken *token.Token
|
||||||
positionBuilder *position.Builder
|
positionBuilder *position.Builder
|
||||||
errors []*errors.Error
|
errors []*errors.Error
|
||||||
@ -27,11 +28,12 @@ type Parser struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NewParser creates and returns new Parser
|
// NewParser creates and returns new Parser
|
||||||
func NewParser(src io.Reader, fName string) *Parser {
|
func NewParser(src io.Reader, path string) *Parser {
|
||||||
lexer := scanner.NewLexer(src, fName)
|
lexer := scanner.NewLexer(src, path)
|
||||||
|
|
||||||
return &Parser{
|
return &Parser{
|
||||||
lexer,
|
lexer,
|
||||||
|
path,
|
||||||
nil,
|
nil,
|
||||||
nil,
|
nil,
|
||||||
nil,
|
nil,
|
||||||
@ -81,6 +83,11 @@ func (l *Parser) listGetFirstNodeComments(list []node.Node) []comment.Comment {
|
|||||||
return l.comments[node]
|
return l.comments[node]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetPath return path to file
|
||||||
|
func (l *Parser) GetPath() string {
|
||||||
|
return l.path
|
||||||
|
}
|
||||||
|
|
||||||
// GetRootNode returns root node
|
// GetRootNode returns root node
|
||||||
func (l *Parser) GetRootNode() node.Node {
|
func (l *Parser) GetRootNode() node.Node {
|
||||||
return l.rootNode
|
return l.rootNode
|
||||||
|
Loading…
Reference in New Issue
Block a user