blob: 66b6f2cb6ff2b12f9bc63ff9184ecfbc466f7c16 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/task/sequence_manager/test/mock_time_message_pump.h"
#include <algorithm>
#include "base/auto_reset.h"
#include "base/test/simple_test_tick_clock.h"
namespace base {
namespace sequence_manager {
MockTimeMessagePump::MockTimeMessagePump(SimpleTestTickClock* clock)
: clock_(clock) {}
MockTimeMessagePump::~MockTimeMessagePump() {}
bool MockTimeMessagePump::MaybeAdvanceTime(TimeTicks target_time) {
auto now = clock_->NowTicks();
if (target_time <= now)
return true;
TimeTicks next_now;
if (!target_time.is_max()) {
next_now = std::min(allow_advance_until_, target_time);
} else if (allow_advance_until_ == TimeTicks::Max()) {
next_now = now;
} else {
next_now = allow_advance_until_;
}
if (now < next_now) {
clock_->SetNowTicks(next_now);
return true;
}
return false;
}
void MockTimeMessagePump::Run(Delegate* delegate) {
AutoReset<bool> auto_reset_keep_running(&keep_running_, true);
for (;;) {
Delegate::NextWorkInfo info = delegate->DoSomeWork();
if (!keep_running_ || quit_after_do_some_work_)
break;
if (info.is_immediate())
continue;
bool have_immediate_work = delegate->DoIdleWork();
if (!keep_running_)
break;
if (have_immediate_work)
continue;
if (MaybeAdvanceTime(info.delayed_run_time))
continue;
next_wake_up_time_ = info.delayed_run_time;
if (stop_when_message_pump_is_idle_)
return;
NOTREACHED() << "Pump would go to sleep. Probably not what you wanted, "
"consider rewriting your test.";
}
}
void MockTimeMessagePump::Quit() {
keep_running_ = false;
}
void MockTimeMessagePump::ScheduleWork() {}
void MockTimeMessagePump::ScheduleDelayedWork(
const TimeTicks& delayed_work_time) {
next_wake_up_time_ = delayed_work_time;
}
} // namespace sequence_manager
} // namespace base