JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "ValueDumper.php"

Full Path: /home/u735268861/domains/palsarh.in/public_html/vendor/cuyz/valinor/src/Utility/ValueDumper.php
File size: 3.45 KB
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace CuyZ\Valinor\Utility;

use BackedEnum;
use CuyZ\Valinor\Utility\String\StringCutter;
use DateTimeInterface;
use Generator;
use UnitEnum;

use function implode;
use function is_array;
use function is_bool;
use function is_float;
use function is_int;
use function is_iterable;
use function is_object;
use function is_string;
use function str_contains;
use function str_replace;
use function strlen;

/** @internal */
final class ValueDumper
{
    private const MAX_STRING_LENGTH = 50;
    private const MAX_ARRAY_ENTRIES = 5;
    private const DATE_FORMAT = 'Y/m/d H:i:s';

    public static function dump(mixed $value): string
    {
        return self::doDump($value);
    }

    private static function doDump(mixed $value, bool $goDeeper = true): string
    {
        if ($value === null) {
            return 'null';
        }

        if (is_bool($value)) {
            return $value ? 'true' : 'false';
        }

        if (is_int($value) || is_float($value)) {
            return (string)$value;
        }

        if (is_string($value)) {
            $value = self::crop($value);

            if (str_contains($value, "'") && str_contains($value, '"')) {
                return "'" . str_replace("'", "\'", $value) . "'";
            }

            if (str_contains($value, "'")) {
                return '"' . $value . '"';
            }

            return "'" . $value . "'";
        }

        if ($value instanceof BackedEnum) {
            return is_string($value->value)
                ? "'$value->value'"
                : (string)$value->value;
        }

        if ($value instanceof UnitEnum) {
            return "'$value->name'";
        }

        if ($value instanceof DateTimeInterface) {
            return $value->format(self::DATE_FORMAT);
        }

        if (is_iterable($value) && ! $value instanceof Generator) {
            /** @var iterable<string|int, mixed> $value */
            if (is_array($value)) {
                $type = 'array';
            } else {
                $type = 'iterable';
            }

            $values = self::listValues($value);

            if (empty($values)) {
                return "$type (empty)";
            }

            if (! $goDeeper) {
                return "$type{…}";
            }

            return "$type{" . implode(', ', $values) . '}';
        }

        if (is_object($value)) {
            return 'object(' . $value::class . ')';
        }

        // @codeCoverageIgnoreStart
        return 'unknown';
        // @codeCoverageIgnoreEnd
    }

    /**
     * @param iterable<string|int, mixed> $iterable
     * @return array<mixed>
     */
    private static function listValues(iterable $iterable): array
    {
        $values = [];
        $index = 0;

        foreach ($iterable as $key => $value) {
            $values[] = "$key: " . self::doDump($value, false);

            if ($index++ >= self::MAX_ARRAY_ENTRIES) {
                $values[] = '…';
                break;
            }
        }

        return $values;
    }

    private static function crop(string $string): string
    {
        if (strlen($string) <= self::MAX_STRING_LENGTH) {
            return $string;
        }

        $string = StringCutter::cut($string, self::MAX_STRING_LENGTH + 1);

        for ($i = strlen($string) - 1; $i > 10; $i--) {
            if ($string[$i] === ' ') {
                return StringCutter::cut($string, $i) . '…';
            }
        }

        return $string . '…';
    }
}