@@ -35,10 +35,10 @@ using namespace std;
35
35
36
36
#include < srs_protocol_kbps.hpp>
37
37
38
- SrsPps* _srs_thread_sync_10us = new SrsPps() ;
39
- SrsPps* _srs_thread_sync_100us = new SrsPps() ;
40
- SrsPps* _srs_thread_sync_1000us = new SrsPps() ;
41
- SrsPps* _srs_thread_sync_plus = new SrsPps() ;
38
+ extern SrsPps* _srs_thread_sync_10us;
39
+ extern SrsPps* _srs_thread_sync_100us;
40
+ extern SrsPps* _srs_thread_sync_1000us;
41
+ extern SrsPps* _srs_thread_sync_plus;
42
42
43
43
SrsThreadMutex::SrsThreadMutex ()
44
44
{
@@ -128,6 +128,7 @@ srs_error_t SrsThreadPool::initialize()
128
128
}
129
129
130
130
interval_ = _srs_config->get_threads_interval ();
131
+ srs_trace (" Thread #%d(%s): init interval=%dms" , entry_->num , entry_->label .c_str (), srsu2msi (interval_));
131
132
132
133
return err;
133
134
}
@@ -172,8 +173,6 @@ srs_error_t SrsThreadPool::run()
172
173
{
173
174
srs_error_t err = srs_success;
174
175
175
- bool print_init_log = true ;
176
-
177
176
while (true ) {
178
177
// Check the threads status fastly.
179
178
int loops = (int )(interval_ / SRS_UTIME_SECONDS);
@@ -190,12 +189,6 @@ srs_error_t SrsThreadPool::run()
190
189
}
191
190
192
191
sleep (1 );
193
-
194
- // Flush the system previous logs by this log.
195
- if (i > 0 && print_init_log) {
196
- print_init_log = false ;
197
- srs_trace (" Thread #%d(%s): init interval=%dms" , entry_->num , entry_->label .c_str (), srsu2msi (interval_));
198
- }
199
192
}
200
193
201
194
// In normal state, gather status and log it.
@@ -245,7 +238,6 @@ SrsAsyncFileWriter::SrsAsyncFileWriter(std::string p)
245
238
filename_ = p;
246
239
writer_ = new SrsFileWriter ();
247
240
queue_ = new SrsThreadQueue<SrsSharedPtrMessage>();
248
- co_queue_ = new SrsCoroutineQueue<SrsSharedPtrMessage>();
249
241
}
250
242
251
243
// TODO: FIXME: Before free the writer, we must remove it from the manager.
@@ -254,7 +246,6 @@ SrsAsyncFileWriter::~SrsAsyncFileWriter()
254
246
// TODO: FIXME: Should we flush dirty logs?
255
247
srs_freep (writer_);
256
248
srs_freep (queue_);
257
- srs_freep (co_queue_);
258
249
}
259
250
260
251
srs_error_t SrsAsyncFileWriter::open ()
@@ -286,7 +277,7 @@ srs_error_t SrsAsyncFileWriter::write(void* buf, size_t count, ssize_t* pnwrite)
286
277
SrsSharedPtrMessage* msg = new SrsSharedPtrMessage ();
287
278
msg->wrap (cp, count);
288
279
289
- co_queue_ ->push_back (msg);
280
+ queue_ ->push_back (msg);
290
281
291
282
if (pnwrite) {
292
283
*pnwrite = count;
@@ -315,29 +306,6 @@ srs_error_t SrsAsyncFileWriter::writev(const iovec* iov, int iovcnt, ssize_t* pn
315
306
return err;
316
307
}
317
308
318
- void SrsAsyncFileWriter::flush_co_queue ()
319
- {
320
- srs_utime_t now = srs_update_system_time ();
321
-
322
- // The thread queue is thread-safe, so we do not need a lock.
323
- if (true ) {
324
- vector<SrsSharedPtrMessage*> flying;
325
- co_queue_->swap (flying);
326
- queue_->push_back (flying);
327
- }
328
-
329
- srs_utime_t elapsed = srs_update_system_time () - now;
330
- if (elapsed <= 10 ) {
331
- ++_srs_thread_sync_10us->sugar ;
332
- } else if (elapsed <= 100 ) {
333
- ++_srs_thread_sync_100us->sugar ;
334
- } else if (elapsed <= 1000 ) {
335
- ++_srs_thread_sync_1000us->sugar ;
336
- } else {
337
- ++_srs_thread_sync_plus->sugar ;
338
- }
339
- }
340
-
341
309
srs_error_t SrsAsyncFileWriter::flush ()
342
310
{
343
311
srs_error_t err = srs_success;
@@ -441,19 +409,8 @@ std::string SrsAsyncLogManager::description()
441
409
max_logs = srs_max (max_logs, nn);
442
410
}
443
411
444
- int nn_co_logs = 0 ;
445
- int max_co_logs = 0 ;
446
- for (int i = 0 ; i < (int )writers_.size (); i++) {
447
- SrsAsyncFileWriter* writer = writers_.at (i);
448
-
449
- int nn = (int )writer->co_queue_ ->size ();
450
- nn_co_logs += nn;
451
- max_co_logs = srs_max (max_co_logs, nn);
452
- }
453
-
454
412
static char buf[128 ];
455
- snprintf (buf, sizeof (buf), " , logs=%d/%d/%d/%d/%d" ,
456
- (int )writers_.size (), nn_logs, max_logs, nn_co_logs, max_co_logs);
413
+ snprintf (buf, sizeof (buf), " , logs=%d/%d/%d" , (int )writers_.size (), nn_logs, max_logs);
457
414
458
415
return buf;
459
416
}
0 commit comments