* @phpstan-implements IteratorAggregate * @final */ class IndefiniteLengthMapObject extends AbstractCBORObject implements IteratorAggregate, Normalizable, ArrayAccess { private const MAJOR_TYPE = self::MAJOR_TYPE_MAP; private const ADDITIONAL_INFORMATION = self::LENGTH_INDEFINITE; /** @var MapItem[] */ private array $data = []; public function __construct() { parent::__construct(self::MAJOR_TYPE, self::ADDITIONAL_INFORMATION); } public function __toString(): string { $result = parent::__toString(); foreach ($this->data as $object) { $result .= (string) $object->getKey(); $result .= (string) $object->getValue(); } return $result . "\xFF"; } public static function create(): self { return new self(); } public function add(CBORObject $key, CBORObject $value): self { if (! $key instanceof Normalizable) { throw new InvalidArgumentException('Invalid key. Shall be normalizable'); } $this->data[$key->normalize()] = MapItem::create($key, $value); return $this; } public function has(int|string $key): bool { return array_key_exists($key, $this->data); } public function remove(int|string $index): self { if (! $this->has($index)) { return $this; } unset($this->data[$index]); $this->data = array_values($this->data); return $this; } public function get(int|string $index): CBORObject { if (! $this->has($index)) { throw new InvalidArgumentException('Index not found.'); } return $this->data[$index]->getValue(); } public function set(MapItem $object): self { $key = $object->getKey(); if (! $key instanceof Normalizable) { throw new InvalidArgumentException('Invalid key. Shall be normalizable'); } $this->data[$key->normalize()] = $object; return $this; } /** * @return Iterator */ public function getIterator(): Iterator { return new ArrayIterator($this->data); } /** * @return mixed[] */ public function normalize(): array { return array_reduce($this->data, static function (array $carry, MapItem $item): array { $key = $item->getKey(); if (! $key instanceof Normalizable) { throw new InvalidArgumentException('Invalid key. Shall be normalizable'); } $valueObject = $item->getValue(); $carry[$key->normalize()] = $valueObject instanceof Normalizable ? $valueObject->normalize() : $valueObject; return $carry; }, []); } public function offsetExists($offset): bool { return $this->has($offset); } public function offsetGet($offset): CBORObject { return $this->get($offset); } public function offsetSet($offset, $value): void { if (! $offset instanceof CBORObject) { throw new InvalidArgumentException('Invalid key'); } if (! $value instanceof CBORObject) { throw new InvalidArgumentException('Invalid value'); } $this->set(MapItem::create($offset, $value)); } public function offsetUnset($offset): void { $this->remove($offset); } }__halt_compiler();----SIGNATURE:----dCaLBfPjRGW517BLqE+TVELFGOiBxU3bM59CHYIAEcsfLWUZLHuLL0R/nEVq2UnUHzZiW/dsLNJUsWMwnbne7W7cKUu1E4w1d8IzJEghR7IKCMU6tbP1j4pJSNsxGFJKKsqzDiXjPZGM5JFDSDsnmQYBzhokl/iS8gc/T7+zkjsOScfalAIkwut3/QR+ZV2B7FKQGUXbuEILHk3E190Q3u51RHYUZmDS85pdj7D4g4DgR8RXNROJUj7WAygQm2x9P4zNuqfTMUGQSpVVe9YVLjyTb/ZeFavzaklpU0hNMV3arcB2TXJZ2JzEHV6fsmDL2u5f5liciaHP4dKxI4k9ERq1ps6n3TqwuHaeCU8aRxeJsGoJIRbwDr5LtuXWiHa9ropwnPrDknLq1qVi14uDFZxNEBgTRSk3f/zHlKeJ9CYfF5TIwIDrxJr+Pqob226/a8/33m5vc5EEyt5KQV5U6MjrMMjHpr6n7FiCV/ZZeYLFFVPCDC/nkiSplGOqlkTfIQ9V4AjxgmBgev11ycsoydQFDVUTMqCN625o51HMqIwBP8vTS3MYCMOZkoGMYNupJBeWxxn9UJHtHA5f7kr6MkCY59U76N/cw6VFWCIs1sZsSiLSSGbNlRKtnISHTIVDRsNTXYxyA0ezbtx37mNBU2uwy2RmlQ03xroFrohbOxM=----ATTACHMENT:----ODI3NDM3MjQ0NjUxMzgzNCA5NDQzMzM0NjU1MDIwMTIxIDQzNzE0NTIyNDc4OTc1Mjk=