You are here

class Serializer in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/serializer/Serializer.php \Symfony\Component\Serializer\Serializer
  2. 8 vendor/zendframework/zend-diactoros/src/Request/Serializer.php \Zend\Diactoros\Request\Serializer
  3. 8 vendor/zendframework/zend-diactoros/src/Response/Serializer.php \Zend\Diactoros\Response\Serializer
  4. 8 vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Serializer.php \phpDocumentor\Reflection\DocBlock\Serializer
  5. 8 core/modules/rest/src/Plugin/views/style/Serializer.php \Drupal\rest\Plugin\views\style\Serializer
Same name and namespace in other branches
  1. 8.0 vendor/symfony/serializer/Serializer.php \Symfony\Component\Serializer\Serializer

Serializer serializes and deserializes data.

objects are turned into arrays by normalizers. arrays are turned into various output formats by encoders.

$serializer->serialize($obj, 'xml') $serializer->decode($data, 'xml') $serializer->denormalize($data, 'Class', 'xml')

@author Jordi Boggiano <j.boggiano@seld.be> @author Johannes M. Schmitt <schmittjoh@gmail.com> @author Lukas Kahwe Smith <smith@pooteeweet.org> @author Kévin Dunglas <dunglas@gmail.com>

Hierarchy

Expanded class hierarchy of Serializer

11 files declare their use of Serializer
ComplexDataNormalizerTest.php in core/modules/serialization/tests/src/Unit/Normalizer/ComplexDataNormalizerTest.php
Contains \Drupal\Tests\serialization\Unit\Normalizer\ComplexDataNormalizerTest.
CustomNormalizerTest.php in vendor/symfony/serializer/Tests/Normalizer/CustomNormalizerTest.php
EntityReferenceFieldItemNormalizerTest.php in core/modules/serialization/tests/src/Unit/Normalizer/EntityReferenceFieldItemNormalizerTest.php
Contains \Drupal\Tests\serialization\Unit\Normalizer\EntityReferenceFieldItemNormalizerTest.
FileNormalizeTest.php in core/modules/hal/src/Tests/FileNormalizeTest.php
Contains \Drupal\hal\Tests\FileNormalizeTest.
GetSetMethodNormalizerTest.php in vendor/symfony/serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php

... See full list

1 string reference to 'Serializer'
serialization.services.yml in core/modules/serialization/serialization.services.yml
core/modules/serialization/serialization.services.yml
1 service uses Serializer
serializer in core/modules/serialization/serialization.services.yml
Symfony\Component\Serializer\Serializer

File

vendor/symfony/serializer/Serializer.php, line 38

Namespace

Symfony\Component\Serializer
View source
class Serializer implements SerializerInterface, NormalizerInterface, DenormalizerInterface, EncoderInterface, DecoderInterface {

  /**
   * @var Encoder\ChainEncoder
   */
  protected $encoder;

  /**
   * @var Encoder\ChainDecoder
   */
  protected $decoder;

  /**
   * @var array
   */
  protected $normalizers = array();

  /**
   * @var array
   */
  protected $normalizerCache = array();

  /**
   * @var array
   */
  protected $denormalizerCache = array();
  public function __construct(array $normalizers = array(), array $encoders = array()) {
    foreach ($normalizers as $normalizer) {
      if ($normalizer instanceof SerializerAwareInterface) {
        $normalizer
          ->setSerializer($this);
      }
    }
    $this->normalizers = $normalizers;
    $decoders = array();
    $realEncoders = array();
    foreach ($encoders as $encoder) {
      if ($encoder instanceof SerializerAwareInterface) {
        $encoder
          ->setSerializer($this);
      }
      if ($encoder instanceof DecoderInterface) {
        $decoders[] = $encoder;
      }
      if ($encoder instanceof EncoderInterface) {
        $realEncoders[] = $encoder;
      }
    }
    $this->encoder = new ChainEncoder($realEncoders);
    $this->decoder = new ChainDecoder($decoders);
  }

