|
24 | 24 | #include <srs_app_threads.hpp>
|
25 | 25 |
|
26 | 26 | #include <srs_kernel_error.hpp>
|
| 27 | +#include <srs_app_config.hpp> |
| 28 | +#include <srs_app_log.hpp> |
| 29 | +#include <srs_core_autofree.hpp> |
| 30 | + |
| 31 | +#include <unistd.h> |
| 32 | + |
| 33 | +using namespace std; |
| 34 | + |
| 35 | +SrsThreadMutex::SrsThreadMutex() |
| 36 | +{ |
| 37 | + // https://michaelkerrisk.com/linux/man-pages/man3/pthread_mutex_init.3p.html |
| 38 | + int r0 = pthread_mutex_init(&lock_, NULL); |
| 39 | + srs_assert(!r0); |
| 40 | +} |
| 41 | + |
| 42 | +SrsThreadMutex::~SrsThreadMutex() |
| 43 | +{ |
| 44 | + int r0 = pthread_mutex_destroy(&lock_); |
| 45 | + srs_assert(!r0); |
| 46 | +} |
| 47 | + |
| 48 | +void SrsThreadMutex::lock() |
| 49 | +{ |
| 50 | + // https://man7.org/linux/man-pages/man3/pthread_mutex_lock.3p.html |
| 51 | + int r0 = pthread_mutex_lock(&lock_); |
| 52 | + srs_assert(!r0); |
| 53 | +} |
| 54 | + |
| 55 | +void SrsThreadMutex::unlock() |
| 56 | +{ |
| 57 | + int r0 = pthread_mutex_unlock(&lock_); |
| 58 | + srs_assert(!r0); |
| 59 | +} |
| 60 | + |
| 61 | +SrsThreadEntry::SrsThreadEntry() |
| 62 | +{ |
| 63 | + pool = NULL; |
| 64 | + start = NULL; |
| 65 | + arg = NULL; |
| 66 | + num = 0; |
| 67 | + |
| 68 | + err = srs_success; |
| 69 | +} |
27 | 70 |
|
28 | 71 | SrsThreadPool::SrsThreadPool()
|
29 | 72 | {
|
| 73 | + entry_ = NULL; |
| 74 | + lock_ = new SrsThreadMutex(); |
30 | 75 | }
|
31 | 76 |
|
32 | 77 | SrsThreadPool::~SrsThreadPool()
|
33 | 78 | {
|
| 79 | + srs_freep(lock_); |
34 | 80 | }
|
35 | 81 |
|
36 | 82 | srs_error_t SrsThreadPool::initialize()
|
37 | 83 | {
|
38 | 84 | srs_error_t err = srs_success;
|
| 85 | + |
| 86 | + // TODO: FIXME: Should init ST for each thread. |
| 87 | + if ((err = srs_st_init()) != srs_success) { |
| 88 | + return srs_error_wrap(err, "initialize st failed"); |
| 89 | + } |
| 90 | + |
| 91 | + // Add primordial thread, current thread itself. |
| 92 | + SrsThreadEntry* entry = new SrsThreadEntry(); |
| 93 | + threads_.push_back(entry); |
| 94 | + entry_ = entry; |
| 95 | + |
| 96 | + entry->pool = this; |
| 97 | + entry->label = "primordial"; |
| 98 | + entry->start = NULL; |
| 99 | + entry->arg = NULL; |
| 100 | + entry->num = 1; |
| 101 | + |
| 102 | + srs_trace("Thread #%d: %s init", entry_->num, entry_->label.c_str()); |
| 103 | + |
39 | 104 | return err;
|
40 | 105 | }
|
41 | 106 |
|
42 |
| -srs_error_t SrsThreadPool::execute(srs_error_t (*start)(void* arg), void* arg) |
| 107 | +srs_error_t SrsThreadPool::execute(string label, srs_error_t (*start)(void* arg), void* arg) |
43 | 108 | {
|
44 |
| - srs_error_t err = start(arg); |
| 109 | + srs_error_t err = srs_success; |
| 110 | + |
| 111 | + static int num = entry_->num + 1; |
| 112 | + |
| 113 | + SrsThreadEntry* entry = new SrsThreadEntry(); |
| 114 | + |
| 115 | + if (true) { |
| 116 | + SrsThreadLocker(lock_); |
| 117 | + threads_.push_back(entry); |
| 118 | + } |
| 119 | + |
| 120 | + entry->pool = this; |
| 121 | + entry->label = label; |
| 122 | + entry->start = start; |
| 123 | + entry->arg = arg; |
| 124 | + entry->num = num++; |
| 125 | + |
| 126 | + // https://man7.org/linux/man-pages/man3/pthread_create.3.html |
| 127 | + pthread_t trd; |
| 128 | + int r0 = pthread_create(&trd, NULL, SrsThreadPool::start, entry); |
| 129 | + if (r0 != 0) { |
| 130 | + entry->err = srs_error_new(ERROR_THREAD_CREATE, "create thread %s", label.c_str()); |
| 131 | + return srs_error_copy(entry->err); |
| 132 | + } |
| 133 | + |
| 134 | + entry->trd = trd; |
| 135 | + |
45 | 136 | return err;
|
46 | 137 | }
|
47 | 138 |
|
48 | 139 | srs_error_t SrsThreadPool::run()
|
49 | 140 | {
|
50 | 141 | srs_error_t err = srs_success;
|
| 142 | + |
| 143 | + while (true) { |
| 144 | + srs_trace("Thread #%d: %s run, threads=%d", entry_->num, entry_->label.c_str(), |
| 145 | + (int)threads_.size()); |
| 146 | + sleep(60); |
| 147 | + } |
| 148 | + |
51 | 149 | return err;
|
52 | 150 | }
|
53 | 151 |
|
54 | 152 | void SrsThreadPool::stop()
|
55 | 153 | {
|
| 154 | + // TODO: FIXME: Implements it. |
| 155 | +} |
| 156 | + |
| 157 | +void* SrsThreadPool::start(void* arg) |
| 158 | +{ |
| 159 | + srs_error_t err = srs_success; |
| 160 | + |
| 161 | + SrsThreadEntry* entry = (SrsThreadEntry*)arg; |
| 162 | + srs_trace("Thread #%d: %s run", entry->num, entry->label.c_str()); |
| 163 | + |
| 164 | + if ((err = entry->start(entry->arg)) != srs_success) { |
| 165 | + entry->err = err; |
| 166 | + } |
| 167 | + |
| 168 | + // We do not use the return value, the err has been set to entry->err. |
| 169 | + return NULL; |
56 | 170 | }
|
57 | 171 |
|
58 | 172 | SrsThreadPool* _srs_thread_pool = new SrsThreadPool();
|
0 commit comments