vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php line 26

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. /*
  3.  * This file is part of the Monolog package.
  4.  *
  5.  * (c) Jordi Boggiano <j.boggiano@seld.be>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Monolog\Handler;
  11. use Monolog\Logger;
  12. use Monolog\Utils;
  13. /**
  14.  * Stores to any stream resource
  15.  *
  16.  * Can be used to store into php://stderr, remote and local files, etc.
  17.  *
  18.  * @author Jordi Boggiano <j.boggiano@seld.be>
  19.  *
  20.  * @phpstan-import-type FormattedRecord from AbstractProcessingHandler
  21.  */
  22. class StreamHandler extends AbstractProcessingHandler
  23. {
  24.     /** @const int */
  25.     protected const MAX_CHUNK_SIZE 100 1024 1024;
  26.     /** @var int */
  27.     protected $streamChunkSize self::MAX_CHUNK_SIZE;
  28.     /** @var resource|null */
  29.     protected $stream;
  30.     /** @var ?string */
  31.     protected $url null;
  32.     /** @var ?string */
  33.     private $errorMessage null;
  34.     /** @var ?int */
  35.     protected $filePermission;
  36.     /** @var bool */
  37.     protected $useLocking;
  38.     /** @var true|null */
  39.     private $dirCreated null;
  40.     /**
  41.      * @param resource|string $stream         If a missing path can't be created, an UnexpectedValueException will be thrown on first write
  42.      * @param int|null        $filePermission Optional file permissions (default (0644) are only for owner read/write)
  43.      * @param bool            $useLocking     Try to lock log file before doing any writes
  44.      *
  45.      * @throws \InvalidArgumentException If stream is not a resource or string
  46.      */
  47.     public function __construct($stream$level Logger::DEBUGbool $bubble true, ?int $filePermission nullbool $useLocking false)
  48.     {
  49.         parent::__construct($level$bubble);
  50.         if (($phpMemoryLimit Utils::expandIniShorthandBytes(ini_get('memory_limit'))) !== false) {
  51.             if ($phpMemoryLimit 0) {
  52.                 // use max 10% of allowed memory for the chunk size
  53.                 $this->streamChunkSize max((int) ($phpMemoryLimit 10), 10*1024);
  54.             }
  55.             // else memory is unlimited, keep the buffer to the default 100MB
  56.         } else {
  57.             // no memory limit information, use a conservative 10MB
  58.             $this->streamChunkSize 10*10*1024;
  59.         }
  60.         if (is_resource($stream)) {
  61.             $this->stream $stream;
  62.             stream_set_chunk_size($this->stream$this->streamChunkSize);
  63.         } elseif (is_string($stream)) {
  64.             $this->url Utils::canonicalizePath($stream);
  65.         } else {
  66.             throw new \InvalidArgumentException('A stream must either be a resource or a string.');
  67.         }
  68.         $this->filePermission $filePermission;
  69.         $this->useLocking $useLocking;
  70.     }
  71.     /**
  72.      * {@inheritDoc}
  73.      */
  74.     public function close(): void
  75.     {
  76.         if ($this->url && is_resource($this->stream)) {
  77.             fclose($this->stream);
  78.         }
  79.         $this->stream null;
  80.         $this->dirCreated null;
  81.     }
  82.     /**
  83.      * Return the currently active stream if it is open
  84.      *
  85.      * @return resource|null
  86.      */
  87.     public function getStream()
  88.     {
  89.         return $this->stream;
  90.     }
  91.     /**
  92.      * Return the stream URL if it was configured with a URL and not an active resource
  93.      *
  94.      * @return string|null
  95.      */
  96.     public function getUrl(): ?string
  97.     {
  98.         return $this->url;
  99.     }
  100.     /**
  101.      * @return int
  102.      */
  103.     public function getStreamChunkSize(): int
  104.     {
  105.         return $this->streamChunkSize;
  106.     }
  107.     /**
  108.      * {@inheritDoc}
  109.      */
  110.     protected function write(array $record): void
  111.     {
  112.         if (!is_resource($this->stream)) {
  113.             $url $this->url;
  114.             if (null === $url || '' === $url) {
  115.                 throw new \LogicException('Missing stream url, the stream can not be opened. This may be caused by a premature call to close().');
  116.             }
  117.             $this->createDir($url);
  118.             $this->errorMessage null;
  119.             set_error_handler([$this'customErrorHandler']);
  120.             $stream fopen($url'a');
  121.             if ($this->filePermission !== null) {
  122.                 @chmod($url$this->filePermission);
  123.             }
  124.             restore_error_handler();
  125.             if (!is_resource($stream)) {
  126.                 $this->stream null;
  127.                 throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened in append mode: '.$this->errorMessage$url));
  128.             }
  129.             stream_set_chunk_size($stream$this->streamChunkSize);
  130.             $this->stream $stream;
  131.         }
  132.         $stream $this->stream;
  133.         if (!is_resource($stream)) {
  134.             throw new \LogicException('No stream was opened yet');
  135.         }
  136.         if ($this->useLocking) {
  137.             // ignoring errors here, there's not much we can do about them
  138.             flock($streamLOCK_EX);
  139.         }
  140.         $this->streamWrite($stream$record);
  141.         if ($this->useLocking) {
  142.             flock($streamLOCK_UN);
  143.         }
  144.     }
  145.     /**
  146.      * Write to stream
  147.      * @param resource $stream
  148.      * @param array    $record
  149.      *
  150.      * @phpstan-param FormattedRecord $record
  151.      */
  152.     protected function streamWrite($stream, array $record): void
  153.     {
  154.         fwrite($stream, (string) $record['formatted']);
  155.     }
  156.     private function customErrorHandler(int $codestring $msg): bool
  157.     {
  158.         $this->errorMessage preg_replace('{^(fopen|mkdir)\(.*?\): }'''$msg);
  159.         return true;
  160.     }
  161.     private function getDirFromStream(string $stream): ?string
  162.     {
  163.         $pos strpos($stream'://');
  164.         if ($pos === false) {
  165.             return dirname($stream);
  166.         }
  167.         if ('file://' === substr($stream07)) {
  168.             return dirname(substr($stream7));
  169.         }
  170.         return null;
  171.     }
  172.     private function createDir(string $url): void
  173.     {
  174.         // Do not try to create dir if it has already been tried.
  175.         if ($this->dirCreated) {
  176.             return;
  177.         }
  178.         $dir $this->getDirFromStream($url);
  179.         if (null !== $dir && !is_dir($dir)) {
  180.             $this->errorMessage null;
  181.             set_error_handler([$this'customErrorHandler']);
  182.             $status mkdir($dir0777true);
  183.             restore_error_handler();
  184.             if (false === $status && !is_dir($dir)) {
  185.                 throw new \UnexpectedValueException(sprintf('There is no existing directory at "%s" and it could not be created: '.$this->errorMessage$dir));
  186.             }
  187.         }
  188.         $this->dirCreated true;
  189.     }
  190. }