Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
opt
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
symfony
/
serializer
/
Debug
/
File Content:
TraceableEncoder.php
<?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 WPToolkitDependenciesIsolationPrefix\Symfony\Component\Serializer\Debug; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\Serializer\DataCollector\SerializerDataCollector; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\Serializer\Encoder\DecoderInterface; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\Serializer\Encoder\EncoderInterface; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\Serializer\Encoder\NormalizationAwareInterface; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\Serializer\SerializerAwareInterface; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\Serializer\SerializerInterface; /** * Collects some data about encoding. * * @author Mathias Arlaud <mathias.arlaud@gmail.com> * * @final */ class TraceableEncoder implements EncoderInterface, DecoderInterface, SerializerAwareInterface { public function __construct(private EncoderInterface|DecoderInterface $encoder, private SerializerDataCollector $dataCollector, private readonly string $serializerName = 'default') { } 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, $this->serializerName); } 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, $this->serializerName); } 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); } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
TraceableEncoder.php
3876 bytes
0644
TraceableNormalizer.php
4876 bytes
0644
TraceableSerializer.php
6826 bytes
0644
N4ST4R_ID | Naxtarrr