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 #ifndef DEVMGR_SERVICE_STUB_H 17 #define DEVMGR_SERVICE_STUB_H 18 19 #include "hdf_remote_service.h" 20 #include "devmgr_service_full.h" 21 #include "osal_mutex.h" 22 23 #define DEVICE_MANAGER_SERVICE "hdf_device_manager" 24 25 #ifdef __cplusplus 26 extern "C" { 27 #endif /* __cplusplus */ 28 29 struct DevmgrServiceStub { 30 struct DevmgrServiceFull super; 31 struct HdfRemoteService *remote; 32 struct OsalMutex devmgrStubMutx; 33 }; 34 35 enum { 36 DEVMGR_SERVICE_ATTACH_DEVICE_HOST = 1, 37 DEVMGR_SERVICE_ATTACH_DEVICE, 38 DEVMGR_SERVICE_DETACH_DEVICE, 39 DEVMGR_SERVICE_LOAD_DEVICE, 40 DEVMGR_SERVICE_UNLOAD_DEVICE, 41 DEVMGR_SERVICE_QUERY_DEVICE, 42 DEVMGR_SERVICE_LIST_ALL_DEVICE, 43 }; 44 45 struct HdfObject *DevmgrServiceStubCreate(void); 46 void DevmgrServiceStubRelease(struct HdfObject *object); 47 48 #ifdef __cplusplus 49 } 50 #endif /* __cplusplus */ 51 52 #endif /* DEVMGR_SERVICE_STUB_H */ 53