12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Collection;
- use AppendIterator;
- use ArrayIterator;
- use Cake\Collection\Iterator\BufferedIterator;
- use Cake\Collection\Iterator\ExtractIterator;
- use Cake\Collection\Iterator\FilterIterator;
- use Cake\Collection\Iterator\InsertIterator;
- use Cake\Collection\Iterator\MapReduce;
- use Cake\Collection\Iterator\NestIterator;
- use Cake\Collection\Iterator\ReplaceIterator;
- use Cake\Collection\Iterator\SortIterator;
- use Cake\Collection\Iterator\StoppableIterator;
- use Cake\Collection\Iterator\TreeIterator;
- use Cake\Collection\Iterator\UnfoldIterator;
- use Cake\Collection\Iterator\ZipIterator;
- use Countable;
- use LimitIterator;
- use LogicException;
- use RecursiveIteratorIterator;
- use Traversable;
- /**
- * Offers a handful of methods to manipulate iterators
- */
- trait CollectionTrait
- {
- use ExtractTrait;
- /**
- * Returns a new collection.
- *
- * Allows classes which use this trait to determine their own
- * type of returned collection interface
- *
- * @param mixed ...$args Constructor arguments.
- * @return \Cake\Collection\CollectionInterface
- */
- protected function newCollection(...$args)
- {
- return new Collection(...$args);
- }
- /**
- * {@inheritDoc}
- */
- public function each(callable $c)
- {
- foreach ($this->optimizeUnwrap() as $k => $v) {
- $c($v, $k);
- }
- return $this;
- }
- /**
- * {@inheritDoc}
- *
- * @return \Cake\Collection\Iterator\FilterIterator
- */
- public function filter(callable $c = null)
- {
- if ($c === null) {
- $c = function ($v) {
- return (bool)$v;
- };
- }
- return new FilterIterator($this->unwrap(), $c);
- }
- /**
- * {@inheritDoc}
- *
- * @return \Cake\Collection\Iterator\FilterIterator
- */
- public function reject(callable $c)
- {
- return new FilterIterator($this->unwrap(), function ($key, $value, $items) use ($c) {
- return !$c($key, $value, $items);
- });
- }
- /**
- * {@inheritDoc}
- */
- public function every(callable $c)
- {
- foreach ($this->optimizeUnwrap() as $key => $value) {
- if (!$c($value, $key)) {
- return false;
- }
- }
- return true;
- }
- /**
- * {@inheritDoc}
- */
- public function some(callable $c)
- {
- foreach ($this->optimizeUnwrap() as $key => $value) {
- if ($c($value, $key) === true) {
- return true;
- }
- }
- return false;
- }
- /**
- * {@inheritDoc}
- */
- public function contains($value)
- {
- foreach ($this->optimizeUnwrap() as $v) {
- if ($value === $v) {
- return true;
- }
- }
- return false;
- }
- /**
- * {@inheritDoc}
- *
- * @return \Cake\Collection\Iterator\ReplaceIterator
- */
- public function map(callable $c)
- {
- return new ReplaceIterator($this->unwrap(), $c);
- }
- /**
- * {@inheritDoc}
- */
- public function reduce(callable $c, $zero = null)
- {
- $isFirst = false;
- if (func_num_args() < 2) {
- $isFirst = true;
- }
- $result = $zero;
- foreach ($this->optimizeUnwrap() as $k => $value) {
- if ($isFirst) {
- $result = $value;
- $isFirst = false;
- continue;
- }
- $result = $c($result, $value, $k);
- }
- return $result;
- }
- /**
- * {@inheritDoc}
- */
- public function extract($matcher)
- {
- $extractor = new ExtractIterator($this->unwrap(), $matcher);
- if (is_string($matcher) && strpos($matcher, '{*}') !== false) {
- $extractor = $extractor
- ->filter(function ($data) {
- return $data !== null && ($data instanceof Traversable || is_array($data));
- })
- ->unfold();
- }
- return $extractor;
- }
- /**
- * {@inheritDoc}
- */
- public function max($callback, $type = \SORT_NUMERIC)
- {
- return (new SortIterator($this->unwrap(), $callback, \SORT_DESC, $type))->first();
- }
- /**
- * {@inheritDoc}
- */
- public function min($callback, $type = \SORT_NUMERIC)
- {
- return (new SortIterator($this->unwrap(), $callback, \SORT_ASC, $type))->first();
- }
- /**
- * {@inheritDoc}
- */
- public function avg($matcher = null)
- {
- $result = $this;
- if ($matcher != null) {
- $result = $result->extract($matcher);
- }
- $result = $result
- ->reduce(function ($acc, $current) {
- list($count, $sum) = $acc;
- return [$count + 1, $sum + $current];
- }, [0, 0]);
- if ($result[0] === 0) {
- return null;
- }
- return $result[1] / $result[0];
- }
- /**
- * {@inheritDoc}
- */
- public function median($matcher = null)
- {
- $elements = $this;
- if ($matcher != null) {
- $elements = $elements->extract($matcher);
- }
- $values = $elements->toList();
- sort($values);
- $count = count($values);
- if ($count === 0) {
- return null;
- }
- $middle = (int)($count / 2);
- if ($count % 2) {
- return $values[$middle];
- }
- return ($values[$middle - 1] + $values[$middle]) / 2;
- }
- /**
- * {@inheritDoc}
- */
- public function sortBy($callback, $dir = \SORT_DESC, $type = \SORT_NUMERIC)
- {
- return new SortIterator($this->unwrap(), $callback, $dir, $type);
- }
- /**
- * {@inheritDoc}
- */
- public function groupBy($callback)
- {
- $callback = $this->_propertyExtractor($callback);
- $group = [];
- foreach ($this->optimizeUnwrap() as $value) {
- $group[$callback($value)][] = $value;
- }
- return $this->newCollection($group);
- }
- /**
- * {@inheritDoc}
- */
- public function indexBy($callback)
- {
- $callback = $this->_propertyExtractor($callback);
- $group = [];
- foreach ($this->optimizeUnwrap() as $value) {
- $group[$callback($value)] = $value;
- }
- return $this->newCollection($group);
- }
- /**
- * {@inheritDoc}
- */
- public function countBy($callback)
- {
- $callback = $this->_propertyExtractor($callback);
- $mapper = function ($value, $key, $mr) use ($callback) {
- /** @var \Cake\Collection\Iterator\MapReduce $mr */
- $mr->emitIntermediate($value, $callback($value));
- };
- $reducer = function ($values, $key, $mr) {
- /** @var \Cake\Collection\Iterator\MapReduce $mr */
- $mr->emit(count($values), $key);
- };
- return $this->newCollection(new MapReduce($this->unwrap(), $mapper, $reducer));
- }
- /**
- * {@inheritDoc}
- */
- public function sumOf($matcher = null)
- {
- if ($matcher === null) {
- return array_sum($this->toList());
- }
- $callback = $this->_propertyExtractor($matcher);
- $sum = 0;
- foreach ($this->optimizeUnwrap() as $k => $v) {
- $sum += $callback($v, $k);
- }
- return $sum;
- }
- /**
- * {@inheritDoc}
- */
- public function shuffle()
- {
- $elements = $this->toList();
- shuffle($elements);
- return $this->newCollection($elements);
- }
- /**
- * {@inheritDoc}
- */
- public function sample($size = 10)
- {
- return $this->newCollection(new LimitIterator($this->shuffle(), 0, $size));
- }
- /**
- * {@inheritDoc}
- */
- public function take($size = 1, $from = 0)
- {
- return $this->newCollection(new LimitIterator($this, $from, $size));
- }
- /**
- * {@inheritDoc}
- */
- public function skip($howMany)
- {
- return $this->newCollection(new LimitIterator($this, $howMany));
- }
- /**
- * {@inheritDoc}
- */
- public function match(array $conditions)
- {
- return $this->filter($this->_createMatcherFilter($conditions));
- }
- /**
- * {@inheritDoc}
- */
- public function firstMatch(array $conditions)
- {
- return $this->match($conditions)->first();
- }
- /**
- * {@inheritDoc}
- */
- public function first()
- {
- $iterator = new LimitIterator($this, 0, 1);
- foreach ($iterator as $result) {
- return $result;
- }
- }
- /**
- * {@inheritDoc}
- */
- public function last()
- {
- $iterator = $this->optimizeUnwrap();
- if (is_array($iterator)) {
- return array_pop($iterator);
- }
- if ($iterator instanceof Countable) {
- $count = count($iterator);
- if ($count === 0) {
- return null;
- }
- $iterator = new LimitIterator($iterator, $count - 1, 1);
- }
- $result = null;
- foreach ($iterator as $result) {
- // No-op
- }
- return $result;
- }
- /**
- * {@inheritDoc}
- */
- public function takeLast($howMany)
- {
- if ($howMany < 1) {
- throw new \InvalidArgumentException("The takeLast method requires a number greater than 0.");
- }
- $iterator = $this->optimizeUnwrap();
- if (is_array($iterator)) {
- return $this->newCollection(array_slice($iterator, $howMany * -1));
- }
- if ($iterator instanceof Countable) {
- $count = count($iterator);
- if ($count === 0) {
- return $this->newCollection([]);
- }
- $iterator = new LimitIterator($iterator, max(0, $count - $howMany), $howMany);
- return $this->newCollection($iterator);
- }
- $generator = function ($iterator, $howMany) {
- $result = [];
- $bucket = 0;
- $offset = 0;
- /**
- * Consider the collection of elements [1, 2, 3, 4, 5, 6, 7, 8, 9], in order
- * to get the last 4 elements, we can keep a buffer of 4 elements and
- * fill it circularly using modulo logic, we use the $bucket variable
- * to track the position to fill next in the buffer. This how the buffer
- * looks like after 4 iterations:
- *
- * 0) 1 2 3 4 -- $bucket now goes back to 0, we have filled 4 elementes
- * 1) 5 2 3 4 -- 5th iteration
- * 2) 5 6 3 4 -- 6th iteration
- * 3) 5 6 7 4 -- 7th iteration
- * 4) 5 6 7 8 -- 8th iteration
- * 5) 9 6 7 8
- *
- * We can see that at the end of the iterations, the buffer contains all
- * the last four elements, just in the wrong order. How do we keep the
- * original order? Well, it turns out that the number of iteration also
- * give us a clue on what's going on, Let's add a marker for it now:
- *
- * 0) 1 2 3 4
- * ^ -- The 0) above now becomes the $offset variable
- * 1) 5 2 3 4
- * ^ -- $offset = 1
- * 2) 5 6 3 4
- * ^ -- $offset = 2
- * 3) 5 6 7 4
- * ^ -- $offset = 3
- * 4) 5 6 7 8
- * ^ -- We use module logic for $offset too
- * and as you can see each time $offset is 0, then the buffer
- * is sorted exactly as we need.
- * 5) 9 6 7 8
- * ^ -- $offset = 1
- *
- * The $offset variable is a marker for splitting the buffer in two,
- * elements to the right for the marker are the head of the final result,
- * whereas the elements at the left are the tail. For example consider step 5)
- * which has an offset of 1:
- *
- * - $head = elements to the right = [6, 7, 8]
- * - $tail = elements to the left = [9]
- * - $result = $head + $tail = [6, 7, 8, 9]
- *
- * The logic above applies to collections of any size.
- */
- foreach ($iterator as $k => $item) {
- $result[$bucket] = [$k, $item];
- $bucket = (++$bucket) % $howMany;
- $offset++;
- }
- $offset = $offset % $howMany;
- $head = array_slice($result, $offset);
- $tail = array_slice($result, 0, $offset);
- foreach ($head as $v) {
- yield $v[0] => $v[1];
- }
- foreach ($tail as $v) {
- yield $v[0] => $v[1];
- }
- };
- return $this->newCollection($generator($iterator, $howMany));
- }
- /**
- * {@inheritDoc}
- */
- public function append($items)
- {
- $list = new AppendIterator();
- $list->append($this->unwrap());
- $list->append($this->newCollection($items)->unwrap());
- return $this->newCollection($list);
- }
- /**
- * {@inheritDoc}
- */
- public function appendItem($item, $key = null)
- {
- if ($key !== null) {
- $data = [$key => $item];
- } else {
- $data = [$item];
- }
- return $this->append($data);
- }
- /**
- * {@inheritDoc}
- */
- public function prepend($items)
- {
- return $this->newCollection($items)->append($this);
- }
- /**
- * {@inheritDoc}
- */
- public function prependItem($item, $key = null)
- {
- if ($key !== null) {
- $data = [$key => $item];
- } else {
- $data = [$item];
- }
- return $this->prepend($data);
- }
- /**
- * {@inheritDoc}
- */
- public function combine($keyPath, $valuePath, $groupPath = null)
- {
- $options = [
- 'keyPath' => $this->_propertyExtractor($keyPath),
- 'valuePath' => $this->_propertyExtractor($valuePath),
- 'groupPath' => $groupPath ? $this->_propertyExtractor($groupPath) : null,
- ];
- $mapper = function ($value, $key, $mapReduce) use ($options) {
- /** @var \Cake\Collection\Iterator\MapReduce $mapReduce */
- $rowKey = $options['keyPath'];
- $rowVal = $options['valuePath'];
- if (!$options['groupPath']) {
- $mapReduce->emit($rowVal($value, $key), $rowKey($value, $key));
- return null;
- }
- $key = $options['groupPath']($value, $key);
- $mapReduce->emitIntermediate(
- [$rowKey($value, $key) => $rowVal($value, $key)],
- $key
- );
- };
- $reducer = function ($values, $key, $mapReduce) {
- $result = [];
- foreach ($values as $value) {
- $result += $value;
- }
- /** @var \Cake\Collection\Iterator\MapReduce $mapReduce */
- $mapReduce->emit($result, $key);
- };
- return $this->newCollection(new MapReduce($this->unwrap(), $mapper, $reducer));
- }
- /**
- * {@inheritDoc}
- */
- public function nest($idPath, $parentPath, $nestingKey = 'children')
- {
- $parents = [];
- $idPath = $this->_propertyExtractor($idPath);
- $parentPath = $this->_propertyExtractor($parentPath);
- $isObject = true;
- $mapper = function ($row, $key, $mapReduce) use (&$parents, $idPath, $parentPath, $nestingKey) {
- $row[$nestingKey] = [];
- $id = $idPath($row, $key);
- $parentId = $parentPath($row, $key);
- $parents[$id] =& $row;
- /** @var \Cake\Collection\Iterator\MapReduce $mapReduce */
- $mapReduce->emitIntermediate($id, $parentId);
- };
- $reducer = function ($values, $key, $mapReduce) use (&$parents, &$isObject, $nestingKey) {
- static $foundOutType = false;
- if (!$foundOutType) {
- $isObject = is_object(current($parents));
- $foundOutType = true;
- }
- if (empty($key) || !isset($parents[$key])) {
- foreach ($values as $id) {
- $parents[$id] = $isObject ? $parents[$id] : new ArrayIterator($parents[$id], 1);
- /** @var \Cake\Collection\Iterator\MapReduce $mapReduce */
- $mapReduce->emit($parents[$id]);
- }
- return null;
- }
- $children = [];
- foreach ($values as $id) {
- $children[] =& $parents[$id];
- }
- $parents[$key][$nestingKey] = $children;
- };
- return $this->newCollection(new MapReduce($this->unwrap(), $mapper, $reducer))
- ->map(function ($value) use (&$isObject) {
- /** @var \ArrayIterator $value */
- return $isObject ? $value : $value->getArrayCopy();
- });
- }
- /**
- * {@inheritDoc}
- *
- * @return \Cake\Collection\Iterator\InsertIterator
- */
- public function insert($path, $values)
- {
- return new InsertIterator($this->unwrap(), $path, $values);
- }
- /**
- * {@inheritDoc}
- */
- public function toArray($preserveKeys = true)
- {
- $iterator = $this->unwrap();
- if ($iterator instanceof ArrayIterator) {
- $items = $iterator->getArrayCopy();
- return $preserveKeys ? $items : array_values($items);
- }
- // RecursiveIteratorIterator can return duplicate key values causing
- // data loss when converted into an array
- if ($preserveKeys && get_class($iterator) === 'RecursiveIteratorIterator') {
- $preserveKeys = false;
- }
- return iterator_to_array($this, $preserveKeys);
- }
- /**
- * {@inheritDoc}
- */
- public function toList()
- {
- return $this->toArray(false);
- }
- /**
- * {@inheritDoc}
- */
- public function jsonSerialize()
- {
- return $this->toArray();
- }
- /**
- * {@inheritDoc}
- */
- public function compile($preserveKeys = true)
- {
- return $this->newCollection($this->toArray($preserveKeys));
- }
- /**
- * {@inheritDoc}
- */
- public function lazy()
- {
- $generator = function () {
- foreach ($this->unwrap() as $k => $v) {
- yield $k => $v;
- }
- };
- return $this->newCollection($generator());
- }
- /**
- * {@inheritDoc}
- *
- * @return \Cake\Collection\Iterator\BufferedIterator
- */
- public function buffered()
- {
- return new BufferedIterator($this->unwrap());
- }
- /**
- * {@inheritDoc}
- *
- * @return \Cake\Collection\Iterator\TreeIterator
- */
- public function listNested($dir = 'desc', $nestingKey = 'children')
- {
- $dir = strtolower($dir);
- $modes = [
- 'desc' => TreeIterator::SELF_FIRST,
- 'asc' => TreeIterator::CHILD_FIRST,
- 'leaves' => TreeIterator::LEAVES_ONLY,
- ];
- return new TreeIterator(
- new NestIterator($this, $nestingKey),
- isset($modes[$dir]) ? $modes[$dir] : $dir
- );
- }
- /**
- * {@inheritDoc}
- *
- * @return \Cake\Collection\Iterator\StoppableIterator
- */
- public function stopWhen($condition)
- {
- if (!is_callable($condition)) {
- $condition = $this->_createMatcherFilter($condition);
- }
- return new StoppableIterator($this->unwrap(), $condition);
- }
- /**
- * {@inheritDoc}
- */
- public function unfold(callable $transformer = null)
- {
- if ($transformer === null) {
- $transformer = function ($item) {
- return $item;
- };
- }
- return $this->newCollection(
- new RecursiveIteratorIterator(
- new UnfoldIterator($this->unwrap(), $transformer),
- RecursiveIteratorIterator::LEAVES_ONLY
- )
- );
- }
- /**
- * {@inheritDoc}
- */
- public function through(callable $handler)
- {
- $result = $handler($this);
- return $result instanceof CollectionInterface ? $result : $this->newCollection($result);
- }
- /**
- * {@inheritDoc}
- */
- public function zip($items)
- {
- return new ZipIterator(array_merge([$this->unwrap()], func_get_args()));
- }
- /**
- * {@inheritDoc}
- */
- public function zipWith($items, $callable)
- {
- if (func_num_args() > 2) {
- $items = func_get_args();
- $callable = array_pop($items);
- } else {
- $items = [$items];
- }
- return new ZipIterator(array_merge([$this->unwrap()], $items), $callable);
- }
- /**
- * {@inheritDoc}
- */
- public function chunk($chunkSize)
- {
- return $this->map(function ($v, $k, $iterator) use ($chunkSize) {
- $values = [$v];
- for ($i = 1; $i < $chunkSize; $i++) {
- $iterator->next();
- if (!$iterator->valid()) {
- break;
- }
- $values[] = $iterator->current();
- }
- return $values;
- });
- }
- /**
- * {@inheritDoc}
- */
- public function chunkWithKeys($chunkSize, $preserveKeys = true)
- {
- return $this->map(function ($v, $k, $iterator) use ($chunkSize, $preserveKeys) {
- $key = 0;
- if ($preserveKeys) {
- $key = $k;
- }
- $values = [$key => $v];
- for ($i = 1; $i < $chunkSize; $i++) {
- $iterator->next();
- if (!$iterator->valid()) {
- break;
- }
- if ($preserveKeys) {
- $values[$iterator->key()] = $iterator->current();
- } else {
- $values[] = $iterator->current();
- }
- }
- return $values;
- });
- }
- /**
- * {@inheritDoc}
- */
- public function isEmpty()
- {
- foreach ($this as $el) {
- return false;
- }
- return true;
- }
- /**
- * {@inheritDoc}
- */
- public function unwrap()
- {
- $iterator = $this;
- while (get_class($iterator) === 'Cake\Collection\Collection') {
- $iterator = $iterator->getInnerIterator();
- }
- if ($iterator !== $this && $iterator instanceof CollectionInterface) {
- $iterator = $iterator->unwrap();
- }
- return $iterator;
- }
- /**
- * Backwards compatible wrapper for unwrap()
- *
- * @return \Traversable
- * @deprecated 3.0.10 Will be removed in 4.0.0
- */
- // @codingStandardsIgnoreLine
- public function _unwrap()
- {
- deprecationWarning('CollectionTrait::_unwrap() is deprecated. Use CollectionTrait::unwrap() instead.');
- return $this->unwrap();
- }
- /**
- * @param callable|null $operation Operation
- * @param callable|null $filter Filter
- * @return \Cake\Collection\CollectionInterface
- * @throws \LogicException
- */
- public function cartesianProduct(callable $operation = null, callable $filter = null)
- {
- if ($this->isEmpty()) {
- return $this->newCollection([]);
- }
- $collectionArrays = [];
- $collectionArraysKeys = [];
- $collectionArraysCounts = [];
- foreach ($this->toList() as $value) {
- $valueCount = count($value);
- if ($valueCount !== count($value, COUNT_RECURSIVE)) {
- throw new LogicException('Cannot find the cartesian product of a multidimensional array');
- }
- $collectionArraysKeys[] = array_keys($value);
- $collectionArraysCounts[] = $valueCount;
- $collectionArrays[] = $value;
- }
- $result = [];
- $lastIndex = count($collectionArrays) - 1;
- // holds the indexes of the arrays that generate the current combination
- $currentIndexes = array_fill(0, $lastIndex + 1, 0);
- $changeIndex = $lastIndex;
- while (!($changeIndex === 0 && $currentIndexes[0] === $collectionArraysCounts[0])) {
- $currentCombination = array_map(function ($value, $keys, $index) {
- return $value[$keys[$index]];
- }, $collectionArrays, $collectionArraysKeys, $currentIndexes);
- if ($filter === null || $filter($currentCombination)) {
- $result[] = ($operation === null) ? $currentCombination : $operation($currentCombination);
- }
- $currentIndexes[$lastIndex]++;
- for ($changeIndex = $lastIndex; $currentIndexes[$changeIndex] === $collectionArraysCounts[$changeIndex] && $changeIndex > 0; $changeIndex--) {
- $currentIndexes[$changeIndex] = 0;
- $currentIndexes[$changeIndex - 1]++;
- }
- }
- return $this->newCollection($result);
- }
- /**
- * {@inheritDoc}
- *
- * @return \Cake\Collection\CollectionInterface
- * @throws \LogicException
- */
- public function transpose()
- {
- $arrayValue = $this->toList();
- $length = count(current($arrayValue));
- $result = [];
- foreach ($arrayValue as $column => $row) {
- if (count($row) != $length) {
- throw new LogicException('Child arrays do not have even length');
- }
- }
- for ($column = 0; $column < $length; $column++) {
- $result[] = array_column($arrayValue, $column);
- }
- return $this->newCollection($result);
- }
- /**
- * {@inheritDoc}
- *
- * @return int
- */
- public function count()
- {
- $traversable = $this->optimizeUnwrap();
- if (is_array($traversable)) {
- return count($traversable);
- }
- return iterator_count($traversable);
- }
- /**
- * {@inheritDoc}
- *
- * @return int
- */
- public function countKeys()
- {
- return count($this->toArray());
- }
- /**
- * Unwraps this iterator and returns the simplest
- * traversable that can be used for getting the data out
- *
- * @return \Traversable|array
- */
- protected function optimizeUnwrap()
- {
- $iterator = $this->unwrap();
- if (get_class($iterator) === ArrayIterator::class) {
- $iterator = $iterator->getArrayCopy();
- }
- return $iterator;
- }
- }
|