mk_common.cpp 6.24 KB
Newer Older
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
xiongziliang committed
6 7 8
 * Use of this source code is governed by MIT license that can be found in the
 * LICENSE file in the root of the source tree. All contributing project authors
 * may be found in the AUTHORS file in the root of the source tree.
9 10
 */

11
#include "mk_common.h"
12 13 14 15 16 17 18 19 20 21
#include <stdarg.h>
#include <unordered_map>
#include "Util/logger.h"
#include "Util/SSLBox.h"
#include "Network/TcpServer.h"
#include "Thread/WorkThreadPool.h"

#include "Rtsp/RtspSession.h"
#include "Rtmp/RtmpSession.h"
#include "Http/HttpSession.h"
xiongziliang committed
22
#include "Shell/ShellSession.h"
23 24 25 26 27 28 29
using namespace std;
using namespace toolkit;
using namespace mediakit;

static TcpServer::Ptr rtsp_server[2];
static TcpServer::Ptr rtmp_server[2];
static TcpServer::Ptr http_server[2];
xiongziliang committed
30
static TcpServer::Ptr shell_server;
31

32
#ifdef ENABLE_RTPPROXY
33 34
#include "Rtp/RtpServer.h"
static std::shared_ptr<RtpServer> rtpServer;
35 36
#endif

37
//////////////////////////environment init///////////////////////////
xiongziliang committed
38
API_EXPORT void API_CALL mk_env_init(const mk_config *cfg) {
xiongziliang committed
39
    assert(cfg);
40 41
    mk_env_init1(cfg->thread_num,
                 cfg->log_level,
xiongziliang committed
42 43
                 cfg->log_file_path,
                 cfg->log_file_days,
44 45 46 47 48 49 50
                 cfg->ini_is_path,
                 cfg->ini,
                 cfg->ssl_is_path,
                 cfg->ssl,
                 cfg->ssl_pwd);
}

51
extern void stopAllTcpServer();
52

53 54 55 56
API_EXPORT void API_CALL mk_stop_all_server(){
    CLEAR_ARR(rtsp_server);
    CLEAR_ARR(rtmp_server);
    CLEAR_ARR(http_server);
xiongziliang committed
57
#ifdef ENABLE_RTPPROXY
58
    rtpServer = nullptr;
xiongziliang committed
59
#endif
60
    stopAllTcpServer();
61 62
}

xiongziliang committed
63 64 65 66 67 68 69 70 71 72
API_EXPORT void API_CALL mk_env_init1(int thread_num,
                                      int log_level,
                                      const char *log_file_path,
                                      int log_file_days,
                                      int ini_is_path,
                                      const char *ini,
                                      int ssl_is_path,
                                      const char *ssl,
                                      const char *ssl_pwd) {
    //确保只初始化一次
73
    static onceToken token([&]() {
xiongziliang committed
74
        //控制台日志
75
        Logger::Instance().add(std::make_shared<ConsoleChannel>("console", (LogLevel) log_level));
xiongziliang committed
76 77 78 79 80 81 82
        if(log_file_path && log_file_days){
            //日志文件
            auto channel = std::make_shared<FileChannel>("FileChannel", File::absolutePath(log_file_path, ""), (LogLevel) log_level);
            Logger::Instance().add(channel);
        }

        //异步日志线程
83 84
        Logger::Instance().setWriter(std::make_shared<AsyncLogWriter>());

xiongziliang committed
85
        //设置线程数
86 87
        EventPollerPool::setPoolSize(thread_num);
        WorkThreadPool::setPoolSize(thread_num);
88

89
        if (ini && ini[0]) {
90
            //设置配置文件
91
            if (ini_is_path) {
92 93 94 95 96 97
                try{
                    mINI::Instance().parseFile(ini);
                }catch (std::exception &ex) {
                    InfoL << "dump ini file to:" << ini;
                    mINI::Instance().dumpFile(ini);
                }
98
            } else {
99
                mINI::Instance().parse(ini);
100 101 102
            }
        }

103
        if (ssl && ssl[0]) {
104
            //设置ssl证书
105
            SSL_Initor::Instance().loadCertificate(ssl, true, ssl_pwd ? ssl_pwd : "", ssl_is_path);
106 107 108 109 110
        }
    });
}

