1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138 |
- <?php
- namespace Doctrine\Common\Annotations;
- use Doctrine\Common\Annotations\Annotation\Attribute;
- use ReflectionClass;
- use Doctrine\Common\Annotations\Annotation\Enum;
- use Doctrine\Common\Annotations\Annotation\Target;
- use Doctrine\Common\Annotations\Annotation\Attributes;
- final class DocParser
- {
-
- private static $classIdentifiers = array(
- DocLexer::T_IDENTIFIER,
- DocLexer::T_TRUE,
- DocLexer::T_FALSE,
- DocLexer::T_NULL
- );
-
- private $lexer;
-
- private $target;
-
- private static $metadataParser;
-
- private $isNestedAnnotation = false;
-
- private $imports = array();
-
- private $classExists = array();
-
- private $ignoreNotImportedAnnotations = false;
-
- private $namespaces = array();
-
- private $ignoredAnnotationNames = array();
-
- private $context = '';
-
- private static $annotationMetadata = array(
- 'Doctrine\Common\Annotations\Annotation\Target' => array(
- 'is_annotation' => true,
- 'has_constructor' => true,
- 'properties' => array(),
- 'targets_literal' => 'ANNOTATION_CLASS',
- 'targets' => Target::TARGET_CLASS,
- 'default_property' => 'value',
- 'attribute_types' => array(
- 'value' => array(
- 'required' => false,
- 'type' =>'array',
- 'array_type'=>'string',
- 'value' =>'array<string>'
- )
- ),
- ),
- 'Doctrine\Common\Annotations\Annotation\Attribute' => array(
- 'is_annotation' => true,
- 'has_constructor' => false,
- 'targets_literal' => 'ANNOTATION_ANNOTATION',
- 'targets' => Target::TARGET_ANNOTATION,
- 'default_property' => 'name',
- 'properties' => array(
- 'name' => 'name',
- 'type' => 'type',
- 'required' => 'required'
- ),
- 'attribute_types' => array(
- 'value' => array(
- 'required' => true,
- 'type' =>'string',
- 'value' =>'string'
- ),
- 'type' => array(
- 'required' =>true,
- 'type' =>'string',
- 'value' =>'string'
- ),
- 'required' => array(
- 'required' =>false,
- 'type' =>'boolean',
- 'value' =>'boolean'
- )
- ),
- ),
- 'Doctrine\Common\Annotations\Annotation\Attributes' => array(
- 'is_annotation' => true,
- 'has_constructor' => false,
- 'targets_literal' => 'ANNOTATION_CLASS',
- 'targets' => Target::TARGET_CLASS,
- 'default_property' => 'value',
- 'properties' => array(
- 'value' => 'value'
- ),
- 'attribute_types' => array(
- 'value' => array(
- 'type' =>'array',
- 'required' =>true,
- 'array_type'=>'Doctrine\Common\Annotations\Annotation\Attribute',
- 'value' =>'array<Doctrine\Common\Annotations\Annotation\Attribute>'
- )
- ),
- ),
- 'Doctrine\Common\Annotations\Annotation\Enum' => array(
- 'is_annotation' => true,
- 'has_constructor' => true,
- 'targets_literal' => 'ANNOTATION_PROPERTY',
- 'targets' => Target::TARGET_PROPERTY,
- 'default_property' => 'value',
- 'properties' => array(
- 'value' => 'value'
- ),
- 'attribute_types' => array(
- 'value' => array(
- 'type' => 'array',
- 'required' => true,
- ),
- 'literal' => array(
- 'type' => 'array',
- 'required' => false,
- ),
- ),
- ),
- );
-
- private static $typeMap = array(
- 'float' => 'double',
- 'bool' => 'boolean',
-
- 'Boolean' => 'boolean',
- 'int' => 'integer',
- );
-
- public function __construct()
- {
- $this->lexer = new DocLexer;
- }
-
- public function setIgnoredAnnotationNames(array $names)
- {
- $this->ignoredAnnotationNames = $names;
- }
-
- public function setIgnoreNotImportedAnnotations($bool)
- {
- $this->ignoreNotImportedAnnotations = (boolean) $bool;
- }
-
- public function addNamespace($namespace)
- {
- if ($this->imports) {
- throw new \RuntimeException('You must either use addNamespace(), or setImports(), but not both.');
- }
- $this->namespaces[] = $namespace;
- }
-
- public function setImports(array $imports)
- {
- if ($this->namespaces) {
- throw new \RuntimeException('You must either use addNamespace(), or setImports(), but not both.');
- }
- $this->imports = $imports;
- }
-
- public function setTarget($target)
- {
- $this->target = $target;
- }
-
- public function parse($input, $context = '')
- {
- $pos = $this->findInitialTokenPosition($input);
- if ($pos === null) {
- return array();
- }
- $this->context = $context;
- $this->lexer->setInput(trim(substr($input, $pos), '* /'));
- $this->lexer->moveNext();
- return $this->Annotations();
- }
-
- private function findInitialTokenPosition($input)
- {
- $pos = 0;
-
- while (($pos = strpos($input, '@', $pos)) !== false) {
-
- if ($pos === 0 || $input[$pos - 1] === ' ' || $input[$pos - 1] === '*') {
- return $pos;
- }
- $pos++;
- }
- return null;
- }
-
- private function match($token)
- {
- if ( ! $this->lexer->isNextToken($token) ) {
- $this->syntaxError($this->lexer->getLiteral($token));
- }
- return $this->lexer->moveNext();
- }
-
- private function matchAny(array $tokens)
- {
- if ( ! $this->lexer->isNextTokenAny($tokens)) {
- $this->syntaxError(implode(' or ', array_map(array($this->lexer, 'getLiteral'), $tokens)));
- }
- return $this->lexer->moveNext();
- }
-
- private function syntaxError($expected, $token = null)
- {
- if ($token === null) {
- $token = $this->lexer->lookahead;
- }
- $message = sprintf('Expected %s, got ', $expected);
- $message .= ($this->lexer->lookahead === null)
- ? 'end of string'
- : sprintf("'%s' at position %s", $token['value'], $token['position']);
- if (strlen($this->context)) {
- $message .= ' in ' . $this->context;
- }
- $message .= '.';
- throw AnnotationException::syntaxError($message);
- }
-
- private function classExists($fqcn)
- {
- if (isset($this->classExists[$fqcn])) {
- return $this->classExists[$fqcn];
- }
-
- if (class_exists($fqcn, false)) {
- return $this->classExists[$fqcn] = true;
- }
-
- return $this->classExists[$fqcn] = AnnotationRegistry::loadAnnotationClass($fqcn);
- }
-
- private function collectAnnotationMetadata($name)
- {
- if (self::$metadataParser === null) {
- self::$metadataParser = new self();
- self::$metadataParser->setIgnoreNotImportedAnnotations(true);
- self::$metadataParser->setIgnoredAnnotationNames($this->ignoredAnnotationNames);
- self::$metadataParser->setImports(array(
- 'enum' => 'Doctrine\Common\Annotations\Annotation\Enum',
- 'target' => 'Doctrine\Common\Annotations\Annotation\Target',
- 'attribute' => 'Doctrine\Common\Annotations\Annotation\Attribute',
- 'attributes' => 'Doctrine\Common\Annotations\Annotation\Attributes'
- ));
- AnnotationRegistry::registerFile(__DIR__ . '/Annotation/Enum.php');
- AnnotationRegistry::registerFile(__DIR__ . '/Annotation/Target.php');
- AnnotationRegistry::registerFile(__DIR__ . '/Annotation/Attribute.php');
- AnnotationRegistry::registerFile(__DIR__ . '/Annotation/Attributes.php');
- }
- $class = new \ReflectionClass($name);
- $docComment = $class->getDocComment();
-
- $metadata = array(
- 'default_property' => null,
- 'has_constructor' => (null !== $constructor = $class->getConstructor()) && $constructor->getNumberOfParameters() > 0,
- 'properties' => array(),
- 'property_types' => array(),
- 'attribute_types' => array(),
- 'targets_literal' => null,
- 'targets' => Target::TARGET_ALL,
- 'is_annotation' => false !== strpos($docComment, '@Annotation'),
- );
-
- if ($metadata['is_annotation']) {
- self::$metadataParser->setTarget(Target::TARGET_CLASS);
- foreach (self::$metadataParser->parse($docComment, 'class @' . $name) as $annotation) {
- if ($annotation instanceof Target) {
- $metadata['targets'] = $annotation->targets;
- $metadata['targets_literal'] = $annotation->literal;
- continue;
- }
- if ($annotation instanceof Attributes) {
- foreach ($annotation->value as $attribute) {
- $this->collectAttributeTypeMetadata($metadata, $attribute);
- }
- }
- }
-
- if (false === $metadata['has_constructor']) {
-
- foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC) as $property) {
- $metadata['properties'][$property->name] = $property->name;
- if (false === ($propertyComment = $property->getDocComment())) {
- continue;
- }
- $attribute = new Attribute();
- $attribute->required = (false !== strpos($propertyComment, '@Required'));
- $attribute->name = $property->name;
- $attribute->type = (false !== strpos($propertyComment, '@var') && preg_match('/@var\s+([^\s]+)/',$propertyComment, $matches))
- ? $matches[1]
- : 'mixed';
- $this->collectAttributeTypeMetadata($metadata, $attribute);
-
- if (false !== strpos($propertyComment, '@Enum')) {
- $context = 'property ' . $class->name . "::\$" . $property->name;
- self::$metadataParser->setTarget(Target::TARGET_PROPERTY);
- foreach (self::$metadataParser->parse($propertyComment, $context) as $annotation) {
- if ( ! $annotation instanceof Enum) {
- continue;
- }
- $metadata['enum'][$property->name]['value'] = $annotation->value;
- $metadata['enum'][$property->name]['literal'] = ( ! empty($annotation->literal))
- ? $annotation->literal
- : $annotation->value;
- }
- }
- }
-
- $metadata['default_property'] = reset($metadata['properties']);
- }
- }
- self::$annotationMetadata[$name] = $metadata;
- }
-
- private function collectAttributeTypeMetadata(&$metadata, Attribute $attribute)
- {
-
- $type = isset(self::$typeMap[$attribute->type])
- ? self::$typeMap[$attribute->type]
- : $attribute->type;
-
- if ('mixed' === $type) {
- return;
- }
-
- switch (true) {
-
- case (false !== $pos = strpos($type, '<')):
- $arrayType = substr($type, $pos + 1, -1);
- $type = 'array';
- if (isset(self::$typeMap[$arrayType])) {
- $arrayType = self::$typeMap[$arrayType];
- }
- $metadata['attribute_types'][$attribute->name]['array_type'] = $arrayType;
- break;
-
- case (false !== $pos = strrpos($type, '[')):
- $arrayType = substr($type, 0, $pos);
- $type = 'array';
- if (isset(self::$typeMap[$arrayType])) {
- $arrayType = self::$typeMap[$arrayType];
- }
- $metadata['attribute_types'][$attribute->name]['array_type'] = $arrayType;
- break;
- }
- $metadata['attribute_types'][$attribute->name]['type'] = $type;
- $metadata['attribute_types'][$attribute->name]['value'] = $attribute->type;
- $metadata['attribute_types'][$attribute->name]['required'] = $attribute->required;
- }
-
- private function Annotations()
- {
- $annotations = array();
- while (null !== $this->lexer->lookahead) {
- if (DocLexer::T_AT !== $this->lexer->lookahead['type']) {
- $this->lexer->moveNext();
- continue;
- }
-
- if (null !== $this->lexer->token && $this->lexer->lookahead['position'] === $this->lexer->token['position'] + strlen($this->lexer->token['value'])) {
- $this->lexer->moveNext();
- continue;
- }
-
-
- if ((null === $peek = $this->lexer->glimpse())
- || (DocLexer::T_NAMESPACE_SEPARATOR !== $peek['type'] && !in_array($peek['type'], self::$classIdentifiers, true))
- || $peek['position'] !== $this->lexer->lookahead['position'] + 1) {
- $this->lexer->moveNext();
- continue;
- }
- $this->isNestedAnnotation = false;
- if (false !== $annot = $this->Annotation()) {
- $annotations[] = $annot;
- }
- }
- return $annotations;
- }
-
- private function Annotation()
- {
- $this->match(DocLexer::T_AT);
-
- $name = $this->Identifier();
-
-
- $originalName = $name;
- if ('\\' !== $name[0]) {
- $alias = (false === $pos = strpos($name, '\\'))? $name : substr($name, 0, $pos);
- $found = false;
- if ($this->namespaces) {
- foreach ($this->namespaces as $namespace) {
- if ($this->classExists($namespace.'\\'.$name)) {
- $name = $namespace.'\\'.$name;
- $found = true;
- break;
- }
- }
- } elseif (isset($this->imports[$loweredAlias = strtolower($alias)])) {
- $found = true;
- $name = (false !== $pos)
- ? $this->imports[$loweredAlias] . substr($name, $pos)
- : $this->imports[$loweredAlias];
- } elseif ( ! isset($this->ignoredAnnotationNames[$name])
- && isset($this->imports['__NAMESPACE__'])
- && $this->classExists($this->imports['__NAMESPACE__'] . '\\' . $name)
- ) {
- $name = $this->imports['__NAMESPACE__'].'\\'.$name;
- $found = true;
- } elseif (! isset($this->ignoredAnnotationNames[$name]) && $this->classExists($name)) {
- $found = true;
- }
- if ( ! $found) {
- if ($this->ignoreNotImportedAnnotations || isset($this->ignoredAnnotationNames[$name])) {
- return false;
- }
- throw AnnotationException::semanticalError(sprintf('The annotation "@%s" in %s was never imported. Did you maybe forget to add a "use" statement for this annotation?', $name, $this->context));
- }
- }
- if ( ! $this->classExists($name)) {
- throw AnnotationException::semanticalError(sprintf('The annotation "@%s" in %s does not exist, or could not be auto-loaded.', $name, $this->context));
- }
-
-
-
-
- if ( ! isset(self::$annotationMetadata[$name])) {
- $this->collectAnnotationMetadata($name);
- }
-
- if (self::$annotationMetadata[$name]['is_annotation'] === false) {
- if (isset($this->ignoredAnnotationNames[$originalName])) {
- return false;
- }
- throw AnnotationException::semanticalError(sprintf('The class "%s" is not annotated with @Annotation. Are you sure this class can be used as annotation? If so, then you need to add @Annotation to the _class_ doc comment of "%s". If it is indeed no annotation, then you need to add @IgnoreAnnotation("%s") to the _class_ doc comment of %s.', $name, $name, $originalName, $this->context));
- }
-
- $target = $this->isNestedAnnotation ? Target::TARGET_ANNOTATION : $this->target;
-
- $this->isNestedAnnotation = true;
-
- if (0 === (self::$annotationMetadata[$name]['targets'] & $target) && $target) {
- throw AnnotationException::semanticalError(
- sprintf('Annotation @%s is not allowed to be declared on %s. You may only use this annotation on these code elements: %s.',
- $originalName, $this->context, self::$annotationMetadata[$name]['targets_literal'])
- );
- }
- $values = $this->MethodCall();
- if (isset(self::$annotationMetadata[$name]['enum'])) {
-
- foreach (self::$annotationMetadata[$name]['enum'] as $property => $enum) {
-
- if (isset($values[$property]) && ! in_array($values[$property], $enum['value'])) {
- throw AnnotationException::enumeratorError($property, $name, $this->context, $enum['literal'], $values[$property]);
- }
- }
- }
-
- foreach (self::$annotationMetadata[$name]['attribute_types'] as $property => $type) {
- if ($property === self::$annotationMetadata[$name]['default_property']
- && !isset($values[$property]) && isset($values['value'])) {
- $property = 'value';
- }
-
- if (!isset($values[$property])) {
- if ($type['required']) {
- throw AnnotationException::requiredError($property, $originalName, $this->context, 'a(n) '.$type['value']);
- }
- continue;
- }
- if ($type['type'] === 'array') {
-
- if ( ! is_array($values[$property])) {
- $values[$property] = array($values[$property]);
- }
-
- if (isset($type['array_type'])) {
- foreach ($values[$property] as $item) {
- if (gettype($item) !== $type['array_type'] && !$item instanceof $type['array_type']) {
- throw AnnotationException::attributeTypeError($property, $originalName, $this->context, 'either a(n) '.$type['array_type'].', or an array of '.$type['array_type'].'s', $item);
- }
- }
- }
- } elseif (gettype($values[$property]) !== $type['type'] && !$values[$property] instanceof $type['type']) {
- throw AnnotationException::attributeTypeError($property, $originalName, $this->context, 'a(n) '.$type['value'], $values[$property]);
- }
- }
-
-
- if (self::$annotationMetadata[$name]['has_constructor'] === true) {
- return new $name($values);
- }
- $instance = new $name();
- foreach ($values as $property => $value) {
- if (!isset(self::$annotationMetadata[$name]['properties'][$property])) {
- if ('value' !== $property) {
- throw AnnotationException::creationError(sprintf('The annotation @%s declared on %s does not have a property named "%s". Available properties: %s', $originalName, $this->context, $property, implode(', ', self::$annotationMetadata[$name]['properties'])));
- }
-
- if ( ! $property = self::$annotationMetadata[$name]['default_property']) {
- throw AnnotationException::creationError(sprintf('The annotation @%s declared on %s does not accept any values, but got %s.', $originalName, $this->context, json_encode($values)));
- }
- }
- $instance->{$property} = $value;
- }
- return $instance;
- }
-
- private function MethodCall()
- {
- $values = array();
- if ( ! $this->lexer->isNextToken(DocLexer::T_OPEN_PARENTHESIS)) {
- return $values;
- }
- $this->match(DocLexer::T_OPEN_PARENTHESIS);
- if ( ! $this->lexer->isNextToken(DocLexer::T_CLOSE_PARENTHESIS)) {
- $values = $this->Values();
- }
- $this->match(DocLexer::T_CLOSE_PARENTHESIS);
- return $values;
- }
-
- private function Values()
- {
- $values = array($this->Value());
- while ($this->lexer->isNextToken(DocLexer::T_COMMA)) {
- $this->match(DocLexer::T_COMMA);
- if ($this->lexer->isNextToken(DocLexer::T_CLOSE_PARENTHESIS)) {
- break;
- }
- $token = $this->lexer->lookahead;
- $value = $this->Value();
- if ( ! is_object($value) && ! is_array($value)) {
- $this->syntaxError('Value', $token);
- }
- $values[] = $value;
- }
- foreach ($values as $k => $value) {
- if (is_object($value) && $value instanceof \stdClass) {
- $values[$value->name] = $value->value;
- } else if ( ! isset($values['value'])){
- $values['value'] = $value;
- } else {
- if ( ! is_array($values['value'])) {
- $values['value'] = array($values['value']);
- }
- $values['value'][] = $value;
- }
- unset($values[$k]);
- }
- return $values;
- }
-
- private function Constant()
- {
- $identifier = $this->Identifier();
- if ( ! defined($identifier) && false !== strpos($identifier, '::') && '\\' !== $identifier[0]) {
- list($className, $const) = explode('::', $identifier);
- $alias = (false === $pos = strpos($className, '\\')) ? $className : substr($className, 0, $pos);
- $found = false;
- switch (true) {
- case !empty ($this->namespaces):
- foreach ($this->namespaces as $ns) {
- if (class_exists($ns.'\\'.$className) || interface_exists($ns.'\\'.$className)) {
- $className = $ns.'\\'.$className;
- $found = true;
- break;
- }
- }
- break;
- case isset($this->imports[$loweredAlias = strtolower($alias)]):
- $found = true;
- $className = (false !== $pos)
- ? $this->imports[$loweredAlias] . substr($className, $pos)
- : $this->imports[$loweredAlias];
- break;
- default:
- if(isset($this->imports['__NAMESPACE__'])) {
- $ns = $this->imports['__NAMESPACE__'];
- if (class_exists($ns.'\\'.$className) || interface_exists($ns.'\\'.$className)) {
- $className = $ns.'\\'.$className;
- $found = true;
- }
- }
- break;
- }
- if ($found) {
- $identifier = $className . '::' . $const;
- }
- }
-
- $classPos = stripos($identifier, '::class');
- if ($classPos === strlen($identifier) - 7) {
- return substr($identifier, 0, $classPos);
- }
- if (!defined($identifier)) {
- throw AnnotationException::semanticalErrorConstants($identifier, $this->context);
- }
- return constant($identifier);
- }
-
- private function Identifier()
- {
-
- if ( ! $this->lexer->isNextTokenAny(self::$classIdentifiers)) {
- $this->syntaxError('namespace separator or identifier');
- }
- $this->lexer->moveNext();
- $className = $this->lexer->token['value'];
- while ($this->lexer->lookahead['position'] === ($this->lexer->token['position'] + strlen($this->lexer->token['value']))
- && $this->lexer->isNextToken(DocLexer::T_NAMESPACE_SEPARATOR)) {
- $this->match(DocLexer::T_NAMESPACE_SEPARATOR);
- $this->matchAny(self::$classIdentifiers);
- $className .= '\\' . $this->lexer->token['value'];
- }
- return $className;
- }
-
- private function Value()
- {
- $peek = $this->lexer->glimpse();
- if (DocLexer::T_EQUALS === $peek['type']) {
- return $this->FieldAssignment();
- }
- return $this->PlainValue();
- }
-
- private function PlainValue()
- {
- if ($this->lexer->isNextToken(DocLexer::T_OPEN_CURLY_BRACES)) {
- return $this->Arrayx();
- }
- if ($this->lexer->isNextToken(DocLexer::T_AT)) {
- return $this->Annotation();
- }
- if ($this->lexer->isNextToken(DocLexer::T_IDENTIFIER)) {
- return $this->Constant();
- }
- switch ($this->lexer->lookahead['type']) {
- case DocLexer::T_STRING:
- $this->match(DocLexer::T_STRING);
- return $this->lexer->token['value'];
- case DocLexer::T_INTEGER:
- $this->match(DocLexer::T_INTEGER);
- return (int)$this->lexer->token['value'];
- case DocLexer::T_FLOAT:
- $this->match(DocLexer::T_FLOAT);
- return (float)$this->lexer->token['value'];
- case DocLexer::T_TRUE:
- $this->match(DocLexer::T_TRUE);
- return true;
- case DocLexer::T_FALSE:
- $this->match(DocLexer::T_FALSE);
- return false;
- case DocLexer::T_NULL:
- $this->match(DocLexer::T_NULL);
- return null;
- default:
- $this->syntaxError('PlainValue');
- }
- }
-
- private function FieldAssignment()
- {
- $this->match(DocLexer::T_IDENTIFIER);
- $fieldName = $this->lexer->token['value'];
- $this->match(DocLexer::T_EQUALS);
- $item = new \stdClass();
- $item->name = $fieldName;
- $item->value = $this->PlainValue();
- return $item;
- }
-
- private function Arrayx()
- {
- $array = $values = array();
- $this->match(DocLexer::T_OPEN_CURLY_BRACES);
-
- if ($this->lexer->isNextToken(DocLexer::T_CLOSE_CURLY_BRACES)) {
- $this->match(DocLexer::T_CLOSE_CURLY_BRACES);
- return $array;
- }
- $values[] = $this->ArrayEntry();
- while ($this->lexer->isNextToken(DocLexer::T_COMMA)) {
- $this->match(DocLexer::T_COMMA);
-
- if ($this->lexer->isNextToken(DocLexer::T_CLOSE_CURLY_BRACES)) {
- break;
- }
- $values[] = $this->ArrayEntry();
- }
- $this->match(DocLexer::T_CLOSE_CURLY_BRACES);
- foreach ($values as $value) {
- list ($key, $val) = $value;
- if ($key !== null) {
- $array[$key] = $val;
- } else {
- $array[] = $val;
- }
- }
- return $array;
- }
-
- private function ArrayEntry()
- {
- $peek = $this->lexer->glimpse();
- if (DocLexer::T_EQUALS === $peek['type']
- || DocLexer::T_COLON === $peek['type']) {
- if ($this->lexer->isNextToken(DocLexer::T_IDENTIFIER)) {
- $key = $this->Constant();
- } else {
- $this->matchAny(array(DocLexer::T_INTEGER, DocLexer::T_STRING));
- $key = $this->lexer->token['value'];
- }
- $this->matchAny(array(DocLexer::T_EQUALS, DocLexer::T_COLON));
- return array($key, $this->PlainValue());
- }
- return array(null, $this->Value());
- }
- }
|