| #define LOG_TAG "hwservicemanager" |
| |
| #include "ServiceManager.h" |
| |
| #include <android-base/logging.h> |
| #include <hidl/HidlSupport.h> |
| #include <regex> |
| #include <sstream> |
| |
| namespace android { |
| namespace hidl { |
| namespace manager { |
| namespace V1_0 { |
| namespace implementation { |
| |
| void ServiceManager::serviceDied(uint64_t /*cookie*/, const wp<IBase>& who) { |
| // TODO(b/32837397) |
| remove(who); |
| } |
| |
| ServiceManager::InstanceMap &ServiceManager::PackageInterfaceMap::getInstanceMap() { |
| return mInstanceMap; |
| } |
| |
| const ServiceManager::InstanceMap &ServiceManager::PackageInterfaceMap::getInstanceMap() const { |
| return mInstanceMap; |
| } |
| |
| const HidlService *ServiceManager::PackageInterfaceMap::lookup( |
| const std::string &name) const { |
| auto it = mInstanceMap.find(name); |
| |
| if (it == mInstanceMap.end()) { |
| return nullptr; |
| } |
| |
| return it->second.get(); |
| } |
| |
| HidlService *ServiceManager::PackageInterfaceMap::lookup( |
| const std::string &name) { |
| |
| return const_cast<HidlService*>( |
| const_cast<const PackageInterfaceMap*>(this)->lookup(name)); |
| } |
| |
| void ServiceManager::PackageInterfaceMap::insertService( |
| std::unique_ptr<HidlService> &&service) { |
| mInstanceMap.insert({service->getInstanceName(), std::move(service)}); |
| } |
| |
| void ServiceManager::PackageInterfaceMap::sendPackageRegistrationNotification( |
| const hidl_string &fqName, |
| const hidl_string &instanceName) const { |
| |
| for (const auto &listener : mPackageListeners) { |
| auto ret = listener->onRegistration(fqName, instanceName, false /* preexisting */); |
| ret.isOk(); // ignore |
| } |
| } |
| void ServiceManager::PackageInterfaceMap::addPackageListener(sp<IServiceNotification> listener) { |
| mPackageListeners.push_back(listener); |
| |
| for (const auto &instanceMapping : mInstanceMap) { |
| const std::unique_ptr<HidlService> &service = instanceMapping.second; |
| |
| if (service->getService() == nullptr) { |
| continue; |
| } |
| |
| listener->onRegistration( |
| service->getInterfaceName(), |
| service->getInstanceName(), |
| true /* preexisting */); |
| } |
| } |
| |
| // Methods from ::android::hidl::manager::V1_0::IServiceManager follow. |
| Return<sp<IBase>> ServiceManager::get(const hidl_string& fqName, |
| const hidl_string& name) { |
| auto ifaceIt = mServiceMap.find(fqName); |
| if (ifaceIt == mServiceMap.end()) { |
| return nullptr; |
| } |
| |
| const PackageInterfaceMap &ifaceMap = ifaceIt->second; |
| const HidlService *hidlService = ifaceMap.lookup(name); |
| |
| if (hidlService == nullptr) { |
| return nullptr; |
| } |
| |
| return hidlService->getService(); |
| } |
| |
| Return<bool> ServiceManager::add(const hidl_vec<hidl_string>& interfaceChain, |
| const hidl_string& name, |
| const sp<IBase>& service) { |
| |
| if (interfaceChain.size() == 0 || service == nullptr) { |
| return false; |
| } |
| |
| for(size_t i = 0; i < interfaceChain.size(); i++) { |
| std::string fqName = interfaceChain[i]; |
| |
| PackageInterfaceMap &ifaceMap = mServiceMap[fqName]; |
| HidlService *hidlService = ifaceMap.lookup(name); |
| |
| if (hidlService == nullptr) { |
| ifaceMap.insertService( |
| std::make_unique<HidlService>(fqName, name, service)); |
| } else { |
| if (hidlService->getService() != nullptr) { |
| auto ret = hidlService->getService()->unlinkToDeath(this); |
| ret.isOk(); // Ignore result |
| } |
| hidlService->setService(service); |
| } |
| |
| ifaceMap.sendPackageRegistrationNotification(fqName, name); |
| } |
| |
| auto ret = service->linkToDeath(this, 0 /*cookie*/); |
| ret.isOk(); // Ignore result |
| |
| return true; |
| } |
| |
| Return<void> ServiceManager::list(list_cb _hidl_cb) { |
| size_t total = 0; |
| |
| for (const auto &interfaceMapping : mServiceMap) { |
| const auto &instanceMap = interfaceMapping.second.getInstanceMap(); |
| |
| for (const auto &instanceMapping : instanceMap) { |
| const std::unique_ptr<HidlService> &service = instanceMapping.second; |
| if (service->getService() == nullptr) continue; |
| |
| ++total; |
| } |
| } |
| |
| hidl_vec<hidl_string> list; |
| list.resize(total); |
| |
| size_t idx = 0; |
| for (const auto &interfaceMapping : mServiceMap) { |
| const auto &instanceMap = interfaceMapping.second.getInstanceMap(); |
| |
| for (const auto &instanceMapping : instanceMap) { |
| const std::unique_ptr<HidlService> &service = instanceMapping.second; |
| if (service->getService() == nullptr) continue; |
| |
| list[idx++] = service->string(); |
| } |
| } |
| |
| _hidl_cb(list); |
| return Void(); |
| } |
| |
| Return<void> ServiceManager::listByInterface(const hidl_string& fqName, |
| listByInterface_cb _hidl_cb) { |
| auto ifaceIt = mServiceMap.find(fqName); |
| if (ifaceIt == mServiceMap.end()) { |
| _hidl_cb(hidl_vec<hidl_string>()); |
| return Void(); |
| } |
| |
| const auto &instanceMap = ifaceIt->second.getInstanceMap(); |
| |
| hidl_vec<hidl_string> list; |
| |
| size_t total = 0; |
| for (const auto &serviceMapping : instanceMap) { |
| const std::unique_ptr<HidlService> &service = serviceMapping.second; |
| if (service->getService() == nullptr) continue; |
| |
| ++total; |
| } |
| list.resize(total); |
| |
| size_t idx = 0; |
| for (const auto &serviceMapping : instanceMap) { |
| const std::unique_ptr<HidlService> &service = serviceMapping.second; |
| if (service->getService() == nullptr) continue; |
| |
| list[idx++] = service->getInstanceName(); |
| } |
| |
| _hidl_cb(list); |
| return Void(); |
| } |
| |
| Return<bool> ServiceManager::registerForNotifications(const hidl_string& fqName, |
| const hidl_string& name, |
| const sp<IServiceNotification>& callback) { |
| if (callback == nullptr) { |
| return false; |
| } |
| |
| // TODO(b/31632518) (link to death/automatically deregister) |
| |
| PackageInterfaceMap &ifaceMap = mServiceMap[fqName]; |
| |
| if (name.empty()) { |
| ifaceMap.addPackageListener(callback); |
| return true; |
| } |
| |
| HidlService *service = ifaceMap.lookup(name); |
| |
| if (service == nullptr) { |
| auto adding = std::make_unique<HidlService>(fqName, name, nullptr); |
| adding->addListener(callback); |
| ifaceMap.insertService(std::move(adding)); |
| } else { |
| service->addListener(callback); |
| } |
| |
| return true; |
| } |
| |
| bool ServiceManager::remove(const wp<IBase>& who) { |
| bool found = false; |
| for (auto &interfaceMapping : mServiceMap) { |
| auto &instanceMap = interfaceMapping.second.getInstanceMap(); |
| |
| for (auto &servicePair : instanceMap) { |
| const std::unique_ptr<HidlService> &service = servicePair.second; |
| if (service->getService() == who) { |
| service->setService(nullptr); |
| found = true; |
| } |
| } |
| } |
| return found; |
| } |
| } // namespace implementation |
| } // namespace V1_0 |
| } // namespace manager |
| } // namespace hidl |
| } // namespace android |