Current File : //proc/self/root/usr/local/jetapps/var/lib/3rdparty/Badcow/DNS/Rdata/KX.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\Message;

/**
 * {@link https://tools.ietf.org/html/rfc2230}.
 */
class KX implements RdataInterface
{
    use RdataTrait;

    public const TYPE = 'KX';
    public const TYPE_CODE = 36;

    /**
     * @var int
     */
    private $preference;

    /**
     * @var string
     */
    private $exchanger;

    public function setExchanger(string $exchanger): void
    {
        $this->exchanger = $exchanger;
    }

    public function getExchanger(): string
    {
        return $this->exchanger;
    }

    public function setPreference(int $preference): void
    {
        $this->preference = $preference;
    }

    public function getPreference(): int
    {
        return $this->preference;
    }

    /**
     * @throws \InvalidArgumentException throws exception if preference or exchanger have not been set
     */
    public function toText(): string
    {
        if (null === $this->preference) {
            throw new \InvalidArgumentException('No preference has been set on KX object.');
        }
        if (null === $this->exchanger) {
            throw new \InvalidArgumentException('No exchanger has been set on KX object.');
        }

        return $this->preference.' '.$this->exchanger;
    }

    public function toWire(): string
    {
        if (null === $this->preference) {
            throw new \InvalidArgumentException('No preference has been set on KX object.');
        }
        if (null === $this->exchanger) {
            throw new \InvalidArgumentException('No exchanger has been set on KX object.');
        }

        return pack('n', $this->preference).Message::encodeName($this->exchanger);
    }

    public function fromText(string $text): void
    {
        $rdata = explode(' ', $text);
        $this->setPreference((int) $rdata[0]);
        $this->setExchanger($rdata[1]);
    }

    public function fromWire(string $rdata, int &$offset = 0, ?int $rdLength = null): void
    {
        if (false === $preference = unpack('n', $rdata, $offset)) {
            throw new DecodeException(static::TYPE, $rdata);
        }
        $this->setPreference($preference[1]);
        $offset += 2;
        $this->setExchanger(Message::decodeName($rdata, $offset));
    }
}