1 /* 2 * Copyright (c) 2021-2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #include "devmgr_service.h" 17 #include "devmgr_service_full.h" 18 #include "devmgr_uevent.h" 19 #include "hdf_base.h" 20 #include "hdf_log.h" 21 #include "devmgr_dump.h" 22 23 #define HDF_LOG_TAG hdf_device_manager 24 main()25int main() 26 { 27 HDF_LOGI("start hdf device manager"); 28 int status = HDF_FAILURE; 29 struct IDevmgrService* instance = DevmgrServiceGetInstance(); 30 if (instance == NULL) { 31 HDF_LOGE("Getting DevmgrService instance failed"); 32 return status; 33 } 34 35 if (instance->StartService != NULL) { 36 status = instance->StartService(instance); 37 } 38 (void)DevMgrUeventReceiveStart(); 39 DevMgrRegisterDumpFunc(); 40 if (status == HDF_SUCCESS) { 41 struct DevmgrServiceFull *fullService = (struct DevmgrServiceFull *)instance; 42 struct HdfMessageLooper *looper = &fullService->looper; 43 if ((looper != NULL) && (looper->Start != NULL)) { 44 looper->Start(looper); 45 } 46 } 47 48 HDF_LOGE("starting device manager service failed, status is %{public}d", status); 49 return status; 50 } 51