Skip to content

Commit c8f2ff0

Browse files
committed
Threads-Hybrid: Merge api to master thread.
1 parent 50f03ad commit c8f2ff0

File tree

4 files changed

+22
-44
lines changed

4 files changed

+22
-44
lines changed

trunk/src/app/srs_app_server.cpp

+13-26
Original file line numberDiff line numberDiff line change
@@ -1678,6 +1678,18 @@ srs_error_t SrsApiServer::initialize()
16781678
return srs_error_wrap(err, "listen api");
16791679
}
16801680

1681+
if ((err = listen_http_api()) != srs_success) {
1682+
return srs_error_wrap(err, "http api listen");
1683+
}
1684+
1685+
if ((err = listen_https_api()) != srs_success) {
1686+
return srs_error_wrap(err, "https api listen");
1687+
}
1688+
1689+
if ((err = conn_manager_->start()) != srs_success) {
1690+
return srs_error_wrap(err, "connection manager");
1691+
}
1692+
16811693
return err;
16821694
}
16831695

@@ -2005,30 +2017,5 @@ srs_error_t SrsApiServer::create_session(
20052017
return err;
20062018
}
20072019

2008-
srs_error_t SrsApiServer::start(void* arg)
2009-
{
2010-
SrsApiServer* api = (SrsApiServer*)arg;
2011-
return api->do_start();
2012-
}
2013-
2014-
srs_error_t SrsApiServer::do_start()
2015-
{
2016-
srs_error_t err = srs_success;
2017-
2018-
if ((err = listen_http_api()) != srs_success) {
2019-
return srs_error_wrap(err, "http api listen");
2020-
}
2021-
2022-
if ((err = listen_https_api()) != srs_success) {
2023-
return srs_error_wrap(err, "https api listen");
2024-
}
2025-
2026-
if ((err = conn_manager_->start()) != srs_success) {
2027-
return srs_error_wrap(err, "connection manager");
2028-
}
2029-
2030-
srs_usleep(SRS_UTIME_NO_TIMEOUT);
2031-
2032-
return err;
2033-
}
2020+
SrsApiServer* _srs_api = new SrsApiServer();
20342021

trunk/src/app/srs_app_server.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -445,12 +445,11 @@ class SrsApiServer : public ISrsTcpMuxHandler, public ISrsResourceManager, publi
445445
bool publish, bool dtls, bool srtp,
446446
SrsRtcConnection** psession
447447
);
448-
public:
449-
static srs_error_t start(void* arg);
450-
private:
451-
srs_error_t do_start();
452448
};
453449

450+
// It's only used in master/srs thread.
451+
extern SrsApiServer* _srs_api;
452+
454453
// The RTC create session information.
455454
struct SrsThreadMessageRtcCreateSession
456455
{

trunk/src/app/srs_app_threads.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include <srs_kernel_rtc_rtp.hpp>
3838
#include <srs_app_pithy_print.hpp>
3939
#include <srs_protocol_kbps.hpp>
40+
#include <srs_app_server.hpp>
4041

4142
#include <unistd.h>
4243
#include <fcntl.h>
@@ -755,6 +756,10 @@ srs_error_t SrsThreadPool::initialize()
755756
return srs_error_wrap(err, "acquire pid file");
756757
}
757758

759+
if ((err = _srs_api->initialize()) != srs_success) {
760+
return srs_error_wrap(err, "init api server");
761+
}
762+
758763
// Initialize the master primordial thread.
759764
SrsThreadEntry* entry = (SrsThreadEntry*)entry_;
760765
#ifndef SRS_OSX
@@ -976,7 +981,7 @@ srs_error_t SrsThreadPool::run()
976981
}
977982
}
978983

979-
sleep(1);
984+
srs_usleep(1 * SRS_UTIME_SECONDS);
980985
}
981986

982987
// In normal state, gather status and log it.

trunk/src/main/srs_main_server.cpp

-13
Original file line numberDiff line numberDiff line change
@@ -484,14 +484,6 @@ srs_error_t run_in_thread_pool()
484484
return srs_error_wrap(err, "init thread pool");
485485
}
486486

487-
// Create and initialize the API server.
488-
SrsApiServer* api = new SrsApiServer();
489-
SrsAutoFree(SrsApiServer, api);
490-
491-
if ((err = api->initialize()) != srs_success) {
492-
return srs_error_wrap(err, "init api server");
493-
}
494-
495487
// After all init(log, async log manager, thread pool), now we can start to
496488
// run the log manager thread.
497489
if ((err = _srs_thread_pool->execute("log", SrsAsyncLogManager::start, _srs_async_log)) != srs_success) {
@@ -522,11 +514,6 @@ srs_error_t run_in_thread_pool()
522514
}
523515
}
524516

525-
// Start the api server thread, for server stat and RTC api, etc.
526-
if ((err = _srs_thread_pool->execute("api", SrsApiServer::start, api)) != srs_success) {
527-
return srs_error_wrap(err, "start api server thread");
528-
}
529-
530517
// Start a number of hybrid service threads.
531518
int hybrids = _srs_config->get_threads_hybrids();
532519
for (int stream_index = 0; stream_index < hybrids; stream_index++) {

0 commit comments

Comments
 (0)