mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
Merge branch 'develop' into merge/develop
This commit is contained in:
commit
ff50ffd3ea
2 changed files with 66 additions and 47 deletions
|
@ -37,6 +37,7 @@ using namespace std;
|
||||||
#include <srs_app_http_hooks.hpp>
|
#include <srs_app_http_hooks.hpp>
|
||||||
#include <srs_app_statistic.hpp>
|
#include <srs_app_statistic.hpp>
|
||||||
#include <srs_app_hybrid.hpp>
|
#include <srs_app_hybrid.hpp>
|
||||||
|
#include <srs_service_log.hpp>
|
||||||
|
|
||||||
#define SRS_CONTEXT_IN_HLS "hls_ctx"
|
#define SRS_CONTEXT_IN_HLS "hls_ctx"
|
||||||
|
|
||||||
|
@ -194,6 +195,12 @@ srs_error_t SrsVodStream::serve_m3u8_ctx(ISrsHttpResponseWriter * w, ISrsHttpMes
|
||||||
srs_assert(hr);
|
srs_assert(hr);
|
||||||
|
|
||||||
SrsRequest* req = hr->to_request(hr->host())->as_http();
|
SrsRequest* req = hr->to_request(hr->host())->as_http();
|
||||||
|
// discovery vhost, resolve the vhost from config
|
||||||
|
SrsConfDirective* parsed_vhost = _srs_config->get_vhost(req->vhost);
|
||||||
|
if (parsed_vhost) {
|
||||||
|
req->vhost = parsed_vhost->arg0();
|
||||||
|
}
|
||||||
|
|
||||||
SrsAutoFree(SrsRequest, req);
|
SrsAutoFree(SrsRequest, req);
|
||||||
|
|
||||||
string ctx = hr->query_get(SRS_CONTEXT_IN_HLS);
|
string ctx = hr->query_get(SRS_CONTEXT_IN_HLS);
|
||||||
|
@ -202,10 +209,6 @@ srs_error_t SrsVodStream::serve_m3u8_ctx(ISrsHttpResponseWriter * w, ISrsHttpMes
|
||||||
return SrsHttpFileServer::serve_m3u8_ctx(w, r, fullpath);
|
return SrsHttpFileServer::serve_m3u8_ctx(w, r, fullpath);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((err = http_hooks_on_play(req)) != srs_success) {
|
|
||||||
return srs_error_wrap(err, "HLS: http_hooks_on_play");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ctx.empty()) {
|
if (ctx.empty()) {
|
||||||
// make sure unique
|
// make sure unique
|
||||||
do {
|
do {
|
||||||
|
@ -213,6 +216,13 @@ srs_error_t SrsVodStream::serve_m3u8_ctx(ISrsHttpResponseWriter * w, ISrsHttpMes
|
||||||
} while (ctx_is_exist(ctx));
|
} while (ctx_is_exist(ctx));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SrsContextRestore(_srs_context->get_id());
|
||||||
|
_srs_context->set_id(SrsContextId().set_value(ctx));
|
||||||
|
|
||||||
|
if ((err = http_hooks_on_play(req)) != srs_success) {
|
||||||
|
return srs_error_wrap(err, "HLS: http_hooks_on_play");
|
||||||
|
}
|
||||||
|
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
ss << "#EXTM3U" << SRS_CONSTS_LF;
|
ss << "#EXTM3U" << SRS_CONSTS_LF;
|
||||||
ss << "#EXT-X-STREAM-INF:BANDWIDTH=1,AVERAGE-BANDWIDTH=1" << SRS_CONSTS_LF;
|
ss << "#EXT-X-STREAM-INF:BANDWIDTH=1,AVERAGE-BANDWIDTH=1" << SRS_CONSTS_LF;
|
||||||
|
@ -339,6 +349,9 @@ srs_error_t SrsVodStream::on_timer(srs_utime_t interval)
|
||||||
SrsRequest* req = it->second.req;
|
SrsRequest* req = it->second.req;
|
||||||
srs_utime_t hls_window = _srs_config->get_hls_window(req->vhost);
|
srs_utime_t hls_window = _srs_config->get_hls_window(req->vhost);
|
||||||
if (it->second.request_time + (2 * hls_window) < srs_get_system_time()) {
|
if (it->second.request_time + (2 * hls_window) < srs_get_system_time()) {
|
||||||
|
SrsContextRestore(_srs_context->get_id());
|
||||||
|
_srs_context->set_id(SrsContextId().set_value(ctx));
|
||||||
|
|
||||||
http_hooks_on_stop(req);
|
http_hooks_on_stop(req);
|
||||||
srs_freep(req);
|
srs_freep(req);
|
||||||
|
|
||||||
|
|
|
@ -386,6 +386,9 @@ srs_error_t SrsRtcAsyncCallOnStop::call()
|
||||||
hooks = conf->args;
|
hooks = conf->args;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SrsContextRestore(_srs_context->get_id());
|
||||||
|
_srs_context->set_id(cid);
|
||||||
|
|
||||||
for (int i = 0; i < (int)hooks.size(); i++) {
|
for (int i = 0; i < (int)hooks.size(); i++) {
|
||||||
std::string url = hooks.at(i);
|
std::string url = hooks.at(i);
|
||||||
SrsHttpHooks::on_stop(url, req);
|
SrsHttpHooks::on_stop(url, req);
|
||||||
|
@ -1031,6 +1034,9 @@ srs_error_t SrsRtcAsyncCallOnUnpublish::call()
|
||||||
hooks = conf->args;
|
hooks = conf->args;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SrsContextRestore(_srs_context->get_id());
|
||||||
|
_srs_context->set_id(cid);
|
||||||
|
|
||||||
for (int i = 0; i < (int)hooks.size(); i++) {
|
for (int i = 0; i < (int)hooks.size(); i++) {
|
||||||
std::string url = hooks.at(i);
|
std::string url = hooks.at(i);
|
||||||
SrsHttpHooks::on_unpublish(url, req);
|
SrsHttpHooks::on_unpublish(url, req);
|
||||||
|
|
Loading…
Reference in a new issue