123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\VarExporter;
- use Symfony\Component\VarExporter\Hydrator as PublicHydrator;
- use Symfony\Component\VarExporter\Internal\Hydrator;
- use Symfony\Component\VarExporter\Internal\LazyObjectRegistry as Registry;
- use Symfony\Component\VarExporter\Internal\LazyObjectState;
- use Symfony\Component\VarExporter\Internal\LazyObjectTrait;
- trait LazyProxyTrait
- {
- use LazyObjectTrait;
- /**
- * Creates a lazy-loading virtual proxy.
- *
- * @param \Closure():object $initializer Returns the proxied object
- * @param static|null $instance
- */
- public static function createLazyProxy(\Closure $initializer, object $instance = null): static
- {
- if (self::class !== $class = $instance ? $instance::class : static::class) {
- $skippedProperties = ["\0".self::class."\0lazyObjectState" => true];
- } elseif (\defined($class.'::LAZY_OBJECT_PROPERTY_SCOPES')) {
- Hydrator::$propertyScopes[$class] ??= $class::LAZY_OBJECT_PROPERTY_SCOPES;
- }
- $instance ??= (Registry::$classReflectors[$class] ??= new \ReflectionClass($class))->newInstanceWithoutConstructor();
- $instance->lazyObjectState = new LazyObjectState($initializer);
- foreach (Registry::$classResetters[$class] ??= Registry::getClassResetters($class) as $reset) {
- $reset($instance, $skippedProperties ??= []);
- }
- return $instance;
- }
- /**
- * Returns whether the object is initialized.
- *
- * @param $partial Whether partially initialized objects should be considered as initialized
- */
- public function isLazyObjectInitialized(bool $partial = false): bool
- {
- return !isset($this->lazyObjectState) || isset($this->lazyObjectState->realInstance) || Registry::$noInitializerState === $this->lazyObjectState->initializer;
- }
- /**
- * Forces initialization of a lazy object and returns it.
- */
- public function initializeLazyObject(): parent
- {
- if ($state = $this->lazyObjectState ?? null) {
- return $state->realInstance ??= ($state->initializer)();
- }
- return $this;
- }
- /**
- * @return bool Returns false when the object cannot be reset, ie when it's not a lazy object
- */
- public function resetLazyObject(): bool
- {
- if (!isset($this->lazyObjectState) || Registry::$noInitializerState === $this->lazyObjectState->initializer) {
- return false;
- }
- unset($this->lazyObjectState->realInstance);
- return true;
- }
- public function &__get($name): mixed
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
- $instance = $this;
- if ([$class, , $readonlyScope] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name);
- if (null === $scope || isset($propertyScopes["\0$scope\0$name"])) {
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- }
- $parent = 2;
- goto get_in_scope;
- }
- }
- $parent = (Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['get'];
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- } else {
- if (2 === $parent) {
- return parent::__get($name);
- }
- $value = parent::__get($name);
- return $value;
- }
- if (!$parent && null === $class && !\array_key_exists($name, (array) $instance)) {
- $frame = debug_backtrace(\DEBUG_BACKTRACE_IGNORE_ARGS, 1)[0];
- trigger_error(sprintf('Undefined property: %s::$%s in %s on line %s', $instance::class, $name, $frame['file'], $frame['line']), \E_USER_NOTICE);
- }
- get_in_scope:
- try {
- if (null === $scope) {
- if (null === $readonlyScope && 1 !== $parent) {
- return $instance->$name;
- }
- $value = $instance->$name;
- return $value;
- }
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
- return $accessor['get']($instance, $name, null !== $readonlyScope || 1 === $parent);
- } catch (\Error $e) {
- if (\Error::class !== $e::class || !str_starts_with($e->getMessage(), 'Cannot access uninitialized non-nullable property')) {
- throw $e;
- }
- try {
- if (null === $scope) {
- $instance->$name = [];
- return $instance->$name;
- }
- $accessor['set']($instance, $name, []);
- return $accessor['get']($instance, $name, null !== $readonlyScope || 1 === $parent);
- } catch (\Error) {
- throw $e;
- }
- }
- }
- public function __set($name, $value): void
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
- $instance = $this;
- if ([$class, , $readonlyScope] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name, $readonlyScope);
- if ($readonlyScope === $scope || isset($propertyScopes["\0$scope\0$name"])) {
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- }
- goto set_in_scope;
- }
- }
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- } elseif ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['set']) {
- parent::__set($name, $value);
- return;
- }
- set_in_scope:
- if (null === $scope) {
- $instance->$name = $value;
- } else {
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
- $accessor['set']($instance, $name, $value);
- }
- }
- public function __isset($name): bool
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
- $instance = $this;
- if ([$class] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name);
- if (null === $scope || isset($propertyScopes["\0$scope\0$name"])) {
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- }
- goto isset_in_scope;
- }
- }
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- } elseif ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['isset']) {
- return parent::__isset($name);
- }
- isset_in_scope:
- if (null === $scope) {
- return isset($instance->$name);
- }
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
- return $accessor['isset']($instance, $name);
- }
- public function __unset($name): void
- {
- $propertyScopes = Hydrator::$propertyScopes[$this::class] ??= Hydrator::getPropertyScopes($this::class);
- $scope = null;
- $instance = $this;
- if ([$class, , $readonlyScope] = $propertyScopes[$name] ?? null) {
- $scope = Registry::getScope($propertyScopes, $class, $name, $readonlyScope);
- if ($readonlyScope === $scope || isset($propertyScopes["\0$scope\0$name"])) {
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- }
- goto unset_in_scope;
- }
- }
- if ($state = $this->lazyObjectState ?? null) {
- $instance = $state->realInstance ??= ($state->initializer)();
- } elseif ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['unset']) {
- parent::__unset($name);
- return;
- }
- unset_in_scope:
- if (null === $scope) {
- unset($instance->$name);
- } else {
- $accessor = Registry::$classAccessors[$scope] ??= Registry::getClassAccessors($scope);
- $accessor['unset']($instance, $name);
- }
- }
- public function __clone(): void
- {
- if (!isset($this->lazyObjectState)) {
- if ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['clone']) {
- parent::__clone();
- }
- return;
- }
- $this->lazyObjectState = clone $this->lazyObjectState;
- if (isset($this->lazyObjectState->realInstance)) {
- $this->lazyObjectState->realInstance = clone $this->lazyObjectState->realInstance;
- }
- }
- public function __serialize(): array
- {
- $class = self::class;
- $state = $this->lazyObjectState ?? null;
- if (!$state && (Registry::$parentMethods[$class] ??= Registry::getParentMethods($class))['serialize']) {
- $properties = parent::__serialize();
- } else {
- $properties = (array) $this;
- if ($state) {
- unset($properties["\0$class\0lazyObjectState"]);
- $properties["\0$class\0lazyObjectReal"] = $state->realInstance ??= ($state->initializer)();
- }
- }
- if ($state || Registry::$parentMethods[$class]['serialize'] || !Registry::$parentMethods[$class]['sleep']) {
- return $properties;
- }
- $scope = get_parent_class($class);
- $data = [];
- foreach (parent::__sleep() as $name) {
- $value = $properties[$k = $name] ?? $properties[$k = "\0*\0$name"] ?? $properties[$k = "\0$scope\0$name"] ?? $k = null;
- if (null === $k) {
- trigger_error(sprintf('serialize(): "%s" returned as member variable from __sleep() but does not exist', $name), \E_USER_NOTICE);
- } else {
- $data[$k] = $value;
- }
- }
- return $data;
- }
- public function __unserialize(array $data): void
- {
- $class = self::class;
- if ($instance = $data["\0$class\0lazyObjectReal"] ?? null) {
- unset($data["\0$class\0lazyObjectReal"]);
- foreach (Registry::$classResetters[$class] ??= Registry::getClassResetters($class) as $reset) {
- $reset($this, $data);
- }
- if ($data) {
- PublicHydrator::hydrate($this, $data);
- }
- $this->lazyObjectState = new LazyObjectState(Registry::$noInitializerState ??= static fn () => throw new \LogicException('Lazy proxy has no initializer.'));
- $this->lazyObjectState->realInstance = $instance;
- } elseif ((Registry::$parentMethods[$class] ??= Registry::getParentMethods($class))['unserialize']) {
- parent::__unserialize($data);
- } else {
- PublicHydrator::hydrate($this, $data);
- if (Registry::$parentMethods[$class]['wakeup']) {
- parent::__wakeup();
- }
- }
- }
- public function __destruct()
- {
- if (isset($this->lazyObjectState)) {
- return;
- }
- if ((Registry::$parentMethods[self::class] ??= Registry::getParentMethods(self::class))['destruct']) {
- parent::__destruct();
- }
- }
- }
|