mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-23 03:10:04 +08:00
84 lines
2.5 KiB
C++
84 lines
2.5 KiB
C++
//============================================================================
|
|
// Name : main.cpp
|
|
// Author : 熊子良
|
|
// Version :
|
|
//============================================================================
|
|
|
|
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
#include <iostream>
|
|
#include "Rtsp/UDPServer.h"
|
|
#include "Rtsp/RtspSession.h"
|
|
#include "Rtmp/RtmpSession.h"
|
|
#include "Http/HttpSession.h"
|
|
#include "Http/HttpsSession.h"
|
|
#include "Util/SSLBox.h"
|
|
#include "Util/SqlPool.h"
|
|
#include "Util/logger.h"
|
|
#include "Util/onceToken.h"
|
|
#include "Util/File.h"
|
|
#include "Network/TcpServer.h"
|
|
#include "Poller/EventPoller.h"
|
|
#include "Thread/WorkThreadPool.h"
|
|
#include "Device/PlayerProxy.h"
|
|
#include <map>
|
|
using namespace std;
|
|
using namespace ZL::Util;
|
|
using namespace ZL::Http;
|
|
using namespace ZL::Rtsp;
|
|
using namespace ZL::Rtmp;
|
|
using namespace ZL::Thread;
|
|
using namespace ZL::Network;
|
|
using namespace ZL::DEV;
|
|
|
|
void programExit(int arg) {
|
|
EventPoller::Instance().shutdown();
|
|
}
|
|
int main(int argc,char *argv[]){
|
|
signal(SIGINT, programExit);
|
|
Logger::Instance().add(std::make_shared<ConsoleChannel>("stdout", LTrace));
|
|
|
|
//support rtmp and rtsp url
|
|
//just support H264+AAC
|
|
auto urlList = {"rtmp://live.hkstv.hk.lxdns.com/live/hks",
|
|
"rtsp://184.72.239.149/vod/mp4://BigBuckBunny_175k.mov"};
|
|
map<string , PlayerProxy::Ptr> proxyMap;
|
|
int i=0;
|
|
for(auto url : urlList){
|
|
PlayerProxy::Ptr player(new PlayerProxy("live",std::to_string(i++).data()));
|
|
player->play(url);
|
|
proxyMap.emplace(string(url),player);
|
|
}
|
|
//请把证书"test_server.pem"放置在本程序可执行程序同目录下
|
|
try{
|
|
SSL_Initor::Instance().loadServerPem((exePath() + ".pem").data());
|
|
}catch(...){
|
|
FatalL << "请把证书:" << (exeName() + ".pem") << "放置在本程序可执行程序同目录下:" << exeDir() << endl;
|
|
return 0;
|
|
}
|
|
|
|
TcpServer<RtspSession>::Ptr rtspSrv(new TcpServer<RtspSession>());
|
|
TcpServer<RtmpSession>::Ptr rtmpSrv(new TcpServer<RtmpSession>());
|
|
TcpServer<HttpSession>::Ptr httpSrv(new TcpServer<HttpSession>());
|
|
TcpServer<HttpsSession>::Ptr httpsSrv(new TcpServer<HttpsSession>());
|
|
rtspSrv->start(mINI::Instance()[Config::Rtsp::kPort]);
|
|
rtmpSrv->start(mINI::Instance()[Config::Rtmp::kPort]);
|
|
httpSrv->start(mINI::Instance()[Config::Http::kPort]);
|
|
httpsSrv->start(mINI::Instance()[Config::Http::kSSLPort]);
|
|
|
|
EventPoller::Instance().runLoop();
|
|
|
|
rtspSrv.reset();
|
|
rtmpSrv.reset();
|
|
httpSrv.reset();
|
|
httpsSrv.reset();
|
|
|
|
UDPServer::Destory();
|
|
WorkThreadPool::Destory();
|
|
EventPoller::Destory();
|
|
Logger::Destory();
|
|
return 0;
|
|
}
|
|
|