mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-06 05:07:36 +02:00
Merge pull request #1364 from lyrixx/future
Backport Interface and Trait from master to 1.X
This commit is contained in:
6
.php_cs
6
.php_cs
@@ -13,6 +13,12 @@ $finder = Symfony\CS\Finder::create()
|
|||||||
->files()
|
->files()
|
||||||
->name('*.php')
|
->name('*.php')
|
||||||
->exclude('Fixtures')
|
->exclude('Fixtures')
|
||||||
|
// The next 4 files are here for forward compatibility, and are not used by
|
||||||
|
// Monolog itself
|
||||||
|
->exclude(__DIR__.'src/Monolog/Handler/FormattableHandlerInterface.php')
|
||||||
|
->exclude(__DIR__.'src/Monolog/Handler/FormattableHandlerTrait.php')
|
||||||
|
->exclude(__DIR__.'src/Monolog/Handler/ProcessableHandlerInterface.php')
|
||||||
|
->exclude(__DIR__.'src/Monolog/Handler/ProcessableHandlerTrait.php')
|
||||||
->in(__DIR__.'/src')
|
->in(__DIR__.'/src')
|
||||||
->in(__DIR__.'/tests')
|
->in(__DIR__.'/tests')
|
||||||
;
|
;
|
||||||
|
@@ -59,7 +59,7 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": [
|
"test": [
|
||||||
"parallel-lint . --exclude vendor",
|
"parallel-lint . --exclude vendor --exclude src/Monolog/Handler/FormattableHandlerInterface.php --exclude src/Monolog/Handler/FormattableHandlerTrait.php --exclude src/Monolog/Handler/ProcessableHandlerInterface.php --exclude src/Monolog/Handler/ProcessableHandlerTrait.php",
|
||||||
"phpunit"
|
"phpunit"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
38
src/Monolog/Handler/FormattableHandlerInterface.php
Normal file
38
src/Monolog/Handler/FormattableHandlerInterface.php
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<?php declare(strict_types=1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of the Monolog package.
|
||||||
|
*
|
||||||
|
* (c) Jordi Boggiano <j.boggiano@seld.be>
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Monolog\Handler;
|
||||||
|
|
||||||
|
use Monolog\Formatter\FormatterInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interface to describe loggers that have a formatter
|
||||||
|
*
|
||||||
|
* @internal This interface is present in monolog 1.x to ease forward compatibility.
|
||||||
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
||||||
|
*/
|
||||||
|
interface FormattableHandlerInterface
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Sets the formatter.
|
||||||
|
*
|
||||||
|
* @param FormatterInterface $formatter
|
||||||
|
* @return HandlerInterface self
|
||||||
|
*/
|
||||||
|
public function setFormatter(FormatterInterface $formatter): HandlerInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the formatter.
|
||||||
|
*
|
||||||
|
* @return FormatterInterface
|
||||||
|
*/
|
||||||
|
public function getFormatter(): FormatterInterface;
|
||||||
|
}
|
62
src/Monolog/Handler/FormattableHandlerTrait.php
Normal file
62
src/Monolog/Handler/FormattableHandlerTrait.php
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
<?php declare(strict_types=1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of the Monolog package.
|
||||||
|
*
|
||||||
|
* (c) Jordi Boggiano <j.boggiano@seld.be>
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Monolog\Handler;
|
||||||
|
|
||||||
|
use Monolog\Formatter\FormatterInterface;
|
||||||
|
use Monolog\Formatter\LineFormatter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper trait for implementing FormattableInterface
|
||||||
|
*
|
||||||
|
* @internal This interface is present in monolog 1.x to ease forward compatibility.
|
||||||
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
||||||
|
*/
|
||||||
|
trait FormattableHandlerTrait
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var FormatterInterface
|
||||||
|
*/
|
||||||
|
protected $formatter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
* @suppress PhanTypeMismatchReturn
|
||||||
|
*/
|
||||||
|
public function setFormatter(FormatterInterface $formatter): HandlerInterface
|
||||||
|
{
|
||||||
|
$this->formatter = $formatter;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function getFormatter(): FormatterInterface
|
||||||
|
{
|
||||||
|
if (!$this->formatter) {
|
||||||
|
$this->formatter = $this->getDefaultFormatter();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->formatter;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default formatter.
|
||||||
|
*
|
||||||
|
* Overwrite this if the LineFormatter is not a good default for your handler.
|
||||||
|
*/
|
||||||
|
protected function getDefaultFormatter(): FormatterInterface
|
||||||
|
{
|
||||||
|
return new LineFormatter();
|
||||||
|
}
|
||||||
|
}
|
39
src/Monolog/Handler/ProcessableHandlerInterface.php
Normal file
39
src/Monolog/Handler/ProcessableHandlerInterface.php
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?php declare(strict_types=1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of the Monolog package.
|
||||||
|
*
|
||||||
|
* (c) Jordi Boggiano <j.boggiano@seld.be>
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Monolog\Handler;
|
||||||
|
|
||||||
|
use Monolog\Processor\ProcessorInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interface to describe loggers that have processors
|
||||||
|
*
|
||||||
|
* @internal This interface is present in monolog 1.x to ease forward compatibility.
|
||||||
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
||||||
|
*/
|
||||||
|
interface ProcessableHandlerInterface
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Adds a processor in the stack.
|
||||||
|
*
|
||||||
|
* @param ProcessorInterface|callable $callback
|
||||||
|
* @return HandlerInterface self
|
||||||
|
*/
|
||||||
|
public function pushProcessor(callable $callback): HandlerInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes the processor on top of the stack and returns it.
|
||||||
|
*
|
||||||
|
* @throws \LogicException In case the processor stack is empty
|
||||||
|
* @return callable
|
||||||
|
*/
|
||||||
|
public function popProcessor(): callable;
|
||||||
|
}
|
72
src/Monolog/Handler/ProcessableHandlerTrait.php
Normal file
72
src/Monolog/Handler/ProcessableHandlerTrait.php
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
<?php declare(strict_types=1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of the Monolog package.
|
||||||
|
*
|
||||||
|
* (c) Jordi Boggiano <j.boggiano@seld.be>
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Monolog\Handler;
|
||||||
|
|
||||||
|
use Monolog\ResettableInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper trait for implementing ProcessableInterface
|
||||||
|
*
|
||||||
|
* @internal This interface is present in monolog 1.x to ease forward compatibility.
|
||||||
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
||||||
|
*/
|
||||||
|
trait ProcessableHandlerTrait
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var callable[]
|
||||||
|
*/
|
||||||
|
protected $processors = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
* @suppress PhanTypeMismatchReturn
|
||||||
|
*/
|
||||||
|
public function pushProcessor(callable $callback): HandlerInterface
|
||||||
|
{
|
||||||
|
array_unshift($this->processors, $callback);
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function popProcessor(): callable
|
||||||
|
{
|
||||||
|
if (!$this->processors) {
|
||||||
|
throw new \LogicException('You tried to pop from an empty processor stack.');
|
||||||
|
}
|
||||||
|
|
||||||
|
return array_shift($this->processors);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Processes a record.
|
||||||
|
*/
|
||||||
|
protected function processRecord(array $record): array
|
||||||
|
{
|
||||||
|
foreach ($this->processors as $processor) {
|
||||||
|
$record = $processor($record);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $record;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function resetProcessors(): void
|
||||||
|
{
|
||||||
|
foreach ($this->processors as $processor) {
|
||||||
|
if ($processor instanceof ResettableInterface) {
|
||||||
|
$processor->reset();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user