php-parser/php7/parser.go

112 lines
2.0 KiB
Go
Raw Normal View History

2018-01-26 13:24:56 +00:00
package php7
import (
"io"
2018-04-09 20:08:29 +00:00
"github.com/z7zmey/php-parser/errors"
2018-01-26 13:24:56 +00:00
"github.com/z7zmey/php-parser/node"
2018-04-15 18:39:26 +00:00
"github.com/z7zmey/php-parser/parser"
"github.com/z7zmey/php-parser/scanner"
2018-01-26 13:24:56 +00:00
)
func (lval *yySymType) Token(t *scanner.Token) {
lval.token = t
}
// Parser structure
type Parser struct {
2018-04-10 13:19:47 +00:00
*scanner.Lexer
2018-04-10 17:15:15 +00:00
path string
2018-04-15 20:04:24 +00:00
currentToken *scanner.Token
2018-04-15 19:06:02 +00:00
positionBuilder *parser.PositionBuilder
errors []*errors.Error
rootNode node.Node
comments parser.Comments
}
// NewParser creates and returns new Parser
2018-04-10 17:15:15 +00:00
func NewParser(src io.Reader, path string) *Parser {
lexer := scanner.NewLexer(src, path)
return &Parser{
2018-04-10 13:19:47 +00:00
lexer,
2018-04-10 17:15:15 +00:00
path,
nil,
nil,
nil,
nil,
nil,
}
}
2018-01-26 13:24:56 +00:00
// Lex proxy to lexer Lex
func (l *Parser) Lex(lval *yySymType) int {
t := l.Lexer.Lex(lval)
2018-04-15 20:04:24 +00:00
l.currentToken = lval.token
return t
}
func (l *Parser) Error(msg string) {
2018-04-15 20:04:24 +00:00
l.errors = append(l.errors, errors.NewError(msg, l.currentToken))
}
// Parse the php7 Parser entrypoint
func (l *Parser) Parse() int {
// init
l.errors = nil
l.rootNode = nil
l.comments = parser.Comments{}
2018-06-24 07:19:44 +00:00
l.positionBuilder = &parser.PositionBuilder{}
// parse
return yyParse(l)
2018-01-26 13:24:56 +00:00
}
2018-04-10 17:15:15 +00:00
// GetPath return path to file
func (l *Parser) GetPath() string {
return l.path
}
// GetRootNode returns root node
func (l *Parser) GetRootNode() node.Node {
return l.rootNode
2018-01-26 13:24:56 +00:00
}
// GetErrors returns errors list
func (l *Parser) GetErrors() []*errors.Error {
return l.errors
2018-01-26 13:24:56 +00:00
}
// GetComments returns comments list
func (l *Parser) GetComments() parser.Comments {
return l.comments
2018-02-06 10:39:42 +00:00
}
2018-02-18 17:44:17 +00:00
2018-05-27 15:02:58 +00:00
// helpers
func lastNode(nn []node.Node) node.Node {
2018-06-26 08:57:17 +00:00
if len(nn) == 0 {
return nil
}
2018-05-27 15:02:58 +00:00
return nn[len(nn)-1]
}
func firstNode(nn []node.Node) node.Node {
return nn[0]
}
2018-06-10 11:53:10 +00:00
func isDollar(r rune) bool {
return r == '$'
}
func (p *Parser) returnTokenToPool(yyDollar []yySymType, yyVAL *yySymType) {
for i := 1; i < len(yyDollar); i++ {
if yyDollar[i].token != nil {
p.TokenPool.Put(yyDollar[i].token)
}
yyDollar[i].token = nil
}
yyVAL.token = nil
}