1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/*
* Copyright (C) 2020 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.
*/
#pragma once
#include <platform/api/task_runner.h>
#include <atomic>
#include <condition_variable>
#include <map>
#include <mutex>
#include <optional>
#include <thread>
#include <android-base/thread_annotations.h>
namespace mdns {
// Openscreen API surface that allows for posting tasks. The underlying
// implementation may be single or multi-threaded, and all complication should
// be handled by the implementation class. The implementation must guarantee:
// (1) Tasks shall not overlap in time/CPU.
// (2) Tasks shall run sequentially, e.g. posting task A then B implies
// that A shall run before B.
// (3) If task A is posted before task B, then any mutation in A happens-before
// B runs (even if A and B run on different threads).
//
// Adb implementation: The PostPackagedTask* APIs are thread-safe.
// Another thread will handle dequeuing each item and calling it on the fdevent thread.
// Thus, the task runner thread is the fdevent thread, and IsRunningOnTaskRunner() shall always
// return true if calling from within the running Task.
class AdbOspTaskRunner final : public openscreen::TaskRunner {
public:
using Task = openscreen::TaskRunner::Task;
// Must be called on the fdevent thread.
explicit AdbOspTaskRunner();
~AdbOspTaskRunner() final;
void PostPackagedTask(Task task) final;
void PostPackagedTaskWithDelay(Task task, openscreen::Clock::duration delay) final;
bool IsRunningOnTaskRunner() final;
// The task executor thread.
void TaskExecutorWorker();
private:
uint64_t thread_id_;
std::mutex mutex_;
std::multimap<std::chrono::time_point<std::chrono::steady_clock>, Task> tasks_
GUARDED_BY(mutex_);
std::atomic<bool> terminate_loop_ = false;
std::condition_variable cv_;
std::thread task_handler_;
};
} // namespace mdns
|