/** * Copyright (C) 2021 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 ANDROID_CARSERVICE_EVSCALLBACKTHREAD_H #define ANDROID_CARSERVICE_EVSCALLBACKTHREAD_H #include #include #include #include #include namespace android { namespace automotive { namespace evs { /* * This class defines the thread that handles callbacks from the native Extended * View System service. */ class EvsCallbackThread { using Task = std::function; JavaVM* mVm; std::atomic mRunning; std::thread mThread; std::mutex mLock; std::condition_variable mCondition; std::queue mTaskQueue GUARDED_BY(mLock); // Main loop to handle enqueued tasks continuously void threadLoop(); DISALLOW_COPY_AND_ASSIGN(EvsCallbackThread); public: explicit EvsCallbackThread(JavaVM* vm); virtual ~EvsCallbackThread(); // Adds a new task to the queue void enqueue(const Task& task) ACQUIRE(mLock); // Stops a task handler thread void stop(); }; } // namespace evs } // namespace automotive } // namespace android #endif // ANDROID_CARSERVICE_EVSCALLBACKTHREAD_H