1 /* 2 * Copyright (c) 2021 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 OHOS_DISTRIBUTED_HARDWARE_ERRNO 17 #define OHOS_DISTRIBUTED_HARDWARE_ERRNO 18 19 #include <cstdint> 20 21 namespace OHOS { 22 namespace DistributedHardware { 23 /* 24 * The distributed hardware module define errno, range: [-10000, -19999] 25 * Here's common errno, range: [-10000, -10199] 26 */ 27 constexpr int32_t DH_FWK_SUCCESS = 0; 28 constexpr int32_t ERR_DH_FWK_PARA_INVALID = -10000; 29 constexpr int32_t ERR_DH_FWK_REMOTE_NETWORK_ID_IS_EMPTY = -10001; 30 constexpr int32_t ERR_DH_FWK_REMOTE_DEVICE_ID_IS_EMPTY = -10002; 31 constexpr int32_t ERR_DH_FWK_TYPE_NOT_EXIST = -10003; 32 33 /* VersionManager errno, range: [-10200, -10299] */ 34 constexpr int32_t ERR_DH_FWK_VERSION_DEVICE_ID_NOT_EXIST = -10200; 35 36 /* ComponentManager errno, range: [-10300, -10399] */ 37 constexpr int32_t ERR_DH_FWK_COMPONENT_INIT_SOURCE_FAILED = -10300; 38 constexpr int32_t ERR_DH_FWK_COMPONENT_INIT_SINK_FAILED = -10301; 39 constexpr int32_t ERR_DH_FWK_COMPONENT_ENABLE_FAILED = -10302; 40 constexpr int32_t ERR_DH_FWK_COMPONENT_DISABLE_FAILED = -10303; 41 constexpr int32_t ERR_DH_FWK_COMPONENT_ENABLE_TIMEOUT = -10304; 42 constexpr int32_t ERR_DH_FWK_COMPONENT_DISABLE_TIMEOUT = -10305; 43 constexpr int32_t ERR_DH_FWK_COMPONENT_REGISTER_FAILED = -10306; 44 constexpr int32_t ERR_DH_FWK_COMPONENT_UNREGISTER_FAILED = -10007; 45 constexpr int32_t ERR_DH_FWK_COMPONENT_GET_REMOTE_SA_FAILED = -10008; 46 constexpr int32_t ERR_DH_FWK_COMPONENT_GET_SINK_VERSION_FAILED = -10009; 47 48 /* ResourceManager errno, range: [-10400, -10499] */ 49 constexpr int32_t ERR_DH_FWK_RESOURCE_DB_ADAPTER_POINTER_NULL = -10400; 50 constexpr int32_t ERR_DH_FWK_RESOURCE_KV_STORAGE_POINTER_NULL = -10401; 51 constexpr int32_t ERR_DH_FWK_RESOURCE_DB_ADAPTER_OPERATION_FAIL = -10402; 52 constexpr int32_t ERR_DH_FWK_RESOURCE_KV_STORAGE_OPERATION_FAIL = -10403; 53 constexpr int32_t ERR_DH_FWK_RESOURCE_CAPABILITY_MAP_NOT_FOUND = -10404; 54 constexpr int32_t ERR_DH_FWK_RESOURCE_DB_MANUAL_SYNC_FAIL = -10405; 55 constexpr int32_t ERR_DH_FWK_RESOURCE_INIT_DB_FAILED = -10406; 56 constexpr int32_t ERR_DH_FWK_RESOURCE_UNINIT_DB_FAILED = -10407; 57 constexpr int32_t ERR_DH_FWK_RESOURCE_REGISTER_DB_FAILED = -10408; 58 constexpr int32_t ERR_DH_FWK_RESOURCE_UNREGISTER_DB_FAILED = -10409; 59 constexpr int32_t ERR_DH_FWK_RESOURCE_KEY_IS_EMPTY = -10410; 60 61 /* DistributedHardwareManager errno, range: [-10500, -10599] */ 62 constexpr int32_t ERR_DH_FWK_HARDWARE_MANAGER_DEVICE_REPEAT_ONLINE = -10500; 63 constexpr int32_t ERR_DH_FWK_HARDWARE_MANAGER_DEVICE_REPEAT_OFFLINE = -10501; 64 constexpr int32_t ERR_DH_FWK_HARDWARE_MANAGER_LOAD_IMPL_FAILED = -10502; 65 constexpr int32_t ERR_DH_FWK_HARDWARE_MANAGER_LIB_IMPL_OPEN_FAILED = -10503; 66 constexpr int32_t ERR_DH_FWK_HARDWARE_MANAGER_LIB_IMPL_GET_INSTANCE_FAILED = -10504; 67 constexpr int32_t ERR_DH_FWK_HARDWARE_MANAGER_LIB_IMPL_IS_NULL = -10505; 68 69 /* ComponentLoader errno, range: [-10600, -10699] */ 70 constexpr int32_t ERR_DH_FWK_LOADER_HANDLER_IS_NULL = -10600; 71 constexpr int32_t ERR_DH_FWK_LOADER_COMPONENT_PROFILE_IS_EMPTY = -10601; 72 constexpr int32_t ERR_DH_FWK_LOADER_GET_LOCAL_VERSION_FAIL = -10602; 73 constexpr int32_t ERR_DH_FWK_LOADER_DLCLOSE_FAIL = -10603; 74 75 /* Task errno, range: [-10700, -10799] */ 76 constexpr int32_t ERR_DH_FWK_TASK_TIMEOUT = -10700; 77 78 /* DistributedHardwareService errno, range: [-10800, -10899] */ 79 constexpr int32_t ERR_DH_FWK_SERVICE_IPC_WRITE_PARA_FAIL = -10800; 80 constexpr int32_t ERR_DH_FWK_SERVICE_IPC_SEND_REQUEST_FAIL = -10801; 81 constexpr int32_t ERR_DH_FWK_SERVICE_IPC_READ_PARA_FAIL = -10802; 82 constexpr int32_t ERR_DH_FWK_SERVICE_STRING_IS_EMPTY = -10803; 83 constexpr int32_t ERR_DH_FWK_SERVICE_LOCAL_VERSION_NOT_EXIST = -10804; 84 constexpr int32_t ERR_DH_FWK_SERVICE_WRITE_TOKEN_FAIL = -10805; 85 86 /* AccessManager errno, range: [-10900, -10999] */ 87 constexpr int32_t ERR_DH_FWK_ACCESS_INIT_DM_FAILED = -10900; 88 constexpr int32_t ERR_DH_FWK_ACCESS_UNINIT_DM_FAILED = -10901; 89 constexpr int32_t ERR_DH_FWK_ACCESS_REGISTER_DM_FAILED = -10902; 90 constexpr int32_t ERR_DH_FWK_ACCESS_UNREGISTER_DM_FAILED = -10903; 91 } 92 } 93 #endif 94