singlog/source/singlog.d

160 lines
4.0 KiB
D
Raw Normal View History

2023-03-23 09:20:46 +00:00
module singlog;
import core.sys.posix.syslog;
import std.stdio;
import std.conv;
import std.meta;
import std.file;
import std.datetime;
import datefmt;
alias log = Log.msg;
2023-03-29 12:53:00 +00:00
2023-03-23 09:20:46 +00:00
/++
Singleton for simple logging
---
// Setting the error output level
2023-03-29 12:53:00 +00:00
log.level(log.DEBUG);
log.level(log.ALERT);
log.level(log.CRIT);
log.level(log.ERR);
log.level(log.WARNING);
log.level(log.NOTICE);
log.level(log.INFO);
2023-03-23 09:20:46 +00:00
// Assigning a target output
2023-03-29 12:53:00 +00:00
log.output(log.SYSLOG);
log.output(log.STDOUT);
log.output(log.FILE);
2023-03-23 09:20:46 +00:00
// Setup and allowing writing to a file
2023-03-29 12:53:00 +00:00
log.file("./file.log");
log.fileOn();
log.fileOff();
2023-03-23 09:20:46 +00:00
// Output of messages to the log
2023-03-29 12:53:00 +00:00
log.alert("Alert message");
log.critical("Critical message");
log.error("Error message");
log.warning("Warning message");
log.notice("Notice message");
log.informations("Information message");
log.debugging("Debugging message");
2023-03-23 09:20:46 +00:00
---
+/
class Log
{
private static Log log;
private string path;
2023-03-29 12:53:00 +00:00
private bool writeToFile = true;
2023-03-23 09:20:46 +00:00
private static SysTime time;
// Target output
2023-03-29 12:53:00 +00:00
enum {
SYSLOG = 1,
STDOUT = 2,
FILE = 4
}
2023-03-23 09:20:46 +00:00
// Message output level
enum {
DEBUG = 0,
CRIT = 1,
ERR = 2,
WARNING = 3,
NOTICE = 4,
INFO = 5,
ALERT = 6
}
int msgOutput = STDOUT;
int msgLevel = INFO;
private this() {}
private void writeLog(string message, int msgLevel, int priority)
{
if (this.msgLevel > msgLevel)
return;
2023-03-29 12:53:00 +00:00
if (this.msgOutput & 1)
2023-03-23 09:20:46 +00:00
syslog(priority, (message ~ "\0").ptr);
2023-03-29 12:53:00 +00:00
if (this.msgOutput & 2)
writeln(message);
if (this.msgOutput & 4)
writeFile(message);
2023-03-23 09:20:46 +00:00
}
private void writeFile(string message)
{
2023-03-29 12:53:00 +00:00
if (!this.writeToFile)
2023-03-23 09:20:46 +00:00
return;
if (this.path.exists)
2023-03-29 12:53:00 +00:00
this.writeToFile = true;
2023-03-23 09:20:46 +00:00
else
{
2023-03-29 12:53:00 +00:00
this.writeToFile = false;
2023-03-23 09:20:46 +00:00
this.warning("The log file does not exist: " ~ this.path);
}
File file;
try {
file = File(this.path, "a+");
2023-03-29 12:53:00 +00:00
this.writeToFile = true;
2023-03-23 09:20:46 +00:00
} catch (Exception e) {
2023-03-29 12:53:00 +00:00
this.writeToFile = false;
2023-03-23 09:20:46 +00:00
this.error("Unable to open the log file " ~ this.path);
this.critical(e);
return;
}
try {
file.writeln(this.time.format("%Y.%m.%d %H:%M:%S: ") ~ message);
} catch (Exception e) {
2023-03-29 12:53:00 +00:00
this.writeToFile = false;
2023-03-23 09:20:46 +00:00
this.error("Unable to write to the log file " ~ this.path);
this.critical(e);
return;
}
try {
file.close();
} catch (Exception e) {
2023-03-29 12:53:00 +00:00
this.writeToFile = false;
2023-03-23 09:20:46 +00:00
this.error("Unable to close the log file " ~ this.path);
this.critical(e);
return;
}
}
@property static Log msg()
{
if (this.log is null)
{
this.log = new Log;
this.time = Clock.currTime();
}
return this.log;
}
void output(int msgOutput) { this.msgOutput = msgOutput; }
void level(int msgLevel) { this.msgLevel = msgLevel; }
void file(string path) { this.path = path; }
void alert(T)(T message) { writeLog(message.to!string, ALERT, LOG_ALERT); }
void critical(T)(T message) { writeLog(message.to!string, CRIT, LOG_CRIT); }
void error(T)(T message) { writeLog(message.to!string, ERR, LOG_ERR); }
void warning(T)(T message) { writeLog(message.to!string, WARNING, LOG_WARNING); }
void notice(T)(T message) { writeLog(message.to!string, NOTICE, LOG_NOTICE); }
void information(T)(T message) { writeLog(message.to!string, INFO, LOG_INFO); }
void debugging(T)(T message) {writeLog(message.to!string, DEBUG, LOG_DEBUG); }
alias a = alert;
alias c = critical;
alias e = error;
alias w = warning;
alias n = notice;
alias i = information;
alias d = debugging;
2023-03-23 09:20:46 +00:00
}