mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-23 03:10:04 +08:00
79 lines
2.2 KiB
C++
79 lines
2.2 KiB
C++
//============================================================================
|
|
// Name : main.cpp
|
|
// Author : 熊子良
|
|
// Version :
|
|
//============================================================================
|
|
|
|
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
#include <iostream>
|
|
#include "Util/SqlPool.h"
|
|
#include "Util/logger.h"
|
|
#include "Util/onceToken.h"
|
|
#include "Rtsp/UDPServer.h"
|
|
#include "Rtsp/RtspSession.h"
|
|
#include "Rtmp/RtmpSession.h"
|
|
#include "Network/TcpServer.h"
|
|
#include "Poller/EventPoller.hpp"
|
|
#include "Thread/WorkThreadPool.h"
|
|
#include "Http/HttpSession.h"
|
|
#include "Http/HttpsSession.h"
|
|
#include "Util/SSLBox.h"
|
|
#ifdef ENABLE_HKDEVICE
|
|
#include "test/DeviceHK.h"
|
|
#endif //ENABLE_HKDEVICE
|
|
|
|
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;
|
|
|
|
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));
|
|
Logger::Instance().setWriter(std::make_shared<AsyncLogWriter>());
|
|
|
|
#ifdef ENABLE_HKDEVICE
|
|
DeviceHK::Ptr dev(new DeviceHK());
|
|
dev->connectDevice( connectInfo("192.168.0.211", 8000, "admin", "password"), [dev](bool success,const connectResult &result) {
|
|
if(success) {
|
|
dev->addAllChannel();
|
|
}
|
|
});
|
|
#endif //ENABLE_HKDEVICE
|
|
|
|
SSL_Initor::Instance().loadServerPem((exeDir() + ".HttpServer.pem").data());
|
|
|
|
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();
|
|
static onceToken token(nullptr, []() {
|
|
UDPServer::Destory();
|
|
WorkThreadPool::Destory();
|
|
EventPoller::Destory();
|
|
Logger::Destory();
|
|
});
|
|
return 0;
|
|
}
|
|
|