blob: f6cae7b2cdcda8890951e13492bf48eba42aa17e [file] [log] [blame]
// Copyright 2022 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
#pragma once
#include "pw_async/dispatcher.h"
#include "pw_async_backend/fake_dispatcher.h" // nogncheck
namespace pw::async::test {
// FakeDispatcher is a facade for an implementation of Dispatcher that is used
// in unit tests. FakeDispatcher uses simulated time. RunUntil() and RunFor()
// advance time immediately, and now() returns the current simulated time.
//
// To support various Task backends, FakeDispatcher wraps a
// backend::NativeFakeDispatcher that implements standard FakeDispatcher
// behavior using backend::NativeTask objects.
class FakeDispatcher final : public Dispatcher {
public:
FakeDispatcher() : native_dispatcher_(*this) {}
void RequestStop() override { native_dispatcher_.RequestStop(); }
// Post caller owned |task|.
void PostTask(Task& task) override { native_dispatcher_.PostTask(task); }
// Post caller owned |task| to be run after |delay|.
void PostDelayedTask(Task& task,
chrono::SystemClock::duration delay) override {
native_dispatcher_.PostDelayedTask(task, delay);
}
// Post caller owned |task| to be run at |time|.
void PostTaskForTime(Task& task,
chrono::SystemClock::time_point time) override {
native_dispatcher_.PostTaskForTime(task, time);
}
// Post caller owned |task| to be run immediately then rerun at a regular
// |interval|.
void SchedulePeriodicTask(Task& task,
chrono::SystemClock::duration interval) override {
native_dispatcher_.SchedulePeriodicTask(task, interval);
}
// Post caller owned |task| to be run at |start_time| then rerun at a regular
// |interval|.
void SchedulePeriodicTask(
Task& task,
chrono::SystemClock::duration interval,
chrono::SystemClock::time_point start_time) override {
native_dispatcher_.SchedulePeriodicTask(task, interval, start_time);
}
// Returns true if |task| is succesfully canceled.
// If cancelation fails, the task may be running or completed.
// Periodic tasks may run once more after they are canceled.
bool Cancel(Task& task) override { return native_dispatcher_.Cancel(task); }
// Execute all runnable tasks and return without advancing simulated time.
void RunUntilIdle() override { native_dispatcher_.RunUntilIdle(); }
// Run the Dispatcher until Now() has reached `end_time`, executing all tasks
// that come due before then.
void RunUntil(chrono::SystemClock::time_point end_time) override {
native_dispatcher_.RunUntil(end_time);
}
// Run the Dispatcher until `duration` has elapsed, executing all tasks that
// come due in that period.
void RunFor(chrono::SystemClock::duration duration) override {
native_dispatcher_.RunFor(duration);
}
// VirtualSystemClock overrides:
chrono::SystemClock::time_point now() override {
return native_dispatcher_.now();
}
// Returns the inner NativeFakeDispatcher containing backend-specific
// state/logic. Only non-portable code should call these methods!
backend::NativeFakeDispatcher& native_type() { return native_dispatcher_; }
const backend::NativeFakeDispatcher& native_type() const {
return native_dispatcher_;
}
private:
backend::NativeFakeDispatcher native_dispatcher_;
};
} // namespace pw::async::test