1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 
<?php

namespace SDom\SelectorMatcher;

use SDom\Node\Element;
use Symfony\Component\CssSelector\Node\HashNode;
use Symfony\Component\CssSelector\Node\NodeInterface;

/**
 * @pattern E#myid
 * @meaning an E element with ID equal to "myid".
 * @link https://www.w3.org/TR/css3-selectors/#id-selectors
 *
 * Trait HashNodeTrait
 * @package SDom\SelectorMatcher
 */
trait HashNodeTrait
{
    /**
     * @param HashNode $token
     * @param Element $node
     * @param null|Element $effectiveRoot
     * @return bool
     */
    protected function matchHashNode(HashNode $token, Element $node, Element $effectiveRoot = null): bool
    {
        // attribute "id" must exist
        if (!$node->hasAttribute('id')) {
            return false;
        }

        // attribute "id" must be identical to the requested ID
        if ($token->getId() !== $node->getAttribute('id')) {
            return false;
        }

        return $this->match($token->getSelector(), $node, $effectiveRoot);
    }

    /**
     * @param NodeInterface $token
     * @param Element $node
     * @param Element|null $effectiveRoot
     * @return bool
     */
    abstract public function match(NodeInterface $token, Element $node, Element $effectiveRoot = null): bool;
}