macro_parser = new CMacroParser($options); $this->function_parser = new C10FunctionParser(); } /** * @param string $source * @param int $pos * * @return int */ public function parse($source, $pos = 0) { $this->length = 0; $this->match = ''; $p = $pos; if (!isset($source[$p]) || $source[$p] !== '{') { return self::PARSE_FAIL; } $p++; if ($this->macro_parser->parse($source, $p) == CParser::PARSE_FAIL) { return self::PARSE_FAIL; } $p += $this->macro_parser->getLength(); if (!isset($source[$p]) || $source[$p] !== '.') { return self::PARSE_FAIL; } $p++; if ($this->function_parser->parse($source, $p) == CParser::PARSE_FAIL) { return self::PARSE_FAIL; } $p += $this->function_parser->getLength(); if (!isset($source[$p]) || $source[$p] !== '}') { return self::PARSE_FAIL; } $p++; $this->length = $p - $pos; $this->match = substr($source, $pos, $this->length); return (isset($source[$pos + $this->length]) ? self::PARSE_SUCCESS_CONT : self::PARSE_SUCCESS); } /** * Returns macro parser. * * @return string */ public function getMacroParser() { return $this->macro_parser; } /** * Returns function parser. * * @return string */ public function getFunctionParser() { return $this->function_parser; } }