/* * Copyright (C) 2016 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_HARDWARE_CONTEXTHUB_V1_0_CONTEXTHUB_H_ #define ANDROID_HARDWARE_CONTEXTHUB_V1_0_CONTEXTHUB_H_ #include #include #include #include namespace android { namespace hardware { namespace contexthub { namespace V1_0 { namespace implementation { struct Contexthub : public ::android::hardware::contexthub::V1_0::IContexthub { Contexthub(); Return getHubs(getHubs_cb _hidl_cb) override; Return registerCallback(uint32_t hubId, const sp &cb) override; Return sendMessageToHub(uint32_t hubId, const ContextHubMsg &msg) override; Return loadNanoApp(uint32_t hubId, const NanoAppBinary& appBinary, uint32_t transactionId) override; Return unloadNanoApp(uint32_t hubId, uint64_t appId, uint32_t transactionId) override; Return enableNanoApp(uint32_t hubId, uint64_t appId, uint32_t transactionId) override; Return disableNanoApp(uint32_t hubId, uint64_t appId, uint32_t transactionId) override; Return queryApps(uint32_t hubId) override; Return reboot(uint32_t hubId); bool isInitialized(); private: struct CachedHubInformation{ struct hub_app_name_t osAppName; sp callback; }; class DeathRecipient : public hidl_death_recipient { public: DeathRecipient(const sp contexthub); void serviceDied( uint64_t cookie, const wp<::android::hidl::base::V1_0::IBase>& who) override; private: sp mContexthub; }; status_t mInitCheck; const struct context_hub_module_t *mContextHubModule; std::unordered_map mCachedHubInfo; sp mDeathRecipient; bool mIsTransactionPending; uint32_t mTransactionId; bool isValidHubId(uint32_t hubId); sp getCallBackForHubId(uint32_t hubId); int handleOsMessage(sp cb, uint32_t msgType, const uint8_t *msg, int msgLen); // Handle the case where the callback registered for the given hub ID dies void handleServiceDeath(uint32_t hubId); static int contextHubCb(uint32_t hubId, const struct hub_message_t *rxMsg, void *cookie); bool setOsAppAsDestination(hub_message_t *msg, int hubId); DISALLOW_COPY_AND_ASSIGN(Contexthub); }; extern "C" IContexthub *HIDL_FETCH_IContexthub(const char *name); } // namespace implementation } // namespace V1_0 } // namespace contexthub } // namespace hardware } // namespace android #endif // ANDROID_HARDWARE_CONTEXTHUB_V1_0_CONTEXTHUB_H_