@@ -1975,14 +1975,13 @@ srs_error_t SrsApiServer::listen_api()
1975
1975
{
1976
1976
srs_error_t err = srs_success;
1977
1977
1978
- // TODO: FIXME: Implements it.
1979
1978
if ((err = http_api_mux_->handle (" /rtc/v1/play/" , new SrsGoApiRtcPlay (this ))) != srs_success) {
1980
1979
return srs_error_wrap (err, " handle play" );
1981
1980
}
1982
1981
1983
- // if ((err = http_api_mux_->handle("/rtc/v1/publish/", new SrsGoApiRtcPublish(this))) != srs_success) {
1984
- // return srs_error_wrap(err, "handle publish");
1985
- // }
1982
+ if ((err = http_api_mux_->handle (" /rtc/v1/publish/" , new SrsGoApiRtcPublish (this ))) != srs_success) {
1983
+ return srs_error_wrap (err, " handle publish" );
1984
+ }
1986
1985
1987
1986
#ifdef SRS_SIMULATOR
1988
1987
// TODO: FIXME: Implements it.
@@ -2001,9 +2000,22 @@ srs_error_t SrsApiServer::create_session(
2001
2000
) {
2002
2001
srs_error_t err = srs_success;
2003
2002
2003
+ // Serve all connections of a stream, which identified by url, by the same hybrid thread.
2004
+ string url = req->get_stream_url ();
2005
+ SrsThreadEntry* hybrid = NULL ;
2006
+ if (true ) {
2007
+ map<string, SrsThreadEntry*>::iterator it = hybrids_.find (url);
2008
+ if (it == hybrids_.end ()) {
2009
+ static int index = 0 ;
2010
+ vector<SrsThreadEntry*> hybrids = _srs_thread_pool->hybrids ();
2011
+ hybrids_[url] = hybrid = hybrids[(index ++) % (int )hybrids.size ()];
2012
+ } else {
2013
+ hybrid = it->second ;
2014
+ }
2015
+ }
2016
+
2004
2017
// Allocate slot to communicate with hybrid thread.
2005
2018
SrsThreadEntry* self = _srs_thread_pool->self ();
2006
- SrsThreadEntry* hybrid = _srs_thread_pool->hybrid ();
2007
2019
srs_assert (self && hybrid);
2008
2020
2009
2021
SrsThreadPipeChannel* channel = NULL ;
@@ -2055,6 +2067,11 @@ srs_error_t SrsApiServer::create_session(
2055
2067
// TODO: FIMXE: Should never return it, for it's not thread-safe.
2056
2068
*psession = s.session ;
2057
2069
2070
+ // TODO: FIXME: Shoule return detail error by channel.
2071
+ if (!s.session ) {
2072
+ return srs_error_new (ERROR_PIPE_READ, " no session" );
2073
+ }
2074
+
2058
2075
return err;
2059
2076
}
2060
2077
0 commit comments