mirror of
https://github.com/ossrs/srs.git
synced 2025-02-24 15:04:20 +00:00
151 lines
4.8 KiB
C++
151 lines
4.8 KiB
C++
/**
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2013-2020 John
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef SRS_APP_RTC_SERVER_HPP
|
|
#define SRS_APP_RTC_SERVER_HPP
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
#include <srs_app_listener.hpp>
|
|
#include <srs_app_st.hpp>
|
|
#include <srs_app_reload.hpp>
|
|
#include <srs_app_hourglass.hpp>
|
|
#include <srs_app_hybrid.hpp>
|
|
|
|
#include <string>
|
|
|
|
class SrsRtcServer;
|
|
class SrsHourGlass;
|
|
class SrsRtcConnection;
|
|
class SrsRequest;
|
|
class SrsSdp;
|
|
class SrsRtcStream;
|
|
class SrsResourceManager;
|
|
|
|
// The UDP black hole, for developer to use wireshark to catch plaintext packets.
|
|
// For example, server receive UDP packets at udp://8000, and forward the plaintext packet to black hole,
|
|
// we can use wireshark to capture the plaintext.
|
|
class SrsRtcBlackhole
|
|
{
|
|
public:
|
|
bool blackhole;
|
|
private:
|
|
sockaddr_in* blackhole_addr;
|
|
srs_netfd_t blackhole_stfd;
|
|
public:
|
|
SrsRtcBlackhole();
|
|
virtual ~SrsRtcBlackhole();
|
|
public:
|
|
srs_error_t initialize();
|
|
void sendto(void* data, int len);
|
|
};
|
|
|
|
extern SrsRtcBlackhole* _srs_blackhole;
|
|
|
|
// The handler for RTC server to call.
|
|
class ISrsRtcServerHandler
|
|
{
|
|
public:
|
|
ISrsRtcServerHandler();
|
|
virtual ~ISrsRtcServerHandler();
|
|
public:
|
|
// When server detect the timeout for session object.
|
|
virtual void on_timeout(SrsRtcConnection* session) = 0;
|
|
};
|
|
|
|
// The hijacker to hook server.
|
|
class ISrsRtcServerHijacker
|
|
{
|
|
public:
|
|
ISrsRtcServerHijacker();
|
|
virtual ~ISrsRtcServerHijacker();
|
|
public:
|
|
// If consumed set to true, server will ignore the packet.
|
|
virtual srs_error_t on_udp_packet(SrsUdpMuxSocket* skt, SrsRtcConnection* session, bool* pconsumed) = 0;
|
|
};
|
|
|
|
// The RTC server instance, listen UDP port, handle UDP packet, manage RTC connections.
|
|
class SrsRtcServer : virtual public ISrsUdpMuxHandler, virtual public ISrsHourGlass
|
|
{
|
|
private:
|
|
SrsHourGlass* timer;
|
|
std::vector<SrsUdpMuxListener*> listeners;
|
|
ISrsRtcServerHandler* handler;
|
|
ISrsRtcServerHijacker* hijacker;
|
|
public:
|
|
SrsRtcServer();
|
|
virtual ~SrsRtcServer();
|
|
public:
|
|
virtual srs_error_t initialize();
|
|
public:
|
|
// Set the handler for server events.
|
|
void set_handler(ISrsRtcServerHandler* h);
|
|
void set_hijacker(ISrsRtcServerHijacker* h);
|
|
public:
|
|
// TODO: FIXME: Support gracefully quit.
|
|
// TODO: FIXME: Support reload.
|
|
srs_error_t listen_udp();
|
|
virtual srs_error_t on_udp_packet(SrsUdpMuxSocket* skt);
|
|
srs_error_t listen_api();
|
|
public:
|
|
// Peer start offering, we answer it.
|
|
srs_error_t create_session(
|
|
SrsRequest* req, const SrsSdp& remote_sdp, SrsSdp& local_sdp, const std::string& mock_eip,
|
|
bool publish, bool dtls, bool srtp,
|
|
SrsRtcConnection** psession
|
|
);
|
|
private:
|
|
srs_error_t do_create_session(
|
|
SrsRtcConnection* session, SrsRequest* req, const SrsSdp& remote_sdp, SrsSdp& local_sdp,
|
|
const std::string& mock_eip, bool publish, bool dtls, bool srtp
|
|
);
|
|
public:
|
|
// We start offering, create_session2 to generate offer, setup_session2 to handle answer.
|
|
srs_error_t create_session2(SrsRequest* req, SrsSdp& local_sdp, const std::string& mock_eip, bool unified_plan, SrsRtcConnection** psession);
|
|
srs_error_t setup_session2(SrsRtcConnection* session, SrsRequest* req, const SrsSdp& remote_sdp);
|
|
public:
|
|
SrsRtcConnection* find_session_by_username(const std::string& ufrag);
|
|
// interface ISrsHourGlass
|
|
public:
|
|
virtual srs_error_t notify(int type, srs_utime_t interval, srs_utime_t tick);
|
|
};
|
|
|
|
// The RTC server adapter.
|
|
class RtcServerAdapter : public ISrsHybridServer
|
|
{
|
|
private:
|
|
SrsRtcServer* rtc;
|
|
public:
|
|
RtcServerAdapter();
|
|
virtual ~RtcServerAdapter();
|
|
public:
|
|
virtual srs_error_t initialize();
|
|
virtual srs_error_t run();
|
|
virtual void stop();
|
|
};
|
|
|
|
// Manager for RTC connections.
|
|
extern SrsResourceManager* _srs_rtc_manager;
|
|
|
|
#endif
|
|
|