Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. TraceableNormalizer.php

class TraceableNormalizer

Collects some data about normalization.

@author Mathias Arlaud <mathias.arlaud@gmail.com>

@final

Hierarchy

  • class \Symfony\Component\Serializer\Debug\TraceableNormalizer implements \Symfony\Component\Serializer\Normalizer\NormalizerInterface, \Symfony\Component\Serializer\Normalizer\DenormalizerInterface, \Symfony\Component\Serializer\SerializerAwareInterface, \Symfony\Component\Serializer\Normalizer\NormalizerAwareInterface, \Symfony\Component\Serializer\Normalizer\DenormalizerAwareInterface

Expanded class hierarchy of TraceableNormalizer

1 file declares its use of TraceableNormalizer
SerializerPass.php in vendor/symfony/serializer/DependencyInjection/SerializerPass.php

File

vendor/symfony/serializer/Debug/TraceableNormalizer.php, line 29

Namespace

Symfony\Component\Serializer\Debug
View source
class TraceableNormalizer implements NormalizerInterface, DenormalizerInterface, SerializerAwareInterface, NormalizerAwareInterface, DenormalizerAwareInterface {
    public function __construct(NormalizerInterface|DenormalizerInterface $normalizer, SerializerDataCollector $dataCollector, string $serializerName = 'default') {
    }
    public function getSupportedTypes(?string $format) : array {
        return $this->normalizer
            ->getSupportedTypes($format);
    }
    public function normalize(mixed $object, ?string $format = null, array $context = []) : array|string|int|float|bool|\ArrayObject|null {
        if (!$this->normalizer instanceof NormalizerInterface) {
            throw new \BadMethodCallException(\sprintf('The "%s()" method cannot be called as nested normalizer doesn\'t implements "%s".', __METHOD__, NormalizerInterface::class));
        }
        $startTime = microtime(true);
        $normalized = $this->normalizer
            ->normalize($object, $format, $context);
        $time = microtime(true) - $startTime;
        if ($traceId = $context[TraceableSerializer::DEBUG_TRACE_ID] ?? null) {
            $this->dataCollector
                ->collectNormalization($traceId, $this->normalizer::class, $time, $this->serializerName);
        }
        return $normalized;
    }
    public function supportsNormalization(mixed $data, ?string $format = null, array $context = []) : bool {
        if (!$this->normalizer instanceof NormalizerInterface) {
            return false;
        }
        return $this->normalizer
            ->supportsNormalization($data, $format, $context);
    }
    public function denormalize(mixed $data, string $type, ?string $format = null, array $context = []) : mixed {
        if (!$this->normalizer instanceof DenormalizerInterface) {
            throw new \BadMethodCallException(\sprintf('The "%s()" method cannot be called as nested normalizer doesn\'t implements "%s".', __METHOD__, DenormalizerInterface::class));
        }
        $startTime = microtime(true);
        $denormalized = $this->normalizer
            ->denormalize($data, $type, $format, $context);
        $time = microtime(true) - $startTime;
        if ($traceId = $context[TraceableSerializer::DEBUG_TRACE_ID] ?? null) {
            $this->dataCollector
                ->collectDenormalization($traceId, $this->normalizer::class, $time, $this->serializerName);
        }
        return $denormalized;
    }
    public function supportsDenormalization(mixed $data, string $type, ?string $format = null, array $context = []) : bool {
        if (!$this->normalizer instanceof DenormalizerInterface) {
            return false;
        }
        return $this->normalizer
            ->supportsDenormalization($data, $type, $format, $context);
    }
    public function setSerializer(SerializerInterface $serializer) : void {
        if (!$this->normalizer instanceof SerializerAwareInterface) {
            return;
        }
        $this->normalizer
            ->setSerializer($serializer);
    }
    public function setNormalizer(NormalizerInterface $normalizer) : void {
        if (!$this->normalizer instanceof NormalizerAwareInterface) {
            return;
        }
        $this->normalizer
            ->setNormalizer($normalizer);
    }
    public function setDenormalizer(DenormalizerInterface $denormalizer) : void {
        if (!$this->normalizer instanceof DenormalizerAwareInterface) {
            return;
        }
        $this->normalizer
            ->setDenormalizer($denormalizer);
    }
    
    /**
     * Proxies all method calls to the original normalizer.
     */
    public function __call(string $method, array $arguments) : mixed {
        return $this->normalizer
            ->{$method}(...$arguments);
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
DenormalizerInterface::COLLECT_DENORMALIZATION_ERRORS public constant
TraceableNormalizer::denormalize public function Denormalizes data back into an object of the given class. Overrides DenormalizerInterface::denormalize
TraceableNormalizer::getSupportedTypes public function Returns the types potentially supported by this normalizer. Overrides NormalizerInterface::getSupportedTypes
TraceableNormalizer::normalize public function Normalizes data into a set of arrays/scalars. Overrides NormalizerInterface::normalize
TraceableNormalizer::setDenormalizer public function Sets the owning Denormalizer object. Overrides DenormalizerAwareInterface::setDenormalizer
TraceableNormalizer::setNormalizer public function Sets the owning Normalizer object. Overrides NormalizerAwareInterface::setNormalizer
TraceableNormalizer::setSerializer public function Sets the owning Serializer object. Overrides SerializerAwareInterface::setSerializer
TraceableNormalizer::supportsDenormalization public function Checks whether the given class is supported for denormalization by this normalizer. Overrides DenormalizerInterface::supportsDenormalization
TraceableNormalizer::supportsNormalization public function Checks whether the given class is supported for normalization by this normalizer. Overrides NormalizerInterface::supportsNormalization
TraceableNormalizer::__call public function Proxies all method calls to the original normalizer.
TraceableNormalizer::__construct public function
RSS feed
Powered by Drupal