mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
312 lines
8.6 KiB
C++
Executable file
312 lines
8.6 KiB
C++
Executable file
/**
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2013-2020 Winlin
|
|
*
|
|
* 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 <srs_app_forward.hpp>
|
|
|
|
#include <stdlib.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
|
|
using namespace std;
|
|
|
|
#include <srs_app_source.hpp>
|
|
#include <srs_app_st.hpp>
|
|
#include <srs_kernel_error.hpp>
|
|
#include <srs_kernel_log.hpp>
|
|
#include <srs_app_config.hpp>
|
|
#include <srs_app_pithy_print.hpp>
|
|
#include <srs_rtmp_stack.hpp>
|
|
#include <srs_protocol_utility.hpp>
|
|
#include <srs_protocol_kbps.hpp>
|
|
#include <srs_rtmp_msg_array.hpp>
|
|
#include <srs_app_utility.hpp>
|
|
#include <srs_protocol_amf0.hpp>
|
|
#include <srs_kernel_codec.hpp>
|
|
#include <srs_core_autofree.hpp>
|
|
#include <srs_kernel_utility.hpp>
|
|
#include <srs_app_rtmp_conn.hpp>
|
|
|
|
SrsForwarder::SrsForwarder(SrsOriginHub* h)
|
|
{
|
|
hub = h;
|
|
|
|
req = NULL;
|
|
sh_video = sh_audio = NULL;
|
|
|
|
sdk = NULL;
|
|
trd = new SrsDummyCoroutine();
|
|
queue = new SrsMessageQueue();
|
|
jitter = new SrsRtmpJitter();
|
|
}
|
|
|
|
SrsForwarder::~SrsForwarder()
|
|
{
|
|
srs_freep(sdk);
|
|
srs_freep(trd);
|
|
srs_freep(queue);
|
|
srs_freep(jitter);
|
|
|
|
srs_freep(sh_video);
|
|
srs_freep(sh_audio);
|
|
}
|
|
|
|
srs_error_t SrsForwarder::initialize(SrsRequest* r, string ep)
|
|
{
|
|
srs_error_t err = srs_success;
|
|
|
|
// it's ok to use the request object,
|
|
// SrsSource already copy it and never delete it.
|
|
req = r;
|
|
|
|
// the ep(endpoint) to forward to
|
|
ep_forward = ep;
|
|
|
|
return err;
|
|
}
|
|
|
|
void SrsForwarder::set_queue_size(srs_utime_t queue_size)
|
|
{
|
|
queue->set_queue_size(queue_size);
|
|
}
|
|
|
|
srs_error_t SrsForwarder::on_publish()
|
|
{
|
|
srs_error_t err = srs_success;
|
|
|
|
srs_freep(trd);
|
|
trd = new SrsSTCoroutine("forward", this);
|
|
if ((err = trd->start()) != srs_success) {
|
|
return srs_error_wrap(err, "start thread");
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
void SrsForwarder::on_unpublish()
|
|
{
|
|
trd->stop();
|
|
sdk->close();
|
|
}
|
|
|
|
srs_error_t SrsForwarder::on_meta_data(SrsSharedPtrMessage* shared_metadata)
|
|
{
|
|
srs_error_t err = srs_success;
|
|
|
|
SrsSharedPtrMessage* metadata = shared_metadata->copy();
|
|
|
|
// TODO: FIXME: config the jitter of Forwarder.
|
|
if ((err = jitter->correct(metadata, SrsRtmpJitterAlgorithmOFF)) != srs_success) {
|
|
return srs_error_wrap(err, "jitter");
|
|
}
|
|
|
|
if ((err = queue->enqueue(metadata)) != srs_success) {
|
|
return srs_error_wrap(err, "enqueue metadata");
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
srs_error_t SrsForwarder::on_audio(SrsSharedPtrMessage* shared_audio)
|
|
{
|
|
srs_error_t err = srs_success;
|
|
|
|
SrsSharedPtrMessage* msg = shared_audio->copy();
|
|
|
|
// TODO: FIXME: config the jitter of Forwarder.
|
|
if ((err = jitter->correct(msg, SrsRtmpJitterAlgorithmOFF)) != srs_success) {
|
|
return srs_error_wrap(err, "jitter");
|
|
}
|
|
|
|
if (SrsFlvAudio::sh(msg->payload, msg->size)) {
|
|
srs_freep(sh_audio);
|
|
sh_audio = msg->copy();
|
|
}
|
|
|
|
if ((err = queue->enqueue(msg)) != srs_success) {
|
|
return srs_error_wrap(err, "enqueue audio");
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
srs_error_t SrsForwarder::on_video(SrsSharedPtrMessage* shared_video)
|
|
{
|
|
srs_error_t err = srs_success;
|
|
|
|
SrsSharedPtrMessage* msg = shared_video->copy();
|
|
|
|
// TODO: FIXME: config the jitter of Forwarder.
|
|
if ((err = jitter->correct(msg, SrsRtmpJitterAlgorithmOFF)) != srs_success) {
|
|
return srs_error_wrap(err, "jitter");
|
|
}
|
|
|
|
if (SrsFlvVideo::sh(msg->payload, msg->size)) {
|
|
srs_freep(sh_video);
|
|
sh_video = msg->copy();
|
|
}
|
|
|
|
if ((err = queue->enqueue(msg)) != srs_success) {
|
|
return srs_error_wrap(err, "enqueue video");
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
// when error, forwarder sleep for a while and retry.
|
|
#define SRS_FORWARDER_CIMS (3 * SRS_UTIME_SECONDS)
|
|
|
|
srs_error_t SrsForwarder::cycle()
|
|
{
|
|
srs_error_t err = srs_success;
|
|
|
|
while (true) {
|
|
// We always check status first.
|
|
// @see https://github.com/ossrs/srs/issues/1634#issuecomment-597571561
|
|
if ((err = trd->pull()) != srs_success) {
|
|
return srs_error_wrap(err, "forwarder");
|
|
}
|
|
|
|
if ((err = do_cycle()) != srs_success) {
|
|
srs_warn("Forwarder: Ignore error, %s", srs_error_desc(err).c_str());
|
|
srs_freep(err);
|
|
}
|
|
|
|
srs_usleep(SRS_FORWARDER_CIMS);
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
srs_error_t SrsForwarder::do_cycle()
|
|
{
|
|
srs_error_t err = srs_success;
|
|
|
|
std::string url;
|
|
if (true) {
|
|
std::string server;
|
|
int port = SRS_CONSTS_RTMP_DEFAULT_PORT;
|
|
|
|
// parse host:port from hostport.
|
|
srs_parse_hostport(ep_forward, server, port);
|
|
|
|
// generate url
|
|
url = srs_generate_rtmp_url(server, port, req->host, req->vhost, req->app, req->stream, req->param);
|
|
}
|
|
|
|
srs_freep(sdk);
|
|
srs_utime_t cto = SRS_FORWARDER_CIMS;
|
|
srs_utime_t sto = SRS_CONSTS_RTMP_TIMEOUT;
|
|
sdk = new SrsSimpleRtmpClient(url, cto, sto);
|
|
|
|
if ((err = sdk->connect()) != srs_success) {
|
|
return srs_error_wrap(err, "sdk connect url=%s, cto=%dms, sto=%dms.", url.c_str(), srsu2msi(cto), srsu2msi(sto));
|
|
}
|
|
|
|
if ((err = sdk->publish(_srs_config->get_chunk_size(req->vhost))) != srs_success) {
|
|
return srs_error_wrap(err, "sdk publish");
|
|
}
|
|
|
|
if ((err = hub->on_forwarder_start(this)) != srs_success) {
|
|
return srs_error_wrap(err, "notify hub start");
|
|
}
|
|
|
|
if ((err = forward()) != srs_success) {
|
|
return srs_error_wrap(err, "forward");
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
#define SYS_MAX_FORWARD_SEND_MSGS 128
|
|
srs_error_t SrsForwarder::forward()
|
|
{
|
|
srs_error_t err = srs_success;
|
|
|
|
sdk->set_recv_timeout(SRS_CONSTS_RTMP_PULSE);
|
|
|
|
SrsPithyPrint* pprint = SrsPithyPrint::create_forwarder();
|
|
SrsAutoFree(SrsPithyPrint, pprint);
|
|
|
|
SrsMessageArray msgs(SYS_MAX_FORWARD_SEND_MSGS);
|
|
|
|
// update sequence header
|
|
// TODO: FIXME: maybe need to zero the sequence header timestamp.
|
|
if (sh_video) {
|
|
if ((err = sdk->send_and_free_message(sh_video->copy())) != srs_success) {
|
|
return srs_error_wrap(err, "send video sh");
|
|
}
|
|
}
|
|
if (sh_audio) {
|
|
if ((err = sdk->send_and_free_message(sh_audio->copy())) != srs_success) {
|
|
return srs_error_wrap(err, "send audio sh");
|
|
}
|
|
}
|
|
|
|
while (true) {
|
|
if ((err = trd->pull()) != srs_success) {
|
|
return srs_error_wrap(err, "thread quit");
|
|
}
|
|
|
|
pprint->elapse();
|
|
|
|
// read from client.
|
|
if (true) {
|
|
SrsCommonMessage* msg = NULL;
|
|
err = sdk->recv_message(&msg);
|
|
|
|
if (err != srs_success && srs_error_code(err) != ERROR_SOCKET_TIMEOUT) {
|
|
return srs_error_wrap(err, "receive control message");
|
|
}
|
|
srs_error_reset(err);
|
|
|
|
srs_freep(msg);
|
|
}
|
|
|
|
// forward all messages.
|
|
// each msg in msgs.msgs must be free, for the SrsMessageArray never free them.
|
|
int count = 0;
|
|
if ((err = queue->dump_packets(msgs.max, msgs.msgs, count)) != srs_success) {
|
|
return srs_error_wrap(err, "dump packets");
|
|
}
|
|
|
|
// pithy print
|
|
if (pprint->can_print()) {
|
|
sdk->kbps_sample(SRS_CONSTS_LOG_FOWARDER, pprint->age(), count);
|
|
}
|
|
|
|
// ignore when no messages.
|
|
if (count <= 0) {
|
|
continue;
|
|
}
|
|
|
|
// sendout messages, all messages are freed by send_and_free_messages().
|
|
if ((err = sdk->send_and_free_messages(msgs.msgs, count)) != srs_success) {
|
|
return srs_error_wrap(err, "send messages");
|
|
}
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
|