common.cpp 6.27 KB
Newer Older
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
 * MIT License
 *
 * Copyright (c) 2019 xiongziliang <771730766@qq.com>
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#include "common.h"
#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"
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];

46 47 48 49
#ifdef ENABLE_RTPPROXY
#include "Rtp/UdpRecver.h"
#include "Rtp/RtpSession.h"
static std::shared_ptr<UdpRecver> udpRtpServer;
xiongziliang committed
50
static TcpServer::Ptr tcpRtpServer;
51 52
#endif

53
//////////////////////////environment init///////////////////////////
xiongziliang committed
54
API_EXPORT void API_CALL mk_env_init(const mk_config *cfg) {
xiongziliang committed
55
    assert(cfg);
56 57 58 59 60 61 62 63 64
    mk_env_init1(cfg->thread_num,
                 cfg->log_level,
                 cfg->ini_is_path,
                 cfg->ini,
                 cfg->ssl_is_path,
                 cfg->ssl,
                 cfg->ssl_pwd);
}

65 66 67 68 69 70 71 72
API_EXPORT void API_CALL mk_stop_all_server(){
    CLEAR_ARR(rtsp_server);
    CLEAR_ARR(rtmp_server);
    CLEAR_ARR(http_server);
    udpRtpServer = nullptr;
    tcpRtpServer = nullptr;
}

73 74 75 76 77 78 79 80
API_EXPORT void API_CALL mk_env_init1(  int thread_num,
                                        int log_level,
                                        int ini_is_path,
                                        const char *ini,
                                        int ssl_is_path,
                                        const char *ssl,
                                        const char *ssl_pwd) {

81
    static onceToken token([&]() {
82
        Logger::Instance().add(std::make_shared<ConsoleChannel>("console", (LogLevel) log_level));
83 84
        Logger::Instance().setWriter(std::make_shared<AsyncLogWriter>());

85 86
        EventPollerPool::setPoolSize(thread_num);
        WorkThreadPool::setPoolSize(thread_num);
87

88
        if (ini && ini[0]) {
89
            //设置配置文件
90 91
            if (ini_is_path) {
                mINI::Instance().parseFile(ini);
92
            } else {
93
                mINI::Instance().parse(ini);
94 95 96
            }
        }

97
        if (ssl && ssl[0]) {
98
            //设置ssl证书
99
            SSL_Initor::Instance().loadCertificate(ssl, true, ssl_pwd ? ssl_pwd : "", ssl_is_path);
100 101 102 103 104
        }
    });
}

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

API_EXPORT uint16_t API_CALL mk_http_server_start(uint16_t port, int ssl) {
    ssl = MAX(0,MIN(ssl,1));
    try {
xiongziliang committed
116
        http_server[ssl] = std::make_shared<TcpServer>();
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
        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
133
        rtsp_server[ssl] = std::make_shared<TcpServer>();
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
        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
150
        rtmp_server[ssl] = std::make_shared<TcpServer>();
151 152 153 154 155 156 157 158 159 160 161 162 163
        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;
    }
}

164 165 166 167
API_EXPORT uint16_t API_CALL mk_rtp_server_start(uint16_t port){
#ifdef ENABLE_RTPPROXY
    try {
        //创建rtp tcp服务器
168
        tcpRtpServer = std::make_shared<TcpServer>();
169
        tcpRtpServer->start<RtpSession>(port);
170 171

        //创建rtp udp服务器
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
        auto ret = tcpRtpServer->getPort();
        udpRtpServer = std::make_shared<UdpRecver>();
        udpRtpServer->initSock(port);
        return ret;
    } catch (std::exception &ex) {
        tcpRtpServer.reset();
        udpRtpServer.reset();
        WarnL << ex.what();
        return 0;
    }
#else
    WarnL << "未启用该功能!";
    return 0;
#endif
}

188
API_EXPORT void API_CALL mk_log_printf(int level, const char *file, const char *function, int line, const char *fmt, ...) {
xiongziliang committed
189
    assert(file && function && fmt);
190 191 192 193 194 195 196 197 198 199
    LogContextCapturer info(Logger::Instance(), (LogLevel) level, file, function, line);
    va_list pArg;
    va_start(pArg, fmt);
    char buf[4096];
    int n = vsprintf(buf, fmt, pArg);
    buf[n] = '\0';
    va_end(pArg);
    info << buf;
}