  /**
   * {@inheritdoc}
   */
  public final function serialize($data, $format, array $context = array()) {
    if (!$this
      ->supportsEncoding($format)) {
      throw new UnexpectedValueException(sprintf('Serialization for the format %s is not supported', $format));
    }
    if ($this->encoder
      ->needsNormalization($format)) {
      $data = $this
        ->normalize($data, $format, $context);
    }
    return $this
      ->encode($data, $format, $context);
  }

  /**
   * {@inheritdoc}
   */
  public final function deserialize($data, $type, $format, array $context = array()) {
    if (!$this
      ->supportsDecoding($format)) {
      throw new UnexpectedValueException(sprintf('Deserialization for the format %s is not supported', $format));
    }
    $data = $this
      ->decode($data, $format, $context);
    return $this
      ->denormalize($data, $type, $format, $context);
  }

  /**
   * {@inheritdoc}
   */
  public function normalize($data, $format = null, array $context = array()) {

    // If a normalizer supports the given data, use it
    if ($normalizer = $this
      ->getNormalizer($data, $format)) {
      return $normalizer
        ->normalize($data, $format, $context);
    }
    if (null === $data || is_scalar($data)) {
      return $data;
    }
    if (is_object($data) && $this
      ->supportsNormalization($data, $format)) {
      return $this
        ->normalizeObject($data, $format, $context);
    }
    if ($data instanceof \Traversable) {
      $normalized = array();
      foreach ($data as $key => $val) {
        $normalized[$key] = $this
          ->normalize($val, $format, $context);
      }
      return $normalized;
    }
    if (is_object($data)) {
      return $this
        ->normalizeObject($data, $format, $context);
    }
    if (is_array($data)) {
      foreach ($data as $key => $val) {
        $data[$key] = $this
          ->normalize($val, $format, $context);
      }
      return $data;
    }
    throw new UnexpectedValueException(sprintf('An unexpected value could not be normalized: %s', var_export($data, true)));
  }

  /**
   * {@inheritdoc}
   */
  public function denormalize($data, $type, $format = null, array $context = array()) {
    return $this
      ->denormalizeObject($data, $type, $format, $context);
  }

  /**
   * {@inheritdoc}
   */
  public function supportsNormalization($data, $format = null) {
    return null !== $this
      ->getNormalizer($data, $format);
  }

  /**
   * {@inheritdoc}
   */
  public function supportsDenormalization($data, $type, $format = null) {
    return null !== $this
      ->getDenormalizer($data, $type, $format);
  }

  /**
   * Returns a matching normalizer.
   *
   * @param mixed  $data   Data to get the serializer for
   * @param string $format format name, present to give the option to normalizers to act differently based on formats
   *
   * @return NormalizerInterface|null
   */
  private function getNormalizer($data, $format) {
    if ($isObject = is_object($data)) {
      $class = get_class($data);
      if (isset($this->normalizerCache[$class][$format])) {
        return $this->normalizerCache[$class][$format];
      }
    }
    foreach ($this->normalizers as $normalizer) {
      if ($normalizer instanceof NormalizerInterface && $normalizer
        ->supportsNormalization($data, $format)) {
        if ($isObject) {
          $this->normalizerCache[$class][$format] = $normalizer;
        }
        return $normalizer;
      }
    }
  }

  /**
   * Returns a matching denormalizer.
   *
   * @param mixed  $data   data to restore
   * @param string $class  the expected class to instantiate
   * @param string $format format name, present to give the option to normalizers to act differently based on formats
   *
   * @return DenormalizerInterface|null
   */
  private function getDenormalizer($data, $class, $format) {
    if (isset($this->denormalizerCache[$class][$format])) {
      return $this->denormalizerCache[$class][$format];
    }
    foreach ($this->normalizers as $normalizer) {
      if ($normalizer instanceof DenormalizerInterface && $normalizer
        ->supportsDenormalization($data, $class, $format)) {
        $this->denormalizerCache[$class][$format] = $normalizer;
        return $normalizer;
      }
    }
  }

