• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 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     constexpr int32_t ERR_DH_FWK_JSON_PARSE_FAILED = -10004;
33     constexpr int32_t ERR_DH_FWK_POINTER_IS_NULL = -10005;
34 
35     /* VersionManager errno, range: [-10200, -10299] */
36     constexpr int32_t ERR_DH_FWK_VERSION_DEVICE_ID_NOT_EXIST = -10200;
37 
38     /* ComponentManager errno, range: [-10300, -10399] */
39     constexpr int32_t ERR_DH_FWK_COMPONENT_INIT_SOURCE_FAILED = -10300;
40     constexpr int32_t ERR_DH_FWK_COMPONENT_INIT_SINK_FAILED = -10301;
41     constexpr int32_t ERR_DH_FWK_COMPONENT_ENABLE_FAILED = -10302;
42     constexpr int32_t ERR_DH_FWK_COMPONENT_DISABLE_FAILED = -10303;
43     constexpr int32_t ERR_DH_FWK_COMPONENT_ENABLE_TIMEOUT = -10304;
44     constexpr int32_t ERR_DH_FWK_COMPONENT_DISABLE_TIMEOUT = -10305;
45     constexpr int32_t ERR_DH_FWK_COMPONENT_REGISTER_FAILED = -10306;
46     constexpr int32_t ERR_DH_FWK_COMPONENT_UNREGISTER_FAILED = -10007;
47     constexpr int32_t ERR_DH_FWK_COMPONENT_GET_REMOTE_SA_FAILED = -10008;
48     constexpr int32_t ERR_DH_FWK_COMPONENT_GET_SINK_VERSION_FAILED = -10009;
49     constexpr int32_t ERR_DH_FWK_COMPONENT_DHTYPE_NOT_FOUND = -10010;
50     constexpr int32_t ERR_DH_FWK_COMPONENT_MONITOR_NULL = -10011;
51 
52     /* ResourceManager errno, range: [-10400, -10499] */
53     constexpr int32_t ERR_DH_FWK_RESOURCE_DB_ADAPTER_POINTER_NULL = -10400;
54     constexpr int32_t ERR_DH_FWK_RESOURCE_KV_STORAGE_POINTER_NULL = -10401;
55     constexpr int32_t ERR_DH_FWK_RESOURCE_DB_ADAPTER_OPERATION_FAIL = -10402;
56     constexpr int32_t ERR_DH_FWK_RESOURCE_KV_STORAGE_OPERATION_FAIL = -10403;
57     constexpr int32_t ERR_DH_FWK_RESOURCE_CAPABILITY_MAP_NOT_FOUND = -10404;
58     constexpr int32_t ERR_DH_FWK_RESOURCE_DB_MANUAL_SYNC_FAIL = -10405;
59     constexpr int32_t ERR_DH_FWK_RESOURCE_INIT_DB_FAILED = -10406;
60     constexpr int32_t ERR_DH_FWK_RESOURCE_UNINIT_DB_FAILED = -10407;
61     constexpr int32_t ERR_DH_FWK_RESOURCE_REGISTER_DB_FAILED = -10408;
62     constexpr int32_t ERR_DH_FWK_RESOURCE_UNREGISTER_DB_FAILED = -10409;
63     constexpr int32_t ERR_DH_FWK_RESOURCE_KEY_IS_EMPTY = -10410;
64     constexpr int32_t ERR_DH_FWK_RESOURCE_SYNC_VERSIONINFO_FAIL = -10411;
65     constexpr int32_t ERR_DH_FWK_RESOURCE_DEVICE_ID_NOT_EXIST = -10412;
66     constexpr int32_t ERR_DH_FWK_RESOURCE_UUID_NOT_FOUND = -10413;
67     constexpr int32_t ERR_DH_FWK_RESOURCE_CAPINFO_POINTER_NULL = -10414;
68     constexpr int32_t ERR_DH_FWK_RESOURCE_RES_DB_DATA_INVALID = -10415;
69 
70     /* DistributedHardwareManager errno, range: [-10500, -10599] */
71     constexpr int32_t ERR_DH_FWK_HARDWARE_MANAGER_DEVICE_REPEAT_ONLINE = -10500;
72     constexpr int32_t ERR_DH_FWK_HARDWARE_MANAGER_DEVICE_REPEAT_OFFLINE = -10501;
73     constexpr int32_t ERR_DH_FWK_HARDWARE_MANAGER_INIT_FAILED = -10502;
74 
75     /* ComponentLoader errno, range: [-10600, -10699] */
76     constexpr int32_t ERR_DH_FWK_LOADER_HANDLER_IS_NULL = -10600;
77     constexpr int32_t ERR_DH_FWK_LOADER_CONFIG_JSON_INVALID = -10601;
78     constexpr int32_t ERR_DH_FWK_LOADER_GET_LOCAL_VERSION_FAIL = -10602;
79     constexpr int32_t ERR_DH_FWK_LOADER_DLCLOSE_FAIL = -10603;
80 
81     /* Task errno, range: [-10700, -10799] */
82     constexpr int32_t ERR_DH_FWK_TASK_TIMEOUT = -10700;
83 
84     /* DistributedHardwareService errno, range: [-10800, -10899] */
85     constexpr int32_t ERR_DH_FWK_SERVICE_IPC_WRITE_PARA_FAIL = -10800;
86     constexpr int32_t ERR_DH_FWK_SERVICE_IPC_SEND_REQUEST_FAIL = -10801;
87     constexpr int32_t ERR_DH_FWK_SERVICE_IPC_READ_PARA_FAIL = -10802;
88     constexpr int32_t ERR_DH_FWK_SERVICE_STRING_IS_EMPTY = -10803;
89     constexpr int32_t ERR_DH_FWK_SERVICE_LOCAL_VERSION_NOT_EXIST = -10804;
90     constexpr int32_t ERR_DH_FWK_SERVICE_WRITE_TOKEN_FAIL = -10805;
91     constexpr int32_t ERR_DH_FWK_SERVICE_REMOTE_IS_NULL = -10806;
92     constexpr int32_t ERR_DH_FWK_SERVICE_WRITE_INFO_FAIL = -10807;
93     constexpr int32_t ERR_DH_FWK_PUBLISHER_LISTENER_IS_NULL = -10808;
94     constexpr int32_t ERR_DH_FWK_SERVICE_MSG_INVALID = -10809;
95 
96     /* AccessManager errno, range: [-10900, -10999] */
97     constexpr int32_t ERR_DH_FWK_ACCESS_INIT_DM_FAILED = -10900;
98     constexpr int32_t ERR_DH_FWK_ACCESS_UNINIT_DM_FAILED = -10901;
99     constexpr int32_t ERR_DH_FWK_ACCESS_REGISTER_DM_FAILED = -10902;
100     constexpr int32_t ERR_DH_FWK_ACCESS_UNREGISTER_DM_FAILED = -10903;
101 
102     /* Hidump errno, range: [-11000, -11099] */
103     constexpr int32_t ERR_DH_FWK_HIDUMP_ERROR = -11000;
104     constexpr int32_t ERR_DH_FWK_HIDUMP_INVALID_ARGS = -11001;
105     constexpr int32_t ERR_DH_FWK_HIDUMP_DPRINTF_ERROR = -11002;
106 
107     /* DHFWK Publisher errno, range: [-11100, -11199] */
108     constexpr int32_t ERR_DH_FWK_PUBLISH_MSG_FAILED = -11100;
109     constexpr uint32_t ERR_DH_FWK_PUBLISH_LISTENER_OVER_SIZE = -11101;
110 } // namespace DistributedHardware
111 } // namespace OHOS
112 #endif // OHOS_DISTRIBUTED_HARDWARE_ERRNO
113