LDAPAccountManager/lam/lib/3rdParty/composer/spomky-labs/cbor-php/src/Tag/TagObjectManager.php

54 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
/*
* The MIT License (MIT)
*
* Copyright (c) 2018 Spomky-Labs
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace CBOR\Tag;
use Assert\Assertion;
use CBOR\CBORObject;
use CBOR\TagObject;
use InvalidArgumentException;
class TagObjectManager
{
/**
* @var string[]
*/
private $classes = [];
public function add(string $class): void
{
if ($class::getTagId() < 0) {
throw new InvalidArgumentException('Invalid tag ID.');
}
$this->classes[$class::getTagId()] = $class;
}
public function getClassForValue(int $value): string
{
return \array_key_exists($value, $this->classes) ? $this->classes[$value] : GenericTag::class;
}
public function createObjectForValue(int $additionalInformation, ?string $data, CBORObject $object): TagObject
{
$value = $additionalInformation;
if ($additionalInformation >= 24) {
Assertion::string($data, 'Invalid data');
$value = gmp_intval(gmp_init(bin2hex($data), 16));
}
/** @var TagObject $class */
$class = $this->getClassForValue($value);
return $class::createFromLoadedData($additionalInformation, $data, $object);
}
}