mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
logger factory.
This commit is contained in:
parent
94a62e4846
commit
b7ebbcbdf5
@ -3,13 +3,14 @@ import EventEmitter from 'eventemitter3'
|
|||||||
import * as EVENT from '../types/events'
|
import * as EVENT from '../types/events'
|
||||||
|
|
||||||
import { NekoWebSocket } from './websocket'
|
import { NekoWebSocket } from './websocket'
|
||||||
import { NekoLogger } from './logger'
|
import { NekoLoggerFactory } from './logger'
|
||||||
import { NekoWebRTC } from './webrtc'
|
import { NekoWebRTC } from './webrtc'
|
||||||
import { Connection, WebRTCStats } from '../types/state'
|
import { Connection, WebRTCStats } from '../types/state'
|
||||||
|
|
||||||
import { Reconnector } from './reconnector'
|
import { Reconnector } from './reconnector'
|
||||||
import { WebsocketReconnector } from './reconnector/websocket'
|
import { WebsocketReconnector } from './reconnector/websocket'
|
||||||
import { WebrtcReconnector } from './reconnector/webrtc'
|
import { WebrtcReconnector } from './reconnector/webrtc'
|
||||||
|
import { Logger } from '../utils/logger'
|
||||||
|
|
||||||
const WEBRTC_RECONN_MAX_LOSS = 25
|
const WEBRTC_RECONN_MAX_LOSS = 25
|
||||||
const WEBRTC_RECONN_FAILED_ATTEMPTS = 5
|
const WEBRTC_RECONN_FAILED_ATTEMPTS = 5
|
||||||
@ -25,7 +26,8 @@ export class NekoConnection extends EventEmitter<NekoConnectionEvents> {
|
|||||||
private _open = false
|
private _open = false
|
||||||
|
|
||||||
public websocket = new NekoWebSocket()
|
public websocket = new NekoWebSocket()
|
||||||
public webrtc = new NekoWebRTC(new NekoLogger(this.websocket, 'webrtc'))
|
public logger = new NekoLoggerFactory(this.websocket)
|
||||||
|
public webrtc = new NekoWebRTC(this.logger.new('webrtc'))
|
||||||
|
|
||||||
private _reconnector: {
|
private _reconnector: {
|
||||||
websocket: Reconnector
|
websocket: Reconnector
|
||||||
@ -155,6 +157,10 @@ export class NekoConnection extends EventEmitter<NekoConnectionEvents> {
|
|||||||
this.websocket.send(EVENT.SIGNAL_VIDEO, { video })
|
this.websocket.send(EVENT.SIGNAL_VIDEO, { video })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getLogger(scope?: string): Logger {
|
||||||
|
return this.logger.new(scope)
|
||||||
|
}
|
||||||
|
|
||||||
public open(video?: string) {
|
public open(video?: string) {
|
||||||
if (this._open) {
|
if (this._open) {
|
||||||
throw new Error('connection already open')
|
throw new Error('connection already open')
|
||||||
@ -194,6 +200,8 @@ export class NekoConnection extends EventEmitter<NekoConnectionEvents> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public destroy() {
|
public destroy() {
|
||||||
|
this.logger.destroy()
|
||||||
|
|
||||||
// TODO: Use server side congestion control.
|
// TODO: Use server side congestion control.
|
||||||
this.webrtc.off('stats', this._webrtcCongestionControlHandle)
|
this.webrtc.off('stats', this._webrtcCongestionControlHandle)
|
||||||
|
|
||||||
|
@ -7,15 +7,13 @@ const MAX_LOG_MESSAGES = 25
|
|||||||
const FLUSH_TIMEOUT_MS = 250
|
const FLUSH_TIMEOUT_MS = 250
|
||||||
const RETRY_INTERVAL_MS = 2500
|
const RETRY_INTERVAL_MS = 2500
|
||||||
|
|
||||||
export class NekoLogger extends Logger {
|
export class NekoLoggerFactory {
|
||||||
private _ws: NekoWebSocket
|
private _ws: NekoWebSocket
|
||||||
private _logs: message.SystemLog[] = []
|
private _logs: message.SystemLog[] = []
|
||||||
private _timeout: number | null = null
|
private _timeout: number | null = null
|
||||||
private _interval: number | null = null
|
private _interval: number | null = null
|
||||||
|
|
||||||
constructor(websocket: NekoWebSocket, scope?: string) {
|
constructor(websocket: NekoWebSocket) {
|
||||||
super(scope)
|
|
||||||
|
|
||||||
this._ws = websocket
|
this._ws = websocket
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -26,13 +24,7 @@ export class NekoLogger extends Logger {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected _send(level: string, message: string, fields?: Record<string, any>) {
|
private _send(level: string, message: string, fields?: Record<string, any>) {
|
||||||
if (!fields) {
|
|
||||||
fields = { submodule: this._scope }
|
|
||||||
} else {
|
|
||||||
fields['submodule'] = this._scope
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const key in fields) {
|
for (const key in fields) {
|
||||||
const field = fields[key]
|
const field = fields[key]
|
||||||
|
|
||||||
@ -76,24 +68,16 @@ export class NekoLogger extends Logger {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public error(message: string, fields?: Record<string, any>) {
|
public new(submodule?: string): Logger {
|
||||||
this._console('error', message, fields)
|
return new NekoLogger((level: string, message: string, fields?: Record<string, any>) => {
|
||||||
this._send('error', message, fields)
|
if (!fields) {
|
||||||
}
|
fields = { submodule }
|
||||||
|
} else {
|
||||||
|
fields['submodule'] = submodule
|
||||||
|
}
|
||||||
|
|
||||||
public warn(message: string, fields?: Record<string, any>) {
|
this._send(level, message, fields)
|
||||||
this._console('warn', message, fields)
|
}, submodule)
|
||||||
this._send('warn', message, fields)
|
|
||||||
}
|
|
||||||
|
|
||||||
public info(message: string, fields?: Record<string, any>) {
|
|
||||||
this._console('info', message, fields)
|
|
||||||
this._send('info', message, fields)
|
|
||||||
}
|
|
||||||
|
|
||||||
public debug(message: string, fields?: Record<string, any>) {
|
|
||||||
this._console('debug', message, fields)
|
|
||||||
this._send('debug', message, fields)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public destroy() {
|
public destroy() {
|
||||||
@ -112,3 +96,35 @@ export class NekoLogger extends Logger {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type NekoLoggerMessage = (level: string, message: string, fields?: Record<string, any>) => void
|
||||||
|
|
||||||
|
export class NekoLogger extends Logger {
|
||||||
|
private _on_send: NekoLoggerMessage
|
||||||
|
|
||||||
|
constructor(onSend: NekoLoggerMessage, scope?: string) {
|
||||||
|
super(scope)
|
||||||
|
|
||||||
|
this._on_send = onSend
|
||||||
|
}
|
||||||
|
|
||||||
|
public error(message: string, fields?: Record<string, any>) {
|
||||||
|
this._console('error', message, fields)
|
||||||
|
this._on_send('error', message, fields)
|
||||||
|
}
|
||||||
|
|
||||||
|
public warn(message: string, fields?: Record<string, any>) {
|
||||||
|
this._console('warn', message, fields)
|
||||||
|
this._on_send('warn', message, fields)
|
||||||
|
}
|
||||||
|
|
||||||
|
public info(message: string, fields?: Record<string, any>) {
|
||||||
|
this._console('info', message, fields)
|
||||||
|
this._on_send('info', message, fields)
|
||||||
|
}
|
||||||
|
|
||||||
|
public debug(message: string, fields?: Record<string, any>) {
|
||||||
|
this._console('debug', message, fields)
|
||||||
|
this._on_send('debug', message, fields)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user