LDAPAccountManager/lam/lib/3rdParty/composer/spomky-labs/cbor-php/src/OtherObject/SinglePrecisionFloatObject.php

90 lines
2.2 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\OtherObject;
use Assert\Assertion;
use CBOR\OtherObject as Base;
use InvalidArgumentException;
final class SinglePrecisionFloatObject extends Base
{
public static function supportedAdditionalInformation(): array
{
return [26];
}
public static function createFromLoadedData(int $additionalInformation, ?string $data): Base
{
return new self($additionalInformation, $data);
}
/**
* @return SinglePrecisionFloatObject
*/
public static function create(string $value): self
{
if (4 !== mb_strlen($value, '8bit')) {
throw new InvalidArgumentException('The value is not a valid single precision floating point');
}
return new self(26, $value);
}
public function getNormalizedData(bool $ignoreTags = false)
{
$data = $this->data;
Assertion::string($data, 'Invalid data');
$single = gmp_intval(gmp_init(bin2hex($data), 16));
$exp = ($single >> 23) & 0xff;
$mant = $single & 0x7fffff;
if (0 === $exp) {
$val = $mant * 2 ** (-(126 + 23));
} elseif (0b11111111 !== $exp) {
$val = ($mant + (1 << 23)) * 2 ** ($exp - (127 + 23));
} else {
$val = 0 === $mant ? INF : NAN;
}
return 1 === ($single >> 31) ? -$val : $val;
}
public function getExponent(): int
{
$data = $this->data;
Assertion::string($data, 'Invalid data');
$single = gmp_intval(gmp_init(bin2hex($data), 16));
return ($single >> 23) & 0xff;
}
public function getMantissa(): int
{
$data = $this->data;
Assertion::string($data, 'Invalid data');
$single = gmp_intval(gmp_init(bin2hex($data), 16));
return $single & 0x7fffff;
}
public function getSign(): int
{
$data = $this->data;
Assertion::string($data, 'Invalid data');
$single = gmp_intval(gmp_init(bin2hex($data), 16));
return 1 === ($single >> 31) ? -1 : 1;
}
}