Current File : //proc/thread-self/root/proc/self/root/usr/local/jetapps/var/lib/3rdparty/Badcow/DNS/Rdata/OPT.php
<?php

declare(strict_types=1);

/*
 * This file is part of Badcow DNS Library.
 *
 * (c) Samuel Williams <sam@badcow.co>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Badcow\DNS\Rdata;

use Badcow\DNS\Edns\Option\Factory;
use Badcow\DNS\Edns\Option\OptionInterface;
use Badcow\DNS\Edns\Option\UnknownOption;
use Badcow\DNS\Edns\Option\UnsupportedOptionException;

/**
 * @see https://datatracker.ietf.org/doc/html/rfc6891#section-6.1.3
 */
class OPT implements RdataInterface
{
    use RdataTrait;

    public const TYPE = 'OPT';
    public const TYPE_CODE = 41;

    /**
     * @var OptionInterface[]
     */
    protected $options = [];

    public function toText(): string
    {
        return '';
    }

    public function fromText(string $text): void
    {
        throw new \Exception('Badcow\DNS\Rdata\OPT::fromText() cannot be used to hydrate this object.');
    }

    /**
     * @param OptionInterface[]|null $options
     */
    public function setOptions(?array $options): void
    {
        $this->options = [];

        if (null === $options) {
            return;
        }

        foreach ($options as $option) {
            $this->addOption($option);
        }
    }

    public function addOption(OptionInterface $option): void
    {
        $this->options[] = $option;
    }

    /**
     * @return OptionInterface[]
     */
    public function getOptions(): array
    {
        return $this->options;
    }

    /**
     * @throws \InvalidArgumentException
     */
    public function toWire(): string
    {
        $encoded = '';
        if (!$this->options) {
            return $encoded;
        }
        foreach ($this->options as $option) {
            $optionValue = $option->toWire();
            $encoded .= pack('nn', $option->getCode(), strlen($optionValue));
            $encoded .= $optionValue;
        }

        return $encoded;
    }

    /**
     * @throws DecodeException
     */
    public function fromWire(string $rdata, int &$offset = 0, ?int $rdLength = null): void
    {
        $rdLength = $rdLength ?? strlen($rdata);

        $endOffset = $offset + $rdLength;
        do {
            $integers = @unpack('ncode/nlength', $rdata, $offset);
            if (false === $integers) {
                throw new DecodeException(static::TYPE, $rdata);
            }
            $offset += 4;
            try {
                $option = Factory::newOptionFromId($integers['code']);
            } catch (UnsupportedOptionException $e) {
                $option = new UnknownOption();
                $option->setOptionCode($integers['code']);
            }
            $option->fromWire($rdata, $offset, $integers['length']);
            $this->options[] = $option;
        } while ($offset < $endOffset);
    }
}