| /* |
| * Copyright (C) 2022 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 <IVhalClient.h> |
| #include <aidl/android/hardware/automotive/remoteaccess/ApState.h> |
| #include <aidl/android/hardware/automotive/remoteaccess/BnRemoteAccess.h> |
| #include <aidl/android/hardware/automotive/remoteaccess/BnRemoteTaskCallback.h> |
| #include <aidl/android/hardware/automotive/remoteaccess/IRemoteTaskCallback.h> |
| #include <aidl/android/hardware/automotive/remoteaccess/ScheduleInfo.h> |
| #include <android-base/thread_annotations.h> |
| #include <android/binder_auto_utils.h> |
| #include <utils/SystemClock.h> |
| #include <wakeup_client.grpc.pb.h> |
| |
| #include <string> |
| #include <thread> |
| |
| namespace android { |
| namespace hardware { |
| namespace automotive { |
| namespace remoteaccess { |
| |
| // A IRemoteTaskCallback implementation for debug purpose. |
| class DebugRemoteTaskCallback final |
| : public aidl::android::hardware::automotive::remoteaccess::BnRemoteTaskCallback { |
| public: |
| DebugRemoteTaskCallback() { mStartTimeMillis = android::uptimeMillis(); }; |
| |
| ndk::ScopedAStatus onRemoteTaskRequested(const std::string& clientId, |
| const std::vector<uint8_t>& data) override; |
| std::string printTasks(); |
| |
| private: |
| struct TaskData { |
| std::string clientId; |
| std::vector<uint8_t> data; |
| }; |
| |
| std::mutex mLock; |
| int64_t mStartTimeMillis; |
| std::vector<TaskData> mTasks; |
| }; |
| |
| class RemoteAccessService |
| : public aidl::android::hardware::automotive::remoteaccess::BnRemoteAccess { |
| public: |
| explicit RemoteAccessService(WakeupClient::StubInterface* grpcStub); |
| |
| ~RemoteAccessService(); |
| |
| ndk::ScopedAStatus getVehicleId(std::string* vehicleId) override; |
| |
| ndk::ScopedAStatus getProcessorId(std::string* processorId) override; |
| |
| ndk::ScopedAStatus getWakeupServiceName(std::string* wakeupServiceName) override; |
| |
| ndk::ScopedAStatus setRemoteTaskCallback( |
| const std::shared_ptr< |
| aidl::android::hardware::automotive::remoteaccess::IRemoteTaskCallback>& |
| callback) override; |
| |
| ndk::ScopedAStatus clearRemoteTaskCallback() override; |
| |
| ndk::ScopedAStatus notifyApStateChange( |
| const aidl::android::hardware::automotive::remoteaccess::ApState& newState) override; |
| |
| ndk::ScopedAStatus isTaskScheduleSupported(bool* out) override; |
| |
| ndk::ScopedAStatus getSupportedTaskTypesForScheduling( |
| std::vector<aidl::android::hardware::automotive::remoteaccess::TaskType>* out) override; |
| |
| ndk::ScopedAStatus scheduleTask( |
| const aidl::android::hardware::automotive::remoteaccess::ScheduleInfo& scheduleInfo) |
| override; |
| |
| ndk::ScopedAStatus unscheduleTask(const std::string& clientId, |
| const std::string& scheduleId) override; |
| |
| ndk::ScopedAStatus unscheduleAllTasks(const std::string& clientId) override; |
| |
| ndk::ScopedAStatus isTaskScheduled(const std::string& clientId, const std::string& scheduleId, |
| bool* out) override; |
| |
| ndk::ScopedAStatus getAllPendingScheduledTasks( |
| const std::string& clientId, |
| std::vector<aidl::android::hardware::automotive::remoteaccess::ScheduleInfo>* out) |
| override; |
| |
| binder_status_t dump(int fd, const char** args, uint32_t numArgs) override; |
| |
| private: |
| // For testing. |
| friend class RemoteAccessServiceUnitTest; |
| |
| static bool checkDumpPermission(); |
| |
| WakeupClient::StubInterface* mGrpcStub; |
| std::thread mThread; |
| // Whether the GRPC server exists. Only checked and set during init. |
| bool mGrpcServerExist = false; |
| std::mutex mLock; |
| std::condition_variable mCv; |
| std::shared_ptr<aidl::android::hardware::automotive::remoteaccess::IRemoteTaskCallback> |
| mRemoteTaskCallback GUARDED_BY(mLock); |
| std::unique_ptr<grpc::ClientContext> mGetRemoteTasksContext GUARDED_BY(mLock); |
| // Associated with mCv to notify the task loop to stop waiting and exit. |
| bool mTaskWaitStopped GUARDED_BY(mLock); |
| // A mutex to make sure startTaskLoop does not overlap with stopTaskLoop. |
| std::mutex mStartStopTaskLoopLock; |
| bool mTaskLoopRunning GUARDED_BY(mStartStopTaskLoopLock) = false; |
| bool mGrpcReadChannelOpen GUARDED_BY(mLock) = false; |
| std::unordered_map<std::string, size_t> mClientIdToTaskCount GUARDED_BY(mLock); |
| |
| // Default wait time before retry connecting to remote access client is 10s. |
| size_t mRetryWaitInMs = 10'000; |
| std::shared_ptr<DebugRemoteTaskCallback> mDebugCallback; |
| |
| std::thread mInjectDebugTaskThread; |
| |
| void runTaskLoop(); |
| void maybeStartTaskLoop(); |
| void maybeStopTaskLoop(); |
| ndk::ScopedAStatus getVehicleIdWithClient( |
| android::frameworks::automotive::vhal::IVhalClient& client, std::string* vehicleId); |
| |
| void setRetryWaitInMs(size_t retryWaitInMs) { mRetryWaitInMs = retryWaitInMs; } |
| void dumpHelp(int fd); |
| void printCurrentStatus(int fd); |
| std::string clientIdToTaskCountToStringLocked() REQUIRES(mLock); |
| void debugInjectTask(int fd, std::string_view clientId, std::string_view taskData); |
| void debugInjectTaskNextReboot(int fd, std::string_view clientId, std::string_view taskData, |
| const char* latencyInSecStr); |
| void updateGrpcReadChannelOpen(bool grpcReadChannelOpen); |
| android::base::Result<void> deliverRemoteTaskThroughCallback(const std::string& clientId, |
| std::string_view taskData); |
| bool isTaskScheduleSupported(); |
| }; |
| |
| } // namespace remoteaccess |
| } // namespace automotive |
| } // namespace hardware |
| } // namespace android |