maxTransactionsToSearchIn / 2, $maxResults * 2); // Variables used within the loop $numTransactionsProcessed = 0; $page = 1; $matchingTransactions = []; // Flags to indicate the end of the loop $reachedEndOfList = false; $foundEnoughTransactions = false; $searchedEnoughTransactions = false; // Start a loop to fetch batches of transactions. The loop will finish if: // - all transactions have been fetched from the database // - the maximum number of transactions to return has been found // - the maximum number of transactions to search in have been searched do { // Fetch a batch of transactions from the database $offset = $page > 0 ? ($page - 1) * $pagesize : 0; $transactions = $repository->getJournalsOfTypes($this->transactionTypes, $offset, $page, $pagesize)->getCollection()->all(); // Filter transactions that match the rule $matchingTransactions += array_filter( $transactions, function ($transaction) { $processor = new Processor(new Rule, $transaction); return $processor->isTriggeredBy($this->triggers); } ); // Update counters $page++; $numTransactionsProcessed += count($transactions); // Check for conditions to finish the loop $reachedEndOfList = (count($transactions) < $pagesize); $foundEnoughTransactions = (count($matchingTransactions) >= $maxResults); $searchedEnoughTransactions = ($numTransactionsProcessed >= $this->maxTransactionsToSearchIn); } while (!$reachedEndOfList && !$foundEnoughTransactions && !$searchedEnoughTransactions); // If the list of matchingTransactions is larger than the maximum number of results // (e.g. if a large percentage of the transactions match), truncate the list $matchingTransactions = array_slice($matchingTransactions, 0, $maxResults); return $matchingTransactions; } /** * @return array */ public function getTransactionLimit() { return $this->maxTransactionsToSearchIn; } /** * @return array */ public function getTransactionTypes() { return $this->transactionTypes; } /** * @param array $transactionTypes * * @return $this */ public function setTransactionTypes(array $transactionTypes) { $this->transactionTypes = $transactionTypes; return $this; } /** * @return array */ public function getTriggers() { return $this->triggers; } /** * @param array $triggers * * @return $this */ public function setTriggers($triggers) { $this->triggers = $triggers; return $this; } /** * @param int $limit * * @return $this */ public function setTransactionLimit(int $limit) { $this->maxTransactionsToSearchIn = $limit; return $this; } }