Skip to content

Commit 831b77b

Browse files
committed
Threads-Log: Refine API and main workflow.
1. Use SrsThreadPool to execute the hybrid server. 2. Right now, directly run in primordial thread, that is no threads. 3. Define the main APIs of SrsThreadPool.
1 parent bbdb4a3 commit 831b77b

File tree

4 files changed

+130
-5
lines changed

4 files changed

+130
-5
lines changed

trunk/configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ MODULE_FILES=("srs_app_server" "srs_app_conn" "srs_app_rtmp_conn" "srs_app_sourc
274274
"srs_app_mpegts_udp" "srs_app_rtsp" "srs_app_listener" "srs_app_async_call"
275275
"srs_app_caster_flv" "srs_app_process" "srs_app_ng_exec"
276276
"srs_app_hourglass" "srs_app_dash" "srs_app_fragment" "srs_app_dvr"
277-
"srs_app_coworkers" "srs_app_hybrid")
277+
"srs_app_coworkers" "srs_app_hybrid" "srs_app_threads")
278278
if [[ $SRS_RTC == YES ]]; then
279279
MODULE_FILES+=("srs_app_rtc_conn" "srs_app_rtc_dtls" "srs_app_rtc_sdp"
280280
"srs_app_rtc_queue" "srs_app_rtc_server" "srs_app_rtc_source" "srs_app_rtc_api")

trunk/src/app/srs_app_threads.cpp

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
/**
2+
* The MIT License (MIT)
3+
*
4+
* Copyright (c) 2013-2020 Winlin
5+
*
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
7+
* this software and associated documentation files (the "Software"), to deal in
8+
* the Software without restriction, including without limitation the rights to
9+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
10+
* the Software, and to permit persons to whom the Software is furnished to do so,
11+
* subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in all
14+
* copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18+
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19+
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20+
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21+
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22+
*/
23+
24+
#include <srs_app_threads.hpp>
25+
26+
#include <srs_kernel_error.hpp>
27+
28+
SrsThreadPool::SrsThreadPool()
29+
{
30+
}
31+
32+
SrsThreadPool::~SrsThreadPool()
33+
{
34+
}
35+
36+
srs_error_t SrsThreadPool::initialize()
37+
{
38+
srs_error_t err = srs_success;
39+
return err;
40+
}
41+
42+
srs_error_t SrsThreadPool::execute(srs_error_t (*start)(void* arg), void* arg)
43+
{
44+
srs_error_t err = start(arg);
45+
return err;
46+
}
47+
48+
srs_error_t SrsThreadPool::run()
49+
{
50+
srs_error_t err = srs_success;
51+
return err;
52+
}
53+
54+
void SrsThreadPool::stop()
55+
{
56+
}
57+
58+
SrsThreadPool* _srs_thread_pool = new SrsThreadPool();

trunk/src/app/srs_app_threads.hpp

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/**
2+
* The MIT License (MIT)
3+
*
4+
* Copyright (c) 2013-2020 Winlin
5+
*
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
7+
* this software and associated documentation files (the "Software"), to deal in
8+
* the Software without restriction, including without limitation the rights to
9+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
10+
* the Software, and to permit persons to whom the Software is furnished to do so,
11+
* subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in all
14+
* copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18+
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19+
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20+
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21+
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22+
*/
23+
24+
#ifndef SRS_APP_THREADS_HPP
25+
#define SRS_APP_THREADS_HPP
26+
27+
#include <srs_core.hpp>
28+
29+
// Allocate a(or almost) fixed thread poll to execute tasks,
30+
// so that we can take the advantage of multiple CPUs.
31+
class SrsThreadPool
32+
{
33+
public:
34+
SrsThreadPool();
35+
virtual ~SrsThreadPool();
36+
public:
37+
// Initialize the thread pool.
38+
srs_error_t initialize();
39+
// Execute start function in thread.
40+
srs_error_t execute(srs_error_t (*start)(void* arg), void* arg);
41+
// Run in the primordial thread, util stop or quit.
42+
srs_error_t run();
43+
// Stop the thread pool and quit the primordial thread.
44+
void stop();
45+
};
46+
47+
// The global thread pool.
48+
extern SrsThreadPool* _srs_thread_pool;
49+
50+
#endif

trunk/src/main/srs_main_server.cpp

+21-4
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ using namespace std;
5454
#include <srs_core_autofree.hpp>
5555
#include <srs_kernel_file.hpp>
5656
#include <srs_app_hybrid.hpp>
57+
#include <srs_app_threads.hpp>
5758
#ifdef SRS_RTC
5859
#include <srs_app_rtc_conn.hpp>
5960
#include <srs_app_rtc_server.hpp>
@@ -65,7 +66,7 @@ using namespace std;
6566

6667
// pre-declare
6768
srs_error_t run_directly_or_daemon();
68-
srs_error_t run_hybrid_server();
69+
srs_error_t run_in_thread_pool();
6970
void show_macro_features();
7071

7172
// @global log and context.
@@ -415,7 +416,7 @@ srs_error_t run_directly_or_daemon()
415416

416417
// If not daemon, directly run hybrid server.
417418
if (!run_as_daemon) {
418-
if ((err = run_hybrid_server()) != srs_success) {
419+
if ((err = run_in_thread_pool()) != srs_success) {
419420
return srs_error_wrap(err, "run hybrid");
420421
}
421422
return srs_success;
@@ -452,14 +453,30 @@ srs_error_t run_directly_or_daemon()
452453
// son
453454
srs_trace("son(daemon) process running.");
454455

455-
if ((err = run_hybrid_server()) != srs_success) {
456+
if ((err = run_in_thread_pool()) != srs_success) {
456457
return srs_error_wrap(err, "daemon run hybrid");
457458
}
458459

459460
return err;
460461
}
461462

462-
srs_error_t run_hybrid_server()
463+
srs_error_t run_hybrid_server(void* arg);
464+
srs_error_t run_in_thread_pool()
465+
{
466+
srs_error_t err = srs_success;
467+
468+
if ((err = _srs_thread_pool->initialize()) != srs_success) {
469+
return srs_error_wrap(err, "init thread pool");
470+
}
471+
472+
if ((err = _srs_thread_pool->execute(run_hybrid_server, NULL)) != srs_success) {
473+
return srs_error_wrap(err, "run hybrid server");
474+
}
475+
476+
return _srs_thread_pool->run();
477+
}
478+
479+
srs_error_t run_hybrid_server(void* arg)
463480
{
464481
srs_error_t err = srs_success;
465482

0 commit comments

Comments
 (0)