mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
LibCore+Utilities: Replace ElapsedTimer precise flag with an enum
Previously, `true` was passed into the ElapsedTimer constructor if a precise timer was required. We now use an enum to more explicitly specify whether we would like a precise or a coarse timer.
This commit is contained in:
parent
0f168d9ca2
commit
679fe00d10
Notes:
sideshowbarker
2024-07-17 08:45:34 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/679fe00d10 Pull-request: https://github.com/SerenityOS/serenity/pull/23353 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/trflynn89 ✅
5 changed files with 13 additions and 8 deletions
|
@ -20,7 +20,7 @@ ElapsedTimer ElapsedTimer::start_new()
|
|||
void ElapsedTimer::start()
|
||||
{
|
||||
m_valid = true;
|
||||
m_origin_time = m_precise ? MonotonicTime::now() : MonotonicTime::now_coarse();
|
||||
m_origin_time = m_timer_type == TimerType::Precise ? MonotonicTime::now() : MonotonicTime::now_coarse();
|
||||
}
|
||||
|
||||
void ElapsedTimer::reset()
|
||||
|
@ -36,7 +36,7 @@ i64 ElapsedTimer::elapsed_milliseconds() const
|
|||
Duration ElapsedTimer::elapsed_time() const
|
||||
{
|
||||
VERIFY(is_valid());
|
||||
auto now = m_precise ? MonotonicTime::now() : MonotonicTime::now_coarse();
|
||||
auto now = m_timer_type == TimerType::Precise ? MonotonicTime::now() : MonotonicTime::now_coarse();
|
||||
return now - m_origin_time;
|
||||
}
|
||||
|
||||
|
|
|
@ -10,12 +10,17 @@
|
|||
|
||||
namespace Core {
|
||||
|
||||
enum class TimerType {
|
||||
Precise,
|
||||
Coarse
|
||||
};
|
||||
|
||||
class ElapsedTimer {
|
||||
public:
|
||||
static ElapsedTimer start_new();
|
||||
|
||||
ElapsedTimer(bool precise = false)
|
||||
: m_precise(precise)
|
||||
ElapsedTimer(TimerType timer_type = TimerType::Coarse)
|
||||
: m_timer_type(timer_type)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -36,7 +41,7 @@ public:
|
|||
|
||||
private:
|
||||
MonotonicTime m_origin_time { MonotonicTime::now() };
|
||||
bool m_precise { false };
|
||||
TimerType m_timer_type { TimerType::Coarse };
|
||||
bool m_valid { false };
|
||||
};
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ ErrorOr<int> serenity_main(Main::Arguments args)
|
|||
}
|
||||
auto loader = maybe_loader.release_value();
|
||||
|
||||
Core::ElapsedTimer sample_timer { true };
|
||||
Core::ElapsedTimer sample_timer { Core::TimerType::Precise };
|
||||
i64 total_loader_time = 0;
|
||||
int remaining_samples = sample_count > 0 ? sample_count : NumericLimits<int>::max();
|
||||
unsigned total_loaded_samples = 0;
|
||||
|
|
|
@ -45,7 +45,7 @@ struct {
|
|||
size_t total_bytes_copied = 0;
|
||||
size_t total_blocks_in = 0, partial_blocks_in = 0;
|
||||
size_t total_blocks_out = 0, partial_blocks_out = 0;
|
||||
Core::ElapsedTimer timer { true };
|
||||
Core::ElapsedTimer timer { Core::TimerType::Precise };
|
||||
} statistics;
|
||||
|
||||
static void closing_statistics()
|
||||
|
|
|
@ -78,7 +78,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
// 0: got ttl exhausted response
|
||||
// -1: error or no response
|
||||
auto try_reach_host = [&](int ttl) -> ErrorOr<int> {
|
||||
Core::ElapsedTimer m_timer { true };
|
||||
Core::ElapsedTimer m_timer { Core::TimerType::Precise };
|
||||
auto ttl_number = ByteString::number(ttl);
|
||||
for (auto i = 0; i < max_retries; i++) {
|
||||
icmp_request request {};
|
||||
|
|
Loading…
Reference in a new issue