mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
235 lines
6.9 KiB
C++
235 lines
6.9 KiB
C++
/**
|
|
* 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_ng_exec.hpp>
|
|
|
|
#include <stdlib.h>
|
|
using namespace std;
|
|
|
|
#include <srs_kernel_error.hpp>
|
|
#include <srs_kernel_log.hpp>
|
|
#include <srs_app_config.hpp>
|
|
#include <srs_rtmp_stack.hpp>
|
|
#include <srs_app_pithy_print.hpp>
|
|
#include <srs_app_process.hpp>
|
|
#include <srs_kernel_utility.hpp>
|
|
#include <srs_kernel_consts.hpp>
|
|
#include <srs_protocol_utility.hpp>
|
|
#include <srs_app_utility.hpp>
|
|
|
|
SrsNgExec::SrsNgExec()
|
|
{
|
|
trd = new SrsDummyCoroutine();
|
|
pprint = SrsPithyPrint::create_exec();
|
|
}
|
|
|
|
SrsNgExec::~SrsNgExec()
|
|
{
|
|
on_unpublish();
|
|
|
|
srs_freep(trd);
|
|
srs_freep(pprint);
|
|
}
|
|
|
|
srs_error_t SrsNgExec::on_publish(SrsRequest* req)
|
|
{
|
|
srs_error_t err = srs_success;
|
|
|
|
// when publish, parse the exec_publish.
|
|
if ((err = parse_exec_publish(req)) != srs_success) {
|
|
return srs_error_wrap(err, "exec publish");
|
|
}
|
|
|
|
// start thread to run all processes.
|
|
srs_freep(trd);
|
|
trd = new SrsSTCoroutine("encoder", this, _srs_context->get_id());
|
|
if ((err = trd->start()) != srs_success) {
|
|
return srs_error_wrap(err, "start thread");
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
void SrsNgExec::on_unpublish()
|
|
{
|
|
trd->stop();
|
|
clear_exec_publish();
|
|
}
|
|
|
|
// when error, ng-exec sleep for a while and retry.
|
|
#define SRS_RTMP_EXEC_CIMS (3 * SRS_UTIME_SECONDS)
|
|
srs_error_t SrsNgExec::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) {
|
|
err = srs_error_wrap(err, "ng exec cycle");
|
|
break;
|
|
}
|
|
|
|
if ((err = do_cycle()) != srs_success) {
|
|
srs_warn("EXEC: Ignore error, %s", srs_error_desc(err).c_str());
|
|
srs_freep(err);
|
|
}
|
|
|
|
srs_usleep(SRS_RTMP_EXEC_CIMS);
|
|
}
|
|
|
|
std::vector<SrsProcess*>::iterator it;
|
|
for (it = exec_publishs.begin(); it != exec_publishs.end(); ++it) {
|
|
SrsProcess* ep = *it;
|
|
ep->stop();
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
srs_error_t SrsNgExec::do_cycle()
|
|
{
|
|
srs_error_t err = srs_success;
|
|
|
|
// ignore when no exec.
|
|
if (exec_publishs.empty()) {
|
|
return err;
|
|
}
|
|
|
|
std::vector<SrsProcess*>::iterator it;
|
|
for (it = exec_publishs.begin(); it != exec_publishs.end(); ++it) {
|
|
SrsProcess* process = *it;
|
|
|
|
// start all processes.
|
|
if ((err = process->start()) != srs_success) {
|
|
return srs_error_wrap(err, "process start");
|
|
}
|
|
|
|
// check process status.
|
|
if ((err = process->cycle()) != srs_success) {
|
|
return srs_error_wrap(err, "process cycle");
|
|
}
|
|
}
|
|
|
|
// pithy print
|
|
show_exec_log_message();
|
|
|
|
return err;
|
|
}
|
|
|
|
srs_error_t SrsNgExec::parse_exec_publish(SrsRequest* req)
|
|
{
|
|
srs_error_t err = srs_success;
|
|
|
|
if (!_srs_config->get_exec_enabled(req->vhost)) {
|
|
srs_trace("ignore disabled exec for vhost=%s", req->vhost.c_str());
|
|
return err;
|
|
}
|
|
|
|
// stream name: vhost/app/stream for print
|
|
input_stream_name = req->vhost;
|
|
input_stream_name += "/";
|
|
input_stream_name += req->app;
|
|
input_stream_name += "/";
|
|
input_stream_name += req->stream;
|
|
|
|
std::vector<SrsConfDirective*> eps = _srs_config->get_exec_publishs(req->vhost);
|
|
for (int i = 0; i < (int)eps.size(); i++) {
|
|
SrsConfDirective* ep = eps.at(i);
|
|
SrsProcess* process = new SrsProcess();
|
|
|
|
std::string binary = ep->arg0();
|
|
std::vector<std::string> argv;
|
|
for (int i = 0; i < (int)ep->args.size(); i++) {
|
|
std::string epa = ep->args.at(i);
|
|
|
|
if (srs_string_contains(epa, ">")) {
|
|
vector<string> epas = srs_string_split(epa, ">");
|
|
for (int j = 0; j < (int)epas.size(); j++) {
|
|
argv.push_back(parse(req, epas.at(j)));
|
|
if (j == 0) {
|
|
argv.push_back(">");
|
|
}
|
|
}
|
|
continue;
|
|
}
|
|
|
|
argv.push_back(parse(req, epa));
|
|
}
|
|
|
|
if ((err = process->initialize(binary, argv)) != srs_success) {
|
|
srs_freep(process);
|
|
return srs_error_wrap(err, "initialize process failed, binary=%s, vhost=%s", binary.c_str(), req->vhost.c_str());
|
|
}
|
|
|
|
exec_publishs.push_back(process);
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
void SrsNgExec::clear_exec_publish()
|
|
{
|
|
std::vector<SrsProcess*>::iterator it;
|
|
for (it = exec_publishs.begin(); it != exec_publishs.end(); ++it) {
|
|
SrsProcess* ep = *it;
|
|
srs_freep(ep);
|
|
}
|
|
exec_publishs.clear();
|
|
}
|
|
|
|
void SrsNgExec::show_exec_log_message()
|
|
{
|
|
pprint->elapse();
|
|
|
|
// reportable
|
|
if (pprint->can_print()) {
|
|
// TODO: FIXME: show more info.
|
|
srs_trace("-> " SRS_CONSTS_LOG_EXEC " time=%" PRId64 ", publish=%d, input=%s",
|
|
pprint->age(), (int)exec_publishs.size(), input_stream_name.c_str());
|
|
}
|
|
}
|
|
|
|
string SrsNgExec::parse(SrsRequest* req, string tmpl)
|
|
{
|
|
string output = tmpl;
|
|
|
|
output = srs_string_replace(output, "[vhost]", req->vhost);
|
|
output = srs_string_replace(output, "[port]", srs_int2str(req->port));
|
|
output = srs_string_replace(output, "[app]", req->app);
|
|
output = srs_string_replace(output, "[stream]", req->stream);
|
|
|
|
output = srs_string_replace(output, "[tcUrl]", req->tcUrl);
|
|
output = srs_string_replace(output, "[swfUrl]", req->swfUrl);
|
|
output = srs_string_replace(output, "[pageUrl]", req->pageUrl);
|
|
|
|
output = srs_path_build_timestamp(output);
|
|
|
|
if (output.find("[url]") != string::npos) {
|
|
string url = srs_generate_rtmp_url(req->host, req->port, req->host, req->vhost, req->app, req->stream, req->param);
|
|
output = srs_string_replace(output, "[url]", url);
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|