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 22 #define HDF_LOG_TAG hdf_device_manager 23 main()24int main() 25 { 26 HDF_LOGI("start hdf device manager"); 27 int status = HDF_FAILURE; 28 struct IDevmgrService* instance = DevmgrServiceGetInstance(); 29 if (instance == NULL) { 30 HDF_LOGE("Getting DevmgrService instance failed"); 31 return status; 32 } 33 34 if (instance->StartService != NULL) { 35 status = instance->StartService(instance); 36 } 37 (void)DevMgrUeventReceiveStart(); 38 if (status == HDF_SUCCESS) { 39 struct DevmgrServiceFull *fullService = (struct DevmgrServiceFull *)instance; 40 struct HdfMessageLooper *looper = &fullService->looper; 41 if ((looper != NULL) && (looper->Start != NULL)) { 42 looper->Start(looper); 43 } 44 } 45 46 HDF_LOGE("starting device manager service failed, status is %{public}d", status); 47 return status; 48 } 49