163 lines
4.1 KiB
PHP

<?php
/*
*
* ____ _ _ __ __ _ __ __ ____
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* @author PocketMine Team
* @link http://www.pocketmine.net/
*
*
*/
namespace pocketmine\utils;
class MainLogger extends \Thread implements Logger{
protected $logFile;
protected $logStream;
protected $shutdown;
protected $hasANSI;
private $logResource;
/** @var MainLogger */
public static $logger = null;
/**
* @param string $logFile
* @param bool $hasANSI
*
* @throws \RuntimeException
*/
public function __construct($logFile, $hasANSI = false){
if(static::$logger instanceof MainLogger){
throw new \RuntimeException("MainLogger has been already created");
}
static::$logger = $this;
@mkdir(basename($logFile), 0777, true);
$this->logFile = $logFile;
$this->hasANSI = (bool) $hasANSI;
$this->logStream = "";
$this->start(PTHREADS_INHERIT_NONE);
}
/**
* @return MainLogger
*/
public static function getLogger(){
return static::$logger;
}
public function emergency($message){
$this->send(TextFormat::RED . "[EMERGENCY] ". $message);
}
public function alert($message){
$this->send(TextFormat::RED . "[ALERT] ". $message);
}
public function critical($message){
$this->send(TextFormat::RED . "[CRITICAL] ". $message);
}
public function error($message){
$this->send(TextFormat::DARK_RED . "[ERROR] ". $message);
}
public function warning($message){
$this->send(TextFormat::YELLOW . "[WARNING] ". $message);
}
public function notice($message){
$this->send(TextFormat::AQUA . "[NOTICE] ". $message);
}
public function info($message){
$this->send(TextFormat::WHITE . "[INFO] ". $message);
}
public function debug($message){
$this->send(TextFormat::GRAY . "[DEBUG] ". $message);
}
public function log($level, $message){
switch($level){
case LogLevel::EMERGENCY:
$this->emergency($message);
break;
case LogLevel::ALERT:
$this->alert($message);
break;
case LogLevel::CRITICAL:
$this->critical($message);
break;
case LogLevel::ERROR:
$this->error($message);
break;
case LogLevel::WARNING:
$this->warning($message);
break;
case LogLevel::NOTICE:
$this->notice($message);
break;
case LogLevel::INFO:
$this->info($message);
break;
case LogLevel::DEBUG:
$this->debug($message);
break;
}
}
public function shutdown(){
$this->shutdown = true;
}
protected function send($message){
$now = time();
$message = TextFormat::toANSI(TextFormat::AQUA . date("H:i:s", $now) . TextFormat::RESET . " " . $message . TextFormat::RESET . PHP_EOL);
$cleanMessage = TextFormat::clean(preg_replace('/\x1b\[[0-9;]*m/', "", $message));
if(!$this->hasANSI){
echo $cleanMessage;
}else{
echo $message;
}
$this->logStream .= date("Y-m-d", $now) . " " . $cleanMessage;
}
public function run(){
$this->shutdown = false;
$this->logResource = fopen($this->logFile, "a+b");
if(!is_resource($this->logResource)){
throw new \RuntimeException("Couldn't open log file");
}
flock($this->logResource, LOCK_EX);
while($this->shutdown === false){
if(strlen($this->logStream) >= 4096){
$this->synchronized(function(){
$chunks = strlen($this->logStream) >> 12;
$chunk = substr($this->logStream, 0, $chunks << 12);
$this->logStream = substr($this->logStream, $chunks << 12);
fwrite($this->logResource, $chunk);
});
}else{
usleep(250000); //sleep for 0.25 seconds
}
}
if(strlen($this->logStream) > 0){
fwrite($this->logResource, $this->logStream);
}
flock($this->logResource, LOCK_UN);
fclose($this->logResource);
}
}