src/Phan/Library/Hasher/Sequential.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Phan\Library\Hasher;

use Phan\Library\Hasher;

/**
 * Hasher implementation mapping keys to sequential groups (first key to 0, second key to 1, looping back to 0)
 * getGroup() is called exactly once on each string to be hashed.
 */
class Sequential implements Hasher
{
    /** @var int an incrementing counter mapping the first key to group 0, the second key to 1, etc. (modulo group_count) */
    protected $counter;
    /** @var int the total number of groups. */
    protected $group_count;

    public function __construct(int $group_count)
    {
        $this->counter = 1;
        $this->group_count = $group_count;
    }

    /**
     * @param string $key (Used by sibling class Consistent) (@phan-unused-param)
     * @return int - an integer between 0 and $this->group_count - 1, inclusive
     */
    public function getGroup(string $key): int
    {
        return ($this->counter++) % $this->group_count;
    }

    /**
     * Resets counter
     */
    public function reset(): void
    {
        $this->counter = 1;
    }
}