writeFile($filename, $content); } function getClassConstFetchClassName(Expr\ClassConstFetch $expr): string { $className = $expr->class->toString(); if ($expr->class instanceof PhpParser\Node\Name\FullyQualified) { return '\\' . $className; } return $className; } function resolveClassConstFetchClassName(Expr\ClassConstFetch $expr, string $currentClass): string { $className = getClassConstFetchClassName($expr); if (strcasecmp($className, 'self') === 0 || strcasecmp($className, 'static') === 0) { return $currentClass; } if (strcasecmp($className, 'parent') === 0) { return getTranslator()->getParentClass($currentClass); } return $className; } /** * @return FileInfo[] */ function processDirectory(string $dir, Context $context): array { $pathNames = []; $it = new RecursiveIteratorIterator( new RecursiveDirectoryIterator($dir), RecursiveIteratorIterator::LEAVES_ONLY ); foreach ($it as $file) { $pathName = $file->getPathName(); if (substr($pathName, -9) === '.stub.php') { $pathNames[] = $pathName; } } // Make sure stub files are processed in a predictable, system-independent order. sort($pathNames); $fileInfos = []; foreach ($pathNames as $pathName) { $fileInfo = processStubFile($pathName, $context); if ($fileInfo) { $fileInfos[] = $fileInfo; } } return $fileInfos; } function processStubFile(string $stubFile, Context $context, bool $includeOnly = false): ?FileInfo { try { if (!file_exists($stubFile)) { throw new Exception("File $stubFile does not exist"); } if (!$includeOnly) { global $translator; $stubFilenameWithoutExtension = $translator->getArgInfoStubFilename($stubFile); $arginfoFile = $context->objectFile; $legacyFile = "{$stubFilenameWithoutExtension}_legacy_arginfo.h"; $stubCode = file_get_contents($stubFile); $stubHash = sha1(str_replace("\r\n", "\n", $stubCode)); $oldStubHash = extractStubHash($arginfoFile); if ($stubHash === $oldStubHash && !$context->forceParse) { /* Stub file did not change, do not regenerate. */ echo "Skipping $stubFile, stub hash unchanged\n"; return null; } } if (!$fileInfo = $context->parsedFiles[$stubFile] ?? null) { initPhpParser(); $stubContent = $stubCode ?? file_get_contents($stubFile); $fileInfo = FileInfo::parseStubFile($stubContent, $context->phpVersion, $stubFile); $context->parsedFiles[$stubFile] = $fileInfo; foreach ($fileInfo->dependencies as $dependency) { // TODO add header search path for extensions? $prefixes = [dirname($stubFile) . "/", dirname(__DIR__) . "/"]; foreach ($prefixes as $prefix) { $depFile = $prefix . $dependency; if (file_exists($depFile)) { break; } $depFile = null; } if (!$depFile) { throw new Exception("File $stubFile includes a file $dependency which does not exist"); } processStubFile($depFile, $context, true); } $constInfos = $fileInfo->getAllConstInfos(); $context->allConstInfos = array_merge($context->allConstInfos, $constInfos); } if ($includeOnly) { return $fileInfo; } $arginfoCode = generateArgInfoCode( basename($stubFilenameWithoutExtension), $fileInfo, $context->allConstInfos, $stubHash ); if ($context->forceRegeneration || $stubHash !== $oldStubHash) { reportFilePutContents($arginfoFile, $arginfoCode); } if ($fileInfo->shouldGenerateLegacyArginfo()) { $legacyFileInfo = $fileInfo->getLegacyVersion(); $arginfoCode = generateArgInfoCode( basename($stubFilenameWithoutExtension), $legacyFileInfo, $context->allConstInfos, $stubHash ); if ($context->forceRegeneration || $stubHash !== $oldStubHash) { reportFilePutContents($legacyFile, $arginfoCode); } } return $fileInfo; } catch (Exception $e) { throw new RuntimeException("In " . getTranslator()->getRelativePath($stubFile) . ": {$e->getMessage()}\n". $e->getTraceAsString()); } } function extractStubHash(string $arginfoFile): ?string { if (!file_exists($arginfoFile)) { return null; } $arginfoCode = file_get_contents($arginfoFile); if (!preg_match('/\* Stub hash: ([0-9a-f]+) \*/', $arginfoCode, $matches)) { return null; } return $matches[1]; } class Context { public bool $forceParse = false; public bool $forceRegeneration = false; /** @var array */ public array $allConstInfos = []; /** @var FileInfo[] */ public array $parsedFiles = []; public string $objectFile = ''; public string $phpVersion = '8.5'; } class ArrayType extends SimpleType { private /* readonly */ StubType $keyType; private /* readonly */ StubType $valueType; public static function createGenericArray(): self { return new ArrayType(StubType::fromString("int|string"), StubType::fromString("mixed|ref")); } public function __construct(StubType $keyType, StubType $valueType) { parent::__construct("array", true); $this->keyType = $keyType; $this->valueType = $valueType; } public function toOptimizerTypeMask(): string { $typeMasks = [ parent::toOptimizerTypeMask(), $this->keyType->toOptimizerTypeMaskForArrayKey(), $this->valueType->toOptimizerTypeMaskForArrayValue(), ]; return implode("|", $typeMasks); } public function equals(SimpleType $other): bool { if (!parent::equals($other)) { return false; } return StubType::equals($this->keyType, $other->keyType) && StubType::equals($this->valueType, $other->valueType); } } class SimpleType { public /* readonly */ string $name; public /* readonly */ bool $isBuiltin; public static function fromNode(Node $node): SimpleType|ArrayType { if ($node instanceof Node\Name) { if ($node->toLowerString() === 'static') { // PHP internally considers "static" a builtin type. return new SimpleType($node->toLowerString(), true); } if ($node->toLowerString() === 'self') { return new SimpleType(ClassInfo::$currentClass, false); } $name = $node->toLowerString(); // stream/box/any are compiler pseudo-types, treated like resource (mixed in arginfo) if ($name === 'stream' || $name === 'box' || $name === 'any') { return new SimpleType('mixed', true); } $resolvedName = $node->getAttribute('resolvedName'); if ($resolvedName instanceof Node\Name) { $class = $resolvedName->toString(); } else { $class = $node->isFullyQualified() ? $node->toString() : getTranslator()->getNamespacedClassName($node->toString()); } return new SimpleType($class, false); } if ($node instanceof Node\Identifier) { $name = $node->toLowerString(); if ($name === 'array') { return ArrayType::createGenericArray(); } if ($name === 'any') { return new SimpleType('mixed', true); } return new SimpleType($name, true); } throw new Exception("Unexpected node type"); } public static function fromString(string $typeString): SimpleType|ArrayType { switch (strtolower($typeString)) { case "void": case "null": case "false": case "true": case "bool": case "int": case "float": case "string": case "callable": case "object": case "resource": case "mixed": case "static": case "never": case "ref": return new SimpleType(strtolower($typeString), true); case "any": return new SimpleType('mixed', true); case "box": case "stream": return new SimpleType($typeString, true); case "array": return ArrayType::createGenericArray(); case "self": throw new Exception('The exact class name must be used instead of "self"'); case "iterable": throw new Exception('This should not happen'); } $matches = []; $isArray = preg_match("/(.*)\s*\[\s*\]/", $typeString, $matches); if ($isArray) { return new ArrayType(StubType::fromString("int"), StubType::fromString($matches[1])); } $matches = []; $isArray = preg_match("/array\s*<\s*([A-Za-z0-9_|-]+)?(\s*,\s*)?([A-Za-z0-9_|-]+)?\s*>/i", $typeString, $matches); if ($isArray) { if (empty($matches[1]) || empty($matches[3])) { throw new Exception("array<> type hint must have both a key and a value"); } return new ArrayType(StubType::fromString($matches[1]), StubType::fromString($matches[3])); } return new SimpleType($typeString, false); } /** * @param mixed $value */ public static function fromValue($value): SimpleType { switch (gettype($value)) { case "NULL": return SimpleType::null(); case "boolean": return new SimpleType("bool", true); case "integer": return new SimpleType("int", true); case "double": return new SimpleType("float", true); case "string": return new SimpleType("string", true); case "array": return new SimpleType("array", true); case "object": return new SimpleType("object", true); default: throw new Exception("Type \"" . gettype($value) . "\" cannot be inferred based on value"); } } public static function null(): SimpleType { return new SimpleType("null", true); } protected function __construct(string $name, bool $isBuiltin) { $this->name = $name; $this->isBuiltin = $isBuiltin; } public function isScalar(): bool { return $this->isBuiltin && in_array($this->name, ["null", "false", "true", "bool", "int", "float"], true); } public function isNull(): bool { return $this->isBuiltin && $this->name === 'null'; } public function isBool(): bool { return $this->isBuiltin && $this->name === 'bool'; } public function isInt(): bool { return $this->isBuiltin && $this->name === 'int'; } public function isFloat(): bool { return $this->isBuiltin && $this->name === 'float'; } public function isString(): bool { return $this->isBuiltin && $this->name === 'string'; } public function isArray(): bool { return $this->isBuiltin && $this->name === 'array'; } public function isMixed(): bool { return $this->isBuiltin && $this->name === 'mixed'; } private function toTypeInfo(): array { assert($this->isBuiltin); switch ($this->name) { case "null": return ["IS_NULL", "MAY_BE_NULL"]; case "false": return ["IS_FALSE", "MAY_BE_FALSE"]; case "true": return ["IS_TRUE", "MAY_BE_TRUE"]; case "bool": return ["_IS_BOOL", "MAY_BE_BOOL"]; case "int": return ["IS_LONG", "MAY_BE_LONG"]; case "float": return ["IS_DOUBLE", "MAY_BE_DOUBLE"]; case "string": return ["IS_STRING", "MAY_BE_STRING"]; case "array": return ["IS_ARRAY", "MAY_BE_ARRAY"]; case "object": return ["IS_OBJECT", "MAY_BE_OBJECT"]; case "callable": return ["IS_CALLABLE", "MAY_BE_CALLABLE"]; case "mixed": case "any": case "box": case "stream": return ["IS_MIXED", "MAY_BE_ANY"]; case "void": return ["IS_VOID", "MAY_BE_VOID"]; case "static": return ["IS_STATIC", "MAY_BE_STATIC"]; case "never": return ["IS_NEVER", "MAY_BE_NEVER"]; default: throw new Exception("Not implemented: $this->name"); } } public function toTypeCode(): string { return $this->toTypeInfo()[0]; } public function toTypeMask(): string { return $this->toTypeInfo()[1]; } public function toOptimizerTypeMaskForArrayKey(): string { assert($this->isBuiltin); switch ($this->name) { case "int": return "MAY_BE_ARRAY_KEY_LONG"; case "string": return "MAY_BE_ARRAY_KEY_STRING"; default: throw new Exception("Type $this->name cannot be an array key"); } } public function toOptimizerTypeMaskForArrayValue(): string { if (!$this->isBuiltin) { return "MAY_BE_ARRAY_OF_OBJECT"; } switch ($this->name) { case "null": return "MAY_BE_ARRAY_OF_NULL"; case "false": return "MAY_BE_ARRAY_OF_FALSE"; case "true": return "MAY_BE_ARRAY_OF_TRUE"; case "bool": return "MAY_BE_ARRAY_OF_FALSE|MAY_BE_ARRAY_OF_TRUE"; case "int": return "MAY_BE_ARRAY_OF_LONG"; case "float": return "MAY_BE_ARRAY_OF_DOUBLE"; case "string": return "MAY_BE_ARRAY_OF_STRING"; case "array": return "MAY_BE_ARRAY_OF_ARRAY"; case "object": return "MAY_BE_ARRAY_OF_OBJECT"; case "resource": return "MAY_BE_ARRAY_OF_RESOURCE"; case "mixed": case "any": case "box": case "stream": return "MAY_BE_ARRAY_OF_ANY"; case "ref": return "MAY_BE_ARRAY_OF_REF"; default: throw new Exception("Type $this->name cannot be an array value"); } } public function toOptimizerTypeMask(): string { if (!$this->isBuiltin) { return "MAY_BE_OBJECT"; } switch ($this->name) { case "resource": return "MAY_BE_RESOURCE"; case "callable": return "MAY_BE_STRING|MAY_BE_ARRAY|MAY_BE_ARRAY_KEY_LONG|MAY_BE_ARRAY_OF_STRING|MAY_BE_ARRAY_OF_OBJECT|MAY_BE_OBJECT"; case "iterable": return "MAY_BE_ARRAY|MAY_BE_ARRAY_KEY_ANY|MAY_BE_ARRAY_OF_ANY|MAY_BE_OBJECT"; case "mixed": case "any": case "box": case "stream": return "MAY_BE_ANY|MAY_BE_ARRAY_KEY_ANY|MAY_BE_ARRAY_OF_ANY"; } return $this->toTypeMask(); } public function toEscapedName(): string { // Escape backslashes, and also encode \u, \U, and \N to avoid compilation errors in generated macros return str_replace( ['\\', '\\u', '\\U', '\\N'], ['\\\\', '\\\\165', '\\\\125', '\\\\116'], $this->name ); } public function toVarEscapedName(): string { return str_replace('\\', '_', $this->name); } public function equals(SimpleType $other): bool { return $this->name === $other->name && $this->isBuiltin === $other->isBuiltin; } } // Instances of StubType are immutable and do not need to be cloned // when held by an object that is cloned class StubType { /** @var SimpleType[] */ public /* readonly */ array $types; public /* readonly */ bool $isIntersection; /** @var ?array> DNF union clauses, intersections contain multiple members. */ public /* readonly */ ?array $dnfClauses; public static function fromNode(Node $node): StubType { if ($node instanceof Node\UnionType || $node instanceof Node\IntersectionType) { $nestedTypeObjects = array_map(['StubType', 'fromNode'], $node->types); $types = []; foreach ($nestedTypeObjects as $typeObject) { array_push($types, ...$typeObject->types); } if ($node instanceof Node\UnionType) { $dnfClauses = []; $hasIntersection = false; foreach ($node->types as $i => $memberNode) { $memberType = $nestedTypeObjects[$i]; if ($memberNode instanceof Node\IntersectionType) { $dnfClauses[] = $memberType->types; $hasIntersection = true; } else { foreach ($memberType->types as $simpleType) { $dnfClauses[] = [$simpleType]; } } } return new StubType($types, false, $hasIntersection ? $dnfClauses : null); } return new StubType($types, true); } if ($node instanceof Node\NullableType) { return new StubType( [ ...StubType::fromNode($node->type)->types, SimpleType::null(), ], false ); } if ($node instanceof Node\Identifier && $node->toLowerString() === "iterable") { return new StubType( [ SimpleType::fromString("Traversable"), ArrayType::createGenericArray(), ], false ); } return new StubType([SimpleType::fromNode($node)], false); } public static function fromString(string $typeString): self { $typeString .= "|"; $simpleTypes = []; $simpleTypeOffset = 0; $inArray = false; $isIntersection = false; $typeStringLength = strlen($typeString); for ($i = 0; $i < $typeStringLength; $i++) { $char = $typeString[$i]; if ($char === "<") { $inArray = true; continue; } if ($char === ">") { $inArray = false; continue; } if ($inArray) { continue; } if ($char === "|" || $char === "&") { $isIntersection = ($char === "&"); $simpleTypeName = trim(substr($typeString, $simpleTypeOffset, $i - $simpleTypeOffset)); $simpleTypes[] = SimpleType::fromString($simpleTypeName); $simpleTypeOffset = $i + 1; } } return new StubType($simpleTypes, $isIntersection); } /** * @param SimpleType[] $types */ private function __construct(array $types, bool $isIntersection, ?array $dnfClauses = null) { $this->types = $types; $this->isIntersection = $isIntersection; $this->dnfClauses = $dnfClauses; } public function isDnf(): bool { return $this->dnfClauses !== null; } public function getDnfTypeDeclarations(string $symbol): string { assert($this->dnfClauses !== null); $code = "static zend_type create_{$symbol}(uint32_t extra_flags)\n{\n"; $outerEntries = []; foreach ($this->dnfClauses as $i => $clause) { if (count($clause) === 1) { $type = $clause[0]; if (!$type->isBuiltin) { $classVar = $symbol . '_class_' . $i; $escapedName = $type->toEscapedName(); $code .= "\tzend_string *{$classVar} = zend_string_init_interned(\"{$escapedName}\", " . "sizeof(\"{$escapedName}\") - 1, true);\n"; $code .= "\tzend_alloc_ce_cache({$classVar});\n"; $outerEntries[] = '(zend_type) ZEND_TYPE_INIT_CLASS(' . $classVar . ', 0, 0)'; } continue; } $intersection = $symbol . '_intersection_' . $i; $code .= "\tzend_type_list *{$intersection} = (zend_type_list *) malloc(" . 'ZEND_TYPE_LIST_SIZE(' . count($clause) . "));\n"; $code .= "\t{$intersection}->num_types = " . count($clause) . ";\n"; foreach ($clause as $j => $type) { assert(!$type->isBuiltin); $classVar = $symbol . '_class_' . $i . '_' . $j; $escapedName = $type->toEscapedName(); $code .= "\tzend_string *{$classVar} = zend_string_init_interned(\"{$escapedName}\", " . "sizeof(\"{$escapedName}\") - 1, true);\n"; $code .= "\tzend_alloc_ce_cache({$classVar});\n"; $code .= "\t{$intersection}->types[{$j}] = (zend_type) ZEND_TYPE_INIT_CLASS(" . "{$classVar}, 0, 0);\n"; } $outerEntries[] = '(zend_type) ZEND_TYPE_INIT_INTERSECTION(' . $intersection . ', 0)'; } $code .= "\tzend_type_list *{$symbol} = (zend_type_list *) malloc(" . 'ZEND_TYPE_LIST_SIZE(' . count($outerEntries) . "));\n"; $code .= "\t{$symbol}->num_types = " . count($outerEntries) . ";\n"; foreach ($outerEntries as $i => $entry) { $code .= "\t{$symbol}->types[{$i}] = {$entry};\n"; } $masks = []; foreach ($this->dnfClauses as $clause) { if (count($clause) === 1 && $clause[0]->isBuiltin) { $masks[] = $clause[0]->toTypeMask(); } } $flags = $masks === [] ? 'extra_flags' : implode('|', $masks) . '|extra_flags'; $code .= "\treturn (zend_type) ZEND_TYPE_INIT_UNION({$symbol}, {$flags});\n"; $code .= "}\n"; return $code; } public function getDnfTypeExpression(string $symbol, string $extraFlags): string { assert($this->dnfClauses !== null); return 'create_' . $symbol . '(' . $extraFlags . ')'; } public function getZendTypeExpression(string $extraFlags): string { assert(!$this->isDnf()); if (null !== $simpleType = $this->tryToSimpleType()) { if ($simpleType->isBuiltin) { return sprintf( 'ZEND_TYPE_INIT_CODE(%s, %d, %s)', $simpleType->toTypeCode(), $this->isNullable() ? 1 : 0, $extraFlags, ); } return sprintf( 'ZEND_TYPE_INIT_CLASS_CONST("%s", %d, %s)', $simpleType->toEscapedName(), $this->isNullable() ? 1 : 0, $extraFlags, ); } $arginfoType = $this->toArginfoType(); if ($arginfoType->hasClassType()) { return sprintf( 'ZEND_TYPE_INIT_CLASS_CONST_MASK("%s", %s|%s)', $arginfoType->toClassTypeString(), $arginfoType->toTypeMask(), $extraFlags, ); } return sprintf('ZEND_TYPE_INIT_MASK(%s|%s)', $arginfoType->toTypeMask(), $extraFlags); } public function isScalar(): bool { foreach ($this->types as $type) { if (!$type->isScalar()) { return false; } } return true; } public function isNullable(): bool { foreach ($this->types as $type) { if ($type->isNull()) { return true; } } return false; } public function tryToSimpleType(): ?SimpleType { $nonNullTypes = array_filter( $this->types, function(SimpleType $type) { return !$type->isNull(); } ); /* type has only null */ if (count($nonNullTypes) === 0) { return $this->types[0]; } if (count($nonNullTypes) === 1) { return reset($nonNullTypes); } return null; } public function toArginfoType(): ArginfoType { $classTypes = []; $builtinTypes = []; foreach ($this->types as $type) { if ($type->isBuiltin) { $builtinTypes[] = $type; } else { $classTypes[] = $type; } } return new ArginfoType($classTypes, $builtinTypes); } public function toOptimizerTypeMask(): string { $optimizerTypes = []; foreach ($this->types as $type) { // TODO Support for toOptimizerMask for intersection $optimizerTypes[] = $type->toOptimizerTypeMask(); } return implode("|", $optimizerTypes); } public function toOptimizerTypeMaskForArrayKey(): string { $typeMasks = []; foreach ($this->types as $type) { $typeMasks[] = $type->toOptimizerTypeMaskForArrayKey(); } return implode("|", $typeMasks); } public function toOptimizerTypeMaskForArrayValue(): string { $typeMasks = []; foreach ($this->types as $type) { $typeMasks[] = $type->toOptimizerTypeMaskForArrayValue(); } return implode("|", $typeMasks); } public function getTypeForDoc(DOMDocument $doc): DOMElement { if (count($this->types) > 1) { $typeSort = $this->isIntersection ? "intersection" : "union"; $typeElement = $doc->createElement('type'); $typeElement->setAttribute("class", $typeSort); foreach ($this->types as $type) { $unionTypeElement = $doc->createElement('type', $type->name); $typeElement->appendChild($unionTypeElement); } } else { $type = $this->types[0]; $typeElement = $doc->createElement('type', $type->name); } return $typeElement; } public static function equals(?StubType $a, ?StubType $b): bool { if ($a === null || $b === null) { return $a === $b; } if ($a->isIntersection !== $b->isIntersection || ($a->dnfClauses === null) !== ($b->dnfClauses === null) || count($a->types) !== count($b->types) ) { return false; } for ($i = 0; $i < count($a->types); $i++) { if (!$a->types[$i]->equals($b->types[$i])) { return false; } } if ($a->dnfClauses !== null) { if (count($a->dnfClauses) !== count($b->dnfClauses)) { return false; } foreach ($a->dnfClauses as $i => $clause) { $otherClause = $b->dnfClauses[$i]; if (count($clause) !== count($otherClause)) { return false; } foreach ($clause as $j => $type) { if (!$type->equals($otherClause[$j])) { return false; } } } } return true; } public function __toString() : string { $char = $this->isIntersection ? '&' : '|'; return implode($char, array_map( function ($type) { return $type->name; }, $this->types) ); } } class ArginfoType { /** @var SimpleType[] $classTypes */ public /* readonly */ array $classTypes; /** @var SimpleType[] $builtinTypes */ private /* readonly */ array $builtinTypes; /** * @param SimpleType[] $classTypes * @param SimpleType[] $builtinTypes */ public function __construct(array $classTypes, array $builtinTypes) { $this->classTypes = $classTypes; $this->builtinTypes = $builtinTypes; } public function hasClassType(): bool { return !empty($this->classTypes); } public function toClassTypeString(): string { return implode('|', array_map(function(SimpleType $type) { return $type->toEscapedName(); }, $this->classTypes)); } public function toTypeMask(): string { if (empty($this->builtinTypes)) { return '0'; } return implode('|', array_map(function(SimpleType $type) { return $type->toTypeMask(); }, $this->builtinTypes)); } } class ArgInfo { public const SEND_BY_VAL = "0"; public const SEND_BY_REF = "1"; public const SEND_PREFER_REF = "ZEND_SEND_PREFER_REF"; public /* readonly */ string $name; public /* readonly */ string $sendBy; public /* readonly */ bool $isVariadic; public ?StubType $type; private /* readonly */ ?StubType $phpDocType; public ?string $defaultValue; /** @var AttributeInfo[] */ public array $attributes; /** * @param AttributeInfo[] $attributes */ public function __construct( string $name, string $sendBy, bool $isVariadic, ?StubType $type, ?StubType $phpDocType, ?string $defaultValue, array $attributes ) { $this->name = $name; $this->sendBy = $sendBy; $this->isVariadic = $isVariadic; $this->type = $type; $this->phpDocType = $phpDocType; $this->defaultValue = $defaultValue; $this->attributes = $attributes; } public function equals(ArgInfo $other): bool { return $this->name === $other->name && $this->sendBy === $other->sendBy && $this->isVariadic === $other->isVariadic && StubType::equals($this->type, $other->type) && $this->defaultValue === $other->defaultValue; } public function getMethodSynopsisType(): StubType { if ($this->type) { return $this->type; } if ($this->phpDocType) { return $this->phpDocType; } throw new Exception("A parameter must have a type"); } public function hasProperDefaultValue(): bool { return $this->defaultValue !== null && $this->defaultValue !== "UNKNOWN"; } private function getDefaultValueAsArginfoString(): string { if ($this->hasProperDefaultValue()) { // The default value is a PHP expression embedded in a C string. // Escape for the outer C layer only; addslashes() leaves line // breaks and other control bytes untouched, producing invalid C++. return '"' . getTranslator()->escapeString($this->defaultValue) . '"'; } return "NULL"; } public function getDefaultValueAsMethodSynopsisString(): ?string { switch ($this->defaultValue) { case 'UNKNOWN': return null; case 'false': case 'true': case 'null': return "&{$this->defaultValue};"; } return $this->defaultValue; } public function toZendInfo(?string $dnfSymbol = null, bool $deferDnfInitialization = false): string { $argKind = $this->isVariadic ? "ARG_VARIADIC" : "ARG"; $argDefaultKind = $this->hasProperDefaultValue() ? "_WITH_DEFAULT_VALUE" : ""; $argType = $this->type; if ($argType !== null) { if ($argType->isDnf() && $dnfSymbol !== null) { $flags = sprintf( '_ZEND_ARG_INFO_FLAGS(%s, %d, 0)', $this->sendBy, $this->isVariadic ? 1 : 0, ); $default = $this->isVariadic ? 'NULL' : $this->getDefaultValueAsArginfoString(); $typeExpression = $deferDnfInitialization ? 'ZEND_TYPE_INIT_NONE(' . $flags . ')' : $argType->getDnfTypeExpression($dnfSymbol, $flags); return sprintf( "\t{ \"%s\", %s, %s },\n", $this->name, $typeExpression, $default, ); } if (null !== $simpleArgType = $argType->tryToSimpleType()) { if ($simpleArgType->isBuiltin) { return sprintf( "\tZEND_%s_TYPE_INFO%s(%s, %s, %s, %d%s)\n", $argKind, $argDefaultKind, $this->sendBy, $this->name, $simpleArgType->toTypeCode(), $argType->isNullable(), $this->hasProperDefaultValue() ? ", " . $this->getDefaultValueAsArginfoString() : "" ); } return sprintf( "\tZEND_%s_OBJ_INFO%s(%s, %s, %s, %d%s)\n", $argKind, $argDefaultKind, $this->sendBy, $this->name, $simpleArgType->toEscapedName(), $argType->isNullable(), $this->hasProperDefaultValue() ? ", " . $this->getDefaultValueAsArginfoString() : "" ); } $arginfoType = $argType->toArginfoType(); if ($arginfoType->hasClassType()) { return sprintf( "\tZEND_%s_OBJ_TYPE_MASK(%s, %s, %s, %s%s)\n", $argKind, $this->sendBy, $this->name, $arginfoType->toClassTypeString(), $arginfoType->toTypeMask(), !$this->isVariadic ? ", " . $this->getDefaultValueAsArginfoString() : "" ); } if ($this->isVariadic) { return sprintf( "\tZEND_ARG_VARIADIC_TYPE_INFO(%s, %s, IS_MIXED, 0)\n", $this->sendBy, $this->name ); } return sprintf( "\tZEND_ARG_TYPE_MASK(%s, %s, %s, %s)\n", $this->sendBy, $this->name, $arginfoType->toTypeMask(), $this->getDefaultValueAsArginfoString() ); } return sprintf( "\tZEND_%s_INFO%s(%s, %s%s)\n", $argKind, $argDefaultKind, $this->sendBy, $this->name, $this->hasProperDefaultValue() ? ", " . $this->getDefaultValueAsArginfoString() : "" ); } public function getDnfInitialization(string $target, string $dnfSymbol): string { assert($this->type?->isDnf()); $flags = sprintf( '_ZEND_ARG_INFO_FLAGS(%s, %d, 0)', $this->sendBy, $this->isVariadic ? 1 : 0, ); return "\t{$target}.type = " . $this->type->getDnfTypeExpression($dnfSymbol, $flags) . ";\n"; } } interface VariableLikeName { public function __toString(): string; public function getDeclarationName(): string; } abstract class AbstractConstName implements VariableLikeName { public function isUnknown(): bool { return strtolower($this->__toString()) === "unknown"; } } class ConstName extends AbstractConstName { private /* readonly */ string $const; public function __construct(?Name $namespace, string $const) { if ($namespace && ($namespace = $namespace->slice(0, -1))) { $const = $namespace->toString() . '\\' . $const; } $this->const = $const; } public function isUnknown(): bool { $name = $this->__toString(); if (($pos = strrpos($name, '\\')) !== false) { $name = substr($name, $pos + 1); } return strtolower($name) === "unknown"; } public function __toString(): string { return $this->const; } public function getDeclarationName(): string { return $this->name->toString(); } } class ClassConstName extends AbstractConstName { public /* readonly */ Name $class; private /* readonly */ string $const; public function __construct(Name $class, string $const) { $this->class = $class; $this->const = $const; } public function __toString(): string { return $this->class->toString() . "::" . $this->const; } public function getDeclarationName(): string { return $this->const; } } class PropertyName implements VariableLikeName { public /* readonly */ Name $class; private /* readonly */ string $property; public function __construct(Name $class, string $property) { $this->class = $class; $this->property = $property; } public function __toString(): string { return $this->class->toString() . "::$" . $this->property; } public function getDeclarationName(): string { return $this->property; } } interface FunctionOrMethodName { public function getDeclaration(): string; public function getArgInfoName(): string; public function getMethodSynopsisFilename(): string; public function getNameForAttributes(): string; public function __toString(): string; public function isConstructor(): bool; public function isDestructor(): bool; } class FunctionName implements FunctionOrMethodName { private /* readonly */ Name $name; public function __construct(Name $name) { $this->name = $name; } public function getNamespace(): ?string { if ($this->name->isQualified()) { return $this->name->slice(0, -1)->toString(); } return null; } public function getNonNamespacedName(): string { if ($this->name->isQualified()) { throw new Exception("Namespaced name not supported here"); } return $this->name->toString(); } public function getDeclarationName(): string { return strtolower(implode('_', $this->name->getParts())); } public function getFunctionName(): string { return $this->name->getLast(); } public function getDeclaration(): string { return "ZEND_FUNCTION({$this->getDeclarationName()});\n"; } public function getArgInfoName(): string { $underscoreName = strtolower(implode('_', $this->name->getParts())); return "arginfo_$underscoreName"; } public function getFramelessFunctionInfosName(): string { $underscoreName = implode('_', $this->name->getParts()); return "frameless_function_infos_$underscoreName"; } public function getMethodSynopsisFilename(): string { return 'functions/' . implode('/', str_replace('_', '-', $this->name->getParts())); } public function getNameForAttributes(): string { return strtolower($this->name->toString()); } public function __toString(): string { return $this->name->toString(); } public function isConstructor(): bool { return false; } public function isDestructor(): bool { return false; } } class MethodName implements FunctionOrMethodName { public /* readonly */ Name $className; public /* readonly */ string $methodName; public function __construct(Name $className, string $methodName) { $this->className = $className; $this->methodName = $methodName; } public function getDeclarationClassName(): string { return implode('_', $this->className->getParts()); } public function getDeclaration(): string { return "ZEND_METHOD({$this->getDeclarationClassName()}, $this->methodName);\n"; } public function getArgInfoName(): string { return "arginfo_class_{$this->getDeclarationClassName()}_{$this->methodName}"; } public function getMethodSynopsisFilename(): string { $parts = [...$this->className->getParts(), ltrim($this->methodName, '_')]; /* File paths are in lowercase */ return strtolower(implode('/', $parts)); } public function getNameForAttributes(): string { return strtolower($this->methodName); } public function __toString(): string { return "$this->className::$this->methodName"; } public function isConstructor(): bool { return $this->methodName === "__construct"; } public function isDestructor(): bool { return $this->methodName === "__destruct"; } } class ReturnInfo { public const REFCOUNT_0 = "0"; public const REFCOUNT_1 = "1"; public const REFCOUNT_N = "N"; public const REFCOUNTS_NONSCALAR = [ self::REFCOUNT_1, self::REFCOUNT_N, ]; private /* readonly */ bool $byRef; // NOT readonly - gets removed when discarding info for older PHP versions public ?StubType $type; public /* readonly */ ?StubType $phpDocType; public /* readonly */ bool $tentativeReturnType; public /* readonly */ string $refcount; public function __construct( bool $byRef, ?StubType $type, ?StubType $phpDocType, bool $tentativeReturnType, ?string $refcount ) { $this->byRef = $byRef; $this->type = $type; $this->phpDocType = $phpDocType; $this->tentativeReturnType = $tentativeReturnType; $this->setRefcount($refcount); } public function equalsApartFromRefcount(ReturnInfo $other): bool { // PHPDoc types are used as the effective arginfo type for generated // TypePHP stubs. They therefore participate in arginfo equivalence: // aliasing two functions that only differ in their inferred return // type can expose the wrong Reflection type and may make Zend reject a // magic method during class registration. $effectiveType = $this->type ?? $this->phpDocType; $otherEffectiveType = $other->type ?? $other->phpDocType; return $this->byRef === $other->byRef && StubType::equals($effectiveType, $otherEffectiveType) && $this->tentativeReturnType === $other->tentativeReturnType; } public function getMethodSynopsisType(): ?StubType { return $this->type ?? $this->phpDocType; } private function setRefcount(?string $refcount): void { $type = $this->phpDocType ?? $this->type; $isScalarType = $type !== null && $type->isScalar(); if ($refcount === null) { $this->refcount = $isScalarType ? self::REFCOUNT_0 : self::REFCOUNT_N; return; } if ($isScalarType) { throw new Exception( "@refcount on functions returning scalar values is redundant and not permitted" ); } if (!in_array($refcount, ReturnInfo::REFCOUNTS_NONSCALAR, true)) { throw new Exception("@refcount must have one of the following values: \"1\", \"N\", $refcount given"); } $this->refcount = $refcount; } public function beginArgInfo( string $funcInfoName, int $minArgs, ?string $dnfSymbol = null, bool $deferDnfInitialization = false, ): string { $effectiveType = $this->type ?? $this->phpDocType; if ($deferDnfInitialization) { $flags = sprintf( '_ZEND_ARG_INFO_FLAGS(%d, 0, %d)', $this->byRef ? 1 : 0, $this->tentativeReturnType ? 1 : 0, ); if ($effectiveType?->isDnf()) { assert($dnfSymbol !== null); $typeExpression = 'ZEND_TYPE_INIT_NONE(' . $flags . ')'; } elseif ($effectiveType !== null) { $typeExpression = $effectiveType->getZendTypeExpression($flags); } else { $typeExpression = 'ZEND_TYPE_INIT_NONE(' . $flags . ')'; } return sprintf( "static zend_internal_arg_info %s[] = {\n" . "\t{ (const char*)(uintptr_t)(%d), %s, NULL },\n", $funcInfoName, $minArgs, $typeExpression, ); } return $this->beginArgInfoCompatible($funcInfoName, $minArgs); } public function getDnfInitialization(string $target, string $dnfSymbol): string { $effectiveType = $this->type ?? $this->phpDocType; assert($effectiveType?->isDnf()); $flags = sprintf( '_ZEND_ARG_INFO_FLAGS(%d, 0, %d)', $this->byRef ? 1 : 0, $this->tentativeReturnType ? 1 : 0, ); return "\t{$target}.type = " . $effectiveType->getDnfTypeExpression($dnfSymbol, $flags) . ";\n"; } /** * Assumes PHP 8.1 compatibility, if that is not the case the caller is * responsible for making the use of a tentative return type conditional * based on the PHP version. Separate to allow using early returns */ private function beginArgInfoCompatible(string $funcInfoName, int $minArgs): string { $effectiveType = $this->type ?? $this->phpDocType; if ($effectiveType !== null) { if (null !== $simpleReturnType = $effectiveType->tryToSimpleType()) { if ($simpleReturnType->isBuiltin) { return sprintf( "%s(%s, %d, %d, %s, %d)\n", $this->tentativeReturnType ? "ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX" : "ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX", $funcInfoName, $this->byRef, $minArgs, $simpleReturnType->toTypeCode(), $effectiveType->isNullable() ); } return sprintf( "%s(%s, %d, %d, %s, %d)\n", $this->tentativeReturnType ? "ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_OBJ_INFO_EX" : "ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX", $funcInfoName, $this->byRef, $minArgs, $simpleReturnType->toEscapedName(), $effectiveType->isNullable() ); } $arginfoType = $effectiveType->toArginfoType(); if ($arginfoType->hasClassType()) { return sprintf( "%s(%s, %d, %d, %s, %s)\n", $this->tentativeReturnType ? "ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_OBJ_TYPE_MASK_EX" : "ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX", $funcInfoName, $this->byRef, $minArgs, $arginfoType->toClassTypeString(), $arginfoType->toTypeMask() ); } return sprintf( "%s(%s, %d, %d, %s)\n", $this->tentativeReturnType ? "ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_MASK_EX" : "ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX", $funcInfoName, $this->byRef, $minArgs, $arginfoType->toTypeMask() ); } return sprintf( "ZEND_BEGIN_ARG_INFO_EX(%s, 0, %d, %d)\n", $funcInfoName, $this->byRef, $minArgs ); } } class VersionFlags { /** * Keys are the PHP versions, values are arrays of flags */ private array $flagsByVersion; public function __construct(array $baseFlags) { $this->flagsByVersion = []; foreach (ALL_PHP_VERSION_IDS as $version) { $this->flagsByVersion[$version] = $baseFlags; } } public function addForVersionsAbove(string $flag, int $minimumVersionId): void { foreach (ALL_PHP_VERSION_IDS as $version) { // The supported-version table does not necessarily contain the // PHP release that originally introduced a flag. For example, // TypePHP currently starts at PHP 8.4, while ZEND_ACC_STATIC was // introduced much earlier. Compare ranges instead of waiting for // an exact table entry, otherwise established flags silently // disappear when the minimum supported PHP version is raised. if ($version >= $minimumVersionId) { $this->flagsByVersion[$version][] = $flag; } } } public function isEmpty(): bool { foreach (ALL_PHP_VERSION_IDS as $version) { if ($this->flagsByVersion[$version] !== []) { return false; } } return true; } public function generateVersionDependentFlagCode( string $codeTemplate, ?int $phpVersionIdMinimumCompatibility, ?int $phpVersionIdMaxCompatibility = null ): string { $flagsByPhpVersions = $this->flagsByVersion; $phpVersions = ALL_PHP_VERSION_IDS; sort($phpVersions); $currentPhpVersion = end($phpVersions); // No version compatibility is needed if ($phpVersionIdMinimumCompatibility === null) { if (empty($flagsByPhpVersions[$currentPhpVersion])) { return ''; } return sprintf($codeTemplate, implode("|", $flagsByPhpVersions[$currentPhpVersion])); } ksort($flagsByPhpVersions); // Remove flags which depend on a PHP version below the minimally supported one $index = array_search($phpVersionIdMinimumCompatibility, array_keys($flagsByPhpVersions)); if ($index === false) { throw new Exception("Missing version dependent flags for PHP version ID \"$phpVersionIdMinimumCompatibility\""); } $flagsByPhpVersions = array_slice($flagsByPhpVersions, $index, null, true); if ($phpVersionIdMaxCompatibility !== null) { // Remove flags which depend on a PHP version above the maximally supported one $index = array_search($phpVersionIdMaxCompatibility, array_keys($flagsByPhpVersions)); if ($index === false) { throw new Exception("Missing version dependent flags for PHP version ID \"$phpVersionIdMaxCompatibility\""); } $flagsByPhpVersions = array_slice($flagsByPhpVersions, 0, $index, true); } // Remove version-specific flags which don't differ from the previous one // Also populate '0' values $previousVersionId = null; foreach ($flagsByPhpVersions as $versionId => $versionFlags) { if ($versionFlags === []) { $versionFlags = ['0']; $flagsByPhpVersions[$versionId] = ['0']; } if ($previousVersionId !== null && $flagsByPhpVersions[$previousVersionId] === $versionFlags) { unset($flagsByPhpVersions[$versionId]); } else { $previousVersionId = $versionId; } } $flagCount = count($flagsByPhpVersions); // Do not add a condition unnecessarily when the only version is the same as the minimally supported one if ($flagCount === 1) { reset($flagsByPhpVersions); $firstVersion = key($flagsByPhpVersions); if ($firstVersion === $phpVersionIdMinimumCompatibility) { return sprintf($codeTemplate, implode("|", reset($flagsByPhpVersions))); } } // Add the necessary conditions around the code using the version-specific flags $code = ''; $i = 0; foreach (array_reverse($flagsByPhpVersions, true) as $version => $versionFlags) { $if = $i === 0 ? "#if" : "#elif"; $endif = $i === $flagCount - 1 ? "#endif\n" : ""; $code .= "$if (PHP_VERSION_ID >= $version)\n"; $code .= sprintf($codeTemplate, implode("|", $versionFlags)); $code .= $endif; $i++; } return $code; } } class FuncInfo { public /* readonly */ FunctionOrMethodName $name; private /* readonly */ int $classFlags; public int $flags; public /* readonly */ ?string $aliasType; public ?FunctionOrMethodName $alias; private /* readonly */ bool $isDeprecated; private bool $supportsCompileTimeEval; public /* readonly */ bool $verify; /** @var ArgInfo[] */ public /* readonly */ array $args; public /* readonly */ ReturnInfo $return; private /* readonly */ int $numRequiredArgs; public /* readonly */ ?string $cond; public bool $isUndocumentable; private ?int $minimumPhpVersionIdCompatibility; /** @var AttributeInfo[] */ public array $attributes; /** @var FramelessFunctionInfo[] */ private array $framelessFunctionInfos; private ?ExposedDocComment $exposedDocComment; /** * @param ArgInfo[] $args * @param AttributeInfo[] $attributes * @param FramelessFunctionInfo[] $framelessFunctionInfos */ public function __construct( FunctionOrMethodName $name, int $classFlags, int $flags, ?string $aliasType, ?FunctionOrMethodName $alias, bool $isDeprecated, bool $supportsCompileTimeEval, bool $verify, array $args, ReturnInfo $return, int $numRequiredArgs, ?string $cond, bool $isUndocumentable, ?int $minimumPhpVersionIdCompatibility, array $attributes, array $framelessFunctionInfos, ?ExposedDocComment $exposedDocComment ) { $this->name = $name; $this->classFlags = $classFlags; $this->flags = $flags; $this->aliasType = $aliasType; $this->alias = $alias; $this->isDeprecated = $isDeprecated; $this->supportsCompileTimeEval = $supportsCompileTimeEval; $this->verify = $verify; $this->args = $args; $this->return = $return; $this->numRequiredArgs = $numRequiredArgs; $this->cond = $cond; $this->isUndocumentable = $isUndocumentable; $this->minimumPhpVersionIdCompatibility = $minimumPhpVersionIdCompatibility; $this->attributes = $attributes; $this->framelessFunctionInfos = $framelessFunctionInfos; $this->exposedDocComment = $exposedDocComment; if ($return->tentativeReturnType && $this->isFinalMethod()) { throw new Exception("Tentative return inapplicable for final method"); } } public function isMethod(): bool { return $this->name instanceof MethodName; } private function isFinalMethod(): bool { return ($this->flags & Modifiers::FINAL) || ($this->classFlags & Modifiers::FINAL); } public function isInstanceMethod(): bool { return !($this->flags & Modifiers::STATIC) && $this->isMethod() && !$this->name->isConstructor(); } /** @return string[] */ private function getModifierNames(): array { if (!$this->isMethod()) { return []; } $result = []; if ($this->flags & Modifiers::FINAL) { $result[] = "final"; } elseif ($this->flags & Modifiers::ABSTRACT && $this->classFlags & ~Modifiers::ABSTRACT) { $result[] = "abstract"; } if ($this->flags & Modifiers::PROTECTED) { $result[] = "protected"; } elseif ($this->flags & Modifiers::PRIVATE) { $result[] = "private"; } else { $result[] = "public"; } if ($this->flags & Modifiers::STATIC) { $result[] = "static"; } return $result; } private function hasParamWithUnknownDefaultValue(): bool { foreach ($this->args as $arg) { if ($arg->defaultValue && !$arg->hasProperDefaultValue()) { return true; } } return false; } public function equalsApartFromNameAndRefcount(FuncInfo $other): bool { if (count($this->args) !== count($other->args)) { return false; } for ($i = 0; $i < count($this->args); $i++) { if (!$this->args[$i]->equals($other->args[$i])) { return false; } } return $this->return->equalsApartFromRefcount($other->return) && $this->numRequiredArgs === $other->numRequiredArgs && $this->cond === $other->cond; } public function getArgInfoName(): string { return $this->name->getArgInfoName(); } public function hasDnfArgInfo(): bool { if ($this->return->getMethodSynopsisType()?->isDnf()) { return true; } foreach ($this->args as $argInfo) { if ($argInfo->type?->isDnf()) { return true; } } return false; } public function getDnfArgInfoInitializerName(): string { return 'init_' . $this->getArgInfoName() . '_dnf_types'; } public function getDeclarationKey(): string { $name = $this->alias ?? $this->name; return "$name|$this->cond"; } public function getDeclaration(): ?string { if ($this->flags & Modifiers::ABSTRACT) { return null; } $name = $this->alias ?? $this->name; return $name->getDeclaration(); } public function getFramelessDeclaration(): ?string { if (empty($this->framelessFunctionInfos)) { return null; } $code = ''; $infos = ''; foreach ($this->framelessFunctionInfos as $framelessFunctionInfo) { $code .= "ZEND_FRAMELESS_FUNCTION({$this->name->getFunctionName()}, {$framelessFunctionInfo->arity});\n"; $infos .= "\t{ ZEND_FRAMELESS_FUNCTION_NAME({$this->name->getFunctionName()}, {$framelessFunctionInfo->arity}), {$framelessFunctionInfo->arity} },\n"; } $code .= 'static const zend_frameless_function_info ' . $this->getFramelessFunctionInfosName() . "[] = {\n"; $code .= $infos; $code .= "\t{ 0 },\n"; $code .= "};\n"; return $code; } private function getFramelessFunctionInfosName(): string { return $this->name->getFramelessFunctionInfosName(); } public function getFunctionEntry(): string { if (!empty($this->framelessFunctionInfos)) { if ($this->isMethod()) { throw new Exception('Frameless methods are not supported yet'); } if ($this->name->getNamespace()) { throw new Exception('Namespaced direct calls to frameless functions are not supported yet'); } if ($this->alias) { throw new Exception('Aliased direct calls to frameless functions are not supported yet'); } } $isVanillaEntry = $this->alias === null && !$this->supportsCompileTimeEval && $this->exposedDocComment === null && empty($this->framelessFunctionInfos); $argInfoName = $this->getArgInfoName(); $flagsByPhpVersions = $this->getArginfoFlagsByPhpVersions(); if ($this->isMethod()) { $zendName = '"' . $this->name->methodName . '"'; if ($this->alias) { if ($this->alias instanceof MethodName) { $name = "zim_" . $this->alias->getDeclarationClassName() . "_" . $this->alias->methodName; } else if ($this->alias instanceof FunctionName) { $name = "zif_" . $this->alias->getNonNamespacedName(); } else { throw new Error("Cannot happen"); } } elseif ($this->flags & Modifiers::ABSTRACT) { $name = "NULL"; } else { $name = "zim_" . $this->name->getDeclarationClassName() . "_" . $this->name->methodName; if ($isVanillaEntry) { $template = "\tZEND_ME(" . $this->name->getDeclarationClassName() . ", " . $this->name->methodName . ", $argInfoName, %s)\n"; $flagsCode = $flagsByPhpVersions->generateVersionDependentFlagCode( $template, $this->minimumPhpVersionIdCompatibility ); return rtrim($flagsCode) . "\n"; } } } else if ($this->name instanceof FunctionName) { $functionName = $this->name->getFunctionName(); $declarationName = $this->alias ? $this->alias->getNonNamespacedName() : $this->name->getDeclarationName(); $name = "zif_$declarationName"; if ($this->name->getNamespace()) { $namespace = addslashes($this->name->getNamespace()); $zendName = "ZEND_NS_NAME(\"$namespace\", \"$functionName\")"; } else { // Can only use ZEND_FE() if we have no flags for *all* versions if ($isVanillaEntry && $flagsByPhpVersions->isEmpty()) { return "\tZEND_FE($declarationName, $argInfoName)\n"; } $zendName = '"' . $functionName . '"'; } } else { throw new Error("Cannot happen"); } $docComment = $this->exposedDocComment ? '"' . $this->exposedDocComment->escape() . '"' : "NULL"; $framelessFuncInfosName = !empty($this->framelessFunctionInfos) ? $this->getFramelessFunctionInfosName() : "NULL"; $code = $flagsByPhpVersions->generateVersionDependentFlagCode( "\tZEND_RAW_FENTRY($zendName, $name, $argInfoName, %s, $framelessFuncInfosName, $docComment)\n", PHP_84_VERSION_ID ); return $code; } public function getOptimizerInfo(): ?string { if ($this->isMethod()) { return null; } if ($this->alias !== null) { return null; } if ($this->return->refcount !== ReturnInfo::REFCOUNT_1 && $this->return->phpDocType === null) { return null; } $type = $this->return->phpDocType ?? $this->return->type; if ($type === null) { return null; } return "\tF" . $this->return->refcount . '("' . addslashes($this->name->__toString()) . '", ' . $type->toOptimizerTypeMask() . "),\n"; } public function discardInfoForOldPhpVersions(?int $minimumPhpVersionIdCompatibility): void { $this->attributes = []; $this->return->type = null; $this->framelessFunctionInfos = []; $this->exposedDocComment = null; $this->supportsCompileTimeEval = false; foreach ($this->args as $arg) { $arg->type = null; $arg->defaultValue = null; $arg->attributes = []; } $this->minimumPhpVersionIdCompatibility = $minimumPhpVersionIdCompatibility; } private function getArginfoFlagsByPhpVersions(): VersionFlags { // TypePHP is always strict. Register functions and methods with the // flag once so dynamic calls made by native bodies inherit that mode. $flags = ["ZEND_ACC_STRICT_TYPES"]; if ($this->isMethod()) { if ($this->flags & Modifiers::PROTECTED) { $flags[] = "ZEND_ACC_PROTECTED"; } elseif ($this->flags & Modifiers::PRIVATE) { $flags[] = "ZEND_ACC_PRIVATE"; } else { $flags[] = "ZEND_ACC_PUBLIC"; } if ($this->flags & Modifiers::STATIC) { $flags[] = "ZEND_ACC_STATIC"; } if ($this->flags & Modifiers::FINAL) { $flags[] = "ZEND_ACC_FINAL"; } if ($this->flags & Modifiers::ABSTRACT) { $flags[] = "ZEND_ACC_ABSTRACT"; } } if ($this->isDeprecated) { $flags[] = "ZEND_ACC_DEPRECATED"; } foreach ($this->attributes as $attr) { switch ($attr->class) { case "Deprecated": $flags[] = "ZEND_ACC_DEPRECATED"; break; } } $obj = new VersionFlags($flags); if ($this->isMethod() === false && $this->supportsCompileTimeEval) { $obj->addForVersionsAbove("ZEND_ACC_COMPILE_TIME_EVAL", PHP_82_VERSION_ID); } foreach ($this->attributes as $attr) { switch ($attr->class) { case "NoDiscard": $obj->addForVersionsAbove("ZEND_ACC_NODISCARD", PHP_85_VERSION_ID); break; } } return $obj; } private function generateRefSect1(DOMDocument $doc, string $role): DOMElement { $refSec = $doc->createElement('refsect1'); $refSec->setAttribute('role', $role); $refSec->append( "\n ", $doc->createEntityReference('reftitle.' . $role), "\n " ); return $refSec; } public function getMethodSynopsisDocument(): ?string { $REFSEC1_SEPERATOR = "\n\n "; $doc = new DOMDocument("1.0", "utf-8"); $doc->formatOutput = true; $refentry = $doc->createElement('refentry'); $doc->appendChild($refentry); if ($this->isMethod()) { assert($this->name instanceof MethodName); /* Namespaces are seperated by '-', '_' must be converted to '-' too. * Trim away the __ for magic methods */ $id = strtolower( str_replace('\\', '-', $this->name->className->__toString()) . '.' . str_replace('_', '-', ltrim($this->name->methodName, '_')) ); } else { $id = 'function.' . strtolower(str_replace('_', '-', $this->name->__toString())); } $refentry->setAttribute("xml:id", $id); /* We create an attribute for xmlns, as libxml otherwise force it to be the first one */ //$refentry->setAttribute("xmlns", "http://docbook.org/ns/docbook"); $namespace = $doc->createAttribute('xmlns'); $namespace->value = "http://docbook.org/ns/docbook"; $refentry->setAttributeNode($namespace); $refentry->setAttribute("xmlns:xlink", "http://www.w3.org/1999/xlink"); $refentry->appendChild(new DOMText("\n ")); /* Creation of */ $refnamediv = $doc->createElement('refnamediv'); $refnamediv->appendChild(new DOMText("\n ")); $refname = $doc->createElement('refname', $this->name->__toString()); $refnamediv->appendChild($refname); $refnamediv->appendChild(new DOMText("\n ")); $refpurpose = $doc->createElement('refpurpose', 'Description'); $refnamediv->appendChild($refpurpose); $refnamediv->appendChild(new DOMText("\n ")); $refentry->append($refnamediv, $REFSEC1_SEPERATOR); /* Creation of */ $descriptionRefSec = $this->generateRefSect1($doc, 'description'); $methodSynopsis = $this->getMethodSynopsisElement($doc); if (!$methodSynopsis) { return null; } $descriptionRefSec->appendChild($methodSynopsis); $descriptionRefSec->appendChild(new DOMText("\n ")); $undocumentedEntity = $doc->createEntityReference('warn.undocumented.func'); $descriptionRefSec->appendChild($undocumentedEntity); $descriptionRefSec->appendChild(new DOMText("\n ")); $returnDescriptionPara = $doc->createElement('simpara'); $returnDescriptionPara->appendChild(new DOMText("\n Description.\n ")); $descriptionRefSec->appendChild($returnDescriptionPara); $descriptionRefSec->appendChild(new DOMText("\n ")); $refentry->append($descriptionRefSec, $REFSEC1_SEPERATOR); /* Creation of */ $parametersRefSec = $this->getParameterSection($doc); $refentry->append($parametersRefSec, $REFSEC1_SEPERATOR); /* Creation of */ if (!$this->name->isConstructor() && !$this->name->isDestructor()) { $returnRefSec = $this->getReturnValueSection($doc); $refentry->append($returnRefSec, $REFSEC1_SEPERATOR); } /* Creation of */ $errorsRefSec = $this->generateRefSect1($doc, 'errors'); $errorsDescriptionParaConstantTag = $doc->createElement('constant'); $errorsDescriptionParaConstantTag->append('E_*'); $errorsDescriptionParaExceptionTag = $doc->createElement('exceptionname'); $errorsDescriptionParaExceptionTag->append('Exception'); $errorsDescriptionPara = $doc->createElement('simpara'); $errorsDescriptionPara->append( "\n When does this function issue ", $errorsDescriptionParaConstantTag, " level errors,\n and/or throw ", $errorsDescriptionParaExceptionTag, "s.\n " ); $errorsRefSec->appendChild($errorsDescriptionPara); $errorsRefSec->appendChild(new DOMText("\n ")); $refentry->append($errorsRefSec, $REFSEC1_SEPERATOR); /* Creation of */ $changelogRefSec = $this->getChangelogSection($doc); $refentry->append($changelogRefSec, $REFSEC1_SEPERATOR); $exampleRefSec = $this->getExampleSection($doc, $id); $refentry->append($exampleRefSec, $REFSEC1_SEPERATOR); /* Creation of */ $notesRefSec = $this->generateRefSect1($doc, 'notes'); $noteTagSimara = $doc->createElement('simpara'); $noteTagSimara->append( "\n Any notes that don't fit anywhere else should go here.\n " ); $noteTag = $doc->createElement('note'); $noteTag->append("\n ", $noteTagSimara, "\n "); $notesRefSec->append($noteTag, "\n "); $refentry->append($notesRefSec, $REFSEC1_SEPERATOR); /* Creation of */ $seeAlsoRefSec = $this->generateRefSect1($doc, 'seealso'); $seeAlsoMemberClassMethod = $doc->createElement('member'); $seeAlsoMemberClassMethodTag = $doc->createElement('methodname'); $seeAlsoMemberClassMethodTag->appendChild(new DOMText("ClassName::otherMethodName")); $seeAlsoMemberClassMethod->appendChild($seeAlsoMemberClassMethodTag); $seeAlsoMemberFunction = $doc->createElement('member'); $seeAlsoMemberFunctionTag = $doc->createElement('function'); $seeAlsoMemberFunctionTag->appendChild(new DOMText("some_function")); $seeAlsoMemberFunction->appendChild($seeAlsoMemberFunctionTag); $seeAlsoMemberLink = $doc->createElement('member'); $seeAlsoMemberLinkTag = $doc->createElement('link'); $seeAlsoMemberLinkTag->setAttribute('linkend', 'some.id.chunk.to.link'); $seeAlsoMemberLinkTag->appendChild(new DOMText('something appendix')); $seeAlsoMemberLink->appendChild($seeAlsoMemberLinkTag); $seeAlsoList = $doc->createElement('simplelist'); $seeAlsoList->append( "\n ", $seeAlsoMemberClassMethod, "\n ", $seeAlsoMemberFunction, "\n ", $seeAlsoMemberLink, "\n " ); $seeAlsoRefSec->appendChild($seeAlsoList); $seeAlsoRefSec->appendChild(new DOMText("\n ")); $refentry->appendChild($seeAlsoRefSec); $refentry->appendChild(new DOMText("\n\n")); $doc->appendChild(new DOMComment( <<saveXML(); } private function getParameterSection(DOMDocument $doc): DOMElement { $parametersRefSec = $this->generateRefSect1($doc, 'parameters'); if (empty($this->args)) { $noParamEntity = $doc->createEntityReference('no.function.parameters'); $parametersRefSec->appendChild($noParamEntity); return $parametersRefSec; } else { $parametersContainer = $doc->createDocumentFragment(); $parametersContainer->appendChild(new DOMText("\n ")); $parametersList = $doc->createElement('variablelist'); $parametersContainer->appendChild($parametersList); /* name Description. */ foreach ($this->args as $arg) { $parameter = $doc->createElement('parameter', $arg->name); $parameterTerm = $doc->createElement('term'); $parameterTerm->appendChild($parameter); $listItemPara = $doc->createElement('simpara'); $listItemPara->append( "\n ", "Description.", "\n ", ); $parameterEntryListItem = $doc->createElement('listitem'); $parameterEntryListItem->append( "\n ", $listItemPara, "\n ", ); $parameterEntry = $doc->createElement('varlistentry'); $parameterEntry->append( "\n ", $parameterTerm, "\n ", $parameterEntryListItem, "\n ", ); $parametersList->appendChild(new DOMText("\n ")); $parametersList->appendChild($parameterEntry); } $parametersList->appendChild(new DOMText("\n ")); } $parametersContainer->appendChild(new DOMText("\n ")); $parametersRefSec->appendChild($parametersContainer); $parametersRefSec->appendChild(new DOMText("\n ")); return $parametersRefSec; } private function getReturnValueSection(DOMDocument $doc): DOMElement { $returnRefSec = $this->generateRefSect1($doc, 'returnvalues'); $returnDescriptionPara = $doc->createElement('simpara'); $returnDescriptionPara->appendChild(new DOMText("\n ")); $returnType = $this->return->getMethodSynopsisType(); if ($returnType === null) { $returnDescriptionPara->appendChild(new DOMText("Description.")); } else if (count($returnType->types) === 1) { $type = $returnType->types[0]; switch ($type->name) { case 'void': $descriptionNode = $doc->createEntityReference('return.void'); break; case 'true': $descriptionNode = $doc->createEntityReference('return.true.always'); break; case 'bool': $descriptionNode = $doc->createEntityReference('return.success'); break; default: $descriptionNode = new DOMText("Description."); break; } $returnDescriptionPara->appendChild($descriptionNode); } else { $returnDescriptionPara->appendChild(new DOMText("Description.")); } $returnDescriptionPara->appendChild(new DOMText("\n ")); $returnRefSec->appendChild($returnDescriptionPara); $returnRefSec->appendChild(new DOMText("\n ")); return $returnRefSec; } /** * @param array $headers [count($headers) === $columns] * @param array> $rows [count($rows[$i]) === $columns] */ private function generateDocbookInformalTable( DOMDocument $doc, int $indent, int $columns, array $headers, array $rows ): DOMElement { $strIndent = str_repeat(' ', $indent); $headerRow = $doc->createElement('row'); foreach ($headers as $header) { $headerEntry = $doc->createElement('entry'); $headerEntry->appendChild($header); $headerRow->append("\n$strIndent ", $headerEntry); } $headerRow->append("\n$strIndent "); $thead = $doc->createElement('thead'); $thead->append( "\n$strIndent ", $headerRow, "\n$strIndent ", ); $tbody = $doc->createElement('tbody'); foreach ($rows as $row) { $bodyRow = $doc->createElement('row'); foreach ($row as $cell) { $entry = $doc->createElement('entry'); $entry->appendChild($cell); $bodyRow->appendChild(new DOMText("\n$strIndent ")); $bodyRow->appendChild($entry); } $bodyRow->appendChild(new DOMText("\n$strIndent ")); $tbody->append( "\n$strIndent ", $bodyRow, "\n$strIndent ", ); } $tgroup = $doc->createElement('tgroup'); $tgroup->setAttribute('cols', (string) $columns); $tgroup->append( "\n$strIndent ", $thead, "\n$strIndent ", $tbody, "\n$strIndent ", ); $table = $doc->createElement('informaltable'); $table->append( "\n$strIndent ", $tgroup, "\n$strIndent", ); return $table; } private function getChangelogSection(DOMDocument $doc): DOMElement { $refSec = $this->generateRefSect1($doc, 'changelog'); $headers = [ $doc->createEntityReference('Version'), $doc->createEntityReference('Description'), ]; $rows = [[ new DOMText('8.X.0'), new DOMText("\n Description\n "), ]]; $table = $this->generateDocbookInformalTable( $doc, /* indent: */ 2, /* columns: */ 2, /* headers: */ $headers, /* rows: */ $rows ); $refSec->appendChild($table); $refSec->appendChild(new DOMText("\n ")); return $refSec; } private function getExampleSection(DOMDocument $doc, string $id): DOMElement { $refSec = $this->generateRefSect1($doc, 'examples'); $example = $doc->createElement('example'); $fnName = $this->name->__toString(); $example->setAttribute('xml:id', $id . '.example.basic'); $title = $doc->createElement('title'); $fn = $doc->createElement($this->isMethod() ? 'methodname' : 'function'); $fn->append($fnName); $title->append($fn, ' example'); $example->append("\n ", $title); $para = $doc->createElement('simpara'); $para->append("\n ", "Description.", "\n "); $example->append("\n ", $para); $prog = $doc->createElement('programlisting'); $prog->setAttribute('role', 'php'); // So that GitHub syntax highlighting doesn't treat the closing tag // in the DOMCdataSection as indication that it should stop syntax // highlighting, break it up $empty = ''; $code = new DOMCdataSection( << CODE_EXAMPLE ); $prog->append("\n"); $prog->appendChild($code); $prog->append("\n "); $example->append("\n ", $prog); $example->append("\n ", $doc->createEntityReference('example.outputs')); $output = new DOMCdataSection( <<createElement('screen'); $screen->append("\n"); $screen->appendChild($output); $screen->append("\n "); $example->append( "\n ", $screen, "\n ", ); $refSec->append( $example, "\n ", ); return $refSec; } public function getMethodSynopsisElement(DOMDocument $doc): ?DOMElement { if ($this->hasParamWithUnknownDefaultValue()) { return null; } if ($this->name->isConstructor()) { $synopsisType = "constructorsynopsis"; } elseif ($this->name->isDestructor()) { $synopsisType = "destructorsynopsis"; } else { $synopsisType = "methodsynopsis"; } $methodSynopsis = $doc->createElement($synopsisType); if ($this->isMethod()) { assert($this->name instanceof MethodName); $role = $doc->createAttribute("role"); $role->value = addslashes($this->name->className->__toString()); $methodSynopsis->appendChild($role); } $methodSynopsis->appendChild(new DOMText("\n ")); foreach ($this->attributes as $attribute) { $modifier = $doc->createElement("modifier", "#[\\" . $attribute->class . "]"); $modifier->setAttribute("role", "attribute"); $methodSynopsis->appendChild($modifier); $methodSynopsis->appendChild(new DOMText("\n ")); } foreach ($this->getModifierNames() as $modifierString) { $modifierElement = $doc->createElement('modifier', $modifierString); $methodSynopsis->appendChild($modifierElement); $methodSynopsis->appendChild(new DOMText(" ")); } $returnType = $this->return->getMethodSynopsisType(); if ($returnType) { $methodSynopsis->appendChild($returnType->getTypeForDoc($doc)); } $methodname = $doc->createElement('methodname', $this->name->__toString()); $methodSynopsis->appendChild($methodname); if (empty($this->args)) { $methodSynopsis->appendChild(new DOMText("\n ")); $void = $doc->createElement('void'); $methodSynopsis->appendChild($void); } else { foreach ($this->args as $arg) { $methodSynopsis->appendChild(new DOMText("\n ")); $methodparam = $doc->createElement('methodparam'); if ($arg->defaultValue !== null) { $methodparam->setAttribute("choice", "opt"); } if ($arg->isVariadic) { $methodparam->setAttribute("rep", "repeat"); } $methodSynopsis->appendChild($methodparam); foreach ($arg->attributes as $attribute) { $attribute = $doc->createElement("modifier", "#[\\" . $attribute->class . "]"); $attribute->setAttribute("role", "attribute"); $methodparam->appendChild($attribute); } $methodparam->appendChild($arg->getMethodSynopsisType()->getTypeForDoc($doc)); $parameter = $doc->createElement('parameter', $arg->name); if ($arg->sendBy !== ArgInfo::SEND_BY_VAL) { $parameter->setAttribute("role", "reference"); } $methodparam->appendChild($parameter); $defaultValue = $arg->getDefaultValueAsMethodSynopsisString(); if ($defaultValue !== null) { $initializer = $doc->createElement('initializer'); if (preg_match('/^[a-zA-Z_][a-zA-Z_0-9\:\\\\]*$/', $defaultValue)) { $constant = $doc->createElement('constant', $defaultValue); $initializer->appendChild($constant); } else { $initializer->nodeValue = $defaultValue; } $methodparam->appendChild($initializer); } } } $methodSynopsis->appendChild(new DOMText("\n ")); return $methodSynopsis; } /** @param FuncInfo[] $generatedFuncInfos */ public function findEquivalent(array $generatedFuncInfos): ?FuncInfo { // DNF arginfo owns runtime-allocated nested type lists and its matching // initializer. Keep a distinct structure for every method instead of // aliasing another method's arginfo without its initialization path. if ($this->hasDnfArgInfo()) { return null; } foreach ($generatedFuncInfos as $generatedFuncInfo) { // TODO 从数组遍历元素,调用方法,在编译期无法获得元素的类型,因此判断作用域,必须为 public 方法 if ($generatedFuncInfo->equalsApartFromNameAndRefcount($this)) { return $generatedFuncInfo; } } return null; } public function toArgInfoCode(?int $minPHPCompatability): string { $argInfoName = $this->getArgInfoName(); $returnType = $this->return->getMethodSynopsisType(); $returnDnfSymbol = null; $argDnfSymbols = []; $code = ''; // Internal function tables are registered before MINIT, so global // functions retain the flattened fallback used historically. Class // methods can install their full DNF metadata immediately before the // class entry is registered and Zend validates inheritance. $deferDnfInitialization = $this->isMethod() && $this->hasDnfArgInfo(); if ($deferDnfInitialization && $returnType?->isDnf()) { $returnDnfSymbol = $argInfoName . '_return_dnf'; $code .= $returnType->getDnfTypeDeclarations($returnDnfSymbol); } foreach ($this->args as $i => $argInfo) { if ($deferDnfInitialization && $argInfo->type?->isDnf()) { $argDnfSymbols[$i] = $argInfoName . '_arg_' . $i . '_dnf'; $code .= $argInfo->type->getDnfTypeDeclarations($argDnfSymbols[$i]); } } $code .= $this->return->beginArgInfo( $argInfoName, $this->numRequiredArgs, $returnDnfSymbol, $deferDnfInitialization, ); foreach ($this->args as $i => $argInfo) { $code .= $argInfo->toZendInfo( $argDnfSymbols[$i] ?? null, $deferDnfInitialization, ); } $code .= "ZEND_END_ARG_INFO()"; if ($deferDnfInitialization) { $code .= "\nstatic void " . $this->getDnfArgInfoInitializerName() . "()\n{\n"; if ($returnDnfSymbol !== null) { $code .= $this->return->getDnfInitialization("{$argInfoName}[0]", $returnDnfSymbol); } foreach ($argDnfSymbols as $i => $symbol) { $code .= $this->args[$i]->getDnfInitialization("{$argInfoName}[" . ($i + 1) . "]", $symbol); } $code .= "}\n"; } return $code . "\n"; } public function __clone() { foreach ($this->args as $key => $argInfo) { $this->args[$key] = clone $argInfo; } $this->return = clone $this->return; } } class EvaluatedValue { public /* readonly */ mixed $value; public SimpleType $type; public Expr $expr; public bool $isUnknownConstValue; /** @var ConstInfo[] */ public array $originatingConsts; /** * @param array $allConstInfos */ public static function createFromExpression(Expr $expr, ?SimpleType $constType, ?string $cConstName, array $allConstInfos): EvaluatedValue { // This visitor replaces the PHP constants by C constants. It allows direct expansion of the compiled constants, e.g. later in the pretty printer. $visitor = new class($allConstInfos) extends PhpParser\NodeVisitorAbstract { /** @var iterable */ public array $visitedConstants = []; /** @var array */ public array $allConstInfos; /** @param array $allConstInfos */ public function __construct(array $allConstInfos) { $this->allConstInfos = $allConstInfos; } /** @return Node|null */ public function enterNode(PhpParser\Node $expr) { if (!$expr instanceof Expr\ConstFetch && !$expr instanceof Expr\ClassConstFetch) { return null; } if ($expr instanceof Expr\ClassConstFetch) { $className = resolveClassConstFetchClassName($expr, ClassInfo::$currentClass); $originatingConstName = new ClassConstName( new Name(ltrim($className, '\\')), $expr->name->toString() ); } else { $originatingConstName = new ConstName($expr->name->getAttribute('namespacedName'), $expr->name->toString()); } if ($originatingConstName->isUnknown()) { return null; } $const = $this->allConstInfos[$originatingConstName->__toString()] ?? null; if ($const !== null) { $this->visitedConstants[] = $const; return $const->getValue($this->allConstInfos)->expr; } } }; $nodeTraverser = new PhpParser\NodeTraverser; $nodeTraverser->addVisitor($visitor); $expr = $nodeTraverser->traverse([$expr])[0]; $isUnknownConstValue = false; $evaluator = null; $evaluator = new ConstExprEvaluator( static function (Expr $expr) use ( $allConstInfos, &$isUnknownConstValue, &$evaluator, ) { // php-parser's ConstExprEvaluator predates PHP 8.5 constant // expression casts. Keep the compatibility logic in TypePHP: // validation has already rejected void and disallowed object // casts before declaration values reach gen_stub.php. if ($expr instanceof Expr\Cast) { $value = $evaluator->evaluateDirectly($expr->expr); return match (true) { $expr instanceof Expr\Cast\Int_ => (int) $value, $expr instanceof Expr\Cast\Double => (float) $value, $expr instanceof Expr\Cast\Bool_ => (bool) $value, $expr instanceof Expr\Cast\String_ => (string) $value, $expr instanceof Expr\Cast\Array_ => (array) $value, $expr instanceof Expr\Cast\Object_ => (object) $value, default => throw new Exception( "Unsupported constant expression cast " . $expr->getType() ), }; } // $expr is a ConstFetch with a name of a C macro here if (!($expr instanceof Expr\ConstFetch) and !($expr instanceof Expr\ClassConstFetch)) { _error: throw new Exception("Expression at line " . $expr->getStartLine() . " must be a global, non-magic constant, " . $expr->getType() . " given"); } if ($expr instanceof Expr\ClassConstFetch) { $constName = $expr->name->__toString(); if (strcasecmp($constName, 'class') === 0) { // `::class` is a compile-time magic constant that resolves to the // fully qualified class name of the referenced class. return ltrim( resolveClassConstFetchClassName($expr, ClassInfo::$currentClass), '\\' ); } $class = resolveClassConstFetchClassName($expr, ClassInfo::$currentClass); $fqcnName = ltrim($class, '\\') . "::" . $constName; if (isset($allConstInfos[$fqcnName])) { return $allConstInfos[$fqcnName]->getValue($allConstInfos)->value; } return normalizeConstExprValue( getTranslator()->getClassConstValue($expr, $class, $constName, ClassInfo::$currentClass) ); } else { $constName = $expr->name->__toString(); if (strtolower($constName) === "unknown") { $isUnknownConstValue = true; return null; } } foreach ($allConstInfos as $name => $const) { if ($constName != $name) { continue; } $constType = ($const->phpDocType ?? $const->type)->tryToSimpleType(); if ($constType) { // 这里返回的并不是真正的值,而是一个类型的占位符,最终的运算由编译器完成,此处仅用于 ArgInfo 处理 if ($constType->isBool()) { return true; } elseif ($constType->isInt()) { return 1; } elseif ($constType->isFloat()) { return M_PI; } elseif ($constType->isString()) { return $const->name; } elseif ($constType->isArray()) { return []; } } return null; } $definedConstants = getTranslator()->getDefinedConstants(); if (isset($definedConstants[$constName])) { $constValue = $definedConstants[$constName]; if (is_scalar($constValue)) { return $constValue; } } throw new Exception("Constant " . $constName . " cannot be found"); } ); $result = $evaluator->evaluateDirectly($expr); return new EvaluatedValue( $result, // note: we are generally not interested in the actual value of $result, unless it's a bare value, without constants $constType ?? SimpleType::fromValue($result), $cConstName === null ? $expr : new Expr\ConstFetch(new Node\Name($cConstName)), $visitor->visitedConstants, $isUnknownConstValue ); } public static function null(): EvaluatedValue { return new self(null, SimpleType::null(), new Expr\ConstFetch(new Node\Name('null')), [], false); } /** * @param mixed $value * @param ConstInfo[] $originatingConsts */ private function __construct($value, SimpleType $type, Expr $expr, array $originatingConsts, bool $isUnknownConstValue) { $this->value = $value; $this->type = $type; $this->expr = $expr; $this->originatingConsts = $originatingConsts; $this->isUnknownConstValue = $isUnknownConstValue; } public function initializeZval(string $zvalName, bool $alreadyExists = false, string $forStringDef = '', string $varName = ''): string { $cExpr = $this->getCExpr(); $code = ''; if (!$alreadyExists) { $code = "\tzval $zvalName;\n"; } if ($this->type->isNull()) { $code .= "\tZVAL_NULL(&$zvalName);\n"; } elseif ($this->type->isBool()) { if ($cExpr == 'true') { $code .= "\tZVAL_TRUE(&$zvalName);\n"; } elseif ($cExpr == 'false') { $code .= "\tZVAL_FALSE(&$zvalName);\n"; } else { $code .= "\tZVAL_BOOL(&$zvalName, $cExpr);\n"; } } elseif ($this->type->isInt()) { $code .= "\tZVAL_LONG(&$zvalName, $cExpr);\n"; } elseif ($this->type->isFloat()) { $code .= "\tZVAL_DOUBLE(&$zvalName, $cExpr);\n"; } elseif ($this->type->isString()) { if ($cExpr === '""') { $code .= "\tZVAL_EMPTY_STRING(&$zvalName);\n"; } else { if ($forStringDef === '') { $forStringDef = "{$zvalName}_str"; } // getCExpr() emits a C string literal here. sizeof() preserves // embedded NUL bytes, unlike strlen(). $code .= "\tzend_string *$forStringDef = zend_string_init($cExpr, sizeof($cExpr) - 1, 1);\n"; $code .= "\tZVAL_STR(&$zvalName, $forStringDef);\n"; } } elseif ($this->type->isArray()) { $code .= "\tZVAL_EMPTY_ARRAY(&$zvalName);\n"; } else { throw new Exception("Invalid default value: " . print_r($this->value, true) . ", type: " . print_r($this->type, true)); } return $code; } public function getCExpr(): ?string { // $this->expr has all its PHP constants replaced by C constants $prettyPrinter = new Standard; $expr = $prettyPrinter->prettyPrintExpr($this->expr); // PHP single-quote to C double-quote string if ($this->type->isString()) { if ($this->expr instanceof PhpParser\Node\Expr\ClassConstFetch) { if ($this->expr->name instanceof PhpParser\Node\Identifier and $this->expr->name->__toString() === 'class') { // `::class` is a compile-time magic constant that resolves to the // fully qualified class name (already stored in $this->value). return '"' . addcslashes($this->value, '\\') . '"'; } return '"' . getTranslator()->escapeString((string) $this->value) . '"'; } elseif ($this->expr instanceof Expr\ConstFetch) { return getTranslator()->getConstValue($this->expr->name->toString()); } // ConstExprEvaluator has already decoded literal syntax and // reduced constant string expressions. Emitting that value avoids // leaking heredoc/nowdoc source syntax into generated C++. return '"' . getTranslator()->escapeString((string) $this->value) . '"'; } elseif ($this->type->isInt() or $this->type->isFloat()) { return strval($this->value); } elseif ($this->type->isBool()) { return $this->value ? 'true' : 'false'; } return $expr[0] == '"' ? $expr : preg_replace('(\bnull\b)', 'NULL', str_replace('\\', '', $expr)); } } abstract class VariableLike { protected int $flags; public ?StubType $type; public /* readonly */ ?StubType $phpDocType; private /* readonly */ ?string $link; protected ?int $phpVersionIdMinimumCompatibility; /** @var AttributeInfo[] */ public array $attributes; protected /* readonly */ ?ExposedDocComment $exposedDocComment; /** * @param AttributeInfo[] $attributes */ public function __construct( int $flags, ?StubType $type, ?StubType $phpDocType, ?string $link, ?int $phpVersionIdMinimumCompatibility, array $attributes, ?ExposedDocComment $exposedDocComment ) { $this->flags = $flags; $this->type = $type; $this->phpDocType = $phpDocType; $this->link = $link; $this->phpVersionIdMinimumCompatibility = $phpVersionIdMinimumCompatibility; $this->attributes = $attributes; $this->exposedDocComment = $exposedDocComment; } abstract protected function getVariableTypeName(): string; abstract protected function getFieldSynopsisDefaultLinkend(): string; abstract protected function getFieldSynopsisName(): string; /** @param array $allConstInfos */ abstract protected function getFieldSynopsisValueString(array $allConstInfos): ?string; abstract public function discardInfoForOldPhpVersions(?int $minimumPhpVersionIdCompatibility): void; protected function getFlagsByPhpVersion(): VersionFlags { $flags = "ZEND_ACC_PUBLIC"; if ($this->flags & Modifiers::PROTECTED) { $flags = "ZEND_ACC_PROTECTED"; } elseif ($this->flags & Modifiers::PRIVATE) { $flags = "ZEND_ACC_PRIVATE"; } return new VersionFlags([$flags]); } protected function getTypeCode(string $variableLikeName, string &$code): string { $variableLikeType = $this->getVariableTypeName(); $typeCode = ""; if ($this->type) { if ($this->type->isDnf()) { assert($this instanceof PropertyInfo); return $this->type->getDnfTypeExpression($this->getDnfTypeFactorySymbol(), '0'); } $arginfoType = $this->type->toArginfoType(); if ($arginfoType->hasClassType()) { if (count($arginfoType->classTypes) >= 2) { foreach ($arginfoType->classTypes as $classType) { $escapedClassName = $classType->toEscapedName(); $varEscapedClassName = $classType->toVarEscapedName(); $code .= "\tzend_string *{$variableLikeType}_{$variableLikeName}_class_{$varEscapedClassName} = zend_string_init(\"{$escapedClassName}\", sizeof(\"{$escapedClassName}\") - 1, 1);\n"; } $classTypeCount = count($arginfoType->classTypes); $code .= "\tzend_type_list *{$variableLikeType}_{$variableLikeName}_type_list = (zend_type_list *) malloc(ZEND_TYPE_LIST_SIZE($classTypeCount));\n"; $code .= "\t{$variableLikeType}_{$variableLikeName}_type_list->num_types = $classTypeCount;\n"; foreach ($arginfoType->classTypes as $k => $classType) { $escapedClassName = $classType->toEscapedName(); $code .= "\t{$variableLikeType}_{$variableLikeName}_type_list->types[$k] = (zend_type) ZEND_TYPE_INIT_CLASS({$variableLikeType}_{$variableLikeName}_class_{$escapedClassName}, 0, 0);\n"; } $typeMaskCode = $this->type->toArginfoType()->toTypeMask(); if ($this->type->isIntersection) { $code .= "\tzend_type {$variableLikeType}_{$variableLikeName}_type = ZEND_TYPE_INIT_INTERSECTION({$variableLikeType}_{$variableLikeName}_type_list, $typeMaskCode);\n"; } else { $code .= "\tzend_type {$variableLikeType}_{$variableLikeName}_type = ZEND_TYPE_INIT_UNION({$variableLikeType}_{$variableLikeName}_type_list, $typeMaskCode);\n"; } $typeCode = "{$variableLikeType}_{$variableLikeName}_type"; } else { $escapedClassName = $arginfoType->classTypes[0]->toEscapedName(); $varEscapedClassName = $arginfoType->classTypes[0]->toVarEscapedName(); $code .= "\tzend_string *{$variableLikeType}_{$variableLikeName}_class_{$varEscapedClassName} = zend_string_init(\"{$escapedClassName}\", sizeof(\"{$escapedClassName}\")-1, 1);\n"; $typeCode = "(zend_type) ZEND_TYPE_INIT_CLASS({$variableLikeType}_{$variableLikeName}_class_{$varEscapedClassName}, 0, " . $arginfoType->toTypeMask() . ")"; } } else { $typeCode = "(zend_type) ZEND_TYPE_INIT_MASK(" . $arginfoType->toTypeMask() . ")"; } } else { $typeCode = "(zend_type) ZEND_TYPE_INIT_NONE(0)"; } return $typeCode; } /** @param array $allConstInfos */ public function getFieldSynopsisElement(DOMDocument $doc, array $allConstInfos): DOMElement { $fieldsynopsisElement = $doc->createElement("fieldsynopsis"); $this->addModifiersToFieldSynopsis($doc, $fieldsynopsisElement); $type = $this->phpDocType ?? $this->type; if ($type) { $fieldsynopsisElement->appendChild(new DOMText("\n ")); $fieldsynopsisElement->appendChild($type->getTypeForDoc($doc)); } $varnameElement = $doc->createElement("varname", $this->getFieldSynopsisName()); if ($this->link) { $varnameElement->setAttribute("linkend", $this->link); } else { $varnameElement->setAttribute("linkend", $this->getFieldSynopsisDefaultLinkend()); } $fieldsynopsisElement->appendChild(new DOMText("\n ")); $fieldsynopsisElement->appendChild($varnameElement); $valueString = $this->getFieldSynopsisValueString($allConstInfos); if ($valueString) { $fieldsynopsisElement->appendChild(new DOMText("\n ")); $initializerElement = $doc->createElement("initializer", $valueString); $fieldsynopsisElement->appendChild($initializerElement); } $fieldsynopsisElement->appendChild(new DOMText("\n ")); return $fieldsynopsisElement; } protected function addModifiersToFieldSynopsis(DOMDocument $doc, DOMElement $fieldsynopsisElement): void { if ($this->flags & Modifiers::PUBLIC) { $fieldsynopsisElement->appendChild(new DOMText("\n ")); $fieldsynopsisElement->appendChild($doc->createElement("modifier", "public")); } elseif ($this->flags & Modifiers::PROTECTED) { $fieldsynopsisElement->appendChild(new DOMText("\n ")); $fieldsynopsisElement->appendChild($doc->createElement("modifier", "protected")); } elseif ($this->flags & Modifiers::PRIVATE) { $fieldsynopsisElement->appendChild(new DOMText("\n ")); $fieldsynopsisElement->appendChild($doc->createElement("modifier", "private")); } } } class ConstInfo extends VariableLike { public /* readonly */ AbstractConstName $name; public /* readonly */ Expr $value; private bool $isDeprecated; private /* readonly */ ?string $valueString; public /* readonly */ ?string $cond; public /* readonly */ ?string $cValue; public /* readonly */ bool $isUndocumentable; private /* readonly */ bool $isFileCacheAllowed; /** * @param AttributeInfo[] $attributes */ public function __construct( AbstractConstName $name, int $flags, Expr $value, ?string $valueString, ?StubType $type, ?StubType $phpDocType, bool $isDeprecated, ?string $cond, ?string $cValue, bool $isUndocumentable, ?string $link, ?int $phpVersionIdMinimumCompatibility, array $attributes, ?ExposedDocComment $exposedDocComment, bool $isFileCacheAllowed ) { foreach ($attributes as $attr) { if ($attr->class === "Deprecated") { $isDeprecated = true; break; } } $this->name = $name; $this->value = $value; $this->valueString = $valueString; $this->isDeprecated = $isDeprecated; $this->cond = $cond; $this->cValue = $cValue; $this->isUndocumentable = $isUndocumentable; $this->isFileCacheAllowed = $isFileCacheAllowed; parent::__construct($flags, $type, $phpDocType, $link, $phpVersionIdMinimumCompatibility, $attributes, $exposedDocComment); } /** @param array $allConstInfos */ public function getValue(array $allConstInfos): EvaluatedValue { return EvaluatedValue::createFromExpression( $this->value, ($this->phpDocType ?? $this->type)->tryToSimpleType(), $this->cValue, $allConstInfos ); } protected function getVariableTypeName(): string { return "constant"; } protected function getFieldSynopsisDefaultLinkend(): string { $className = str_replace(["\\", "_"], ["-", "-"], $this->name->class->toLowerString()); return "$className.constants." . strtolower(str_replace("_", "-", trim($this->name->getDeclarationName(), "_"))); } protected function getFieldSynopsisName(): string { return $this->name->__toString(); } /** @param array $allConstInfos */ protected function getFieldSynopsisValueString(array $allConstInfos): ?string { $value = EvaluatedValue::createFromExpression($this->value, null, $this->cValue, $allConstInfos); if ($value->isUnknownConstValue) { return null; } if ($value->originatingConsts) { return implode("\n", array_map(function (ConstInfo $const) use ($allConstInfos) { return $const->getFieldSynopsisValueString($allConstInfos); }, $value->originatingConsts)); } return $this->valueString; } private function getPredefinedConstantElement( DOMDocument $doc, int $indentationLevel, string $name ): DOMElement { $indentation = str_repeat(" ", $indentationLevel); $element = $doc->createElement($name); $constantElement = $doc->createElement("constant"); $constantElement->textContent = $this->name->__toString(); $typeElement = ($this->phpDocType ?? $this->type)->getTypeForDoc($doc); $element->appendChild(new DOMText("\n$indentation ")); $element->appendChild($constantElement); $element->appendChild(new DOMText("\n$indentation (")); $element->appendChild($typeElement); $element->appendChild(new DOMText(")\n$indentation")); return $element; } public function getPredefinedConstantTerm(DOMDocument $doc, int $indentationLevel): DOMElement { return $this->getPredefinedConstantElement($doc, $indentationLevel, "term"); } public function getPredefinedConstantEntry(DOMDocument $doc, int $indentationLevel): DOMElement { return $this->getPredefinedConstantElement($doc, $indentationLevel, "entry"); } public function discardInfoForOldPhpVersions(?int $phpVersionIdMinimumCompatibility): void { $this->type = null; $this->flags &= ~Modifiers::FINAL; $this->isDeprecated = false; $this->attributes = []; $this->phpVersionIdMinimumCompatibility = $phpVersionIdMinimumCompatibility; } /** @param array $allConstInfos */ public function getDeclaration(array $allConstInfos): string { $type = $this->phpDocType ?? $this->type; $simpleType = $type ? $type->tryToSimpleType() : null; if ($simpleType && ($simpleType->name === "mixed" || $simpleType->name === "any" || $simpleType->name === "box" || $simpleType->name === "stream")) { $simpleType = null; } $value = EvaluatedValue::createFromExpression($this->value, $simpleType, $this->cValue, $allConstInfos); if ($value->isUnknownConstValue && ($simpleType === null || !$simpleType->isBuiltin)) { throw new Exception("Constant " . $this->name->__toString() . " must have a built-in PHPDoc type as the type couldn't be inferred from its value"); } // i.e. const NAME = UNKNOWN;, without the annotation if ($value->isUnknownConstValue && $this->cValue === null && $value->expr instanceof Expr\ConstFetch && $value->expr->name->__toString() === "UNKNOWN") { throw new Exception("Constant " . $this->name->__toString() . " must have a @cvalue annotation"); } // Condition will be added by generateCodeWithConditions() if ($this->name instanceof ClassConstName) { $code = $this->getClassConstDeclaration($value); } else { $code = $this->getGlobalConstDeclaration($value); } $code .= $this->getValueAssertion($value); return $code; } private function getGlobalConstDeclaration(EvaluatedValue $value): string { $constName = str_replace('\\', '\\\\', $this->name->__toString()); $constValue = $value->value; $cExpr = $value->getCExpr(); $flags = "CONST_PERSISTENT"; if (!$this->isFileCacheAllowed) { $flags .= " | CONST_NO_FILE_CACHE"; } if ($this->phpVersionIdMinimumCompatibility !== null && $this->phpVersionIdMinimumCompatibility < 80000) { $flags .= " | CONST_CS"; } if ($this->isDeprecated) { $flags .= " | CONST_DEPRECATED"; } $code = "\t"; if ($this->attributes !== []) { if ($this->phpVersionIdMinimumCompatibility === null || $this->phpVersionIdMinimumCompatibility >= PHP_85_VERSION_ID) { // Registration only returns the constant since PHP 8.5, it's // not worth the bloat to add two different registration blocks // with conditions for the PHP version $constVarName = 'const_' . $constName; $code .= "zend_constant *$constVarName = "; } } if ($value->type->isNull()) { return $code . "REGISTER_NULL_CONSTANT(\"$constName\", $flags);\n"; } if ($value->type->isBool()) { return $code . "REGISTER_BOOL_CONSTANT(\"$constName\", " . ($cExpr ?: ($constValue ? "true" : "false")) . ", $flags);\n"; } if ($value->type->isInt()) { return $code . "REGISTER_LONG_CONSTANT(\"$constName\", " . ($cExpr ?: (int) $constValue) . ", $flags);\n"; } if ($value->type->isFloat()) { return $code . "REGISTER_DOUBLE_CONSTANT(\"$constName\", " . ($cExpr ?: (float) $constValue) . ", $flags);\n"; } if ($value->type->isString()) { return $code . "REGISTER_STRING_CONSTANT(\"$constName\", " . ($cExpr ?: '"' . addslashes($constValue) . '"') . ", $flags);\n"; } throw new Exception("Unimplemented constant type: " . $value->type->name); } private function getClassConstDeclaration(EvaluatedValue $value): string { $constName = $this->name->getDeclarationName(); $zvalCode = $value->initializeZval("const_{$constName}_value"); $code = "\n" . $zvalCode; $code .= "\tzend_string *const_{$constName}_name = zend_string_init_interned(\"$constName\", sizeof(\"$constName\") - 1, true);\n"; $nameCode = "const_{$constName}_name"; // A child class may override a constant inherited from its parent. The // runtime copies the parent's constants into the child, so re-declaring // the constant would fail with "Cannot redefine class constant". // Drop any inherited entry first so the child's value replaces it. $code .= "\tzend_hash_del(&class_entry->constants_table, $nameCode);\n"; if ($this->exposedDocComment) { $commentCode = "const_{$constName}_comment"; $escapedCommentInit = $this->exposedDocComment->getInitCode(); $code .= "\tzend_string *$commentCode = $escapedCommentInit\n"; } else { $commentCode = "NULL"; } if ($this->type) { $typeCode = $this->getTypeCode($constName, $code); if (!empty($this->attributes)) { $template = "\tzend_class_constant *const_" . $this->name->getDeclarationName() . " = "; } else { $template = "\t"; } $template .= "zend_declare_typed_class_constant(class_entry, $nameCode, &const_{$constName}_value, %s, $commentCode, $typeCode);\n"; $code .= $this->getFlagsByPhpVersion()->generateVersionDependentFlagCode( $template, $this->phpVersionIdMinimumCompatibility ); } if (!$this->type) { if (!empty($this->attributes)) { $template = "\tzend_class_constant *const_" . $this->name->getDeclarationName() . " = "; } else { $template = "\t"; } $template .= "zend_declare_class_constant_ex(class_entry, $nameCode, &const_{$constName}_value, %s, $commentCode);\n"; $code .= $this->getFlagsByPhpVersion()->generateVersionDependentFlagCode( $template, $this->phpVersionIdMinimumCompatibility ); } $code .= "\tzend_string_release_ex(const_{$constName}_name, true);\n"; return $code; } private function getValueAssertion(EvaluatedValue $value): string { if ($value->isUnknownConstValue || $value->originatingConsts || $this->cValue === null) { return ""; } $cExpr = $value->getCExpr(); $constValue = $value->value; if ($value->type->isNull()) { return "\tZEND_ASSERT($cExpr == NULL);\n"; } $cValue = null; if ($value->type->isBool()) { $cValue = $constValue ? "true" : "false"; return "\tZEND_ASSERT($cExpr == $cValue);\n"; } if ($value->type->isInt()) { $cValue = (int) $constValue; return "\tZEND_ASSERT($cExpr == $cValue);\n"; } if ($value->type->isFloat()) { $cValue = (float) $constValue; return "\tZEND_ASSERT($cExpr == $cValue);\n"; } if ($value->type->isString()) { $cValue = '"' . addslashes($constValue) . '"'; return "\tZEND_ASSERT(strcmp($cExpr, $cValue) == 0);\n"; } throw new Exception("Unimplemented constant type: " . $value->type->name); } protected function getFlagsByPhpVersion(): VersionFlags { $flags = parent::getFlagsByPhpVersion(); // $this->isDeprecated also accounts for any #[\Deprecated] attributes if ($this->isDeprecated) { $flags->addForVersionsAbove("ZEND_ACC_DEPRECATED", PHP_80_VERSION_ID); } if ($this->flags & Modifiers::FINAL) { $flags->addForVersionsAbove("ZEND_ACC_FINAL", PHP_81_VERSION_ID); } return $flags; } protected function addModifiersToFieldSynopsis(DOMDocument $doc, DOMElement $fieldsynopsisElement): void { parent::addModifiersToFieldSynopsis($doc, $fieldsynopsisElement); if ($this->flags & Modifiers::FINAL) { $fieldsynopsisElement->appendChild(new DOMText("\n ")); $fieldsynopsisElement->appendChild($doc->createElement("modifier", "final")); } $fieldsynopsisElement->appendChild(new DOMText("\n ")); $fieldsynopsisElement->appendChild($doc->createElement("modifier", "const")); } } class StringBuilder { // Map possible variable names to the known string constant, see // ZEND_KNOWN_STRINGS private const PHP_80_KNOWN = [ "file" => "ZEND_STR_FILE", "line" => "ZEND_STR_LINE", "function" => "ZEND_STR_FUNCTION", "class" => "ZEND_STR_CLASS", "object" => "ZEND_STR_OBJECT", "type" => "ZEND_STR_TYPE", // ZEND_STR_OBJECT_OPERATOR and ZEND_STR_PAAMAYIM_NEKUDOTAYIM are // not valid variable names "args" => "ZEND_STR_ARGS", "unknown" => "ZEND_STR_UNKNOWN", "eval" => "ZEND_STR_EVAL", "include" => "ZEND_STR_INCLUDE", "require" => "ZEND_STR_REQUIRE", "include_once" => "ZEND_STR_INCLUDE_ONCE", "require_once" => "ZEND_STR_REQUIRE_ONCE", "scalar" => "ZEND_STR_SCALAR", "error_reporting" => "ZEND_STR_ERROR_REPORTING", "static" => "ZEND_STR_STATIC", // ZEND_STR_THIS cannot be used since $this cannot be reassigned "value" => "ZEND_STR_VALUE", "key" => "ZEND_STR_KEY", "__invoke" => "ZEND_STR_MAGIC_INVOKE", "previous" => "ZEND_STR_PREVIOUS", "code" => "ZEND_STR_CODE", "message" => "ZEND_STR_MESSAGE", "severity" => "ZEND_STR_SEVERITY", "string" => "ZEND_STR_STRING", "trace" => "ZEND_STR_TRACE", "scheme" => "ZEND_STR_SCHEME", "host" => "ZEND_STR_HOST", "port" => "ZEND_STR_PORT", "user" => "ZEND_STR_USER", "pass" => "ZEND_STR_PASS", "path" => "ZEND_STR_PATH", "query" => "ZEND_STR_QUERY", "fragment" => "ZEND_STR_FRAGMENT", "NULL" => "ZEND_STR_NULL", "boolean" => "ZEND_STR_BOOLEAN", "integer" => "ZEND_STR_INTEGER", "double" => "ZEND_STR_DOUBLE", "array" => "ZEND_STR_ARRAY", "resource" => "ZEND_STR_RESOURCE", // ZEND_STR_CLOSED_RESOURCE has a space in it "name" => "ZEND_STR_NAME", // ZEND_STR_ARGV and ZEND_STR_ARGC are superglobals that wouldn't be // variable names "Array" => "ZEND_STR_ARRAY_CAPITALIZED", "bool" => "ZEND_STR_BOOL", "int" => "ZEND_STR_INT", "float" => "ZEND_STR_FLOAT", "callable" => "ZEND_STR_CALLABLE", "iterable" => "ZEND_STR_ITERABLE", "void" => "ZEND_STR_VOID", "false" => "ZEND_STR_FALSE", "null" => "ZEND_STR_NULL_LOWERCASE", "mixed" => "ZEND_STR_MIXED", ]; // NEW in 8.1 private const PHP_81_KNOWN = [ "Unknown" => "ZEND_STR_UNKNOWN_CAPITALIZED", "never" => "ZEND_STR_NEVER", "__sleep" => "ZEND_STR_SLEEP", "__wakeup" => "ZEND_STR_WAKEUP", "cases" => "ZEND_STR_CASES", "from" => "ZEND_STR_FROM", "tryFrom" => "ZEND_STR_TRYFROM", "tryfrom" => "ZEND_STR_TRYFROM_LOWERCASE", // Omit ZEND_STR_AUTOGLOBAL_(SERVER|ENV|REQUEST) ]; // NEW in 8.2 private const PHP_82_KNOWN = [ "true" => "ZEND_STR_TRUE", "Traversable" => "ZEND_STR_TRAVERSABLE", "count" => "ZEND_STR_COUNT", "SensitiveParameter" => "ZEND_STR_SENSITIVEPARAMETER", ]; // Only new string in 8.3 is ZEND_STR_CONST_EXPR_PLACEHOLDER which is // not a valid variable name ("[constant expression]") // NEW in 8.4 private const PHP_84_KNOWN = [ "exit" => "ZEND_STR_EXIT", "Deprecated" => "ZEND_STR_DEPRECATED_CAPITALIZED", "since" => "ZEND_STR_SINCE", "get" => "ZEND_STR_GET", "set" => "ZEND_STR_SET", ]; // NEW in 8.5 private const PHP_85_KNOWN = [ "self" => "ZEND_STR_SELF", "parent" => "ZEND_STR_PARENT", "username" => "ZEND_STR_USERNAME", "password" => "ZEND_STR_PASSWORD", "clone" => "ZEND_STR_CLONE", '8.0' => 'ZEND_STR_8_DOT_0', '8.1' => 'ZEND_STR_8_DOT_1', '8.2' => 'ZEND_STR_8_DOT_2', '8.3' => 'ZEND_STR_8_DOT_3', '8.4' => 'ZEND_STR_8_DOT_4', '8.5' => 'ZEND_STR_8_DOT_5', ]; /** * Get an array of three strings: * - declaration of zend_string, if needed, or empty otherwise * - usage of that zend_string, or usage with ZSTR_KNOWN() * - freeing the zend_string, if needed * * @param string $varName * @param string $strContent * @param ?int $minPHPCompatibility * @param bool $interned * @return string[] */ public static function getString( string $varName, string $content, ?int $minPHPCompatibility, bool $interned = false ): array { // Generally strings will not be known $initFn = $interned ? 'zend_string_init_interned' : 'zend_string_init'; $result = [ "\tzend_string *$varName = $initFn(\"$content\", sizeof(\"$content\") - 1, true);\n", $varName, "\tzend_string_release_ex($varName, true);\n" ]; // For attribute values that are not freed if ($varName === '') { $result[0] = "$initFn(\"$content\", sizeof(\"$content\") - 1, true);\n"; } // If not set, use the current latest version $allVersions = ALL_PHP_VERSION_IDS; $minPhp = $minPHPCompatibility ?? end($allVersions); if ($minPhp < PHP_80_VERSION_ID) { // No known strings in 7.0 return $result; } $include = self::PHP_80_KNOWN; $versions = [ PHP_85_VERSION_ID => self::PHP_85_KNOWN, PHP_84_VERSION_ID => self::PHP_84_KNOWN, PHP_82_VERSION_ID => self::PHP_82_KNOWN, // 8.3 合并到 8.2 PHP_81_VERSION_ID => self::PHP_81_KNOWN, ]; krsort($versions); foreach ($versions as $versionId => $knownItems) { if ($minPhp >= $versionId) { $include = array_merge($include, $knownItems); } } if (array_key_exists($content, $include)) { $knownStr = $include[$content]; return [ '', "ZSTR_KNOWN($knownStr)", '', ]; } return $result; } } class PropertyInfo extends VariableLike { private /* readonly */ int $classFlags; public /* readonly */ PropertyName $name; private /* readonly */ ?Expr $defaultValue; private /* readonly */ ?string $defaultValueString; private /* readonly */ bool $isDocReadonly; private /* readonly */ bool $isVirtual; /** @var array{get?: string|true, set?: string|true} */ private /* readonly */ array $hooks; private /* readonly */ bool $abstractHooks; private /* readonly */ bool $isPromoted; /** * @param AttributeInfo[] $attributes */ public function __construct( PropertyName $name, int $classFlags, int $flags, ?StubType $type, ?StubType $phpDocType, ?Expr $defaultValue, ?string $defaultValueString, bool $isDocReadonly, bool $isVirtual, array $hooks, bool $isPromoted, ?string $link, ?int $phpVersionIdMinimumCompatibility, array $attributes, ?ExposedDocComment $exposedDocComment ) { $this->name = $name; $this->classFlags = $classFlags; $this->defaultValue = $defaultValue; $this->defaultValueString = $defaultValueString; $this->isDocReadonly = $isDocReadonly; $this->isVirtual = $isVirtual; $this->hooks = $hooks; $this->abstractHooks = isset($hooks['get']) && $hooks['get'] === true || isset($hooks['set']) && $hooks['set'] === true; $this->isPromoted = $isPromoted; parent::__construct($flags, $type, $phpDocType, $link, $phpVersionIdMinimumCompatibility, $attributes, $exposedDocComment); } protected function getVariableTypeName(): string { return "property"; } public function getDnfTypeFactorySymbol(): string { return 'property_' . implode('_', $this->name->class->getParts()) . '_' . $this->name->getDeclarationName() . '_dnf'; } public function getDnfTypeFactoryCode(): string { if (!$this->type?->isDnf()) { return ''; } return $this->type->getDnfTypeDeclarations($this->getDnfTypeFactorySymbol()); } protected function getFieldSynopsisDefaultLinkend(): string { $className = str_replace(["\\", "_"], ["-", "-"], $this->name->class->toLowerString()); return "$className.props." . strtolower(str_replace("_", "-", trim($this->name->getDeclarationName(), "_"))); } protected function getFieldSynopsisName(): string { return $this->name->getDeclarationName(); } /** @param array $allConstInfos */ protected function getFieldSynopsisValueString(array $allConstInfos): ?string { return $this->defaultValueString; } public function discardInfoForOldPhpVersions(?int $phpVersionIdMinimumCompatibility): void { $this->type = null; $this->flags &= ~Modifiers::READONLY; $this->attributes = []; $this->phpVersionIdMinimumCompatibility = $phpVersionIdMinimumCompatibility; } /** @param array $allConstInfos */ public function getDeclaration(array $allConstInfos): string { $code = "\n"; $propertyName = $this->name->getDeclarationName(); $simpleType = $this->type !== null ? $this->type->tryToSimpleType() : null; $hasNullDefault = $this->defaultValue instanceof Expr\ConstFetch && $this->defaultValue->name->toLowerString() === 'null'; $useEmptyArrayDefault = $this->defaultValue !== null && !$this->defaultValue instanceof Expr\New_ && !$hasNullDefault && ( $this->defaultValue instanceof Expr\Array_ || ($simpleType !== null && $simpleType->isArray()) ); if (!$useEmptyArrayDefault) { // New 操作作为属性的默认值,需编译器处理 gen_stub 作为 null 值 if ($this->defaultValue === null || $this->defaultValue instanceof Expr\New_) { $defaultValue = EvaluatedValue::null(); } else { $defaultValue = EvaluatedValue::createFromExpression($this->defaultValue, null, null, $allConstInfos); if ($simpleType !== null && $simpleType->isFloat() && $defaultValue->type->isInt()) { // PHP permits an integer default for a float property and // stores it as a double in the class default table. $defaultValue->type = $simpleType; } if ($defaultValue->isUnknownConstValue || ($defaultValue->originatingConsts && $defaultValue->getCExpr() === null)) { echo "Skipping code generation for property $this->name, because it has an unknown constant default value\n"; return ""; } } } $zvalName = "property_{$propertyName}_default_value"; if ($this->isVirtual) { // Zend only assigns ZEND_VIRTUAL_PROPERTY_OFFSET when a virtual // property's declaration value is IS_UNDEF. $code .= "\tzval $zvalName;\n"; $code .= "\tZVAL_UNDEF(&$zvalName);\n"; } elseif ($useEmptyArrayDefault) { $code .= "\tzval $zvalName;\n"; $code .= "\tZVAL_EMPTY_ARRAY(&$zvalName);\n"; } elseif ($this->defaultValue === null && $this->type !== null) { $code .= "\tzval $zvalName;\n"; if ($this->flags & Modifiers::READONLY || $this->classFlags & Modifiers::READONLY) { $code .= "\tZVAL_UNDEF(&$zvalName);\n"; } else { $code .= $this->getTypeDefaultValueCode($zvalName); } } else { $code .= $defaultValue->initializeZval($zvalName, varName: $this->name->__toString()); } [$stringInit, $nameCode, $stringRelease] = StringBuilder::getString( "property_{$propertyName}_name", $propertyName, $this->phpVersionIdMinimumCompatibility ); $code .= $stringInit; $code .= "\ttypephp_prepare_property_redeclaration(class_entry, {$nameCode});\n"; if ($this->exposedDocComment) { $commentCode = "property_{$propertyName}_comment"; $escapedCommentInit = $this->exposedDocComment->getInitCode(); $code .= "\tzend_string *$commentCode = $escapedCommentInit\n"; } else { $commentCode = "NULL"; } if (!empty($this->attributes) || $this->hooks !== []) { $template = "\tzend_property_info *property_" . $this->name->getDeclarationName() . " = "; } else { $template = "\t"; } if ($this->phpVersionIdMinimumCompatibility === null || $this->phpVersionIdMinimumCompatibility >= PHP_80_VERSION_ID) { $typeCode = $this->getTypeCode($propertyName, $code); $template .= "zend_declare_typed_property(class_entry, $nameCode, &$zvalName, %s, $commentCode, $typeCode);\n"; } else { $template .= "zend_declare_property_ex(class_entry, $nameCode, &$zvalName, %s, $commentCode);\n"; } $code .= $this->getFlagsByPhpVersion()->generateVersionDependentFlagCode( $template, $this->phpVersionIdMinimumCompatibility ); $code .= $stringRelease; if ($this->hooks !== []) { if ($this->abstractHooks) { $getter = isset($this->hooks['get']) ? 'true' : 'false'; $setter = isset($this->hooks['set']) ? 'true' : 'false'; $code .= "\ttypephp_register_abstract_property_hooks(class_entry, property_{$propertyName}, {$getter}, {$setter});\n"; } else { $getter = isset($this->hooks['get']) ? 'std::string_view{"' . addslashes($this->hooks['get']) . '"}' : 'std::string_view{}'; $setter = isset($this->hooks['set']) ? 'std::string_view{"' . addslashes($this->hooks['set']) . '"}' : 'std::string_view{}'; $code .= "\ttypephp_register_property_hooks(class_entry, property_{$propertyName}, {$getter}, {$setter});\n"; } } return $code; } protected function getFlagsByPhpVersion(): VersionFlags { $flags = parent::getFlagsByPhpVersion(); if ($this->flags & Modifiers::STATIC) { $flags->addForVersionsAbove("ZEND_ACC_STATIC", PHP_70_VERSION_ID); } // PHP 8.4 makes private(set) properties implicitly final. Preserve // that fact in Zend metadata as well as in TypePHP's override checks. if ($this->flags & (Modifiers::FINAL | Modifiers::PRIVATE_SET)) { $flags->addForVersionsAbove("ZEND_ACC_FINAL", PHP_84_VERSION_ID); } if ($this->flags & Modifiers::ABSTRACT) { $flags->addForVersionsAbove("ZEND_ACC_ABSTRACT", PHP_84_VERSION_ID); } if ($this->flags & Modifiers::READONLY) { $flags->addForVersionsAbove("ZEND_ACC_READONLY", PHP_81_VERSION_ID); } elseif ($this->classFlags & Modifiers::READONLY) { $flags->addForVersionsAbove("ZEND_ACC_READONLY", PHP_82_VERSION_ID); } if ($this->flags & Modifiers::PRIVATE_SET) { $flags->addForVersionsAbove("ZEND_ACC_PRIVATE_SET", PHP_84_VERSION_ID); } elseif ($this->flags & Modifiers::PROTECTED_SET) { $flags->addForVersionsAbove("ZEND_ACC_PROTECTED_SET", PHP_84_VERSION_ID); } if ($this->isVirtual) { $flags->addForVersionsAbove("ZEND_ACC_VIRTUAL", PHP_84_VERSION_ID); } if ($this->isPromoted) { $flags->addForVersionsAbove("ZEND_ACC_PROMOTED", PHP_80_VERSION_ID); } return $flags; } protected function addModifiersToFieldSynopsis(DOMDocument $doc, DOMElement $fieldsynopsisElement): void { parent::addModifiersToFieldSynopsis($doc, $fieldsynopsisElement); if ($this->flags & Modifiers::STATIC) { $fieldsynopsisElement->appendChild(new DOMText("\n ")); $fieldsynopsisElement->appendChild($doc->createElement("modifier", "static")); } if ($this->flags & Modifiers::FINAL) { $fieldsynopsisElement->appendChild(new DOMText("\n ")); $fieldsynopsisElement->appendChild($doc->createElement("modifier", "final")); } if ($this->flags & Modifiers::READONLY || $this->isDocReadonly) { $fieldsynopsisElement->appendChild(new DOMText("\n ")); $fieldsynopsisElement->appendChild($doc->createElement("modifier", "readonly")); } } private function getTypeDefaultValueCode(string $zvalName): string { if ($this->type->isNullable()) { return "\tZVAL_NULL(&$zvalName);\n"; } $simpleType = $this->type->tryToSimpleType(); if ($simpleType !== null) { if ($simpleType->isInt()) { return "\tZVAL_LONG(&$zvalName, 0);\n"; } if ($simpleType->isFloat()) { return "\tZVAL_DOUBLE(&$zvalName, 0.0);\n"; } if ($simpleType->isBool()) { return "\tZVAL_FALSE(&$zvalName);\n"; } if ($simpleType->isString()) { return "\tZVAL_EMPTY_STRING(&$zvalName);\n"; } if ($simpleType->isArray()) { return "\tZVAL_EMPTY_ARRAY(&$zvalName);\n"; } } return "\tZVAL_NULL(&$zvalName);\n"; } } class EnumCaseInfo { private /* readonly */ string $name; private /* readonly */ ?Expr $value; public function __construct(string $name, ?Expr $value) { $this->name = $name; $this->value = $value; } /** @param array $allConstInfos */ public function getDeclaration(array $allConstInfos): string { $escapedName = addslashes($this->name); if ($this->value === null) { $code = "\n\tzend_enum_add_case_cstr(class_entry, \"$escapedName\", NULL);\n"; } else { $value = EvaluatedValue::createFromExpression($this->value, null, null, $allConstInfos); $zvalName = "enum_case_{$escapedName}_value"; $code = "\n" . $value->initializeZval($zvalName); $code .= "\tzend_enum_add_case_cstr(class_entry, \"$escapedName\", &$zvalName);\n"; } return $code; } } // Instances of AttributeInfo are immutable and do not need to be cloned // when held by an object that is cloned class AttributeInfo { public /* readonly */ string $class; /** @var \PhpParser\Node\Arg[] */ private /* readonly */ array $args; /** @param \PhpParser\Node\Arg[] $args */ public function __construct(string $class, array $args) { $this->class = $class; $this->args = $args; } /** * @param array $allConstInfos * @param array &$declaredStrings Map of string content to * the name of a zend_string already created with that content */ public function generateCode(string $invocation, string $nameSuffix, array $allConstInfos, ?int $phpVersionIdMinimumCompatibility, array &$declaredStrings = []): string { $escapedAttributeName = strtr($this->class, '\\', '_'); $evaluatedValues = []; $lazyValueFactories = []; foreach ($this->args as $i => $arg) { $factory = $arg->value->getAttribute( TypePhp\Transform\RuntimeAttributeFactoryLowering::FACTORY_NAME_ATTRIBUTE, ); $requiresLazyValue = $arg->value->getAttribute( TypePhp\Transform\RuntimeAttributeFactoryLowering::FACTORY_LAZY_VALUE_ATTRIBUTE, false, ); if ($requiresLazyValue) { if (!is_string($factory) || $factory === '') { throw new Exception("Missing runtime factory for attribute argument"); } $lazyValueFactories[$i] = getTranslator()->getRuntimeAttributeFactoryNativeName($factory); $evaluatedValues[$i] = null; continue; } $evaluatedValues[$i] = EvaluatedValue::createFromExpression($arg->value, null, null, $allConstInfos); if (is_array($evaluatedValues[$i]->value) && $evaluatedValues[$i]->value !== []) { if (!is_string($factory) || $factory === '') { throw new Exception("Missing runtime factory for non-empty array attribute argument"); } $lazyValueFactories[$i] = getTranslator()->getRuntimeAttributeFactoryNativeName($factory); } } [$stringInit, $nameCode, $stringRelease] = StringBuilder::getString( "attribute_name_{$escapedAttributeName}_$nameSuffix", addcslashes($this->class, "\\"), $phpVersionIdMinimumCompatibility, true ); $code = "\n"; $code .= $stringInit; $code .= "\t" . ($this->args ? "zend_attribute *attribute_{$escapedAttributeName}_$nameSuffix = " : "") . "$invocation, $nameCode, " . count($this->args) . ");\n"; $code .= $stringRelease; foreach ($this->args as $i => $arg) { $initValue = ''; if (isset($lazyValueFactories[$i])) { $initValue = "\ttypephp_attribute_set_lazy_value_argument(" . "attribute_{$escapedAttributeName}_{$nameSuffix}, $i, {$lazyValueFactories[$i]});\n"; } elseif ($arg->value instanceof String_) { $strVal = $arg->value->value; [$strInit, $strUse, $strRelease] = StringBuilder::getString( 'unused', $strVal, $phpVersionIdMinimumCompatibility ); if ($strInit === '') { $initValue = "\tZVAL_STR(&attribute_{$escapedAttributeName}_{$nameSuffix}->args[$i].value, $strUse);\n"; } elseif (isset($declaredStrings[$strVal])) { $strUse = $declaredStrings[$strVal]; $initValue = "\tZVAL_STR_COPY(&attribute_{$escapedAttributeName}_{$nameSuffix}->args[$i].value, $strUse);\n"; } } if ($initValue === '') { $value = $evaluatedValues[$i]; $code .= $value->initializeZval( "attribute_{$escapedAttributeName}_{$nameSuffix}->args[$i].value", true, "attribute_{$escapedAttributeName}_{$nameSuffix}_arg{$i}_str" ); if ($arg->value instanceof String_) { $declaredStrings[$arg->value->value] = "attribute_{$escapedAttributeName}_{$nameSuffix}_arg{$i}_str"; } } else { $code .= $initValue; } if ($arg->name) { [$stringInit, $nameCode, $stringRelease] = StringBuilder::getString( "", $arg->name->name, $phpVersionIdMinimumCompatibility, true ); if ($stringInit === '') { $nameCode .= ";\n"; } else { $nameCode = $stringInit; } $code .= "\tattribute_{$escapedAttributeName}_{$nameSuffix}->args[$i].name = $nameCode"; } } return $code; } /** * @param AttributeGroup[] $attributeGroups * @return AttributeInfo[] */ public static function createFromGroups(array $attributeGroups): array { $attributes = []; foreach ($attributeGroups as $attrGroup) { foreach ($attrGroup->attrs as $attr) { $parts = $attr->name->getParts(); $compileTimeAttribute = count($parts) === 1 && TypePhp\Transform\CompileTimeAttributeRegistry::get($parts[0]) !== null; if ($compileTimeAttribute) { continue; } $attributes[] = new AttributeInfo($attr->name->toString(), $attr->args); } } return $attributes; } } class ClassInfo { static public string $currentClass = ''; public /* readonly */ Name $name; private int $flags; public string $type; public /* readonly */ ?string $alias; private /* readonly */ ?SimpleType $enumBackingType; private /* readonly */ bool $isDeprecated; private bool $isStrictProperties; /** @var AttributeInfo[] */ private array $attributes; private ?ExposedDocComment $exposedDocComment; private bool $isNotSerializable; /** @var Name[] */ private /* readonly */ array $extends; /** @var Name[] */ private /* readonly */ array $implements; /** @var ConstInfo[] */ public /* readonly */ array $constInfos; /** @var PropertyInfo[] */ private /* readonly */ array $propertyInfos; /** @var FuncInfo[] */ public array $funcInfos; /** @var EnumCaseInfo[] */ private /* readonly */ array $enumCaseInfos; public /* readonly */ ?string $cond; public ?int $phpVersionIdMinimumCompatibility; public /* readonly */ bool $isUndocumentable; /** * @param AttributeInfo[] $attributes * @param Name[] $extends * @param Name[] $implements * @param ConstInfo[] $constInfos * @param PropertyInfo[] $propertyInfos * @param FuncInfo[] $funcInfos * @param EnumCaseInfo[] $enumCaseInfos */ public function __construct( Name $name, int $flags, string $type, ?string $alias, ?SimpleType $enumBackingType, bool $isDeprecated, bool $isStrictProperties, array $attributes, ?ExposedDocComment $exposedDocComment, bool $isNotSerializable, array $extends, array $implements, array $constInfos, array $propertyInfos, array $funcInfos, array $enumCaseInfos, ?string $cond, ?int $minimumPhpVersionIdCompatibility, bool $isUndocumentable ) { $this->name = $name; $this->flags = $flags; $this->type = $type; $this->alias = $alias; $this->enumBackingType = $enumBackingType; $this->isDeprecated = $isDeprecated; $this->isStrictProperties = $isStrictProperties; $this->attributes = $attributes; $this->exposedDocComment = $exposedDocComment; $this->isNotSerializable = $isNotSerializable; $this->extends = $extends; $this->implements = $implements; $this->constInfos = $constInfos; $this->propertyInfos = $propertyInfos; $this->funcInfos = $funcInfos; $this->enumCaseInfos = $enumCaseInfos; $this->cond = $cond; $this->phpVersionIdMinimumCompatibility = $minimumPhpVersionIdCompatibility; $this->isUndocumentable = $isUndocumentable; } public function getDnfPropertyTypeFactoryCode(): string { $code = ''; foreach ($this->propertyInfos as $propertyInfo) { $code .= $propertyInfo->getDnfTypeFactoryCode(); } return $code; } /** @param array $allConstInfos */ public function getRegistration(array $allConstInfos): string { $params = []; foreach ($this->extends as $extends) { $params[] = "zend_class_entry *class_entry_" . implode("_", $extends->getParts()); } foreach ($this->implements as $implements) { $params[] = "zend_class_entry *class_entry_" . implode("_", $implements->getParts()); } $escapedName = implode("_", $this->name->getParts()); $code = ''; if ($this->cond) { $code .= "#if {$this->cond}\n"; } $code .= "static zend_class_entry *" . Translator::PREFIX . "register_class_$escapedName(" . (empty($params) ? "void" : implode(", ", $params)) . ")\n"; $code .= "{\n"; foreach ($this->funcInfos as $funcInfo) { if ($funcInfo->hasDnfArgInfo()) { $code .= "\t" . $funcInfo->getDnfArgInfoInitializerName() . "();\n"; } } $flags = $this->getFlagsByPhpVersion(); $classMethods = ($this->funcInfos === []) ? 'NULL' : "class_{$escapedName}_methods"; if ($this->type === "enum") { $name = addslashes((string) $this->name); $backingType = $this->enumBackingType ? $this->enumBackingType->toTypeCode() : "IS_UNDEF"; $code .= "\tzend_class_entry *class_entry = zend_register_internal_enum(\"$name\", $backingType, $classMethods);\n"; if (!$flags->isEmpty()) { $code .= $this->getFlagsByPhpVersion()->generateVersionDependentFlagCode("\tclass_entry->ce_flags = %s;\n", $this->phpVersionIdMinimumCompatibility); } } else { $code .= "\tzend_class_entry ce, *class_entry;\n\n"; if (count($this->name->getParts()) > 1) { $className = $this->name->getLast(); $namespace = addslashes((string) $this->name->slice(0, -1)); $code .= "\tINIT_NS_CLASS_ENTRY(ce, \"$namespace\", \"$className\", $classMethods);\n"; } else { $code .= "\tINIT_CLASS_ENTRY(ce, \"$this->name\", $classMethods);\n"; } if ($this->type === "class" || $this->type === "trait") { $template = "\tclass_entry = zend_register_internal_class_with_flags(&ce, " . (isset($this->extends[0]) ? "class_entry_" . str_replace("\\", "_", $this->extends[0]->toString()) : "NULL") . ", %s);\n"; $entries = $flags->generateVersionDependentFlagCode($template, $this->phpVersionIdMinimumCompatibility ? max($this->phpVersionIdMinimumCompatibility, PHP_84_VERSION_ID) : null); if ($entries !== '') { $code .= $entries; } else { $code .= sprintf($template, "0"); } } else { $code .= "\tclass_entry = zend_register_internal_interface(&ce);\n"; if (!$flags->isEmpty()) { $code .= $flags->generateVersionDependentFlagCode("\tclass_entry->ce_flags |= %s;\n", $this->phpVersionIdMinimumCompatibility); } } } if ($this->exposedDocComment) { $code .= "\tclass_entry->doc_comment = " . $this->exposedDocComment->getInitCode() . "\n"; } $code .= generateCodeWithConditions( $this->constInfos, '', static fn (ConstInfo $const): string => $const->getDeclaration($allConstInfos) ); foreach ($this->enumCaseInfos as $enumCase) { $code .= $enumCase->getDeclaration($allConstInfos); } foreach ($this->propertyInfos as $property) { $code .= $property->getDeclaration($allConstInfos); } if ($this->type === 'class' && isset($this->extends[0])) { // Internal classes are linked to their parent before their own // properties are declared. Restore PHP's per-hook inheritance // after those declarations have replaced inherited metadata. $code .= "\ttypephp_finalize_property_hook_inheritance(class_entry);\n"; } // Zend merges interface property contracts immediately. Declare the // class/interface's own properties first so an implementation can // replace a virtual abstract contract with its real property slot. $implements = array_map( function (Name $item) { return "class_entry_" . implode("_", $item->getParts()); }, $this->type === "interface" ? $this->extends : $this->implements ); if (!empty($implements)) { $code .= "\tzend_class_implements(class_entry, " . count($implements) . ", " . implode(", ", $implements) . ");\n"; } if ($this->alias) { $code .= "\tzend_register_class_alias(\"" . str_replace("\\", "\\\\", $this->alias) . "\", class_entry);\n"; } $declaredStrings = []; if (!empty($this->attributes)) { foreach ($this->attributes as $key => $attribute) { $code .= $attribute->generateCode( "zend_add_class_attribute(class_entry", "class_{$escapedName}_$key", $allConstInfos, $this->phpVersionIdMinimumCompatibility, refval($declaredStrings) ); } } if ($attributeInitializationCode = generateConstantAttributeInitialization($this->constInfos, $allConstInfos, $this->phpVersionIdMinimumCompatibility, $this->cond, $declaredStrings)) { $code .= "\n" . $attributeInitializationCode; } if ($attributeInitializationCode = generatePropertyAttributeInitialization($this->propertyInfos, $allConstInfos, $this->phpVersionIdMinimumCompatibility, $declaredStrings)) { $code .= "\n" . $attributeInitializationCode; } if ($attributeInitializationCode = generateFunctionAttributeInitialization($this->funcInfos, $allConstInfos, $this->phpVersionIdMinimumCompatibility, $this->cond, $declaredStrings)) { $code .= "\n" . $attributeInitializationCode; } $code .= "\n\treturn class_entry;\n"; $code .= "}\n"; if ($this->cond) { $code .= "#endif\n"; } return $code; } private function getFlagsByPhpVersion(): VersionFlags { $php70Flags = []; if ($this->type === "trait") { $php70Flags[] = "ZEND_ACC_TRAIT"; } if ($this->flags & Modifiers::FINAL) { $php70Flags[] = "ZEND_ACC_FINAL"; } if ($this->flags & Modifiers::ABSTRACT) { $php70Flags[] = "ZEND_ACC_ABSTRACT"; } if ($this->isDeprecated) { $php70Flags[] = "ZEND_ACC_DEPRECATED"; } $flags = new VersionFlags($php70Flags); if ($this->isStrictProperties) { $flags->addForVersionsAbove("ZEND_ACC_NO_DYNAMIC_PROPERTIES", PHP_80_VERSION_ID); } if ($this->isNotSerializable) { $flags->addForVersionsAbove("ZEND_ACC_NOT_SERIALIZABLE", PHP_81_VERSION_ID); } if ($this->flags & Modifiers::READONLY) { $flags->addForVersionsAbove("ZEND_ACC_READONLY_CLASS", PHP_82_VERSION_ID); } foreach ($this->attributes as $attr) { if ($attr->class === "AllowDynamicProperties") { $flags->addForVersionsAbove("ZEND_ACC_ALLOW_DYNAMIC_PROPERTIES", PHP_82_VERSION_ID); break; } } return $flags; } public function discardInfoForOldPhpVersions(?int $phpVersionIdMinimumCompatibility): void { $this->attributes = []; $this->flags &= ~Modifiers::READONLY; $this->exposedDocComment = null; $this->isStrictProperties = false; $this->isNotSerializable = false; foreach ($this->propertyInfos as $propertyInfo) { $propertyInfo->discardInfoForOldPhpVersions($phpVersionIdMinimumCompatibility); } $this->phpVersionIdMinimumCompatibility = $phpVersionIdMinimumCompatibility; } /** * @param array $classMap * @param array $allConstInfos */ public function getClassSynopsisDocument(array $classMap, array $allConstInfos): ?string { $doc = new DOMDocument(); $doc->formatOutput = true; $classSynopsis = $this->getClassSynopsisElement($doc, $classMap, $allConstInfos); if (!$classSynopsis) { return null; } $doc->appendChild($classSynopsis); return $doc->saveXML(); } /** * @param array $classMap * @param array $allConstInfos */ public function getClassSynopsisElement(DOMDocument $doc, array $classMap, array $allConstInfos): ?DOMElement { $classSynopsis = $doc->createElement("classsynopsis"); $classSynopsis->setAttribute("class", $this->type === "interface" ? "interface" : "class"); $exceptionOverride = $this->type === "class" && $this->isException($classMap) ? "exception" : null; $ooElement = self::createOoElement($doc, $this, $exceptionOverride, true, null, 4); if (!$ooElement) { return null; } $classSynopsis->appendChild(new DOMText("\n ")); $classSynopsis->appendChild($ooElement); foreach ($this->extends as $k => $parent) { $parentInfo = $classMap[$parent->toString()] ?? null; if ($parentInfo === null) { throw new Exception("Missing parent class " . $parent->toString()); } $ooElement = self::createOoElement( $doc, $parentInfo, null, false, $k === 0 ? "extends" : null, 4 ); if (!$ooElement) { return null; } $classSynopsis->appendChild(new DOMText("\n\n ")); $classSynopsis->appendChild($ooElement); } foreach ($this->implements as $k => $interface) { $interfaceInfo = $classMap[$interface->toString()] ?? null; if (!$interfaceInfo) { throw new Exception("Missing implemented interface " . $interface->toString()); } $ooElement = self::createOoElement($doc, $interfaceInfo, null, false, $k === 0 ? "implements" : null, 4); if (!$ooElement) { return null; } $classSynopsis->appendChild(new DOMText("\n\n ")); $classSynopsis->appendChild($ooElement); } /** @var array $parentsWithInheritedConstants */ $parentsWithInheritedConstants = []; /** @var array $parentsWithInheritedProperties */ $parentsWithInheritedProperties = []; /** @var array $parentsWithInheritedMethods */ $parentsWithInheritedMethods = []; $this->collectInheritedMembers( $parentsWithInheritedConstants, $parentsWithInheritedProperties, $parentsWithInheritedMethods, $this->hasConstructor(), $classMap ); $this->appendInheritedMemberSectionToClassSynopsis( $doc, $classSynopsis, $parentsWithInheritedConstants, "&Constants;", "&InheritedConstants;" ); if (!empty($this->constInfos)) { $classSynopsis->appendChild(new DOMText("\n\n ")); $classSynopsisInfo = $doc->createElement("classsynopsisinfo", "&Constants;"); $classSynopsisInfo->setAttribute("role", "comment"); $classSynopsis->appendChild($classSynopsisInfo); foreach ($this->constInfos as $constInfo) { $classSynopsis->appendChild(new DOMText("\n ")); $fieldSynopsisElement = $constInfo->getFieldSynopsisElement($doc, $allConstInfos); $classSynopsis->appendChild($fieldSynopsisElement); } } if (!empty($this->propertyInfos)) { $classSynopsis->appendChild(new DOMText("\n\n ")); $classSynopsisInfo = $doc->createElement("classsynopsisinfo", "&Properties;"); $classSynopsisInfo->setAttribute("role", "comment"); $classSynopsis->appendChild($classSynopsisInfo); foreach ($this->propertyInfos as $propertyInfo) { $classSynopsis->appendChild(new DOMText("\n ")); $fieldSynopsisElement = $propertyInfo->getFieldSynopsisElement($doc, $allConstInfos); $classSynopsis->appendChild($fieldSynopsisElement); } } $this->appendInheritedMemberSectionToClassSynopsis( $doc, $classSynopsis, $parentsWithInheritedProperties, "&Properties;", "&InheritedProperties;" ); if (!empty($this->funcInfos)) { $classSynopsis->appendChild(new DOMText("\n\n ")); $classSynopsisInfo = $doc->createElement("classsynopsisinfo", "&Methods;"); $classSynopsisInfo->setAttribute("role", "comment"); $classSynopsis->appendChild($classSynopsisInfo); $classReference = self::getClassSynopsisReference($this->name); $escapedName = addslashes($this->name->__toString()); if ($this->hasConstructor()) { $classSynopsis->appendChild(new DOMText("\n ")); $includeElement = $this->createIncludeElement( $doc, "xmlns(db=http://docbook.org/ns/docbook) xpointer(id('$classReference')/db:refentry/db:refsect1[@role='description']/descendant::db:constructorsynopsis[@role='$escapedName'])" ); $classSynopsis->appendChild($includeElement); } if ($this->hasMethods()) { $classSynopsis->appendChild(new DOMText("\n ")); $includeElement = $this->createIncludeElement( $doc, "xmlns(db=http://docbook.org/ns/docbook) xpointer(id('$classReference')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[@role='$escapedName'])" ); $classSynopsis->appendChild($includeElement); } if ($this->hasDestructor()) { $classSynopsis->appendChild(new DOMText("\n ")); $includeElement = $this->createIncludeElement( $doc, "xmlns(db=http://docbook.org/ns/docbook) xpointer(id('$classReference')/db:refentry/db:refsect1[@role='description']/descendant::db:destructorsynopsis[@role='$escapedName'])" ); $classSynopsis->appendChild($includeElement); } } if (!empty($parentsWithInheritedMethods)) { $classSynopsis->appendChild(new DOMText("\n\n ")); $classSynopsisInfo = $doc->createElement("classsynopsisinfo", "&InheritedMethods;"); $classSynopsisInfo->setAttribute("role", "comment"); $classSynopsis->appendChild($classSynopsisInfo); foreach ($parentsWithInheritedMethods as $parent) { $parentName = $parent["name"]; $parentMethodsynopsisTypes = $parent["types"]; $parentReference = self::getClassSynopsisReference($parentName); $escapedParentName = addslashes($parentName->__toString()); foreach ($parentMethodsynopsisTypes as $parentMethodsynopsisType) { $classSynopsis->appendChild(new DOMText("\n ")); $includeElement = $this->createIncludeElement( $doc, "xmlns(db=http://docbook.org/ns/docbook) xpointer(id('$parentReference')/db:refentry/db:refsect1[@role='description']/descendant::db:{$parentMethodsynopsisType}[@role='$escapedParentName'])" ); $classSynopsis->appendChild($includeElement); } } } $classSynopsis->appendChild(new DOMText("\n ")); return $classSynopsis; } private static function createOoElement( DOMDocument $doc, ClassInfo $classInfo, ?string $typeOverride, bool $withModifiers, ?string $modifierOverride, int $indentationLevel ): ?DOMElement { $indentation = str_repeat(" ", $indentationLevel); if ($classInfo->type !== "class" && $classInfo->type !== "interface") { echo "Class synopsis generation is not implemented for " . $classInfo->type . "\n"; return null; } $type = $typeOverride !== null ? $typeOverride : $classInfo->type; $ooElement = $doc->createElement("oo$type"); $ooElement->appendChild(new DOMText("\n$indentation ")); if ($modifierOverride !== null) { $ooElement->appendChild($doc->createElement('modifier', $modifierOverride)); $ooElement->appendChild(new DOMText("\n$indentation ")); } elseif ($withModifiers) { foreach ($classInfo->attributes as $attribute) { $modifier = $doc->createElement("modifier", "#[\\" . $attribute->class . "]"); $modifier->setAttribute("role", "attribute"); $ooElement->appendChild($modifier); $ooElement->appendChild(new DOMText("\n$indentation ")); } if ($classInfo->flags & Modifiers::FINAL) { $ooElement->appendChild($doc->createElement('modifier', 'final')); $ooElement->appendChild(new DOMText("\n$indentation ")); } if ($classInfo->flags & Modifiers::ABSTRACT) { $ooElement->appendChild($doc->createElement('modifier', 'abstract')); $ooElement->appendChild(new DOMText("\n$indentation ")); } if ($classInfo->flags & Modifiers::READONLY) { $ooElement->appendChild($doc->createElement('modifier', 'readonly')); $ooElement->appendChild(new DOMText("\n$indentation ")); } } $nameElement = $doc->createElement("{$type}name", $classInfo->name->toString()); $ooElement->appendChild($nameElement); $ooElement->appendChild(new DOMText("\n$indentation")); return $ooElement; } public static function getClassSynopsisFilename(Name $name): string { return strtolower(str_replace("_", "-", implode('-', $name->getParts()))); } private static function getClassSynopsisReference(Name $name): string { return "class." . self::getClassSynopsisFilename($name); } /** * @param array $parentsWithInheritedConstants * @param array $parentsWithInheritedProperties * @param array $parentsWithInheritedMethods * @param array $classMap */ private function collectInheritedMembers( array &$parentsWithInheritedConstants, array &$parentsWithInheritedProperties, array &$parentsWithInheritedMethods, bool $hasConstructor, array $classMap ): void { foreach ($this->extends as $parent) { $parentInfo = $classMap[$parent->toString()] ?? null; $parentName = $parent->toString(); if (!$parentInfo) { throw new Exception("Missing parent class $parentName"); } if (!empty($parentInfo->constInfos) && !isset($parentsWithInheritedConstants[$parentName])) { $parentsWithInheritedConstants[] = $parent; } if (!empty($parentInfo->propertyInfos) && !isset($parentsWithInheritedProperties[$parentName])) { $parentsWithInheritedProperties[$parentName] = $parent; } if (!$hasConstructor && $parentInfo->hasNonPrivateConstructor()) { $parentsWithInheritedMethods[$parentName]["name"] = $parent; $parentsWithInheritedMethods[$parentName]["types"][] = "constructorsynopsis"; } if ($parentInfo->hasMethods()) { $parentsWithInheritedMethods[$parentName]["name"] = $parent; $parentsWithInheritedMethods[$parentName]["types"][] = "methodsynopsis"; } if ($parentInfo->hasDestructor()) { $parentsWithInheritedMethods[$parentName]["name"] = $parent; $parentsWithInheritedMethods[$parentName]["types"][] = "destructorsynopsis"; } $parentInfo->collectInheritedMembers( $parentsWithInheritedConstants, $parentsWithInheritedProperties, $parentsWithInheritedMethods, $hasConstructor, $classMap ); } foreach ($this->implements as $parent) { $parentInfo = $classMap[$parent->toString()] ?? null; if (!$parentInfo) { throw new Exception("Missing parent interface " . $parent->toString()); } if (!empty($parentInfo->constInfos) && !isset($parentsWithInheritedConstants[$parent->toString()])) { $parentsWithInheritedConstants[$parent->toString()] = $parent; } $unusedParentsWithInheritedProperties = []; $unusedParentsWithInheritedMethods = []; $parentInfo->collectInheritedMembers( $parentsWithInheritedConstants, $unusedParentsWithInheritedProperties, $unusedParentsWithInheritedMethods, $hasConstructor, $classMap ); } } /** @param array $classMap */ private function isException(array $classMap): bool { if ($this->name->toString() === "Throwable") { return true; } foreach ($this->extends as $parentName) { $parent = $classMap[$parentName->toString()] ?? null; if ($parent === null) { throw new Exception("Missing parent class " . $parentName->toString()); } if ($parent->isException($classMap)) { return true; } } if ($this->type === "class") { foreach ($this->implements as $interfaceName) { $interface = $classMap[$interfaceName->toString()] ?? null; if ($interface === null) { throw new Exception("Missing implemented interface " . $interfaceName->toString()); } if ($interface->isException($classMap)) { return true; } } } return false; } private function hasConstructor(): bool { foreach ($this->funcInfos as $funcInfo) { if ($funcInfo->name->isConstructor()) { return true; } } return false; } private function hasNonPrivateConstructor(): bool { foreach ($this->funcInfos as $funcInfo) { if ($funcInfo->name->isConstructor() && !($funcInfo->flags & Modifiers::PRIVATE)) { return true; } } return false; } private function hasDestructor(): bool { foreach ($this->funcInfos as $funcInfo) { if ($funcInfo->name->isDestructor()) { return true; } } return false; } private function hasMethods(): bool { foreach ($this->funcInfos as $funcInfo) { if (!$funcInfo->name->isConstructor() && !$funcInfo->name->isDestructor()) { return true; } } return false; } private function createIncludeElement(DOMDocument $doc, string $query): DOMElement { $includeElement = $doc->createElement("xi:include"); $attr = $doc->createAttribute("xpointer"); $attr->value = $query; $includeElement->appendChild($attr); $fallbackElement = $doc->createElement("xi:fallback"); $includeElement->appendChild(new DOMText("\n ")); $includeElement->appendChild($fallbackElement); $includeElement->appendChild(new DOMText("\n ")); return $includeElement; } public function __clone() { foreach ($this->constInfos as $key => $constInfo) { $this->constInfos[$key] = clone $constInfo; } foreach ($this->propertyInfos as $key => $propertyInfo) { $this->propertyInfos[$key] = clone $propertyInfo; } foreach ($this->funcInfos as $key => $funcInfo) { $this->funcInfos[$key] = clone $funcInfo; } } /** * @param Name[] $parents */ private function appendInheritedMemberSectionToClassSynopsis(DOMDocument $doc, DOMElement $classSynopsis, array $parents, string $label, string $inheritedLabel): void { if (empty($parents)) { return; } $classSynopsis->appendChild(new DOMText("\n\n ")); $classSynopsisInfo = $doc->createElement("classsynopsisinfo", "$inheritedLabel"); $classSynopsisInfo->setAttribute("role", "comment"); $classSynopsis->appendChild($classSynopsisInfo); foreach ($parents as $parent) { $classSynopsis->appendChild(new DOMText("\n ")); $parentReference = self::getClassSynopsisReference($parent); $includeElement = $this->createIncludeElement( $doc, "xmlns(db=http://docbook.org/ns/docbook) xpointer(id('$parentReference')/db:partintro/db:section/db:classsynopsis/db:fieldsynopsis[preceding-sibling::db:classsynopsisinfo[1][@role='comment' and text()='$label']]))" ); $classSynopsis->appendChild($includeElement); } } } class FileInfo { /** @var string[] */ public array $dependencies = []; /** @var ConstInfo[] */ public array $constInfos = []; /** @var FuncInfo[] */ public array $funcInfos = []; /** @var ClassInfo[] */ public array $classInfos = []; public bool $generateFunctionEntries = false; public string $declarationPrefix = ""; public bool $generateClassEntries = true; private bool $isUndocumentable = false; private bool $legacyArginfoGeneration = false; private ?int $minimumPhpVersionIdCompatibility = PHP_84_VERSION_ID; /** @param array $fileTags */ public function __construct(array $fileTags) { foreach ($fileTags as $tag) { if ($tag->name === 'generate-function-entries') { $this->generateFunctionEntries = true; $this->declarationPrefix = $tag->value ? $tag->value . " " : ""; } else if ($tag->name === 'generate-legacy-arginfo') { if ($tag->value && !in_array((int) $tag->value, ALL_PHP_VERSION_IDS, true)) { throw new Exception( "Legacy PHP version must be one of: \"" . PHP_84_VERSION_ID . "\" (PHP 8.4), " . "\"" . PHP_85_VERSION_ID . "\" (PHP 8.5), \"" . $tag->value . "\" provided" ); } $this->minimumPhpVersionIdCompatibility = ($tag->value ? (int) $tag->value : PHP_84_VERSION_ID); } else if ($tag->name === 'generate-class-entries') { $this->generateClassEntries = true; $this->declarationPrefix = $tag->value ? $tag->value . " " : ""; } else if ($tag->name === 'undocumentable') { $this->isUndocumentable = true; } } // Generating class entries require generating function/method entries if ($this->generateClassEntries && !$this->generateFunctionEntries) { $this->generateFunctionEntries = true; } } /** * @return iterable */ public function getAllFuncInfos(): iterable { $allFuncInfos = []; foreach ($this->classInfos as $classInfo) { $allFuncInfos = array_merge($allFuncInfos, $classInfo->funcInfos); } return array_merge($allFuncInfos, $this->funcInfos); } /** @return array */ public function getAllConstInfos(): array { $result = []; foreach ($this->constInfos as $constInfo) { $result[$constInfo->name->__toString()] = $constInfo; } foreach ($this->classInfos as $classInfo) { foreach ($classInfo->constInfos as $constInfo) { $result[$constInfo->name->__toString()] = $constInfo; } } return $result; } public function __clone() { foreach ($this->constInfos as $key => $constInfo) { $this->constInfos[$key] = clone $constInfo; } foreach ($this->funcInfos as $key => $funcInfo) { $this->funcInfos[$key] = clone $funcInfo; } foreach ($this->classInfos as $key => $classInfo) { $this->classInfos[$key] = clone $classInfo; } } public function getMinimumPhpVersionIdCompatibility(): ?int { // Non-legacy arginfo files are always PHP 8.0+ compatible if (!$this->legacyArginfoGeneration && $this->minimumPhpVersionIdCompatibility !== null && $this->minimumPhpVersionIdCompatibility < PHP_80_VERSION_ID ) { return PHP_80_VERSION_ID; } return $this->minimumPhpVersionIdCompatibility; } public function shouldGenerateLegacyArginfo(): bool { return $this->minimumPhpVersionIdCompatibility !== null && $this->minimumPhpVersionIdCompatibility < PHP_80_VERSION_ID; } public function getLegacyVersion(): FileInfo { $legacyFileInfo = clone $this; $legacyFileInfo->legacyArginfoGeneration = true; $phpVersionIdMinimumCompatibility = $legacyFileInfo->getMinimumPhpVersionIdCompatibility(); foreach ($legacyFileInfo->getAllFuncInfos() as $funcInfo) { $funcInfo->discardInfoForOldPhpVersions($phpVersionIdMinimumCompatibility); } foreach ($legacyFileInfo->classInfos as $classInfo) { $classInfo->discardInfoForOldPhpVersions($phpVersionIdMinimumCompatibility); } foreach ($legacyFileInfo->getAllConstInfos() as $constInfo) { $constInfo->discardInfoForOldPhpVersions($phpVersionIdMinimumCompatibility); } return $legacyFileInfo; } public static function parseStubFile(string $code, string $phpVersion = '8.5', string $sourceFile = ''): FileInfo { $parser = (new PhpParser\ParserFactory())->createForVersion(PhpParser\PhpVersion::fromString($phpVersion)); $nodeTraverser = new PhpParser\NodeTraverser; $nodeTraverser->addVisitor(new PhpParser\NodeVisitor\NameResolver( null, ['preserveOriginalNames' => true] )); $nodeTraverser->addVisitor(new TypePhp\Transform\Visitor(sourceFile: $sourceFile)); $nodeTraverser->addVisitor(new TypePhp\Transform\ConstantExpressionValidationVisitor($phpVersion)); $nodeTraverser->addVisitor(new TypePhp\Transform\RuntimeAttributeFactoryLowering($sourceFile)); $prettyPrinter = new class extends Standard { protected function pName_FullyQualified(PhpParser\Node\Name\FullyQualified $node): string { return implode('\\', $node->getParts()); } }; $stmts = $parser->parse($code); $stmts = $nodeTraverser->traverse($stmts); $fileTags = DocCommentTag::parseDocComments(self::getFileDocComments($stmts)); $fileInfo = new FileInfo($fileTags); $fileInfo->handleStatements($stmts, $prettyPrinter); return $fileInfo; } /** @return DocComment[] */ private static function getFileDocComments(array $stmts): array { if (empty($stmts)) { return []; } return array_filter( $stmts[0]->getComments(), static fn ($comment): bool => $comment instanceof DocComment ); } private function handleStatements(array $stmts, PrettyPrinterAbstract $prettyPrinter): void { $conds = []; foreach ($stmts as $stmt) { $cond = self::handlePreprocessorConditions($conds, $stmt); if ($stmt instanceof Stmt\Nop) { continue; } if ($stmt instanceof Stmt\Namespace_) { $this->handleStatements($stmt->stmts, $prettyPrinter); continue; } if ($stmt instanceof Stmt\Const_) { foreach ($stmt->consts as $const) { if ($const->value instanceof PhpParser\Node\Expr\Array_ or $const->value instanceof PhpParser\Node\Expr\New_ ) { continue; } $this->constInfos[] = parseConstLike( $prettyPrinter, new ConstName($const->namespacedName, $const->name->toString()), $const, 0, null, $stmt->getComments(), $cond, $this->isUndocumentable, $this->getMinimumPhpVersionIdCompatibility(), AttributeInfo::createFromGroups($stmt->attrGroups) ); } continue; } if ($stmt instanceof Stmt\Function_) { if (getTranslator()->isNativeFunctionForStub($stmt->namespacedName->toString())) { continue; } $this->funcInfos[] = parseFunctionLike( $prettyPrinter, new FunctionName($stmt->namespacedName), 0, 0, $stmt, $cond, $this->isUndocumentable, $this->getMinimumPhpVersionIdCompatibility() ); continue; } // TypePHP traits are compile-time AST templates and must not become // Zend class entries in the generated arginfo registration code. if ($stmt instanceof Trait_) { continue; } if ($stmt instanceof Stmt\ClassLike) { $className = $stmt->namespacedName; // #[Native] classes are C++-only types. They intentionally have // no zend_class_entry, arginfo method table or Zend wrappers. if ($stmt instanceof Class_ && getTranslator()->isNativeClassForStub($className->toString()) ) { continue; } $constInfos = []; $propertyInfos = []; $methodInfos = []; $enumCaseInfos = []; if (!$stmt instanceof PhpParser\Node\Stmt\Interface_) { getTranslator()->composeTraitAst($stmt, $className); } ClassInfo::$currentClass = $className->toString(); foreach ($stmt->stmts as $classStmt) { $cond = self::handlePreprocessorConditions($conds, $classStmt); if ($classStmt instanceof Stmt\Nop) { continue; } $classFlags = $stmt instanceof Class_ ? $stmt->flags : 0; $abstractFlag = $stmt instanceof Stmt\Interface_ ? Modifiers::ABSTRACT : 0; if ($classStmt instanceof Stmt\ClassConst) { foreach ($classStmt->consts as $const) { $constInfos[] = parseConstLike( $prettyPrinter, new ClassConstName($className, $const->name->toString()), $const, $classStmt->flags, $classStmt->type, $classStmt->getComments(), $cond, $this->isUndocumentable, $this->getMinimumPhpVersionIdCompatibility(), AttributeInfo::createFromGroups($classStmt->attrGroups) ); } } else if ($classStmt instanceof Stmt\Property) { if (!($classStmt->flags & Class_::VISIBILITY_MODIFIER_MASK)) { $classStmt->flags |= Modifiers::PUBLIC; } foreach ($classStmt->props as $property) { $propertyInfos[] = parseProperty( $className, $classFlags, $classStmt->flags, $property, $classStmt->type, $classStmt->getComments(), $prettyPrinter, $this->getMinimumPhpVersionIdCompatibility(), AttributeInfo::createFromGroups($classStmt->attrGroups), false, $classStmt->getAttribute( TypePhp\Transform\PropertyHookLowering::PROPERTY_ATTRIBUTE, [], ), ); } } else if ($classStmt instanceof Stmt\ClassMethod) { if (getTranslator()->isNativeMethodForStub( $className->toString(), $classStmt->name->toString(), )) { continue; } if (!($classStmt->flags & Class_::VISIBILITY_MODIFIER_MASK)) { $classStmt->flags |= Modifiers::PUBLIC; } $methodInfos[] = parseFunctionLike( $prettyPrinter, new MethodName($className, $classStmt->name->toString()), $classFlags, $classStmt->flags | $abstractFlag, $classStmt, $cond, $this->isUndocumentable, $this->getMinimumPhpVersionIdCompatibility(), $propertyInfos, ); } else if ($classStmt instanceof Stmt\EnumCase) { $enumCaseInfos[] = new EnumCaseInfo( $classStmt->name->toString(), $classStmt->expr); } else if ($classStmt instanceof Stmt\TraitUse) { continue; } else { throw new Exception("Not implemented {$classStmt->getType()}"); } } $this->classInfos[] = parseClass( $className, $stmt, $constInfos, $propertyInfos, $methodInfos, $enumCaseInfos, $cond, $this->getMinimumPhpVersionIdCompatibility(), $this->isUndocumentable ); // 清理当前类名,避免污染 ClassInfo::$currentClass = ''; continue; } if ($stmt instanceof Stmt\Expression) { $expr = $stmt->expr; if ($expr instanceof Expr\Include_) { $this->dependencies[] = (string)EvaluatedValue::createFromExpression($expr->expr, null, null, [])->value; continue; } } if ($stmt instanceof Stmt\Use_ or $stmt instanceof Stmt\GroupUse or $stmt instanceof Stmt\Declare_) { continue; } throw new Exception("Unexpected node {$stmt->getType()}"); } if (!empty($conds)) { throw new Exception("Unterminated preprocessor conditions"); } } private static function handlePreprocessorConditions(array &$conds, Stmt $stmt): ?string { foreach ($stmt->getComments() as $comment) { $text = trim($comment->getText()); if (preg_match('/^#\s*if\s+(.+)$/', $text, $matches)) { $conds[] = $matches[1]; } else if (preg_match('/^#\s*ifdef\s+(.+)$/', $text, $matches)) { $conds[] = "defined($matches[1])"; } else if (preg_match('/^#\s*ifndef\s+(.+)$/', $text, $matches)) { $conds[] = "!defined($matches[1])"; } else if (preg_match('/^#\s*else$/', $text)) { if (empty($conds)) { throw new Exception("Encountered else without corresponding #if"); } $cond = array_pop($conds); $conds[] = "!($cond)"; } else if (preg_match('/^#\s*endif$/', $text)) { if (empty($conds)) { throw new Exception("Encountered #endif without corresponding #if"); } array_pop($conds); } else if ($text[0] === '#') { throw new Exception("Unrecognized preprocessor directive \"$text\""); } } return empty($conds) ? null : implode(' && ', $conds); } /** @param array $allConstInfos */ public function generateClassEntryCode(array $allConstInfos): string { $code = ""; foreach ($this->classInfos as $class) { ClassInfo::$currentClass = $class->name->toString(); $code .= "\n" . $class->getRegistration($allConstInfos); ClassInfo::$currentClass = ''; } return $code; } } class DocCommentTag { public /* readonly */ string $name; public /* readonly */ ?string $value; public function __construct(string $name, ?string $value) { $this->name = $name; $this->value = $value; } public function getValue(): string { if ($this->value === null) { throw new Exception("@$this->name does not have a value"); } return $this->value; } public function getType(): string { $value = $this->getValue(); $matches = []; if ($this->name === "param") { preg_match('/^\s*([\w\|\\\\\[\]<>, ]+)\s*(?:[{(]|(\.\.\.)?\$\w+).*$/', $value, $matches); } elseif ($this->name === "return" || $this->name === "var") { preg_match('/^\s*([\w\|\\\\\[\]<>, ]+)/', $value, $matches); } if (!isset($matches[1])) { throw new Exception("@$this->name doesn't contain a type or has an invalid format \"$value\""); } return trim($matches[1]); } public function getVariableName(): string { $value = $this->value; if ($value === null || strlen($value) === 0) { throw new Exception("@$this->name doesn't have any value"); } $matches = []; if ($this->name === "param") { // Allow for parsing extended types like callable(string):mixed in docblocks preg_match('/^\s*(?[\w\|\\\\]+(?\((?(?:(?&parens)|[^(){}[\]<>]*+))++\)|\{(?&inparens)\}|\[(?&inparens)\]|<(?&inparens)>)*+(?::(?&type))?)\s*(\.\.\.)?\$(?\w+).*$/', $value, $matches); } elseif ($this->name === "prefer-ref") { preg_match('/^\s*\$(?\w+).*$/', $value, $matches); } if (!isset($matches["name"])) { throw new Exception("@$this->name doesn't contain a variable name or has an invalid format \"$value\""); } return $matches["name"]; } /** @return DocCommentTag[] */ public static function parseDocComments(array $comments): array { return []; $tags = []; foreach ($comments as $comment) { if (!($comment instanceof DocComment)) { continue; } $commentText = substr($comment->getText(), 2, -2); foreach (explode("\n", $commentText) as $commentLine) { $regex = '/^\*\s*@([a-z-]+)(?:\s+(.+))?$/'; if (preg_match($regex, trim($commentLine), $matches)) { $tags[] = new DocCommentTag($matches[1], $matches[2] ?? null); } } } return $tags; } /** * @param DocCommentTag[] $tags * @return array Mapping tag names to the value (or null), * if a tag is present multiple times the last value is used */ public static function makeTagMap(array $tags): array { $map = []; foreach ($tags as $tag) { $map[$tag->name] = $tag->value; } return $map; } } // Instances of ExposedDocComment are immutable and do not need to be cloned // when held by an object that is cloned class ExposedDocComment { private /* readonly */ string $docComment; public function __construct(string $docComment) { $this->docComment = $docComment; } public function escape(): string { return str_replace("\n", '\n', addslashes($this->docComment)); } public function getInitCode(): string { return "zend_string_init_interned(\"" . $this->escape() . "\", " . strlen($this->docComment) . ", 1);"; } /** @param array $comments */ public static function extractExposedComment(array $comments): ?ExposedDocComment { $exposedDocComment = null; foreach ($comments as $comment) { $text = $comment->getText(); $matches = []; $pattern = "#^(\s*\/\*\*)(\s*@genstubs-expose-comment-block)(\s*)$#m"; if (preg_match($pattern, $text, $matches) !== 1) { continue; } if ($exposedDocComment !== null) { throw new Exception("Only one PHPDoc comment block can be exposed"); } $exposedDocComment = preg_replace($pattern, '$1$3', $text); } return $exposedDocComment ? new ExposedDocComment($exposedDocComment) : null; } } // Instances of FramelessFunctionInfo are immutable and do not need to be cloned // when held by an object that is cloned class FramelessFunctionInfo { public /* readonly */ int $arity; public function __construct(string $json) { // FIXME: Should have some validation $json = json_decode($json, true); $this->arity = $json["arity"]; } } /** * 获取魔术方法的默认返回值类型。只有用户未显式声明类型时才使用。 */ function getMagicMethodDefaultReturnType(FunctionOrMethodName $name): ?string { if (!($name instanceof MethodName)) { return null; } $map = [ '__set' => 'void', '__tostring' => 'string', '__serialize' => 'array', '__unserialize' => 'void', '__isset' => 'bool', '__unset' => 'void', '__set_state' => 'object', '__debuginfo' => 'array', '__sleep' => 'array', '__wakeup' => 'void', '__clone' => 'void', ]; return $map[strtolower($name->methodName)] ?? null; } /** * 获取魔术方法的默认参数类型。只有用户未显式声明类型时才使用。 */ function getMagicMethodDefaultParamType(FunctionOrMethodName $name, int $index): ?string { if (!($name instanceof MethodName)) { return null; } $map = [ '__call' => ['string', 'array'], '__callstatic' => ['string', 'array'], '__set' => ['string'], '__unserialize' => ['array'], '__isset' => ['string'], '__unset' => ['string'], '__set_state' => ['array'], ]; $methodParams = $map[strtolower($name->methodName)] ?? null; return $methodParams[$index] ?? null; } function parseFunctionLike( PrettyPrinterAbstract $prettyPrinter, FunctionOrMethodName $name, int $classFlags, int $flags, Node\FunctionLike $func, ?string $cond, bool $isUndocumentable, ?int $minimumPhpVersionIdCompatibility, ?array &$propertyInfos = null, ): FuncInfo { try { $comments = $func->getComments(); $paramMeta = []; $aliasType = null; $alias = null; $isDeprecated = false; $supportsCompileTimeEval = false; $verify = true; $docReturnType = null; $tentativeReturnType = false; $docParamTypes = []; $refcount = null; $framelessFunctionInfos = []; if ($comments) { $tags = DocCommentTag::parseDocComments($comments); $tagMap = DocCommentTag::makeTagMap($tags); $isDeprecated = array_key_exists('deprecated', $tagMap); $verify = !array_key_exists('no-verify', $tagMap); $tentativeReturnType = array_key_exists('tentative-return-type', $tagMap); $supportsCompileTimeEval = array_key_exists('compile-time-eval', $tagMap); $isUndocumentable = $isUndocumentable || array_key_exists('undocumentable', $tagMap); foreach ($tags as $tag) { switch ($tag->name) { case 'alias': case 'implementation-alias': $aliasType = $tag->name; $aliasParts = explode("::", $tag->getValue()); if (count($aliasParts) === 1) { $alias = new FunctionName(new Name($aliasParts[0])); } else { $alias = new MethodName(new Name($aliasParts[0]), $aliasParts[1]); } break; case 'return': $docReturnType = $tag->getType(); break; case 'param': $docParamTypes[$tag->getVariableName()] = $tag->getType(); break; case 'refcount': $refcount = $tag->getValue(); break; case 'prefer-ref': $varName = $tag->getVariableName(); if (!isset($paramMeta[$varName])) { $paramMeta[$varName] = []; } $paramMeta[$varName][$tag->name] = true; break; case 'frameless-function': $framelessFunctionInfos[] = new FramelessFunctionInfo($tag->getValue()); break; } } } $varNameSet = []; $args = []; $numRequiredArgs = 0; $foundVariadic = false; foreach ($func->getParams() as $i => $param) { if ($param->isPromoted()) { // For constructor promotion, the parameter default belongs to the // constructor argument, not to the promoted property itself. $propertyItem = new Stmt\PropertyProperty($param->var->name, null); $property = new Stmt\Property($param->flags, [$propertyItem], $param->getAttributes(), $param->type, $param->attrGroups); $propertyInfos[] = parseProperty( $name->className, $classFlags, $param->flags, $propertyItem, $property->type, $property->getComments(), $prettyPrinter, $minimumPhpVersionIdCompatibility, AttributeInfo::createFromGroups($property->attrGroups), true ); } $varName = $param->var->name; $preferRef = !empty($paramMeta[$varName]['prefer-ref']); unset($paramMeta[$varName]); if (isset($varNameSet[$varName])) { throw new Exception("Duplicate parameter name $varName"); } $varNameSet[$varName] = true; if ($preferRef) { $sendBy = ArgInfo::SEND_PREFER_REF; } else if ($param->byRef) { $sendBy = ArgInfo::SEND_BY_REF; } else { $sendBy = ArgInfo::SEND_BY_VAL; } if ($foundVariadic) { throw new Exception("Only the last parameter can be variadic"); } $type = $param->type ? StubType::fromNode($param->type) : null; if ($type === null && !isset($docParamTypes[$varName])) { $defaultParamType = getMagicMethodDefaultParamType($name, $i); if ($defaultParamType !== null) { $type = StubType::fromString($defaultParamType); } else { $docParamTypes[$varName] = 'mixed'; } } if ($param->default instanceof Expr\ConstFetch && $param->default->name->toLowerString() === "null" && $type && !$type->isNullable() ) { $simpleType = $type->tryToSimpleType(); if ($simpleType === null || !$simpleType->isMixed()) { throw new Exception("Parameter $varName has null default, but is not nullable"); } } if ($param->default instanceof Expr\ClassConstFetch && $param->default->class->toLowerString() === "self") { $defaultValue = getTranslator()->getClassConstValue( $func, $name->className->name, $param->default->name->name, ClassInfo::$currentClass, ); $defaultValue = var_export($defaultValue, true); } elseif ($param->default instanceof String_) { // Keep this as a PHP expression. ArgInfo escapes the expression // separately when embedding it in generated C++. $defaultValue = var_export($param->default->value, true); } else { $defaultValue = $param->default ? $prettyPrinter->prettyPrintExpr($param->default) : null; } $foundVariadic = $param->variadic; $args[] = new ArgInfo( $varName, $sendBy, $param->variadic, $type, isset($docParamTypes[$varName]) ? StubType::fromString($docParamTypes[$varName]) : null, $defaultValue, AttributeInfo::createFromGroups($param->attrGroups) ); if (!$param->default && !$param->variadic) { $numRequiredArgs = $i + 1; } } foreach (array_keys($paramMeta) as $var) { throw new Exception("Found metadata for invalid param $var"); } $returnType = $func->getReturnType(); if ($returnType === null && $docReturnType === null && !$name->isConstructor() && !$name->isDestructor()) { $docReturnType = getMagicMethodDefaultReturnType($name); } $return = new ReturnInfo( $func->returnsByRef(), $returnType ? StubType::fromNode($returnType) : null, $docReturnType ? StubType::fromString($docReturnType) : null, $tentativeReturnType, $refcount ); return new FuncInfo( $name, $classFlags, $flags, $aliasType, $alias, $isDeprecated, $supportsCompileTimeEval, $verify, $args, $return, $numRequiredArgs, $cond, $isUndocumentable, $minimumPhpVersionIdCompatibility, AttributeInfo::createFromGroups($func->attrGroups), $framelessFunctionInfos, ExposedDocComment::extractExposedComment($comments) ); } catch (Exception $e) { throw new Exception($name . "(): " .$e->getMessage()); } } /** * @param array $attributes */ function parseConstLike( PrettyPrinterAbstract $prettyPrinter, AbstractConstName $name, Node\Const_ $const, int $flags, ?Node $type, array $comments, ?string $cond, bool $isUndocumentable, ?int $phpVersionIdMinimumCompatibility, array $attributes ): ConstInfo { $phpDocType = null; $tags = DocCommentTag::parseDocComments($comments); $tagMap = DocCommentTag::makeTagMap($tags); $deprecated = array_key_exists('deprecated', $tagMap); $isUndocumentable = $isUndocumentable || array_key_exists('undocumentable', $tagMap); $isFileCacheAllowed = !array_key_exists('no-file-cache', $tagMap); $cValue = $tagMap['cvalue'] ?? null; $link = $tagMap['link'] ?? null; foreach ($tags as $tag) { if ($tag->name === 'var') { $phpDocType = $tag->getType(); } } if ($type === null && $phpDocType === null) { if ($const->value instanceof Node\Scalar\Float_) { $phpDocType = 'float'; } elseif ($const->value instanceof Node\Scalar\Int_ || ($const->value instanceof Expr\UnaryMinus && $const->value->expr instanceof Node\Scalar\Int_ ) ) { $phpDocType = 'int'; } elseif ($const->value instanceof String_) { $phpDocType = 'string'; } elseif ($const->value instanceof Expr\ConstFetch && $const->value->name instanceof Node\Name\FullyQualified && ( $const->value->name->name === 'false' || $const->value->name->name === 'true' ) ) { $phpDocType = 'bool'; } elseif ($const->value instanceof Expr\ConstFetch && $const->value->name instanceof Node\Name\FullyQualified && $const->value->name->name === 'null' ) { $phpDocType = 'null'; } else { $phpDocType = 'mixed'; } } $constType = $type ? StubType::fromNode($type) : null; $constPhpDocType = $phpDocType ? StubType::fromString($phpDocType) : null; if ($const->value instanceof Expr\ConstFetch && $const->value->name->toLowerString() === "null" && $constType && !$constType->isNullable() ) { $simpleType = $constType->tryToSimpleType(); if ($simpleType === null || !$simpleType->isMixed()) { throw new Exception("Constant " . $name->__toString() . " has null value, but is not nullable"); } } return new ConstInfo( $name, $flags, $const->value, $prettyPrinter->prettyPrintExpr($const->value), $constType, $constPhpDocType, $deprecated, $cond, $cValue, $isUndocumentable, $link, $phpVersionIdMinimumCompatibility, $attributes, ExposedDocComment::extractExposedComment($comments), $isFileCacheAllowed ); } /** * @param array $attributes */ function parseProperty( Name $class, int $classFlags, int $flags, Stmt\PropertyProperty $property, ?Node $type, array $comments, PrettyPrinterAbstract $prettyPrinter, ?int $phpVersionIdMinimumCompatibility, array $attributes, bool $isPromoted = false, array $hookMetadata = [], ): PropertyInfo { $phpDocType = null; $tags = DocCommentTag::parseDocComments($comments); $tagMap = DocCommentTag::makeTagMap($tags); $isDocReadonly = array_key_exists('readonly', $tagMap); $link = $tagMap['link'] ?? null; $isVirtual = $hookMetadata['virtual'] ?? array_key_exists('virtual', $tagMap); $hooks = $hookMetadata['methods'] ?? []; if ($hookMetadata['abstract'] ?? false) { $flags |= Modifiers::ABSTRACT; } foreach ($tags as $tag) { if ($tag->name === 'var') { $phpDocType = $tag->getType(); } } $propertyType = $type ? StubType::fromNode($type) : null; if ($propertyType === null && !$phpDocType) { $propertyType = StubType::fromString("mixed"); } if ($property->default instanceof Expr\ConstFetch && $property->default->name->toLowerString() === "null" && $propertyType && !$propertyType->isNullable() ) { $simpleType = $propertyType->tryToSimpleType(); if ($simpleType === null || !$simpleType->isMixed()) { throw new Exception("Property $class::\$$property->name has null default, but is not nullable"); } } return new PropertyInfo( new PropertyName($class, $property->name->__toString()), $classFlags, $flags, $propertyType, $phpDocType ? StubType::fromString($phpDocType) : null, $property->default, $property->default ? $prettyPrinter->prettyPrintExpr($property->default) : null, $isDocReadonly, $isVirtual, $hooks, $isPromoted, $link, $phpVersionIdMinimumCompatibility, $attributes, ExposedDocComment::extractExposedComment($comments) ); } /** * @param ConstInfo[] $consts * @param PropertyInfo[] $properties * @param FuncInfo[] $methods * @param EnumCaseInfo[] $enumCases */ function parseClass( Name $name, Stmt\ClassLike $class, array $consts, array $properties, array $methods, array $enumCases, ?string $cond, ?int $minimumPhpVersionIdCompatibility, bool $isUndocumentable ): ClassInfo { $comments = $class->getComments(); $alias = null; $allowsDynamicProperties = false; $tags = DocCommentTag::parseDocComments($comments); $tagMap = DocCommentTag::makeTagMap($tags); $isDeprecated = array_key_exists('deprecated', $tagMap); $isStrictProperties = array_key_exists('strict-properties', $tagMap); $isNotSerializable = array_key_exists('not-serializable', $tagMap); $isUndocumentable = $isUndocumentable || array_key_exists('undocumentable', $tagMap); foreach ($tags as $tag) { if ($tag->name === 'alias') { $alias = $tag->getValue(); } } $attributes = AttributeInfo::createFromGroups($class->attrGroups); try { foreach ($attributes as $attribute) { switch ($attribute->class) { case 'AllowDynamicProperties': $allowsDynamicProperties = true; throw new Skip(); } } } catch (Skip) { } if ($isStrictProperties && $allowsDynamicProperties) { throw new Exception("A class may not have '@strict-properties' and '#[\\AllowDynamicProperties]' at the same time."); } $extends = []; $implements = []; if ($class instanceof Class_) { $classKind = "class"; if ($class->extends) { $extends[] = $class->extends; } $implements = $class->implements; } elseif ($class instanceof Interface_) { $classKind = "interface"; $extends = $class->extends; } else if ($class instanceof Trait_) { $classKind = "trait"; } else if ($class instanceof Enum_) { $classKind = "enum"; $implements = $class->implements; } else { throw new Exception("Unknown class kind " . get_class($class)); } if ($isUndocumentable) { foreach ($methods as $method) { $method->isUndocumentable = true; } } return new ClassInfo( $name, $class instanceof Class_ ? $class->flags : 0, $classKind, $alias, $class instanceof Enum_ && $class->scalarType !== null ? SimpleType::fromNode($class->scalarType) : null, $isDeprecated, $isStrictProperties, $attributes, ExposedDocComment::extractExposedComment($comments), $isNotSerializable, $extends, $implements, $consts, $properties, $methods, $enumCases, $cond, $minimumPhpVersionIdCompatibility, $isUndocumentable ); } /** * @template T * @param iterable $infos * @param Closure(T): string|null $codeGenerator * @param ?string $parentCond */ function generateCodeWithConditions( iterable $infos, string $separator, Closure $codeGenerator, ?string $parentCond = null): string { $code = ""; // For combining the conditional blocks of the infos with the same condition $openCondition = null; foreach ($infos as $info) { $infoCode = $codeGenerator($info); if ($infoCode === null) { continue; } if ($info->cond && $info->cond !== $parentCond) { if ($openCondition !== null && $info->cond !== $openCondition ) { // Changing condition, end old $code .= "#endif\n"; $code .= $separator; $code .= "#if {$info->cond}\n"; $openCondition = $info->cond; } elseif ($openCondition === null) { // New condition with no existing one $code .= $separator; $code .= "#if {$info->cond}\n"; $openCondition = $info->cond; } else { // Staying in the same condition $code .= $separator; } $code .= $infoCode; } else { if ($openCondition !== null) { // Ending the condition $code .= "#endif\n"; $openCondition = null; } $code .= $separator; $code .= $infoCode; } } // The last info might have been in a conditional block if ($openCondition !== null) { $code .= "#endif\n"; } return $code; } /** * @param array $allConstInfos */ function generateArgInfoCode( string $stubFilenameWithoutExtension, FileInfo $fileInfo, array $allConstInfos, string $stubHash ): string { $code = "/* This is a generated file, edit the .stub.php file instead.\n" . " * Stub hash: $stubHash */\n"; foreach ($fileInfo->classInfos as $classInfo) { $code .= $classInfo->getDnfPropertyTypeFactoryCode(); } if (!str_ends_with($code, "*/\n")) { $code .= "\n"; } $generatedFuncInfos = []; $argInfoCode = generateCodeWithConditions( $fileInfo->getAllFuncInfos(), "\n", static function (FuncInfo $funcInfo) use (&$generatedFuncInfos, $fileInfo) { /* If there already is an equivalent arginfo structure, only emit a #define */ if ($generatedFuncInfo = $funcInfo->findEquivalent($generatedFuncInfos)) { $code = sprintf( "#define %s %s\n", $funcInfo->getArgInfoName(), $generatedFuncInfo->getArgInfoName() ); } else { $code = $funcInfo->toArgInfoCode($fileInfo->getMinimumPhpVersionIdCompatibility()); } $generatedFuncInfos[] = $funcInfo; return $code; } ); if ($argInfoCode !== "") { $code .= "$argInfoCode\n"; } if ($fileInfo->generateFunctionEntries) { $framelessFunctionCode = generateCodeWithConditions( $fileInfo->getAllFuncInfos(), "\n", static function (FuncInfo $funcInfo) { return $funcInfo->getFramelessDeclaration(); } ); if ($framelessFunctionCode !== "") { $code .= "$framelessFunctionCode\n"; } $generatedFunctionDeclarations = []; $code .= generateCodeWithConditions( $fileInfo->getAllFuncInfos(), "", static function (FuncInfo $funcInfo) use ($fileInfo, &$generatedFunctionDeclarations) { $key = $funcInfo->getDeclarationKey(); if (isset($generatedFunctionDeclarations[$key])) { return null; } $generatedFunctionDeclarations[$key] = true; return $fileInfo->declarationPrefix . $funcInfo->getDeclaration(); } ); $code .= generateFunctionEntries(null, $fileInfo->funcInfos); foreach ($fileInfo->classInfos as $classInfo) { $code .= generateFunctionEntries($classInfo->name, $classInfo->funcInfos, $classInfo->cond); } } if ($fileInfo->generateClassEntries) { $declaredStrings = []; $attributeInitializationCode = generateFunctionAttributeInitialization($fileInfo->funcInfos, $allConstInfos, $fileInfo->getMinimumPhpVersionIdCompatibility(), null, $declaredStrings); $attributeInitializationCode .= generateGlobalConstantAttributeInitialization($fileInfo->constInfos, $allConstInfos, $fileInfo->getMinimumPhpVersionIdCompatibility(), null, $declaredStrings); if ($attributeInitializationCode !== "") { $code .= "\nstatic void register_{$stubFilenameWithoutExtension}_symbols(int module_number)\n"; $code .= "{\n"; $code .= $attributeInitializationCode; $code .= "}\n"; } $code .= $fileInfo->generateClassEntryCode($allConstInfos); } return $code; } /** @param FuncInfo[] $funcInfos */ function generateFunctionEntries(?Name $className, array $funcInfos, ?string $cond = null): string { // No need to add anything if there are no function entries if ($funcInfos === []) { return ''; } if ($className) { $underscoreName = implode("_", $className->getParts()); $functionEntryName = "class_{$underscoreName}_methods"; } else { // 跳过生成 ext_functions $functionEntryName = "ext_functions"; return ''; } $code = "\nstatic const zend_function_entry {$functionEntryName}[] = {\n"; $code .= generateCodeWithConditions($funcInfos, "", static function (FuncInfo $funcInfo) { return $funcInfo->getFunctionEntry(); }, $cond); $code .= "\tZEND_FE_END\n"; $code .= "};\n"; if ($cond) { $code = "\n#if {$cond}{$code}#endif\n"; } return $code; } /** * @param iterable $funcInfos * @param array &$declaredStrings Map of string content to * the name of a zend_string already created with that content */ function generateFunctionAttributeInitialization(iterable $funcInfos, array $allConstInfos, ?int $phpVersionIdMinimumCompatibility, ?string $parentCond = null, array &$declaredStrings = []): string { return generateCodeWithConditions( $funcInfos, "", static function (FuncInfo $funcInfo) use ($allConstInfos, $phpVersionIdMinimumCompatibility, &$declaredStrings) { $code = null; if ($funcInfo->name instanceof MethodName) { $functionTable = "&class_entry->function_table"; } else { $functionTable = "CG(function_table)"; } // Make sure we don't try and use strings that might only be // conditionally available; string reuse is only among declarations // that are always there if ($funcInfo->cond) { $empty = []; $useDeclared = &$empty; } else { $useDeclared = &$declaredStrings; } foreach ($funcInfo->attributes as $key => $attribute) { $functionLookup = "(zend_function *) zend_hash_str_find_ptr($functionTable, \"" . $funcInfo->name->getNameForAttributes() . "\", sizeof(\"" . $funcInfo->name->getNameForAttributes() . "\") - 1)"; $code .= $attribute->generateCode( "zend_add_function_attribute($functionLookup", "func_" . $funcInfo->name->getNameForAttributes() . "_$key", $allConstInfos, $phpVersionIdMinimumCompatibility, refval($useDeclared) ); } foreach ($funcInfo->args as $index => $arg) { foreach ($arg->attributes as $key => $attribute) { $functionLookup = "(zend_function *) zend_hash_str_find_ptr($functionTable, \"" . $funcInfo->name->getNameForAttributes() . "\", sizeof(\"" . $funcInfo->name->getNameForAttributes() . "\") - 1)"; $code .= $attribute->generateCode( "zend_add_parameter_attribute($functionLookup, $index", "func_{$funcInfo->name->getNameForAttributes()}_arg{$index}_$key", $allConstInfos, $phpVersionIdMinimumCompatibility, refval($useDeclared) ); } } return $code; }, $parentCond ); } /** * @param iterable $constInfos * @param array $allConstInfos * @param array &$declaredStrings Map of string content to * the name of a zend_string already created with that content */ function generateGlobalConstantAttributeInitialization( iterable $constInfos, array $allConstInfos, ?int $phpVersionIdMinimumCompatibility, ?string $parentCond = null, array &$declaredStrings = [] ): string { $isConditional = false; if ($phpVersionIdMinimumCompatibility !== null && $phpVersionIdMinimumCompatibility < PHP_85_VERSION_ID) { $isConditional = true; } $code = generateCodeWithConditions( $constInfos, "", static function (ConstInfo $constInfo) use ($allConstInfos, $isConditional, &$declaredStrings) { $code = ""; if ($constInfo->attributes === []) { return null; } // Make sure we don't try and use strings that might only be // conditionally available; string reuse is only among declarations // that are always there if ($constInfo->cond) { $empty = []; $useDeclared = &$empty; } else { $useDeclared = &$declaredStrings; } $constName = str_replace('\\', '\\\\', $constInfo->name->__toString()); $constVarName = 'const_' . $constName; $code .= "\tzend_constant *$constVarName = zend_hash_str_find_ptr(EG(zend_constants), \"" . $constName . "\", sizeof(\"" . $constName . "\") - 1);\n"; foreach ($constInfo->attributes as $key => $attribute) { $code .= $attribute->generateCode( "zend_add_global_constant_attribute($constVarName", $constVarName . "_$key", $allConstInfos, PHP_85_VERSION_ID, refval($useDeclared) ); } return $code; }, $parentCond ); if ($code && $isConditional) { return "\n#if (PHP_VERSION_ID >= " . PHP_85_VERSION_ID . ")\n" . $code . "#endif\n"; } return $code; } /** * @param iterable $constInfos * @param array $allConstInfos * @param array &$declaredStrings Map of string content to * the name of a zend_string already created with that content */ function generateConstantAttributeInitialization( iterable $constInfos, array $allConstInfos, ?int $phpVersionIdMinimumCompatibility, ?string $parentCond = null, array &$declaredStrings = [] ): string { return generateCodeWithConditions( $constInfos, "", static function (ConstInfo $constInfo) use ($allConstInfos, $phpVersionIdMinimumCompatibility, &$declaredStrings) { $code = null; // Make sure we don't try and use strings that might only be // conditionally available; string reuse is only among declarations // that are always there if ($constInfo->cond) { $empty = []; $useDeclared = &$empty; } else { $useDeclared = &$declaredStrings; } foreach ($constInfo->attributes as $key => $attribute) { $code .= $attribute->generateCode( "zend_add_class_constant_attribute(class_entry, const_" . $constInfo->name->getDeclarationName(), "const_" . $constInfo->name->getDeclarationName() . "_$key", $allConstInfos, $phpVersionIdMinimumCompatibility, refval($useDeclared) ); } return $code; }, $parentCond ); } /** * @param iterable $propertyInfos * @param array $allConstInfos * @param array &$declaredStrings Map of string content to * the name of a zend_string already created with that content */ function generatePropertyAttributeInitialization( iterable $propertyInfos, array $allConstInfos, ?int $phpVersionIdMinimumCompatibility, array &$declaredStrings ): string { $code = ""; foreach ($propertyInfos as $propertyInfo) { foreach ($propertyInfo->attributes as $key => $attribute) { $code .= $attribute->generateCode( "zend_add_property_attribute(class_entry, property_" . $propertyInfo->name->getDeclarationName(), "property_" . $propertyInfo->name->getDeclarationName() . "_" . $key, $allConstInfos, $phpVersionIdMinimumCompatibility, refval($declaredStrings) ); } } return $code; } /** @param array $funcMap */ function generateOptimizerInfo(array $funcMap): string { $code = "/* This is a generated file, edit the .stub.php files instead. */\n\n"; $code .= "static const func_info_t func_infos[] = {\n"; $code .= generateCodeWithConditions($funcMap, "", static function (FuncInfo $funcInfo) { return $funcInfo->getOptimizerInfo(); }); $code .= "};\n"; return $code; } /** * @param array $constMap * @param array $undocumentedConstMap * @return array */ function replacePredefinedConstants(string $targetDirectory, array $constMap, array &$undocumentedConstMap): array { /** @var array $documentedConstMap */ $documentedConstMap = []; /** @var array $predefinedConstants */ $predefinedConstants = []; $it = new RecursiveIteratorIterator( new RecursiveDirectoryIterator($targetDirectory), RecursiveIteratorIterator::LEAVES_ONLY ); foreach ($it as $file) { $pathName = $file->getPathName(); if (!preg_match('/(?:[\w\.]*constants[\w\._]*|tokens).xml$/i', basename($pathName))) { continue; } $xml = file_get_contents($pathName); if ($xml === false) { continue; } if (stripos($xml, "formatOutput = false; $doc->preserveWhiteSpace = true; $doc->validateOnParse = true; $success = $doc->loadXML($replacedXml); if (!$success) { echo "Failed opening $pathName\n"; continue; } $updated = false; foreach ($doc->getElementsByTagName("varlistentry") as $entry) { if (!$entry instanceof DOMElement) { continue; } foreach ($entry->getElementsByTagName("term") as $manualTermElement) { $manualConstantElement = $manualTermElement->getElementsByTagName("constant")->item(0); if (!$manualConstantElement instanceof DOMElement) { continue; } $manualConstantName = $manualConstantElement->textContent; $stubConstant = $constMap[$manualConstantName] ?? null; if ($stubConstant === null) { continue; } $documentedConstMap[$manualConstantName] = $manualConstantName; if ($entry->firstChild instanceof DOMText) { $indentationLevel = strlen(str_replace("\n", "", $entry->firstChild->textContent)); } else { $indentationLevel = 3; } $newTermElement = $stubConstant->getPredefinedConstantTerm($doc, $indentationLevel); if ($manualTermElement->textContent === $newTermElement->textContent) { continue; } $manualTermElement->parentNode->replaceChild($newTermElement, $manualTermElement); $updated = true; } } foreach ($doc->getElementsByTagName("row") as $row) { if (!$row instanceof DOMElement) { continue; } $entry = $row->getElementsByTagName("entry")->item(0); if (!$entry instanceof DOMElement) { continue; } foreach ($entry->getElementsByTagName("constant") as $manualConstantElement) { if (!$manualConstantElement instanceof DOMElement) { continue; } $manualConstantName = $manualConstantElement->textContent; $stubConstant = $constMap[$manualConstantName] ?? null; if ($stubConstant === null) { continue; } $documentedConstMap[$manualConstantName] = $manualConstantName; if ($row->firstChild instanceof DOMText) { $indentationLevel = strlen(str_replace("\n", "", $row->firstChild->textContent)); } else { $indentationLevel = 3; } $newEntryElement = $stubConstant->getPredefinedConstantEntry($doc, $indentationLevel); if ($entry->textContent === $newEntryElement->textContent) { continue; } $entry->parentNode->replaceChild($newEntryElement, $entry); $updated = true; } } if ($updated) { $replacedXml = $doc->saveXML(); $replacedXml = preg_replace( [ "/REPLACED-ENTITY-([A-Za-z0-9._{}%-]+?;)/", '//i', '//i', '//i', '//i', '//i', '//i', ], [ "&$1", "", "", "", "", "", "", ], $replacedXml ); $predefinedConstants[$pathName] = $replacedXml; } } $undocumentedConstMap = array_diff_key($constMap, $documentedConstMap); return $predefinedConstants; } /** * @param array $classMap * @param array $allConstInfos * @return array */ function generateClassSynopses(array $classMap, array $allConstInfos): array { $result = []; foreach ($classMap as $classInfo) { $classSynopsis = $classInfo->getClassSynopsisDocument($classMap, $allConstInfos); if ($classSynopsis !== null) { $result[ClassInfo::getClassSynopsisFilename($classInfo->name) . ".xml"] = $classSynopsis; } } return $result; } /** * @param array $classMap * @param array $allConstInfos * @param array $undocumentedClassMap * @return array */ function replaceClassSynopses( string $targetDirectory, array $classMap, array $allConstInfos, array &$undocumentedClassMap ): array { /** @var array $documentedClassMap */ $documentedClassMap = []; /** @var array $classSynopses */ $classSynopses = []; $it = new RecursiveIteratorIterator( new RecursiveDirectoryIterator($targetDirectory), RecursiveIteratorIterator::LEAVES_ONLY ); foreach ($it as $file) { $pathName = $file->getPathName(); if (!preg_match('/\.xml$/i', $pathName)) { continue; } $xml = file_get_contents($pathName); if ($xml === false) { continue; } if (stripos($xml, "formatOutput = false; $doc->preserveWhiteSpace = true; $doc->validateOnParse = true; $success = $doc->loadXML($replacedXml); if (!$success) { echo "Failed opening $pathName\n"; continue; } $classSynopsisElements = []; foreach ($doc->getElementsByTagName("classsynopsis") as $element) { $classSynopsisElements[] = $element; } foreach ($classSynopsisElements as $classSynopsis) { if (!$classSynopsis instanceof DOMElement) { continue; } $child = $classSynopsis->firstElementChild; if ($child === null) { continue; } $child = $child->lastElementChild; if ($child === null) { continue; } $className = $child->textContent; if (!isset($classMap[$className])) { continue; } $documentedClassMap[$className] = $className; $classInfo = $classMap[$className]; $newClassSynopsis = $classInfo->getClassSynopsisElement($doc, $classMap, $allConstInfos); if ($newClassSynopsis === null) { continue; } // Check if there is any change - short circuit if there is not any. if (replaceAndCompareXmls($doc, $classSynopsis, $newClassSynopsis)) { continue; } // Return the updated XML $replacedXml = $doc->saveXML(); $replacedXml = preg_replace( [ "/REPLACED-ENTITY-([A-Za-z0-9._{}%-]+?;)/", '//i', '//i', '//i', '//i', '//i', '//i', ], [ "&$1", "", "", "", "", "", "", ], $replacedXml ); $classSynopses[$pathName] = $replacedXml; } } $undocumentedClassMap = array_diff_key($classMap, $documentedClassMap); return $classSynopses; } function getReplacedSynopsisXml(string $xml): string { return preg_replace( [ "/&([A-Za-z0-9._{}%-]+?;)/", "/<(\/)*xi:([A-Za-z]+?)/" ], [ "REPLACED-ENTITY-$1", "<$1XI$2", ], $xml ); } /** * @param array $funcMap * @return array */ function generateMethodSynopses(array $funcMap): array { $result = []; foreach ($funcMap as $funcInfo) { $methodSynopsis = $funcInfo->getMethodSynopsisDocument(); if ($methodSynopsis !== null) { $result[$funcInfo->name->getMethodSynopsisFilename() . ".xml"] = $methodSynopsis; } } return $result; } /** * @param array $funcMap * @param array $methodSynopsisWarnings * @param array $undocumentedFuncMap * @return array */ function replaceMethodSynopses( string $targetDirectory, array $funcMap, bool $isVerifyManual, array &$methodSynopsisWarnings, array &$undocumentedFuncMap ): array { /** @var array $documentedFuncMap */ $documentedFuncMap = []; /** @var array $methodSynopses */ $methodSynopses = []; $it = new RecursiveIteratorIterator( new RecursiveDirectoryIterator($targetDirectory), RecursiveIteratorIterator::LEAVES_ONLY ); foreach ($it as $file) { $pathName = $file->getPathName(); if (!preg_match('/\.xml$/i', $pathName)) { continue; } $xml = file_get_contents($pathName); if ($xml === false) { continue; } if ($isVerifyManual) { $matches = []; preg_match("/\s*([\w:]+)\s*<\/refname>\s*\s*&Alias;\s*<(?:function|methodname)>\s*([\w:]+)\s*<\/(?:function|methodname)>\s*<\/refpurpose>/i", $xml, $matches); $aliasName = $matches[1] ?? null; $alias = $funcMap[$aliasName] ?? null; $funcName = $matches[2] ?? null; $func = $funcMap[$funcName] ?? null; if ($alias && !$alias->isUndocumentable && ($func === null || $func->alias === null || $func->alias->__toString() !== $aliasName) && ($alias->alias === null || $alias->alias->__toString() !== $funcName) ) { $methodSynopsisWarnings[] = "$aliasName()" . ($alias->alias ? " is an alias of " . $alias->alias->__toString() . "(), but it" : "") . " is incorrectly documented as an alias for $funcName()"; } $matches = []; preg_match("/<(?:para|simpara)>\s*(?:&info.function.alias;|&info.method.alias;|&Alias;)\s+<(?:function|methodname)>\s*([\w:]+)\s*<\/(?:function|methodname)>/i", $xml, $matches); $descriptionFuncName = $matches[1] ?? null; $descriptionFunc = $funcMap[$descriptionFuncName] ?? null; if ($descriptionFunc && $funcName !== $descriptionFuncName) { $methodSynopsisWarnings[] = "Alias in the method synopsis description of $pathName doesn't match the alias in the "; } if ($aliasName) { $documentedFuncMap[$aliasName] = $aliasName; } } if (stripos($xml, "formatOutput = false; $doc->preserveWhiteSpace = true; $doc->validateOnParse = true; $success = $doc->loadXML($replacedXml); if (!$success) { echo "Failed opening $pathName\n"; continue; } $methodSynopsisElements = []; foreach ($doc->getElementsByTagName("constructorsynopsis") as $element) { $methodSynopsisElements[] = $element; } foreach ($doc->getElementsByTagName("destructorsynopsis") as $element) { $methodSynopsisElements[] = $element; } foreach ($doc->getElementsByTagName("methodsynopsis") as $element) { $methodSynopsisElements[] = $element; } foreach ($methodSynopsisElements as $methodSynopsis) { if (!$methodSynopsis instanceof DOMElement) { continue; } $item = $methodSynopsis->getElementsByTagName("methodname")->item(0); if (!$item instanceof DOMElement) { continue; } $funcName = $item->textContent; if (!isset($funcMap[$funcName])) { continue; } $funcInfo = $funcMap[$funcName]; $documentedFuncMap[$funcInfo->name->__toString()] = $funcInfo->name->__toString(); $newMethodSynopsis = $funcInfo->getMethodSynopsisElement($doc); if ($newMethodSynopsis === null) { continue; } // Retrieve current signature $params = []; $list = $methodSynopsis->getElementsByTagName("methodparam"); foreach ($list as $i => $item) { if (!$item instanceof DOMElement) { continue; } $paramList = $item->getElementsByTagName("parameter"); if ($paramList->count() !== 1) { continue; } $paramName = $paramList->item(0)->textContent; $paramTypes = []; $paramList = $item->getElementsByTagName("type"); foreach ($paramList as $type) { if (!$type instanceof DOMElement) { continue; } $paramTypes[] = $type->textContent; } $params[$paramName] = ["index" => $i, "type" => $paramTypes]; } // Check if there is any change - short circuit if there is not any. if (replaceAndCompareXmls($doc, $methodSynopsis, $newMethodSynopsis)) { continue; } // Update parameter references $paramList = $doc->getElementsByTagName("parameter"); /** @var DOMElement $paramElement */ foreach ($paramList as $paramElement) { if ($paramElement->parentNode && $paramElement->parentNode->nodeName === "methodparam") { continue; } $name = $paramElement->textContent; if (!isset($params[$name])) { continue; } $index = $params[$name]["index"]; if (!isset($funcInfo->args[$index])) { continue; } $paramElement->textContent = $funcInfo->args[$index]->name; } // Return the updated XML $replacedXml = $doc->saveXML(); $replacedXml = preg_replace( [ "/REPLACED-ENTITY-([A-Za-z0-9._{}%-]+?;)/", '//i', '//i', ], [ "&$1", "", "", ], $replacedXml ); $methodSynopses[$pathName] = $replacedXml; } } $undocumentedFuncMap = array_diff_key($funcMap, $documentedFuncMap); return $methodSynopses; } function replaceAndCompareXmls(DOMDocument $doc, DOMElement $originalSynopsis, DOMElement $newSynopsis): bool { $docComparator = new DOMDocument(); $docComparator->preserveWhiteSpace = false; $docComparator->formatOutput = true; $xml1 = $doc->saveXML($originalSynopsis); $xml1 = getReplacedSynopsisXml($xml1); $docComparator->loadXML($xml1); $xml1 = $docComparator->saveXML(); $originalSynopsis->parentNode->replaceChild($newSynopsis, $originalSynopsis); $xml2 = $doc->saveXML($newSynopsis); $xml2 = getReplacedSynopsisXml($xml2); $docComparator->loadXML($xml2); $xml2 = $docComparator->saveXML(); return $xml1 === $xml2; } function installPhpParser(string $version, string $phpParserDir) { $lockFile = __DIR__ . "/PHP-Parser-install-lock"; $lockFd = fopen($lockFile, 'w+'); if (!flock($lockFd, LOCK_EX)) { throw new Exception("Failed to acquire installation lock"); } try { // Check whether a parallel process has already installed PHP-Parser. if (is_dir($phpParserDir)) { return; } $cwd = getcwd(); chdir(__DIR__); $tarName = "v$version.tar.gz"; $downloadUrl = "https://github.com/nikic/PHP-Parser/archive/$tarName"; passthru("wget -O $tarName $downloadUrl", $exit); if ($exit !== 0) { passthru("curl -LO $downloadUrl", $exit); } if ($exit !== 0) { throw new Exception("Failed to download PHP-Parser tarball"); } if (!mkdir($phpParserDir)) { throw new Exception("Failed to create directory $phpParserDir"); } passthru("tar xvzf $tarName -C PHP-Parser-$version --strip-components 1", $exit); if ($exit !== 0) { rmdir($phpParserDir); throw new Exception("Failed to extract PHP-Parser tarball"); } unlink(__DIR__ . "/$tarName"); chdir($cwd); } finally { flock($lockFd, LOCK_UN); @unlink($lockFile); } } function initPhpParser() { static $isInitialized = false; if ($isInitialized) { return; } if (!extension_loaded("tokenizer")) { throw new Exception("The \"tokenizer\" extension is not available"); } $isInitialized = true; } function normalizeConstExprValue(mixed $constValue): mixed { if (is_string($constValue) && strlen($constValue) >= 2 && $constValue[0] === '"' && $constValue[strlen($constValue) - 1] === '"' ) { return stripcslashes(substr($constValue, 1, -1)); } return $constValue; } function getTranslator(): Translator { global $translator; return $translator; } /** * @throws Exception */ function generateStubFile(string $stubFile, string $objectFile, bool $forceRegeneration, string $phpVersion = '8.5'): void { $opt_index = 0; $options = getopt( "fho:", [ "force-regeneration", "parameter-stats", "help", "verify", "verify-manual", "replace-predefined-constants", "generate-classsynopses", "replace-classsynopses", "generate-methodsynopses", "replace-methodsynopses", "generate-optimizer-info", ], $opt_index ); $context = new Context; $context->phpVersion = $phpVersion; $printParameterStats = isset($options["parameter-stats"]); $verify = isset($options["verify"]); $verifyManual = isset($options["verify-manual"]); $replacePredefinedConstants = isset($options["replace-predefined-constants"]); $generateClassSynopses = isset($options["generate-classsynopses"]); $replaceClassSynopses = isset($options["replace-classsynopses"]); $generateMethodSynopses = isset($options["generate-methodsynopses"]); $replaceMethodSynopses = isset($options["replace-methodsynopses"]); $generateOptimizerInfo = isset($options["generate-optimizer-info"]); $context->forceRegeneration = $forceRegeneration; $context->objectFile = $objectFile; $context->forceParse = $context->forceRegeneration || $printParameterStats || $verify || $verifyManual || $replacePredefinedConstants || $generateClassSynopses || $generateOptimizerInfo || $replaceClassSynopses || $generateMethodSynopses || $replaceMethodSynopses; if (isset($options["h"]) || isset($options["help"])) { die("\nUsage: gen_stub.php [ -f | --force-regeneration ] [ --replace-predefined-constants ] [ --generate-classsynopses ] [ --replace-classsynopses ] [ --generate-methodsynopses ] [ --replace-methodsynopses ] [ --parameter-stats ] [ --verify ] [ --verify-manual ] [ --generate-optimizer-info ] [ -h | --help ] [ name.stub.php | directory ] [ directory ]\n\n"); } $locations = [$stubFile]; $locationCount = count($locations); if ($replacePredefinedConstants && $locationCount < 2) { die("At least one source stub path and a target manual directory has to be provided:\n./build/gen_stub.php --replace-predefined-constants ./ ../doc-en/\n"); } if ($replaceClassSynopses && $locationCount < 2) { die("At least one source stub path and a target manual directory has to be provided:\n./build/gen_stub.php --replace-classsynopses ./ ../doc-en/\n"); } if ($generateMethodSynopses && $locationCount < 2) { die("At least one source stub path and a target manual directory has to be provided:\n./build/gen_stub.php --generate-methodsynopses ./ ../doc-en/\n"); } if ($replaceMethodSynopses && $locationCount < 2) { die("At least one source stub path and a target manual directory has to be provided:\n./build/gen_stub.php --replace-methodsynopses ./ ../doc-en/\n"); } if ($verifyManual && $locationCount < 2) { die("At least one source stub path and a target manual directory has to be provided:\n./build/gen_stub.php --verify-manual ./ ../doc-en/\n"); } $manualTarget = null; if ($replacePredefinedConstants || $replaceClassSynopses || $generateMethodSynopses || $replaceMethodSynopses || $verifyManual) { $manualTarget = array_pop($locations); } if ($locations === []) { $locations = ['.']; } $fileInfos = []; foreach (array_unique($locations) as $location) { if (is_file($location)) { // Generate single file. $fileInfo = processStubFile($location, $context); if ($fileInfo) { $fileInfos[] = $fileInfo; } } else if (is_dir($location)) { array_push($fileInfos, ...processDirectory($location, $context)); } else { echo "$location is neither a file nor a directory.\n"; exit(1); } } if ($printParameterStats) { $parameterStats = []; foreach ($fileInfos as $fileInfo) { foreach ($fileInfo->getAllFuncInfos() as $funcInfo) { foreach ($funcInfo->args as $argInfo) { if (!isset($parameterStats[$argInfo->name])) { $parameterStats[$argInfo->name] = 0; } $parameterStats[$argInfo->name]++; } } } arsort($parameterStats); echo json_encode($parameterStats, JSON_PRETTY_PRINT), "\n"; } /** @var array $classMap */ $classMap = []; /** @var array $funcMap */ $funcMap = []; /** @var array $aliasMap */ $aliasMap = []; /** @var array $undocumentedConstMap */ $undocumentedConstMap = []; /** @var array $undocumentedClassMap */ $undocumentedClassMap = []; /** @var array $undocumentedFuncMap */ $undocumentedFuncMap = []; /** @var array $methodSynopsisWarnings */ $methodSynopsisWarnings = []; foreach ($fileInfos as $fileInfo) { foreach ($fileInfo->getAllFuncInfos() as $funcInfo) { $funcMap[$funcInfo->name->__toString()] = $funcInfo; // TODO: Don't use aliasMap for methodsynopsis? if ($funcInfo->aliasType === "alias") { $aliasMap[$funcInfo->alias->__toString()] = $funcInfo; } } foreach ($fileInfo->classInfos as $classInfo) { $classMap[$classInfo->name->__toString()] = $classInfo; if ($classInfo->alias !== null) { $classMap[$classInfo->alias] = $classInfo; } } } if ($verify) { $errors = []; foreach ($funcMap as $aliasFunc) { if (!$aliasFunc->alias || $aliasFunc->aliasType !== "alias") { continue; } if (!isset($funcMap[$aliasFunc->alias->__toString()])) { $errors[] = "Aliased function {$aliasFunc->alias}() cannot be found"; continue; } if (!$aliasFunc->verify) { continue; } $aliasedFunc = $funcMap[$aliasFunc->alias->__toString()]; $aliasedArgs = $aliasedFunc->args; $aliasArgs = $aliasFunc->args; if ($aliasFunc->isInstanceMethod() !== $aliasedFunc->isInstanceMethod()) { if ($aliasFunc->isInstanceMethod()) { $aliasedArgs = array_slice($aliasedArgs, 1); } if ($aliasedFunc->isInstanceMethod()) { $aliasArgs = array_slice($aliasArgs, 1); } } array_map( function(?ArgInfo $aliasArg, ?ArgInfo $aliasedArg) use ($aliasFunc, $aliasedFunc, &$errors) { if ($aliasArg === null) { assert($aliasedArg !== null); $errors[] = "{$aliasFunc->name}(): Argument \$$aliasedArg->name of aliased function {$aliasedFunc->name}() is missing"; return null; } if ($aliasedArg === null) { $errors[] = "{$aliasedFunc->name}(): Argument \$$aliasArg->name of alias function {$aliasFunc->name}() is missing"; return null; } if ($aliasArg->name !== $aliasedArg->name) { $errors[] = "{$aliasFunc->name}(): Argument \$$aliasArg->name and argument \$$aliasedArg->name of aliased function {$aliasedFunc->name}() must have the same name"; return null; } if ($aliasArg->type != $aliasedArg->type) { $errors[] = "{$aliasFunc->name}(): Argument \$$aliasArg->name and argument \$$aliasedArg->name of aliased function {$aliasedFunc->name}() must have the same type"; } if ($aliasArg->defaultValue !== $aliasedArg->defaultValue) { $errors[] = "{$aliasFunc->name}(): Argument \$$aliasArg->name and argument \$$aliasedArg->name of aliased function {$aliasedFunc->name}() must have the same default value"; } }, $aliasArgs, $aliasedArgs ); $aliasedReturn = $aliasedFunc->return; $aliasReturn = $aliasFunc->return; if (!$aliasedFunc->name->isConstructor() && !$aliasFunc->name->isConstructor()) { $aliasedReturnType = $aliasedReturn->type ?? $aliasedReturn->phpDocType; $aliasReturnType = $aliasReturn->type ?? $aliasReturn->phpDocType; if ($aliasReturnType != $aliasedReturnType) { $errors[] = "{$aliasFunc->name}() and {$aliasedFunc->name}() must have the same return type"; } } $aliasedPhpDocReturnType = $aliasedReturn->phpDocType; $aliasPhpDocReturnType = $aliasReturn->phpDocType; if ($aliasedPhpDocReturnType != $aliasPhpDocReturnType && $aliasedPhpDocReturnType != $aliasReturn->type && $aliasPhpDocReturnType != $aliasedReturn->type) { $errors[] = "{$aliasFunc->name}() and {$aliasedFunc->name}() must have the same PHPDoc return type"; } } if (!empty($errors)) { throw new Exception("Errors found: " . implode("\n", $errors)); } } if ($replacePredefinedConstants || $verifyManual) { $predefinedConstants = replacePredefinedConstants($manualTarget, $context->allConstInfos, $undocumentedConstMap); if ($replacePredefinedConstants) { foreach ($predefinedConstants as $filename => $content) { reportFilePutContents($filename, $content); } } } if ($generateClassSynopses) { $classSynopsesDirectory = getcwd() . "/classsynopses"; $classSynopses = generateClassSynopses($classMap, $context->allConstInfos); if (!empty($classSynopses)) { if (!file_exists($classSynopsesDirectory)) { mkdir($classSynopsesDirectory); } foreach ($classSynopses as $filename => $content) { reportFilePutContents("$classSynopsesDirectory/$filename", $content); } } } if ($replaceClassSynopses || $verifyManual) { $classSynopses = replaceClassSynopses($manualTarget, $classMap, $context->allConstInfos, $undocumentedClassMap); if ($replaceClassSynopses) { foreach ($classSynopses as $filename => $content) { reportFilePutContents($filename, $content); } } } if ($generateMethodSynopses) { $methodSynopses = generateMethodSynopses($funcMap); if (!file_exists($manualTarget)) { mkdir($manualTarget); } foreach ($methodSynopses as $filename => $content) { $path = "$manualTarget/$filename"; if (!file_exists($path)) { if (!file_exists(dirname($path))) { mkdir(dirname($path)); } reportFilePutContents($path, $content); } } } if ($replaceMethodSynopses || $verifyManual) { $methodSynopses = replaceMethodSynopses($manualTarget, $funcMap, $verifyManual, $methodSynopsisWarnings, $undocumentedFuncMap); if ($replaceMethodSynopses) { foreach ($methodSynopses as $filename => $content) { reportFilePutContents($filename, $content); } } } if ($generateOptimizerInfo) { $filename = dirname(__FILE__, 2) . "/Zend/Optimizer/zend_func_infos.h"; $optimizerInfo = generateOptimizerInfo($funcMap); reportFilePutContents($filename, $optimizerInfo); } if ($verifyManual) { foreach ($undocumentedConstMap as $constName => $info) { if ($info->name instanceof ClassConstName || $info->isUndocumentable) { continue; } echo "Warning: Missing predefined constant for $constName\n"; } foreach ($methodSynopsisWarnings as $warning) { echo "Warning: $warning\n"; } foreach ($undocumentedClassMap as $className => $info) { if (!$info->isUndocumentable) { echo "Warning: Missing class synopsis for $className\n"; } } foreach ($undocumentedFuncMap as $functionName => $info) { if (!$info->isUndocumentable) { echo "Warning: Missing method synopsis for $functionName()\n"; } } } }