Major refactoring cleanup: - Add new controller architecture (class-controller-*.php) - Add new settings-v2 UI (views/settings-v2/) - Add new CSS architecture (agentic-sidebar.css, tokens) - Add esbuild build pipeline (scripts/build.js, package.json) - Add composer dependencies (vendor/) - Add frontend src directory (assets/js/src/index.jsx) - Add documentation files - Remove old/obsolete files (class-settings.php, old CSS) This commits all pending changes from previous refactoring efforts.
97 lines
2.3 KiB
PHP
97 lines
2.3 KiB
PHP
<?php declare(strict_types=1);
|
|
/**
|
|
* This file is part of the Parsica library.
|
|
*
|
|
* Copyright (c) 2020 Mathias Verraes <mathias@verraes.net>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
use Parsica\Parsica\Parser;
|
|
use function Parsica\Parsica\any;
|
|
use function Parsica\Parsica\char;
|
|
use function Parsica\Parsica\collect;
|
|
use function Parsica\Parsica\many;
|
|
use function Parsica\Parsica\map;
|
|
use function Parsica\Parsica\pure;
|
|
use function Parsica\Parsica\recursive;
|
|
use function Parsica\Parsica\satisfy;
|
|
use function Parsica\Parsica\takeWhile;
|
|
|
|
class ManyBench
|
|
{
|
|
private string $data;
|
|
|
|
function __construct()
|
|
{
|
|
$this->data = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
|
|
|
|
$this->takeWhile = takeWhile(fn(string $c): bool => $c === 'a');
|
|
$this->manySatisfy = many(satisfy(fn(string $c): bool => $c === 'a'));
|
|
$this->manyChar = many(char('a'));
|
|
$this->oldManySatisfy = static::oldMany(satisfy(fn(string $c): bool => $c === 'a'));
|
|
$this->oldManyChar = static::oldMany(char('a'));
|
|
}
|
|
|
|
/**
|
|
* @Revs(10)
|
|
* @Iterations(10)
|
|
*/
|
|
public function bench_takeWhile()
|
|
{
|
|
$result = $this->takeWhile->tryString($this->data);
|
|
}
|
|
|
|
/**
|
|
* @Revs(10)
|
|
* @Iterations(10)
|
|
*/
|
|
public function bench_manySatisfy()
|
|
{
|
|
$result = $this->manySatisfy->tryString($this->data);
|
|
}
|
|
|
|
/**
|
|
* @Revs(10)
|
|
* @Iterations(10)
|
|
*/
|
|
public function bench_manyChar()
|
|
{
|
|
$result = $this->manyChar->tryString($this->data);
|
|
}
|
|
|
|
/**
|
|
* @Revs(10)
|
|
* @Iterations(10)
|
|
*/
|
|
public function bench_oldManySatisfy()
|
|
{
|
|
$result = $this->oldManySatisfy->tryString($this->data);
|
|
}
|
|
|
|
/**
|
|
* @Revs(10)
|
|
* @Iterations(10)
|
|
*/
|
|
public function bench_oldManyChar()
|
|
{
|
|
$result = $this->oldManyChar->tryString($this->data);
|
|
}
|
|
|
|
public static function oldMany(Parser $parser)
|
|
{
|
|
$rec = recursive();
|
|
$rec->recurse(
|
|
any(
|
|
map(
|
|
collect($parser, $rec),
|
|
fn(array $o): array => array_merge([$o[0]], $o[1])
|
|
),
|
|
pure([]),
|
|
)
|
|
);
|
|
return $rec;
|
|
}
|
|
}
|