2017-08-23 14:45:03 +00:00
|
|
|
import * as util from "util";
|
|
|
|
import * as fs from "fs";
|
2017-09-16 17:12:58 +00:00
|
|
|
import { EventEmitter } from "events";
|
2017-10-21 10:45:20 +00:00
|
|
|
import * as path from "path";
|
2018-08-09 17:52:01 +00:00
|
|
|
import Lock from "./lock";
|
2017-08-23 14:45:03 +00:00
|
|
|
|
2018-09-01 10:28:15 +00:00
|
|
|
export const Colors = {
|
|
|
|
Reset: "\x1b[0m",
|
|
|
|
Bright: "\x1b[1m",
|
|
|
|
Dim: "\x1b[2m",
|
|
|
|
Underscore: "\x1b[4m",
|
|
|
|
Blink: "\x1b[5m",
|
|
|
|
Reverse: "\x1b[7m",
|
|
|
|
Hidden: "\x1b[8m",
|
|
|
|
|
|
|
|
FgBlack: "\x1b[30m",
|
|
|
|
FgRed: "\x1b[31m",
|
|
|
|
FgGreen: "\x1b[32m",
|
|
|
|
FgYellow: "\x1b[33m",
|
|
|
|
FgBlue: "\x1b[34m",
|
|
|
|
FgMagenta: "\x1b[35m",
|
|
|
|
FgCyan: "\x1b[36m",
|
|
|
|
FgWhite: "\x1b[37m",
|
|
|
|
|
|
|
|
BgBlack: "\x1b[40m",
|
|
|
|
BgRed: "\x1b[41m",
|
|
|
|
BgGreen: "\x1b[42m",
|
|
|
|
BgYellow: "\x1b[43m",
|
|
|
|
BgBlue: "\x1b[44m",
|
|
|
|
BgMagenta: "\x1b[45m",
|
|
|
|
BgCyan: "\x1b[46m",
|
|
|
|
BgWhite: "\x1b[47m"
|
|
|
|
}
|
2017-08-23 14:45:03 +00:00
|
|
|
|
2018-02-18 15:00:16 +00:00
|
|
|
const maxFileSize = 500000000;
|
|
|
|
|
2018-05-10 18:11:53 +00:00
|
|
|
const OriginalErrorStackFunction = (<any>Error.prototype).prepareStackTrace
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
export interface LoggingBaseOptions {
|
2018-09-01 14:45:22 +00:00
|
|
|
/**
|
2018-09-20 16:30:21 +00:00
|
|
|
* Name will be prefixed on Console output and added to logfiles, if not specified here
|
2018-09-01 14:45:22 +00:00
|
|
|
*/
|
|
|
|
name: string,
|
2018-09-20 16:30:21 +00:00
|
|
|
/**
|
|
|
|
* Filename/path of the logfile. Skip if generated with name
|
|
|
|
*/
|
2018-08-09 17:52:01 +00:00
|
|
|
logfile: string;
|
2018-09-20 16:30:21 +00:00
|
|
|
/**
|
|
|
|
* Filename/path of the logfile. Skip if generated with name
|
|
|
|
*/
|
2018-08-09 17:52:01 +00:00
|
|
|
errorfile: string;
|
2018-09-20 16:30:21 +00:00
|
|
|
/**
|
|
|
|
* Prints output to console
|
|
|
|
*/
|
2018-08-09 17:52:01 +00:00
|
|
|
console_out: boolean;
|
|
|
|
}
|
2017-08-23 14:45:03 +00:00
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
export class LoggingBase {
|
|
|
|
private config: LoggingBaseOptions;
|
|
|
|
private writeLock = new Lock();
|
|
|
|
|
|
|
|
private fileStream: fs.WriteStream;
|
|
|
|
private errorStream: fs.WriteStream;
|
|
|
|
private fileSize: number = 0;
|
|
|
|
private errorSize: number = 0;
|
|
|
|
|
|
|
|
private queue = new Array<{ message: string, error: boolean }>();
|
|
|
|
|
|
|
|
constructor(options?: Partial<LoggingBaseOptions>) {
|
|
|
|
if (!options) options = {};
|
2018-09-01 14:57:21 +00:00
|
|
|
if (options.name) {
|
|
|
|
if (options.logfile === undefined) {
|
|
|
|
options.logfile = `./logs/all.${options.name}.log`
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.errorfile === undefined) {
|
2018-09-01 17:17:59 +00:00
|
|
|
options.errorfile = `./logs/error.${options.name}.log`
|
2018-09-01 14:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-09 17:52:01 +00:00
|
|
|
this.config = Object.assign(<LoggingBaseOptions>{
|
2018-09-01 14:45:22 +00:00
|
|
|
name: undefined,
|
2018-08-09 17:52:01 +00:00
|
|
|
console_out: true,
|
|
|
|
logfile: "./logs/all.log",
|
|
|
|
errorfile: "./logs/error.log"
|
|
|
|
}, options);
|
|
|
|
this.setup();
|
|
|
|
}
|
2017-08-23 14:45:03 +00:00
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
get console_out() {
|
|
|
|
return this.config.console_out;
|
|
|
|
}
|
2017-08-23 14:45:03 +00:00
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
set console_out(value) {
|
|
|
|
this.config.console_out = value;
|
|
|
|
}
|
2017-09-16 17:12:58 +00:00
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
public async waitForSetup() {
|
|
|
|
(await this.writeLock.getLock()).release();
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
private async setup() {
|
|
|
|
let lock = await this.writeLock.getLock();
|
|
|
|
if (this.config.logfile) {
|
|
|
|
let f = await this.initializeFile(this.config.logfile, true);
|
|
|
|
this.fileStream = f.stream;
|
|
|
|
this.fileSize = f.size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.config.errorfile) {
|
|
|
|
let f = await this.initializeFile(this.config.errorfile, true);
|
|
|
|
this.errorStream = f.stream;
|
|
|
|
this.errorSize = f.size;
|
|
|
|
}
|
|
|
|
lock.release();
|
|
|
|
this.checkQueue();
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
events: EventEmitter = new EventEmitter();
|
|
|
|
|
|
|
|
debug(...message: any[]) {
|
|
|
|
this.message(LoggingTypes.Debug, message);
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
log(...message: any[]) {
|
|
|
|
this.message(LoggingTypes.Log, message);
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
warning(...message: any[]) {
|
|
|
|
this.message(LoggingTypes.Warning, message);
|
2017-09-16 17:21:22 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
logWithCustomColors(type: LoggingTypes, colors: string, ...message: any[]) {
|
|
|
|
this.message(type, message, colors);
|
|
|
|
}
|
|
|
|
|
|
|
|
error(error: Error | string) {
|
2018-09-17 20:42:22 +00:00
|
|
|
if (!error) error = "Empty ERROR was passed, so no informations available";
|
2017-08-23 14:45:03 +00:00
|
|
|
if (typeof error === "string") {
|
2018-05-11 06:05:55 +00:00
|
|
|
let e = new Error()
|
2018-09-02 10:22:39 +00:00
|
|
|
this.message(LoggingTypes.Error, [error, "\n", e.stack]);
|
2018-07-01 11:05:34 +00:00
|
|
|
} else {
|
2018-09-02 10:22:39 +00:00
|
|
|
this.message(LoggingTypes.Error, [error.message, "\n", error.stack], undefined, getCallerFromExisting(error));
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
errorMessage(...message: any[]) {
|
|
|
|
this.message(LoggingTypes.Error, message);
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
|
2018-08-19 14:39:04 +00:00
|
|
|
private async message(type: LoggingTypes, message: any[] | string, customColors?: string, caller?: { file: string, line: number }) {
|
2018-09-01 10:28:15 +00:00
|
|
|
var consoleLogFormat = Colors.Reset;
|
2017-09-16 17:21:22 +00:00
|
|
|
if (!customColors) {
|
|
|
|
switch (type) {
|
|
|
|
case LoggingTypes.Log:
|
|
|
|
//m += FgWhite + BgBlack;
|
|
|
|
break;
|
|
|
|
case LoggingTypes.Error:
|
2018-09-01 10:28:15 +00:00
|
|
|
consoleLogFormat += Colors.FgRed;//FgWhite + BgRed + FgWhite;
|
2017-09-16 17:21:22 +00:00
|
|
|
break;
|
|
|
|
case LoggingTypes.Debug:
|
2018-09-01 10:28:15 +00:00
|
|
|
consoleLogFormat += Colors.FgCyan;
|
2017-09-16 17:21:22 +00:00
|
|
|
break;
|
|
|
|
case LoggingTypes.Warning:
|
2018-09-01 10:28:15 +00:00
|
|
|
consoleLogFormat += Colors.FgYellow;
|
2017-09-16 17:21:22 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
consoleLogFormat += customColors;
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
var mb = "";
|
|
|
|
if (typeof message === "string") {
|
|
|
|
mb = message;
|
|
|
|
} else {
|
|
|
|
message.forEach(e => {
|
|
|
|
if (typeof e !== "string") e = util.inspect(e, false, null);
|
|
|
|
if (e.endsWith("\n")) {
|
|
|
|
mb += e;
|
|
|
|
} else {
|
|
|
|
mb += e + " ";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-08-19 14:39:04 +00:00
|
|
|
let file = caller || getCallerFile();
|
2018-05-12 16:46:47 +00:00
|
|
|
let date = new Date().toISOString().replace(/T/, ' ').replace(/\..+/, '');
|
2018-08-09 17:52:01 +00:00
|
|
|
let prefix = `[${LoggingTypes[type]}][${file.file}:${file.line}][${date}]: `;
|
|
|
|
let message_lines = mb.split("\n").map(line => prefix + line);
|
2017-11-04 22:58:00 +00:00
|
|
|
|
2018-09-01 14:45:22 +00:00
|
|
|
if (this.config.console_out) {
|
|
|
|
let prefix = "";
|
|
|
|
if (this.config.name) prefix = `[${this.config.name}]`;
|
|
|
|
message_lines.forEach(line => console.log(consoleLogFormat + prefix + line + Colors.Reset));
|
|
|
|
}
|
2018-08-09 17:52:01 +00:00
|
|
|
|
|
|
|
let m = message_lines.join("\n");
|
2017-11-04 22:58:00 +00:00
|
|
|
let index = m.indexOf("\x1b");
|
|
|
|
while (index >= 0) {
|
2018-04-09 18:02:34 +00:00
|
|
|
m = m.substring(0, index) + m.substring(index + 5, m.length);
|
2017-11-04 22:58:00 +00:00
|
|
|
index = m.indexOf("\x1b");
|
|
|
|
}
|
|
|
|
|
2018-04-09 17:57:39 +00:00
|
|
|
m = m.replace(/[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g, "");
|
2018-08-09 17:52:01 +00:00
|
|
|
this.writeMessageToFile(m, type === LoggingTypes.Error);
|
|
|
|
this.events.emit("message", { type: type, message: mb });
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
private writeMessageToFile(message: string, error?: boolean) {
|
|
|
|
if (!this.writeLock.locked && !this.fileStream && !(error || this.errorStream)) return;
|
|
|
|
this.queue.push({ message: message.replace("\n", " "), error: error });
|
|
|
|
this.checkQueue();
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
private async checkQueue() {
|
2018-02-18 15:00:16 +00:00
|
|
|
try {
|
2018-08-09 17:52:01 +00:00
|
|
|
if (this.writeLock.locked) return;
|
|
|
|
if (this.queue.length <= 0) return;
|
|
|
|
let lock = await this.writeLock.getLock();
|
|
|
|
var message = this.queue.shift();
|
2018-02-18 15:00:16 +00:00
|
|
|
message.message += "\n";
|
|
|
|
let data = new Buffer(message.message, "utf8");
|
2018-08-09 17:52:01 +00:00
|
|
|
await this.writeToLogFile(data);
|
|
|
|
if (message.error) await this.writeToErrorFile(data);
|
|
|
|
lock.release();
|
|
|
|
if (this.queue.length > 0) this.checkQueue();
|
2018-02-18 15:00:16 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.log(e)
|
|
|
|
}
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
private async writeToLogFile(data: Buffer) {
|
|
|
|
if (data.byteLength < maxFileSize && this.fileSize + data.byteLength > maxFileSize) {
|
|
|
|
let f = await this.initializeFile(this.config.logfile, true);
|
|
|
|
this.fileStream = f.stream;
|
|
|
|
this.fileSize = f.size;
|
|
|
|
}
|
|
|
|
this.fileSize += data.byteLength;
|
|
|
|
this.fileStream.write(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
private async writeToErrorFile(data: Buffer) {
|
|
|
|
if (data.byteLength < maxFileSize && this.errorSize + data.byteLength > maxFileSize) {
|
|
|
|
let f = await this.initializeFile(this.config.errorfile, true);
|
|
|
|
this.errorStream = f.stream;
|
|
|
|
this.errorSize = f.size;
|
|
|
|
}
|
|
|
|
this.errorSize += data.byteLength;
|
|
|
|
this.errorStream.write(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
private async initializeFile(file: string, new_file = true): Promise<{ stream: fs.WriteStream, size: number }> {
|
2017-08-23 14:45:03 +00:00
|
|
|
try {
|
|
|
|
await new Promise((resolve, reject) => {
|
2018-08-09 17:52:01 +00:00
|
|
|
const folder = path.dirname(file);
|
|
|
|
if (folder)
|
|
|
|
fs.exists(folder, (exists) => {
|
|
|
|
if (!exists) {
|
|
|
|
fs.mkdir(folder, (err) => {
|
|
|
|
if (err) {
|
|
|
|
reject(err);
|
|
|
|
} else {
|
|
|
|
resolve();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else resolve();
|
|
|
|
});
|
2017-08-23 14:45:03 +00:00
|
|
|
});
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
let size = 0;
|
|
|
|
if (await fsExists(file)) {
|
|
|
|
let stats = await fsStat(file);
|
|
|
|
if (new_file || stats.size > maxFileSize) {
|
|
|
|
if (await fsExists(file + ".old"))
|
|
|
|
await fsUnlink(file + ".old");
|
|
|
|
await fsMove(file, file + ".old")
|
2018-02-18 15:00:16 +00:00
|
|
|
} else {
|
2018-08-09 17:52:01 +00:00
|
|
|
size = stats.size;
|
2018-02-18 15:00:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-09 17:52:01 +00:00
|
|
|
return { stream: fs.createWriteStream(file, { flags: "a" }), size: size };
|
2017-08-23 14:45:03 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.log(e);
|
|
|
|
}
|
2018-08-09 17:52:01 +00:00
|
|
|
return { size: 0, stream: undefined };
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-09 17:52:01 +00:00
|
|
|
export const Logging = new LoggingBase();
|
2018-05-12 16:46:47 +00:00
|
|
|
export default Logging;
|
|
|
|
|
2018-02-18 15:00:16 +00:00
|
|
|
function fsUnlink(path) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
fs.unlink(path, (err) => {
|
|
|
|
if (err) reject(err);
|
|
|
|
else resolve();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function fsStat(path: string) {
|
|
|
|
return new Promise<fs.Stats>((resolve, reject) => {
|
|
|
|
fs.stat(path, (err, stats) => {
|
|
|
|
if (err) reject(err);
|
|
|
|
else resolve(stats);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function fsMove(oldPath, newPath) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
|
|
|
let callback = (err?) => {
|
|
|
|
if (err) reject(err)
|
|
|
|
else resolve()
|
|
|
|
}
|
|
|
|
|
|
|
|
fs.rename(oldPath, newPath, function (err) {
|
|
|
|
if (err) {
|
|
|
|
if (err.code === 'EXDEV') {
|
|
|
|
copy();
|
|
|
|
} else {
|
|
|
|
callback(err)
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
callback()
|
|
|
|
});
|
|
|
|
|
|
|
|
function copy() {
|
|
|
|
var readStream = fs.createReadStream(oldPath);
|
|
|
|
var writeStream = fs.createWriteStream(newPath);
|
|
|
|
|
|
|
|
readStream.on('error', callback);
|
|
|
|
writeStream.on('error', callback);
|
|
|
|
|
|
|
|
readStream.on('close', function () {
|
|
|
|
fs.unlink(oldPath, callback);
|
|
|
|
});
|
|
|
|
|
|
|
|
readStream.pipe(writeStream);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function fsExists(path) {
|
|
|
|
return new Promise<boolean>((resolve, reject) => {
|
|
|
|
fs.exists(path, resolve);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function fsMkDir(path) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
fs.exists(path, resolve);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-05-10 18:11:53 +00:00
|
|
|
function getStack() {
|
|
|
|
// Save original Error.prepareStackTrace
|
|
|
|
let origPrepareStackTrace = (<any>Error).prepareStackTrace;
|
|
|
|
|
|
|
|
// Override with function that just returns `stack`
|
|
|
|
(<any>Error).prepareStackTrace = function (_, stack) {
|
|
|
|
return stack
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new `Error`, which automatically gets `stack`
|
|
|
|
let err = new Error();
|
|
|
|
|
|
|
|
// Evaluate `err.stack`, which calls our new `Error.prepareStackTrace`
|
|
|
|
let stack: any[] = <any>err.stack;
|
|
|
|
|
|
|
|
// Restore original `Error.prepareStackTrace`
|
|
|
|
(<any>Error).prepareStackTrace = origPrepareStackTrace;
|
|
|
|
|
|
|
|
// Remove superfluous function call on stack
|
|
|
|
stack.shift(); // getStack --> Error
|
|
|
|
|
|
|
|
return stack
|
|
|
|
}
|
|
|
|
|
2018-05-12 16:46:47 +00:00
|
|
|
function getCallerFile() {
|
2017-08-23 14:45:03 +00:00
|
|
|
try {
|
2018-05-10 18:11:53 +00:00
|
|
|
let stack = getStack()
|
2017-08-23 14:45:03 +00:00
|
|
|
|
2018-05-10 18:11:53 +00:00
|
|
|
let current_file = stack.shift().getFileName();
|
2017-08-23 14:45:03 +00:00
|
|
|
|
2018-05-10 18:11:53 +00:00
|
|
|
while (stack.length) {
|
2018-05-12 16:46:47 +00:00
|
|
|
let caller_file = stack.shift();
|
|
|
|
const util = require("util")
|
|
|
|
if (current_file !== caller_file.getFileName())
|
|
|
|
return {
|
|
|
|
file: path.basename(caller_file.getFileName()),
|
|
|
|
line: caller_file.getLineNumber()
|
|
|
|
};
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
} catch (err) { }
|
2018-05-12 16:46:47 +00:00
|
|
|
return { file: undefined, line: 0 };
|
2017-08-23 14:45:03 +00:00
|
|
|
}
|
|
|
|
|
2018-08-19 14:39:04 +00:00
|
|
|
function getCallerFromExisting(err: Error): { file: string, line: number } {
|
|
|
|
let lines = err.stack.split("\n");
|
|
|
|
let current = path.basename(__filename);
|
|
|
|
lines.shift();// removing first line
|
|
|
|
while (lines.length > 0) {
|
|
|
|
let line = lines.shift();
|
2018-09-20 16:30:21 +00:00
|
|
|
let matches = line.match(/[a-zA-Z_-]+[.][a-zA-Z_-]+[:][0-9]+/g)
|
2018-08-19 14:39:04 +00:00
|
|
|
if (matches && matches.length > 0) {
|
|
|
|
let [f, line] = matches[0].split(":")
|
|
|
|
if (f != current) {
|
|
|
|
return {
|
|
|
|
file: f, line: Number(line)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-23 14:45:03 +00:00
|
|
|
export enum LoggingTypes {
|
|
|
|
Log,
|
|
|
|
Warning,
|
|
|
|
Error,
|
|
|
|
Debug
|
|
|
|
}
|