  /**
   * {@inheritdoc}
   */
  public final function encode($data, $format, array $context = array()) {
    return $this->encoder
      ->encode($data, $format, $context);
  }

  /**
   * {@inheritdoc}
   */
  public final function decode($data, $format, array $context = array()) {
    return $this->decoder
      ->decode($data, $format, $context);
  }

  /**
   * Normalizes an object into a set of arrays/scalars.
   *
   * @param object $object  object to normalize
   * @param string $format  format name, present to give the option to normalizers to act differently based on formats
   * @param array  $context The context data for this particular normalization
   *
   * @return array|string|bool|int|float|null
   *
   * @throws LogicException
   * @throws UnexpectedValueException
   */
  private function normalizeObject($object, $format, array $context = array()) {
    if (!$this->normalizers) {
      throw new LogicException('You must register at least one normalizer to be able to normalize objects.');
    }
    if ($normalizer = $this
      ->getNormalizer($object, $format)) {
      return $normalizer
        ->normalize($object, $format, $context);
    }
    throw new UnexpectedValueException(sprintf('Could not normalize object of type %s, no supporting normalizer found.', get_class($object)));
  }

  /**
   * Denormalizes data back into an object of the given class.
   *
   * @param mixed  $data    data to restore
   * @param string $class   the expected class to instantiate
   * @param string $format  format name, present to give the option to normalizers to act differently based on formats
   * @param array  $context The context data for this particular denormalization
   *
   * @return object
   *
   * @throws LogicException
   * @throws UnexpectedValueException
   */
  private function denormalizeObject($data, $class, $format, array $context = array()) {
    if (!$this->normalizers) {
      throw new LogicException('You must register at least one normalizer to be able to denormalize objects.');
    }
    if ($normalizer = $this
      ->getDenormalizer($data, $class, $format)) {
      return $normalizer
        ->denormalize($data, $class, $format, $context);
    }
    throw new UnexpectedValueException(sprintf('Could not denormalize object of type %s, no supporting normalizer found.', $class));
  }

  /**
   * {@inheritdoc}
   */
  public function supportsEncoding($format) {
    return $this->encoder
      ->supportsEncoding($format);
  }

  /**
   * {@inheritdoc}
   */
  public function supportsDecoding($format) {
    return $this->decoder
      ->supportsDecoding($format);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Serializer::$decoder protected property
Serializer::$denormalizerCache protected property
Serializer::$encoder protected property
Serializer::$normalizerCache protected property
Serializer::$normalizers protected property
Serializer::decode final public function Decodes a string into PHP data. Overrides DecoderInterface::decode
Serializer::denormalize public function Denormalizes data back into an object of the given class. Overrides DenormalizerInterface::denormalize
Serializer::denormalizeObject private function Denormalizes data back into an object of the given class.
Serializer::deserialize final public function Deserializes data into the given type. Overrides SerializerInterface::deserialize
Serializer::encode final public function Encodes data into the given format. Overrides EncoderInterface::encode
Serializer::getDenormalizer private function Returns a matching denormalizer.
Serializer::getNormalizer private function Returns a matching normalizer.
Serializer::normalize public function Normalizes an object into a set of arrays/scalars. Overrides NormalizerInterface::normalize
Serializer::normalizeObject private function Normalizes an object into a set of arrays/scalars.
Serializer::serialize final public function Serializes data in the appropriate format. Overrides SerializerInterface::serialize
Serializer::supportsDecoding public function Checks whether the deserializer can decode from given format. Overrides DecoderInterface::supportsDecoding
Serializer::supportsDenormalization public function Checks whether the given class is supported for denormalization by this normalizer. Overrides DenormalizerInterface::supportsDenormalization
Serializer::supportsEncoding public function Checks whether the serializer can encode to given format. Overrides EncoderInterface::supportsEncoding
Serializer::supportsNormalization public function Checks whether the given class is supported for normalization by this normalizer. Overrides NormalizerInterface::supportsNormalization
Serializer::__construct public function