Skip to content

Commit 2367483

Browse files
committed
Threads-Log: Refine stat for sync wait, in log thread.
1 parent 6a1d6a0 commit 2367483

File tree

2 files changed

+24
-27
lines changed

2 files changed

+24
-27
lines changed

trunk/src/app/srs_app_log.cpp

-22
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,6 @@
3838
#include <srs_kernel_utility.hpp>
3939
#include <srs_app_threads.hpp>
4040

41-
#include <srs_protocol_kbps.hpp>
42-
43-
SrsPps* _srs_thread_sync_10us = new SrsPps();
44-
SrsPps* _srs_thread_sync_100us = new SrsPps();
45-
SrsPps* _srs_thread_sync_1000us = new SrsPps();
46-
SrsPps* _srs_thread_sync_plus = new SrsPps();
47-
4841
// the max size of a line of log.
4942
#define LOG_MAX_SIZE 8192
5043

@@ -235,24 +228,9 @@ void SrsFileLog::write_log(char *str_log, int size, int level)
235228
return;
236229
}
237230

238-
// It's ok to use cache, because it has been updated in generating log header.
239-
srs_utime_t now = srs_get_system_time();
240-
241231
// write log to file.
242232
if ((err = writer_->write(str_log, size, NULL)) != srs_success) {
243233
srs_error_reset(err); // Ignore any error for log writing.
244234
}
245-
246-
// Stat the sync wait of locks.
247-
srs_utime_t elapsed = srs_update_system_time() - now;
248-
if (elapsed <= 10) {
249-
++_srs_thread_sync_10us->sugar;
250-
} else if (elapsed <= 100) {
251-
++_srs_thread_sync_100us->sugar;
252-
} else if (elapsed <= 1000) {
253-
++_srs_thread_sync_1000us->sugar;
254-
} else {
255-
++_srs_thread_sync_plus->sugar;
256-
}
257235
}
258236

trunk/src/app/srs_app_threads.cpp

+24-5
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ using namespace std;
3535

3636
#include <srs_protocol_kbps.hpp>
3737

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;
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();
4242

4343
SrsThreadMutex::SrsThreadMutex()
4444
{
@@ -310,9 +310,28 @@ srs_error_t SrsAsyncFileWriter::flush()
310310
{
311311
srs_error_t err = srs_success;
312312

313+
// The time to wait here, is the time to wait there, because they wait for the same lock
314+
// at queue to push_back or swap all messages.
315+
srs_utime_t now = srs_update_system_time();
316+
313317
vector<SrsSharedPtrMessage*> flying;
314-
queue_->swap(flying);
318+
if (true) {
319+
queue_->swap(flying);
320+
}
321+
322+
// Stat the sync wait of locks.
323+
srs_utime_t elapsed = srs_update_system_time() - now;
324+
if (elapsed <= 10) {
325+
++_srs_thread_sync_10us->sugar;
326+
} else if (elapsed <= 100) {
327+
++_srs_thread_sync_100us->sugar;
328+
} else if (elapsed <= 1000) {
329+
++_srs_thread_sync_1000us->sugar;
330+
} else {
331+
++_srs_thread_sync_plus->sugar;
332+
}
315333

334+
// Flush the flying messages to disk.
316335
for (int i = 0; i < (int)flying.size(); i++) {
317336
SrsSharedPtrMessage* msg = flying.at(i);
318337

0 commit comments

Comments
 (0)