31
31
#include < srs_app_utility.hpp>
32
32
#include < srs_app_hybrid.hpp>
33
33
#include < srs_app_source.hpp>
34
+ #include < srs_app_rtc_server.hpp>
35
+ #include < srs_app_conn.hpp>
36
+ #include < srs_app_rtc_source.hpp>
37
+ #include < srs_kernel_rtc_rtp.hpp>
38
+ #include < srs_app_pithy_print.hpp>
34
39
35
40
#include < unistd.h>
36
41
@@ -492,6 +497,7 @@ bool SrsThreadPool::hybrid_dying_water_level()
492
497
// Thread local objects.
493
498
extern const int LOG_MAX_SIZE;
494
499
extern __thread char * _srs_log_data;
500
+ extern __thread SrsStageManager* _srs_stages;
495
501
496
502
// Setup the thread-local variables, MUST call when each thread starting.
497
503
srs_error_t SrsThreadPool::setup ()
@@ -513,6 +519,25 @@ srs_error_t SrsThreadPool::setup()
513
519
// Create the source manager for server.
514
520
_srs_sources = new SrsSourceManager ();
515
521
522
+ // The blackhole for RTC server.
523
+ _srs_blackhole = new SrsRtcBlackhole ();
524
+
525
+ // The resource manager for RTC server.
526
+ _srs_rtc_manager = new SrsResourceManager (" RTC" , true );
527
+
528
+ // The source manager for RTC streams.
529
+ _srs_rtc_sources = new SrsRtcStreamManager ();
530
+
531
+ // The object cache for RTC server.
532
+ _srs_rtp_cache = new SrsRtpObjectCacheManager<SrsRtpPacket2>(sizeof (SrsRtpPacket2));
533
+ _srs_rtp_raw_cache = new SrsRtpObjectCacheManager<SrsRtpRawPayload>(sizeof (SrsRtpRawPayload));
534
+ _srs_rtp_fua_cache = new SrsRtpObjectCacheManager<SrsRtpFUAPayload2>(sizeof (SrsRtpFUAPayload2));
535
+ _srs_rtp_msg_cache_buffers = new SrsRtpObjectCacheManager<SrsSharedPtrMessage>(sizeof (SrsSharedPtrMessage) + kRtpPacketSize );
536
+ _srs_rtp_msg_cache_objs = new SrsRtpObjectCacheManager<SrsSharedPtrMessage>(sizeof (SrsSharedPtrMessage));
537
+
538
+ // The pithy print for each thread.
539
+ _srs_stages = new SrsStageManager ();
540
+
516
541
return err;
517
542
}
518
543
@@ -521,8 +546,6 @@ srs_error_t SrsThreadPool::initialize()
521
546
srs_error_t err = srs_success;
522
547
523
548
// Initialize global shared thread-safe objects once.
524
- srs_assert (srtp_init () == 0 );
525
-
526
549
if ((err = _srs_rtc_dtls_certificate->initialize ()) != srs_success) {
527
550
return srs_error_wrap (err, " rtc dtls certificate initialize" );
528
551
}
@@ -581,7 +604,7 @@ srs_error_t SrsThreadPool::execute(string label, srs_error_t (*start)(void* arg)
581
604
SrsThreadEntry* entry = new SrsThreadEntry ();
582
605
583
606
// Update the hybrid thread entry for circuit breaker.
584
- if (label == " hybrid" ) {
607
+ if (label == " hybrid" && !hybrid_ ) {
585
608
hybrid_ = entry;
586
609
}
587
610
@@ -664,6 +687,7 @@ srs_error_t SrsThreadPool::run()
664
687
}
665
688
666
689
// Update the Circuit-Breaker by water-level.
690
+ // TODO: FIXME: Should stat all hybrid servers.
667
691
if (hybrid_ && hybrid_->stat ) {
668
692
// Reset the high water-level when CPU is low for N times.
669
693
if (hybrid_->stat ->percent * 100 > high_threshold_) {
@@ -823,7 +847,7 @@ void* SrsThreadPool::start(void* arg)
823
847
return NULL ;
824
848
}
825
849
826
- // TODO: FIXME: It should be thread-local or thread-safe .
850
+ // It MUST be thread-safe, global and shared object .
827
851
SrsThreadPool* _srs_thread_pool = new SrsThreadPool();
828
852
829
853
SrsAsyncFileWriter::SrsAsyncFileWriter (std::string p)
@@ -1072,7 +1096,7 @@ srs_error_t SrsAsyncLogManager::do_start()
1072
1096
return err;
1073
1097
}
1074
1098
1075
- // TODO: FIXME: It should be thread-local or thread-safe .
1099
+ // It MUST be thread-safe, global shared object .
1076
1100
SrsAsyncLogManager* _srs_async_log = new SrsAsyncLogManager();
1077
1101
1078
1102
SrsAsyncSRTP::SrsAsyncSRTP (SrsSecurityTransport* transport)
0 commit comments