forked from illuspas/Node-Media-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode_media_server.js
More file actions
70 lines (57 loc) · 1.47 KB
/
node_media_server.js
File metadata and controls
70 lines (57 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//
// Created by Mingliang Chen on 17/8/1.
// illuspas[a]gmail.com
// Copyright (c) 2017 Nodemedia. All rights reserved.
//
const Logger = require('./logger');
const NodeRtmpServer = require('./node_rtmp_server');
const NodeHttpServer = require('./node_http_server');
const NodeTransServer = require('./node_trans_server');
const NodeRelayServer = require('./node_relay_server');
const NodeCoreUtils = require('./node_core_utils');
const context = require('./node_core_ctx');
class NodeMediaServer {
constructor(config) {
this.config = config;
}
run() {
Logger.setLogType(this.config.logType);
if (this.config.rtmp) {
this.nrs = new NodeRtmpServer(this.config);
this.nrs.run();
}
if (this.config.http) {
this.nhs = new NodeHttpServer(this.config);
this.nhs.run();
}
if (this.config.trans) {
this.nts = new NodeTransServer(this.config);
this.nts.run();
}
if (this.config.relay) {
this.nls = new NodeRelayServer(this.config);
this.nls.run();
}
process.on('uncaughtException', function (err) {
Logger.error('uncaughtException', err);
});
}
on(eventName, listener) {
context.nodeEvent.on(eventName, listener);
}
stop() {
if (this.nrs) {
this.nrs.stop();
}
if (this.nhs) {
this.nhs.stop();
}
if (this.nls) {
this.nls.stop();
}
}
getSession(id) {
return context.sessions.get(id);
}
}
module.exports = NodeMediaServer