|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace MongoDB\Benchmark\BSON; |
| 4 | + |
| 5 | +use MongoDB\Benchmark\BaseBench; |
| 6 | +use MongoDB\BSON\PackedArray; |
| 7 | +use PhpBench\Attributes\BeforeMethods; |
| 8 | + |
| 9 | +use function array_values; |
| 10 | +use function file_get_contents; |
| 11 | +use function iterator_to_array; |
| 12 | +use function json_decode; |
| 13 | + |
| 14 | +use const JSON_THROW_ON_ERROR; |
| 15 | + |
| 16 | +#[BeforeMethods('prepareData')] |
| 17 | +final class PackedArrayBench extends BaseBench |
| 18 | +{ |
| 19 | + private static PackedArray $array; |
| 20 | + |
| 21 | + public function prepareData(): void |
| 22 | + { |
| 23 | + $array = array_values(json_decode(file_get_contents(self::LARGE_FILE_PATH), true, 512, JSON_THROW_ON_ERROR)); |
| 24 | + |
| 25 | + self::$array = PackedArray::fromPHP($array); |
| 26 | + } |
| 27 | + |
| 28 | + public function benchCheckFirst(): void |
| 29 | + { |
| 30 | + self::$array->has(0); |
| 31 | + } |
| 32 | + |
| 33 | + public function benchCheckLast(): void |
| 34 | + { |
| 35 | + self::$array->has(94354); |
| 36 | + } |
| 37 | + |
| 38 | + public function benchAccessFirst(): void |
| 39 | + { |
| 40 | + self::$array->get(0); |
| 41 | + } |
| 42 | + |
| 43 | + public function benchAccessLast(): void |
| 44 | + { |
| 45 | + self::$array->get(94354); |
| 46 | + } |
| 47 | + |
| 48 | + public function benchIteratorToArray(): void |
| 49 | + { |
| 50 | + iterator_to_array(self::$array); |
| 51 | + } |
| 52 | + |
| 53 | + public function benchToPHPArray(): void |
| 54 | + { |
| 55 | + self::$array->toPHP(); |
| 56 | + } |
| 57 | + |
| 58 | + public function benchIteration(): void |
| 59 | + { |
| 60 | + // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedForeach |
| 61 | + // phpcs:ignore Generic.ControlStructures.InlineControlStructure.NotAllowed |
| 62 | + foreach (self::$array as $key => $value); |
| 63 | + } |
| 64 | + |
| 65 | + public function benchIterationAfterIteratorToArray(): void |
| 66 | + { |
| 67 | + // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedForeach |
| 68 | + // phpcs:ignore Generic.ControlStructures.InlineControlStructure.NotAllowed |
| 69 | + foreach (iterator_to_array(self::$array) as $key => $value); |
| 70 | + } |
| 71 | + |
| 72 | + public function benchIterationAsArray(): void |
| 73 | + { |
| 74 | + // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedForeach |
| 75 | + // phpcs:ignore Generic.ControlStructures.InlineControlStructure.NotAllowed |
| 76 | + foreach (self::$array->toPHP() as $key => $value); |
| 77 | + } |
| 78 | +} |
0 commit comments