friendica/src/Model/Log/ParsedLogIterator.php

221 lines
4.6 KiB
PHP
Raw Normal View History

<?php
/**
2022-01-02 10:49:50 +01:00
* @copyright Copyright (C) 2010-2022, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
2021-05-24 22:05:02 +02:00
namespace Friendica\Model\Log;
2021-05-24 22:05:02 +02:00
use Friendica\Util\ReversedFileReader;
use Friendica\Object\Log\ParsedLogLine;
/**
* An iterator which returns `\Friendica\Objec\Log\ParsedLogLine` instances
*
* Uses `\Friendica\Util\ReversedFileReader` to fetch log lines
2021-05-24 21:47:10 +02:00
* from newest to oldest.
*/
class ParsedLogIterator implements \Iterator
{
2021-05-24 21:47:10 +02:00
/** @var \Iterator */
private $reader;
/** @var ParsedLogLine current iterator value*/
private $value = null;
2021-05-24 21:47:10 +02:00
/** @var int max number of lines to read */
private $limit = 0;
2021-05-24 21:47:10 +02:00
/** @var array filters per column */
private $filters = [];
2021-05-24 21:47:10 +02:00
/** @var string search term */
private $search = "";
2021-05-24 21:47:10 +02:00
/**
* @param ReversedFileReader $reader
*/
public function __construct(ReversedFileReader $reader)
{
$this->reader = $reader;
}
2021-05-24 21:47:10 +02:00
/**
* @param string $filename File to open
* @return $this
*/
public function open(string $filename)
{
$this->reader->open($filename);
return $this;
}
/**
2021-05-24 21:47:10 +02:00
* @param int $limit Max num of lines to read
* @return $this
2021-05-24 21:47:10 +02:00
*/
public function withLimit(int $limit)
{
$this->limit = $limit;
return $this;
}
/**
* @param array $filters filters per column
* @return $this
*/
public function withFilters(array $filters)
{
2021-05-24 21:47:10 +02:00
$this->filters = $filters;
return $this;
}
/**
* @param string $search string to search to filter lines
* @return $this
*/
public function withSearch(string $search)
{
$this->search = $search;
return $this;
}
2021-05-24 21:47:10 +02:00
/**
* Check if parsed log line match filters.
* Always match if no filters are set.
2021-05-24 22:05:02 +02:00
*
* @param ParsedLogLine $parsedlogline
2021-05-24 21:47:10 +02:00
* @return bool
*/
private function filter($parsedlogline)
{
2021-05-24 21:47:10 +02:00
$match = true;
foreach ($this->filters as $filter => $filtervalue) {
2021-05-24 22:05:02 +02:00
switch ($filter) {
2021-05-24 21:47:10 +02:00
case "level":
$match = $match && ($parsedlogline->level == strtoupper($filtervalue));
2021-05-24 21:47:10 +02:00
break;
case "context":
$match = $match && ($parsedlogline->context == $filtervalue);
2021-05-24 21:47:10 +02:00
break;
}
}
return $match;
}
/**
* Check if parsed log line match search.
* Always match if no search query is set.
2021-05-24 22:05:02 +02:00
*
* @param ParsedLogLine $parsedlogline
2021-05-24 21:47:10 +02:00
* @return bool
*/
private function search($parsedlogline)
2021-05-24 21:47:10 +02:00
{
if ($this->search != "") {
return strstr($parsedlogline->logline, $this->search) !== false;
}
2021-05-24 22:05:02 +02:00
return true;
2021-05-24 21:47:10 +02:00
}
/**
* Read a line from reader and parse.
* Returns null if limit is reached or the reader is invalid.
2021-05-24 22:05:02 +02:00
*
* @param ParsedLogLine $parsedlogline
* @return ?ParsedLogLine
2021-05-24 21:47:10 +02:00
*/
private function read()
{
$this->reader->next();
2021-05-24 22:05:02 +02:00
if ($this->limit > 0 && $this->reader->key() > $this->limit || !$this->reader->valid()) {
2021-05-24 21:47:10 +02:00
return null;
}
2021-05-24 21:47:10 +02:00
$line = $this->reader->current();
return new ParsedLogLine($this->reader->key(), $line);
}
/**
* Fetch next parsed log line which match with filters or search and
* set it as current iterator value.
2021-08-20 11:09:35 +02:00
*
* @see Iterator::next()
* @return void
*/
2021-05-24 21:47:10 +02:00
public function next()
{
$parsed = $this->read();
2021-05-24 22:05:02 +02:00
while (is_null($parsed) == false && !($this->filter($parsed) && $this->search($parsed))) {
2021-05-24 21:47:10 +02:00
$parsed = $this->read();
}
$this->value = $parsed;
}
/**
* Rewind the iterator to the first matching log line
2021-08-20 11:09:35 +02:00
*
* @see Iterator::rewind()
* @return void
*/
public function rewind()
{
2021-05-24 21:47:10 +02:00
$this->value = null;
$this->reader->rewind();
$this->next();
}
/**
* Return current parsed log line number
2021-08-20 11:09:35 +02:00
*
* @see Iterator::key()
* @see ReversedFileReader::key()
* @return int
*/
public function key()
{
return $this->reader->key();
}
/**
* Return current iterator value
2021-08-20 11:09:35 +02:00
*
* @see Iterator::current()
* @return ?ParsedLogLing
*/
public function current()
{
2021-05-24 21:47:10 +02:00
return $this->value;
}
/**
* Checks if current iterator value is valid, that is, not null
2021-08-20 11:09:35 +02:00
*
* @see Iterator::valid()
* @return bool
*/
public function valid()
{
2021-05-24 21:47:10 +02:00
return ! is_null($this->value);
}
}