API_EXPORT void API_CALL mk_set_option(const char *key, const char *val) {
xiongziliang committed
111
    assert(key && val);
112 113 114 115 116 117 118
    if (mINI::Instance().find(key) == mINI::Instance().end()) {
        WarnL << "key:" << key << " not existed!";
        return;
    }
    mINI::Instance()[key] = val;
}

119 120 121 122 123 124 125 126 127 128 129
API_EXPORT const char * API_CALL mk_get_option(const char *key)
{
    assert(key);
    if (mINI::Instance().find(key) == mINI::Instance().end()) {
        WarnL << "key:" << key << " not existed!";
        return nullptr;
    }
    return mINI::Instance()[key].data();
}


130 131 132
API_EXPORT uint16_t API_CALL mk_http_server_start(uint16_t port, int ssl) {
    ssl = MAX(0,MIN(ssl,1));
    try {
xiongziliang committed
133
        http_server[ssl] = std::make_shared<TcpServer>();
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
        if(ssl){
            http_server[ssl]->start<TcpSessionWithSSL<HttpSession> >(port);
        } else{
            http_server[ssl]->start<HttpSession>(port);
        }
        return http_server[ssl]->getPort();
    } catch (std::exception &ex) {
        http_server[ssl].reset();
        WarnL << ex.what();
        return 0;
    }
}

API_EXPORT uint16_t API_CALL mk_rtsp_server_start(uint16_t port, int ssl) {
    ssl = MAX(0,MIN(ssl,1));
    try {
xiongziliang committed
150
        rtsp_server[ssl] = std::make_shared<TcpServer>();
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
        if(ssl){
            rtsp_server[ssl]->start<TcpSessionWithSSL<RtspSession> >(port);
        }else{
            rtsp_server[ssl]->start<RtspSession>(port);
        }
        return rtsp_server[ssl]->getPort();
    } catch (std::exception &ex) {
        rtsp_server[ssl].reset();
        WarnL << ex.what();
        return 0;
    }
}

API_EXPORT uint16_t API_CALL mk_rtmp_server_start(uint16_t port, int ssl) {
    ssl = MAX(0,MIN(ssl,1));
    try {
xiongziliang committed
167
        rtmp_server[ssl] = std::make_shared<TcpServer>();
168 169 170 171 172 173 174 175 176 177 178 179 180
        if(ssl){
            rtmp_server[ssl]->start<TcpSessionWithSSL<RtmpSession> >(port);
        }else{
            rtmp_server[ssl]->start<RtmpSession>(port);
        }
        return rtmp_server[ssl]->getPort();
    } catch (std::exception &ex) {
        rtmp_server[ssl].reset();
        WarnL << ex.what();
        return 0;
    }
}

181 182 183
API_EXPORT uint16_t API_CALL mk_rtp_server_start(uint16_t port){
#ifdef ENABLE_RTPPROXY
    try {
184 185 186 187
        //创建rtp 服务器
        rtpServer = std::make_shared<RtpServer>();
        rtpServer->start(port);
        return rtpServer->getPort();
188
    } catch (std::exception &ex) {
189
        rtpServer.reset();
190 191 192 193 194 195 196 197 198
        WarnL << ex.what();
        return 0;
    }
#else
    WarnL << "未启用该功能!";
    return 0;
#endif
}

xiongziliang committed
199 200 201 202 203 204 205 206 207 208 209
API_EXPORT uint16_t API_CALL mk_shell_server_start(uint16_t port){
    try {
        shell_server =  std::make_shared<TcpServer>();
        shell_server->start<ShellSession>(port);
        return shell_server->getPort();
    } catch (std::exception &ex) {
        shell_server.reset();
        WarnL << ex.what();
        return 0;
    }
}