first commit

This commit is contained in:
2024-07-15 12:33:27 +02:00
commit ce50ae282b
22084 changed files with 2623791 additions and 0 deletions

View File

@@ -0,0 +1,109 @@
<?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\Serializer\Debug;
use Symfony\Component\Serializer\DataCollector\SerializerDataCollector;
use Symfony\Component\Serializer\Encoder\DecoderInterface;
use Symfony\Component\Serializer\Encoder\EncoderInterface;
use Symfony\Component\Serializer\Encoder\NormalizationAwareInterface;
use Symfony\Component\Serializer\SerializerAwareInterface;
use Symfony\Component\Serializer\SerializerInterface;
/**
* Collects some data about encoding.
*
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
*
* @internal
*/
class TraceableEncoder implements EncoderInterface, DecoderInterface, SerializerAwareInterface
{
public function __construct(
private EncoderInterface|DecoderInterface $encoder,
private SerializerDataCollector $dataCollector,
) {
}
public function encode(mixed $data, string $format, array $context = []): string
{
if (!$this->encoder instanceof EncoderInterface) {
throw new \BadMethodCallException(sprintf('The "%s()" method cannot be called as nested encoder doesn\'t implements "%s".', __METHOD__, EncoderInterface::class));
}
$startTime = microtime(true);
$encoded = $this->encoder->encode($data, $format, $context);
$time = microtime(true) - $startTime;
if ($traceId = ($context[TraceableSerializer::DEBUG_TRACE_ID] ?? null)) {
$this->dataCollector->collectEncoding($traceId, $this->encoder::class, $time);
}
return $encoded;
}
public function supportsEncoding(string $format, array $context = []): bool
{
if (!$this->encoder instanceof EncoderInterface) {
return false;
}
return $this->encoder->supportsEncoding($format, $context);
}
public function decode(string $data, string $format, array $context = []): mixed
{
if (!$this->encoder instanceof DecoderInterface) {
throw new \BadMethodCallException(sprintf('The "%s()" method cannot be called as nested encoder doesn\'t implements "%s".', __METHOD__, DecoderInterface::class));
}
$startTime = microtime(true);
$encoded = $this->encoder->decode($data, $format, $context);
$time = microtime(true) - $startTime;
if ($traceId = ($context[TraceableSerializer::DEBUG_TRACE_ID] ?? null)) {
$this->dataCollector->collectDecoding($traceId, $this->encoder::class, $time);
}
return $encoded;
}
public function supportsDecoding(string $format, array $context = []): bool
{
if (!$this->encoder instanceof DecoderInterface) {
return false;
}
return $this->encoder->supportsDecoding($format, $context);
}
public function setSerializer(SerializerInterface $serializer): void
{
if (!$this->encoder instanceof SerializerAwareInterface) {
return;
}
$this->encoder->setSerializer($serializer);
}
public function needsNormalization(): bool
{
return !$this->encoder instanceof NormalizationAwareInterface;
}
/**
* Proxies all method calls to the original encoder.
*/
public function __call(string $method, array $arguments): mixed
{
return $this->encoder->{$method}(...$arguments);
}
}

View File

@@ -0,0 +1,147 @@
<?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\Serializer\Debug;
use Symfony\Component\Serializer\DataCollector\SerializerDataCollector;
use Symfony\Component\Serializer\Normalizer\CacheableSupportsMethodInterface;
use Symfony\Component\Serializer\Normalizer\DenormalizerAwareInterface;
use Symfony\Component\Serializer\Normalizer\DenormalizerInterface;
use Symfony\Component\Serializer\Normalizer\NormalizerAwareInterface;
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
use Symfony\Component\Serializer\SerializerAwareInterface;
use Symfony\Component\Serializer\SerializerInterface;
/**
* Collects some data about normalization.
*
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
*
* @internal
*/
class TraceableNormalizer implements NormalizerInterface, DenormalizerInterface, SerializerAwareInterface, NormalizerAwareInterface, DenormalizerAwareInterface, CacheableSupportsMethodInterface
{
public function __construct(
private NormalizerInterface|DenormalizerInterface $normalizer,
private SerializerDataCollector $dataCollector,
) {
if (!method_exists($normalizer, 'getSupportedTypes')) {
trigger_deprecation('symfony/serializer', '6.3', 'Not implementing the "NormalizerInterface::getSupportedTypes()" in "%s" is deprecated.', get_debug_type($normalizer));
}
}
public function getSupportedTypes(?string $format): array
{
// @deprecated remove condition in 7.0
if (!method_exists($this->normalizer, 'getSupportedTypes')) {
return ['*' => $this->normalizer instanceof CacheableSupportsMethodInterface && $this->normalizer->hasCacheableSupportsMethod()];
}
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);
}
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);
}
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);
}
/**
* @deprecated since Symfony 6.3, use "getSupportedTypes()" instead
*/
public function hasCacheableSupportsMethod(): bool
{
trigger_deprecation('symfony/serializer', '6.3', 'The "%s()" method is deprecated, implement "%s::getSupportedTypes()" instead.', __METHOD__, get_debug_type($this->normalizer));
return $this->normalizer instanceof CacheableSupportsMethodInterface && $this->normalizer->hasCacheableSupportsMethod();
}
/**
* Proxies all method calls to the original normalizer.
*/
public function __call(string $method, array $arguments): mixed
{
return $this->normalizer->{$method}(...$arguments);
}
}

View File

