/* * Copyright (C) 2017 The Android Open Source Project * * 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 * * http://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. */ #ifndef SRC_BASE_TEST_TEST_TASK_RUNNER_H_ #define SRC_BASE_TEST_TEST_TASK_RUNNER_H_ #include #include #include #include #include "perfetto/base/build_config.h" #include "perfetto/base/compiler.h" #include "perfetto/ext/base/thread_checker.h" #include "perfetto/ext/base/unix_task_runner.h" namespace perfetto { namespace base { class TestTaskRunner : public TaskRunner { public: TestTaskRunner(); ~TestTaskRunner() override; void RunUntilIdle(); void PERFETTO_NORETURN Run(); std::function CreateCheckpoint(const std::string& checkpoint); void RunUntilCheckpoint(const std::string& checkpoint, uint32_t timeout_ms = 5000); // Pretends (for the purposes of running delayed tasks) that time advanced by // `ms`. Run until then. void AdvanceTimeAndRunUntilIdle(uint32_t ms); // TaskRunner implementation. void PostTask(std::function closure) override; void PostDelayedTask(std::function, uint32_t delay_ms) override; void AddFileDescriptorWatch(PlatformHandle, std::function callback) override; void RemoveFileDescriptorWatch(PlatformHandle) override; bool RunsTasksOnCurrentThread() const override; private: TestTaskRunner(const TestTaskRunner&) = delete; TestTaskRunner& operator=(const TestTaskRunner&) = delete; void QuitIfIdle(); std::string pending_checkpoint_; std::map checkpoints_; base::UnixTaskRunner task_runner_; ThreadChecker thread_checker_; }; } // namespace base } // namespace perfetto #endif // SRC_BASE_TEST_TEST_TASK_RUNNER_H_