2021-03-03 13:59:55 -08:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 https://rewiv.com sikofitt@gmail.com
|
|
|
|
*
|
|
|
|
* This file is a part of Olive BBS
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the
|
|
|
|
* terms of the Mozilla Public License, v. 2.0.
|
|
|
|
*
|
|
|
|
* If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* ___ ___ ___
|
|
|
|
* ( ).-. ( ) ( )
|
|
|
|
* .--. | |( __)___ ___ .--. | |.-. | |.-. .--.
|
|
|
|
* / \| |(''"( )( / \| / \| / \ / _ \
|
|
|
|
* | .-. | | | | | | | | .-. | .-. | .-. |. .' `. ;
|
|
|
|
* | | | | | | | | | | | | | | | | | | | || ' | |
|
|
|
|
* | | | | | | | | | | | |/ | | | | | | |_\_`.(___)
|
|
|
|
* | | | | | | | | | | | ' _.| | | | | | ( ). '.
|
|
|
|
* | ' | | | | | ' ' ; | .'.-| ' | | ' | || | `\ |
|
|
|
|
* ' `-' | | | | \ `' /' `-' ' `-' ;' `-' ; ; '._,' '
|
|
|
|
* `.__.(___(___) '_.' `.__.' `.__. `.__. '.___.'
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Olivebbs\Map;
|
|
|
|
|
2022-05-11 16:28:23 -07:00
|
|
|
use Olivebbs\Map\Enum\KeyType;
|
|
|
|
use Olivebbs\Map\Enum\ValueType;
|
2021-03-03 13:59:55 -08:00
|
|
|
use Olivebbs\Map\Exception\ImmutableMapException;
|
|
|
|
|
|
|
|
class ImmutableMap extends GenericMap
|
|
|
|
{
|
|
|
|
private function __construct(
|
2022-05-11 16:28:23 -07:00
|
|
|
KeyType $keyType,
|
|
|
|
object|string $valueType,
|
2022-05-11 13:17:06 -07:00
|
|
|
array $values
|
2021-03-03 13:59:55 -08:00
|
|
|
) {
|
2022-05-11 13:17:06 -07:00
|
|
|
parent::__construct(keyType: $keyType, valueType: $valueType);
|
2021-03-03 13:59:55 -08:00
|
|
|
|
2022-05-11 13:17:06 -07:00
|
|
|
$this->assertInitialValues(initialValues: $values);
|
|
|
|
$this->map->putAll(values: $values);
|
2021-03-03 13:59:55 -08:00
|
|
|
}
|
|
|
|
|
2022-05-11 13:17:06 -07:00
|
|
|
public function offsetSet(mixed $offset, mixed $value): void
|
2021-03-03 13:59:55 -08:00
|
|
|
{
|
2022-05-11 13:17:06 -07:00
|
|
|
throw new ImmutableMapException(message: sprintf('Cannot change values in %s', __CLASS__));
|
2021-03-03 13:59:55 -08:00
|
|
|
}
|
|
|
|
|
2022-05-11 13:17:06 -07:00
|
|
|
public function offsetUnset(mixed $offset): void
|
2021-03-03 13:59:55 -08:00
|
|
|
{
|
2022-05-11 13:17:06 -07:00
|
|
|
throw new ImmutableMapException(message: sprintf('Cannot unset values in %s', __CLASS__));
|
2021-03-03 13:59:55 -08:00
|
|
|
}
|
|
|
|
|
2022-05-11 16:28:23 -07:00
|
|
|
public static function create(KeyType $keyType, ValueType $valueType, array $values): static
|
2021-03-03 13:59:55 -08:00
|
|
|
{
|
2022-05-11 13:17:06 -07:00
|
|
|
return new static(keyType: $keyType, valueType: $valueType, values: $values);
|
2021-03-03 13:59:55 -08:00
|
|
|
}
|
|
|
|
}
|