@@ -0,0 +1,194 @@
<?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\Serializer\Debug;
use Symfony\Component\Serializer\DataCollector\SerializerDataCollector;
use Symfony\Component\Serializer\Encoder\DecoderInterface;
use Symfony\Component\Serializer\Encoder\EncoderInterface;
use Symfony\Component\Serializer\Normalizer\CacheableSupportsMethodInterface;
use Symfony\Component\Serializer\Normalizer\DenormalizerInterface;
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
use Symfony\Component\Serializer\SerializerInterface;
/**
* Collects some data about serialization.
*
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
*
* @internal
*/
class TraceableSerializer implements SerializerInterface, NormalizerInterface, DenormalizerInterface, EncoderInterface, DecoderInterface
{
public const DEBUG_TRACE_ID = 'debug_trace_id';
public function __construct(
private SerializerInterface&NormalizerInterface&DenormalizerInterface&EncoderInterface&DecoderInterface $serializer,
private SerializerDataCollector $dataCollector,
) {
if (!method_exists($serializer, 'getSupportedTypes')) {
trigger_deprecation('symfony/serializer', '6.3', 'Not implementing the "NormalizerInterface::getSupportedTypes()" in "%s" is deprecated.', get_debug_type($serializer));
}
}
public function serialize(mixed $data, string $format, array $context = []): string
{
$context[self::DEBUG_TRACE_ID] = $traceId = uniqid();
$startTime = microtime(true);
$result = $this->serializer->serialize($data, $format, $context);
$time = microtime(true) - $startTime;
$caller = $this->getCaller(__FUNCTION__, SerializerInterface::class);
$this->dataCollector->collectSerialize($traceId, $data, $format, $context, $time, $caller);
return $result;
}
public function deserialize(mixed $data, string $type, string $format, array $context = []): mixed
{
$context[self::DEBUG_TRACE_ID] = $traceId = uniqid();
$startTime = microtime(true);
$result = $this->serializer->deserialize($data, $type, $format, $context);
$time = microtime(true) - $startTime;
$caller = $this->getCaller(__FUNCTION__, SerializerInterface::class);
$this->dataCollector->collectDeserialize($traceId, $data, $type, $format, $context, $time, $caller);
return $result;
}
public function normalize(mixed $object, ?string $format = null, array $context = []): array|string|int|float|bool|\ArrayObject|null
{
$context[self::DEBUG_TRACE_ID] = $traceId = uniqid();
$startTime = microtime(true);
$result = $this->serializer->normalize($object, $format, $context);
$time = microtime(true) - $startTime;
$caller = $this->getCaller(__FUNCTION__, NormalizerInterface::class);
$this->dataCollector->collectNormalize($traceId, $object, $format, $context, $time, $caller);
return $result;
}
public function denormalize(mixed $data, string $type, ?string $format = null, array $context = []): mixed
{
$context[self::DEBUG_TRACE_ID] = $traceId = uniqid();
$startTime = microtime(true);
$result = $this->serializer->denormalize($data, $type, $format, $context);
$time = microtime(true) - $startTime;
$caller = $this->getCaller(__FUNCTION__, DenormalizerInterface::class);
$this->dataCollector->collectDenormalize($traceId, $data, $type, $format, $context, $time, $caller);
return $result;
}
public function encode(mixed $data, string $format, array $context = []): string
{
$context[self::DEBUG_TRACE_ID] = $traceId = uniqid();
$startTime = microtime(true);
$result = $this->serializer->encode($data, $format, $context);
$time = microtime(true) - $startTime;
$caller = $this->getCaller(__FUNCTION__, EncoderInterface::class);
$this->dataCollector->collectEncode($traceId, $data, $format, $context, $time, $caller);
return $result;
}
public function decode(string $data, string $format, array $context = []): mixed
{
$context[self::DEBUG_TRACE_ID] = $traceId = uniqid();
$startTime = microtime(true);
$result = $this->serializer->decode($data, $format, $context);
$time = microtime(true) - $startTime;
$caller = $this->getCaller(__FUNCTION__, DecoderInterface::class);
$this->dataCollector->collectDecode($traceId, $data, $format, $context, $time, $caller);
return $result;
}
public function getSupportedTypes(?string $format): array
{
// @deprecated remove condition in 7.0
if (!method_exists($this->serializer, 'getSupportedTypes')) {
return ['*' => $this->serializer instanceof CacheableSupportsMethodInterface && $this->serializer->hasCacheableSupportsMethod()];
}
return $this->serializer->getSupportedTypes($format);
}
public function supportsNormalization(mixed $data, ?string $format = null, array $context = []): bool
{
return $this->serializer->supportsNormalization($data, $format, $context);
}
public function supportsDenormalization(mixed $data, string $type, ?string $format = null, array $context = []): bool
{
return $this->serializer->supportsDenormalization($data, $type, $format, $context);
}
public function supportsEncoding(string $format, array $context = []): bool
{
return $this->serializer->supportsEncoding($format, $context);
}
public function supportsDecoding(string $format, array $context = []): bool
{
return $this->serializer->supportsDecoding($format, $context);
}
/**
* Proxies all method calls to the original serializer.
*/
public function __call(string $method, array $arguments): mixed
{
return $this->serializer->{$method}(...$arguments);
}
private function getCaller(string $method, string $interface): array
{
$trace = debug_backtrace(\DEBUG_BACKTRACE_IGNORE_ARGS, 8);
$file = $trace[0]['file'];
$line = $trace[0]['line'];
for ($i = 1; $i < 8; ++$i) {
if (isset($trace[$i]['class'], $trace[$i]['function'])
&& $method === $trace[$i]['function']
&& is_a($trace[$i]['class'], $interface, true)
) {
$file = $trace[$i]['file'];
$line = $trace[$i]['line'];
break;
}
}
$name = str_replace('\\', '/', $file);
$name = substr($name, strrpos($name, '/') + 1);
return compact('name', 'file', 'line');
}
}