/* * Copyright (C) 2023 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. */ #include "impl/RadioConfig.h" #include "impl/RadioData.h" #include "impl/RadioModem.h" #include "impl/RadioNetwork.h" #include "impl/RadioSim.h" #include #include #include namespace android::hardware::radio::service { using namespace std::string_literals; static std::vector> gPublishedHals; static void publishRadioConfig() { const auto instance = RadioConfig::descriptor + "/default"s; LOG(DEBUG) << "Publishing " << instance; auto aidlHal = ndk::SharedRefBase::make(); gPublishedHals.push_back(aidlHal); const auto status = AServiceManager_addService(aidlHal->asBinder().get(), instance.c_str()); CHECK_EQ(status, STATUS_OK); } template static void publishRadioHal(const std::string& slot, std::shared_ptr context) { const auto instance = T::descriptor + "/"s + slot; if (!AServiceManager_isDeclared(instance.c_str())) { LOG(INFO) << instance << " is not declared in VINTF (this may be intentional)"; return; } LOG(DEBUG) << "Publishing " << instance; auto aidlHal = ndk::SharedRefBase::make(context); gPublishedHals.push_back(aidlHal); context->addHal(aidlHal); const auto status = AServiceManager_addService(aidlHal->asBinder().get(), instance.c_str()); CHECK_EQ(status, STATUS_OK); } void main() { base::InitLogging(nullptr, base::LogdLogger(base::RADIO)); base::SetDefaultTag("minradio"); base::SetMinimumLogSeverity(base::VERBOSE); LOG(DEBUG) << "Minimal Radio HAL service starting..."; ABinderProcess_setThreadPoolMaxThreadCount(1); ABinderProcess_startThreadPool(); auto slot1Context = std::make_shared(1); publishRadioConfig(); publishRadioHal("slot1", slot1Context); publishRadioHal("slot1", slot1Context); publishRadioHal("slot1", slot1Context); publishRadioHal("slot1", slot1Context); // Non-virtual implementation would set up and initialize connection to the modem here slot1Context->setConnected(); LOG(DEBUG) << "Minimal Radio HAL service is operational"; ABinderProcess_joinThreadPool(); LOG(FATAL) << "Minimal Radio HAL service has stopped"; } } // namespace android::hardware::radio::service int main() { android::hardware::radio::service::main(); return EXIT_FAILURE; // should not reach }