pug-php/ci-pug

View on GitHub
Jade/Lexer.php

Summary

Maintainability
A
1 hr
Test Coverage
<?php

namespace Jade;

use Jade\Lexer\Scanner;

/**
 * Class Jade\Lexer.
 */
class Lexer extends Scanner
{
    /**
     * @var int
     */
    public $lineno = 1;

    /**
     * @var bool
     */
    public $pipeless;

    /**
     * @var bool
     */
    public $allowMixedIndent;

    /**
     * @var int
     */
    public $lastTagIndent = -2;

    /**
     * @param $input
     */
    public function __construct($input, array $options = array())
    {
        $this->allowMixedIndent = isset($options['allowMixedIndent']) && $options['allowMixedIndent'];
        $this->setInput($input);
    }

    /**
     * Construct token with specified parameters.
     *
     * @param string $type  token type
     * @param string $value token value
     *
     * @return object new token object
     */
    public function token($type, $value = null)
    {
        return (object) array(
            'type'   => $type,
            'line'   => $this->lineno,
            'value'  => $value,
        );
    }

    /**
     * Consume input.
     *
     * @param string $bytes utf8 string of input to consume
     */
    protected function consume($bytes)
    {
        $this->input = mb_substr($this->input, mb_strlen($bytes));
    }

    /**
     * Defer token.
     *
     * @param \stdClass $token token to defer
     */
    public function defer(\stdClass $token)
    {
        $this->deferred[] = $token;
    }

    /**
     * Lookahead token 'n'.
     *
     * @param int $number number of tokens to predict
     *
     * @return object predicted token
     */
    public function lookahead($number = 1)
    {
        $fetch = $number - count($this->stash);

        while ($fetch-- > 0) {
            $this->stash[] = $this->next();
        }

        return $this->stash[--$number];
    }

    /**
     * Return stashed token.
     *
     * @return object|bool token if has stashed, false otherways
     */
    protected function getStashed()
    {
        return count($this->stash) ? array_shift($this->stash) : null;
    }

    /**
     * Return deferred token.
     *
     * @return object|bool token if has deferred, false otherways
     */
    protected function deferred()
    {
        return count($this->deferred) ? array_shift($this->deferred) : null;
    }

    /**
     * Return next token or previously stashed one.
     *
     * @return object
     */
    public function advance()
    {
        $token = $this->getStashed()
        or $token = $this->next();

        return $token;
    }

    /**
     * Return next token.
     *
     * @return object
     */
    protected function next()
    {
        return $this->nextToken();
    }

    /**
     * @return bool|mixed|null|object|void
     */
    public function nextToken()
    {
        if ($token = $this->deferred()) {
            return $token;
        }
        foreach (array(
            'Blank',
            'EOS',
            'PipelessText',
            'Yield',
            'Doctype',
            'Interpolation',
            'Case',
            'When',
            'Default',
            'Extends',
            'Append',
            'Prepend',
            'Block',
            'Include',
            'Mixin',
            'Call',
            'Conditional',
            'Each',
            'Assignment',
            'Tag',
            'Filter',
            'Code',
            'Id',
            'ClassName',
            'Attributes',
            'Indent',
            'Comment',
            'Colon',
            'AndAttributes',
            'Text',
        ) as $tokenType) {
            if ($token = $this->{'scan'.$tokenType}()) {
                return $token;
            }
        }
    }
}