2022-01-09 03:50:38 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Kiri\Abstracts;
|
|
|
|
|
|
|
|
|
|
use DirectoryIterator;
|
|
|
|
|
use Exception;
|
|
|
|
|
use Kiri\Events\EventProvider;
|
|
|
|
|
use Kiri\Exception\ConfigException;
|
2022-01-12 14:10:33 +08:00
|
|
|
use Kiri;
|
2022-01-11 15:53:31 +08:00
|
|
|
use Kiri\Server\Events\OnWorkerStop;
|
2022-01-09 03:50:38 +08:00
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
|
use ReflectionException;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
class Logger implements LoggerInterface
|
|
|
|
|
{
|
2022-09-25 17:22:25 +08:00
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
const EMERGENCY = 'emergency';
|
|
|
|
|
const ALERT = 'alert';
|
|
|
|
|
const CRITICAL = 'critical';
|
|
|
|
|
const ERROR = 'error';
|
|
|
|
|
const WARNING = 'warning';
|
|
|
|
|
const NOTICE = 'notice';
|
|
|
|
|
const INFO = 'info';
|
|
|
|
|
const DEBUG = 'debug';
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
const LOGGER_LEVELS = [Logger::EMERGENCY, Logger::ALERT, Logger::CRITICAL, Logger::ERROR, Logger::WARNING, Logger::NOTICE, Logger::INFO, Logger::DEBUG];
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @param string $message
|
|
|
|
|
* @param array $context
|
|
|
|
|
* @throws ConfigException
|
|
|
|
|
*
|
|
|
|
|
* 紧急情况
|
|
|
|
|
*/
|
|
|
|
|
public function emergency($message, array $context = [])
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement emergency() method.
|
|
|
|
|
$this->log(Logger::EMERGENCY, $message, $context);
|
|
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @param string $message
|
|
|
|
|
* @param array $context
|
|
|
|
|
* @throws ConfigException
|
|
|
|
|
*
|
|
|
|
|
* 应该警惕的
|
|
|
|
|
*/
|
|
|
|
|
public function alert($message, array $context = [])
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement alert() method.
|
|
|
|
|
$this->log(Logger::ALERT, $message, $context);
|
|
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @param string $message
|
|
|
|
|
* @param array $context
|
|
|
|
|
* @throws ConfigException
|
|
|
|
|
*
|
|
|
|
|
* 关键性的日志
|
|
|
|
|
*/
|
|
|
|
|
public function critical($message, array $context = [])
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement critical() method.
|
|
|
|
|
$this->log(Logger::CRITICAL, $message, $context);
|
|
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @param string $message
|
|
|
|
|
* @param array $context
|
|
|
|
|
* @throws ConfigException
|
|
|
|
|
*/
|
|
|
|
|
public function error($message, array $context = [])
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement error() method.
|
|
|
|
|
$this->log(Logger::ERROR, $message, $context);
|
|
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @param string $message
|
|
|
|
|
* @param array $context
|
|
|
|
|
* @throws ConfigException
|
|
|
|
|
*/
|
|
|
|
|
public function warning($message, array $context = [])
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement warning() method.
|
|
|
|
|
$this->log(Logger::WARNING, $message, $context);
|
|
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @param string $message
|
|
|
|
|
* @param array $context
|
|
|
|
|
* @throws ConfigException
|
|
|
|
|
*/
|
|
|
|
|
public function notice($message, array $context = [])
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement notice() method.
|
|
|
|
|
$this->log(Logger::NOTICE, $message, $context);
|
|
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @param string $message
|
|
|
|
|
* @param array $context
|
|
|
|
|
* @throws ConfigException
|
|
|
|
|
*/
|
|
|
|
|
public function info($message, array $context = [])
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement info() method.
|
|
|
|
|
$this->log(Logger::INFO, $message, $context);
|
|
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @param string $message
|
|
|
|
|
* @param array $context
|
|
|
|
|
* @throws ConfigException
|
|
|
|
|
*/
|
|
|
|
|
public function debug($message, array $context = [])
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement debug() method.
|
|
|
|
|
$this->log(Logger::DEBUG, $message, $context);
|
|
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @param mixed $level
|
|
|
|
|
* @param string $message
|
|
|
|
|
* @param array $context
|
|
|
|
|
* @throws ConfigException
|
2022-06-22 16:29:42 +08:00
|
|
|
* @throws Exception
|
2022-01-09 03:50:38 +08:00
|
|
|
*/
|
|
|
|
|
public function log($level, $message, array $context = [])
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement log() method.
|
|
|
|
|
$levels = Config::get('log.level', Logger::LOGGER_LEVELS);
|
|
|
|
|
if (!in_array($level, $levels) || str_contains($message, 'Event::rshutdown')) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
2022-09-26 11:04:28 +08:00
|
|
|
$_string = '[' . now() . ']' . ucfirst($level) . ': ' . $message . PHP_EOL;
|
2022-06-22 16:29:42 +08:00
|
|
|
if (!empty($context)) {
|
2022-06-22 16:42:10 +08:00
|
|
|
$_string .= $this->_string($context);
|
2022-06-22 16:29:42 +08:00
|
|
|
}
|
2023-04-05 11:40:48 +08:00
|
|
|
var_dump($_string);
|
|
|
|
|
// file_put_contents('php://output', $_string);
|
2023-04-05 11:39:15 +08:00
|
|
|
//
|
|
|
|
|
// $filename = storage('log-' . date('Y-m-d') . '.log', 'log/');
|
|
|
|
|
//
|
|
|
|
|
// file_put_contents($filename, $_string, FILE_APPEND);
|
2022-01-09 03:50:38 +08:00
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @return void
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
2022-06-16 17:38:23 +08:00
|
|
|
public function flush(): void
|
2022-01-09 03:50:38 +08:00
|
|
|
{
|
|
|
|
|
$this->removeFile(storage());
|
|
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @param string $dirname
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
2022-06-16 17:38:23 +08:00
|
|
|
private function removeFile(string $dirname): void
|
2022-01-09 03:50:38 +08:00
|
|
|
{
|
|
|
|
|
$paths = new DirectoryIterator($dirname);
|
|
|
|
|
/** @var DirectoryIterator $path */
|
|
|
|
|
foreach ($paths as $path) {
|
|
|
|
|
if ($path->isDot() || str_starts_with($path->getFilename(), '.')) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if ($path->isDir()) {
|
|
|
|
|
$directory = rtrim($path->getRealPath(), '/');
|
|
|
|
|
$this->removeFile($directory);
|
|
|
|
|
}
|
|
|
|
|
@unlink($path->getRealPath());
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-09-25 17:22:25 +08:00
|
|
|
|
|
|
|
|
|
2022-01-09 03:50:38 +08:00
|
|
|
/**
|
|
|
|
|
* @param $context
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2022-06-22 16:29:42 +08:00
|
|
|
private function _string($context): string
|
2022-01-09 03:50:38 +08:00
|
|
|
{
|
2022-06-16 17:38:23 +08:00
|
|
|
if ($context instanceof \Throwable) {
|
|
|
|
|
$context = ['file' => $context->getFile(), 'line' => $context->getLine()];
|
|
|
|
|
}
|
2022-06-22 19:05:08 +08:00
|
|
|
if (is_array($context) && isset($context[0]) && $context[0] instanceof \Throwable) {
|
2022-06-22 16:29:42 +08:00
|
|
|
$context = ['file' => $context[0]->getFile(), 'line' => $context[0]->getLine()];
|
2022-01-09 03:50:38 +08:00
|
|
|
}
|
2022-06-22 16:29:42 +08:00
|
|
|
return print_r($context, true) . PHP_EOL;
|
2022-01-09 03:50:38 +08:00
|
|
|
}
|
|
|
|
|
}
|