Skip to content

Commit babe8e6

Browse files
committed
Threads-Hybrid: Start multiple hybrid threads
1 parent 3367956 commit babe8e6

6 files changed

+33
-10
lines changed

trunk/src/app/srs_app_hybrid.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ SrsHybridServer::SrsHybridServer()
146146
timer_ = NULL;
147147

148148
clock_monitor_ = new SrsClockWallMonitor();
149+
150+
stream_index_ = -1;
149151
}
150152

151153
SrsHybridServer::~SrsHybridServer()
@@ -444,5 +446,5 @@ srs_error_t SrsHybridServer::on_thread_message(SrsThreadMessage* msg, SrsThreadP
444446
return err;
445447
}
446448

447-
SrsHybridServer* _srs_hybrid = new SrsHybridServer();
449+
__thread SrsHybridServer* _srs_hybrid = NULL;
448450

trunk/src/app/srs_app_hybrid.hpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,17 @@ class SrsHybridServer : public ISrsFastTimer, public ISrsThreadResponder
5656
std::vector<ISrsHybridServer*> servers;
5757
SrsFastTimer* timer_;
5858
SrsClockWallMonitor* clock_monitor_;
59+
private:
60+
// The config index for hybrid/stream server.
61+
int stream_index_;
5962
public:
6063
SrsHybridServer();
6164
virtual ~SrsHybridServer();
6265
public:
6366
virtual void register_server(ISrsHybridServer* svr);
67+
public:
68+
int stream_index() { return stream_index_; } // SrsHybridServer::stream_index()
69+
void set_stream_index(int v) { stream_index_ = v; } // SrsHybridServer::set_stream_index()
6470
public:
6571
virtual srs_error_t initialize();
6672
virtual srs_error_t run();
@@ -74,6 +80,6 @@ class SrsHybridServer : public ISrsFastTimer, public ISrsThreadResponder
7480
srs_error_t on_thread_message(SrsThreadMessage* msg, SrsThreadPipeChannel* channel);
7581
};
7682

77-
extern SrsHybridServer* _srs_hybrid;
83+
extern __thread SrsHybridServer* _srs_hybrid;
7884

7985
#endif

trunk/src/app/srs_app_rtc_dtls.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -246,9 +246,6 @@ srs_error_t SrsDtlsCertificate::initialize()
246246
// OPENSSL_init_ssl();
247247
#endif
248248

249-
// Initialize SRTP first.
250-
srs_assert(srtp_init() == 0);
251-
252249
// Whether use ECDSA certificate.
253250
ecdsa_mode = _srs_config->get_rtc_server_ecdsa();
254251

trunk/src/app/srs_app_server.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -945,7 +945,8 @@ srs_error_t SrsServer::register_signal()
945945
srs_error_t SrsServer::ingest()
946946
{
947947
srs_error_t err = srs_success;
948-
948+
949+
// TODO: FIXME: Should move from hybrid to api threads.
949950
if ((err = ingester->start()) != srs_success) {
950951
return srs_error_wrap(err, "ingest start");
951952
}

trunk/src/app/srs_app_threads.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include <srs_core_autofree.hpp>
3030
#include <srs_kernel_utility.hpp>
3131
#include <srs_app_utility.hpp>
32+
#include <srs_app_hybrid.hpp>
3233

3334
#include <unistd.h>
3435

@@ -505,13 +506,20 @@ srs_error_t SrsThreadPool::setup()
505506
return srs_error_wrap(err, "init st");
506507
}
507508

509+
// Create the hybrid RTMP/HTTP/RTC server.
510+
_srs_hybrid = new SrsHybridServer();
511+
508512
return err;
509513
}
510514

511515
srs_error_t SrsThreadPool::initialize()
512516
{
513517
srs_error_t err = srs_success;
514518

519+
// Initialize global shared SRTP once.
520+
srs_assert(srtp_init() == 0);
521+
522+
// Initialize the master primordial thread.
515523
SrsThreadEntry* entry = (SrsThreadEntry*)entry_;
516524
#ifndef SRS_OSX
517525
// Load CPU affinity from config.

trunk/src/main/srs_main_server.cpp

+13-4
Original file line numberDiff line numberDiff line change
@@ -530,12 +530,17 @@ srs_error_t run_in_thread_pool()
530530
return srs_error_wrap(err, "start api server thread");
531531
}
532532

533-
// Start the hybrid service worker thread, for RTMP and RTC server, etc.
534-
if ((err = _srs_thread_pool->execute("hybrid", run_hybrid_server, NULL)) != srs_success) {
535-
return srs_error_wrap(err, "start hybrid server thread");
533+
// Start a number of hybrid service threads.
534+
int hybrids = _srs_config->get_threads_hybrids();
535+
for (int stream_index = 0; stream_index < hybrids; stream_index++) {
536+
// TODO: FIXME: Change the thread name for debugging?
537+
// Start the hybrid service worker thread, for RTMP and RTC server, etc.
538+
if ((err = _srs_thread_pool->execute("hybrid", run_hybrid_server, (void*)(uint64_t)stream_index)) != srs_success) {
539+
return srs_error_wrap(err, "start hybrid server %d thread", stream_index);
540+
}
536541
}
537542

538-
srs_trace("Pool: Start threads srtp=%d, recv=%d, send=%d", srtps, recvs, sends);
543+
srs_trace("Pool: Start threads hybrids=%d, srtp=%d, recv=%d, send=%d", hybrids, srtps, recvs, sends);
539544

540545
return _srs_thread_pool->run();
541546
}
@@ -545,6 +550,10 @@ srs_error_t run_hybrid_server(void* arg)
545550
{
546551
srs_error_t err = srs_success;
547552

553+
// The config index for hybrid/stream server.
554+
int stream_index = (int)(uint64_t)arg;
555+
_srs_hybrid->set_stream_index(stream_index);
556+
548557
// Create servers and register them.
549558
_srs_hybrid->register_server(new SrsServerAdapter());
550559

0 commit comments

Comments
 (0)