Added Haltest for zigbee-manager
[platform/core/connectivity/zigbee-manager.git] / haltest / common.h
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #ifndef __COMMON_H__
17 #define __COMMON_H__
18
19 #include <tizen_error.h>
20
21 #ifdef USE_DLOG
22 #include <dlog.h>
23 #undef LOG_TAG
24 #define LOG_TAG "ZIGBEE_GTEST"
25 #define GLOGD(format, args...)  LOGD(format, ##args)
26 #else
27 #define GLOGD(format, args...)
28 #endif
29
30 #ifndef TIZEN_ERROR_ZIGBEE
31 #define TIZEN_ERROR_ZIGBEE -0x02F70000
32 #endif
33
34 typedef enum {
35         ZIGBEE_ERROR_NONE = TIZEN_ERROR_NONE,                            /**< Successful */
36         ZIGBEE_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER,  /**< Invalid parameter */
37         ZIGBEE_ERROR_PARAMETER_OUT_OF_RANGE = TIZEN_ERROR_RESULT_OUT_OF_RANGE, /**< Out of range */
38         ZIGBEE_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY,          /**< Out of memory */
39         ZIGBEE_ERROR_IO_ERROR = TIZEN_ERROR_IO_ERROR,                    /**< DBus error */
40         ZIGBEE_ERROR_NO_DATA = TIZEN_ERROR_NO_DATA,                      /**< No data available */
41         ZIGBEE_ERROR_NOT_SUPPORTED = TIZEN_ERROR_NOT_SUPPORTED,          /**< Not supported */
42         ZIGBEE_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED,  /**< Permission denied */
43         ZIGBEE_ERROR_INVALID_ENDPOINT = TIZEN_ERROR_ZIGBEE | 0x01,       /**< Endpoint 0 is reserved for ZDP */
44         ZIGBEE_ERROR_INVALID_ADDRESS = TIZEN_ERROR_ZIGBEE | 0x02,        /**< Wrong address */
45         ZIGBEE_ERROR_OPERATION_FAILED = TIZEN_ERROR_ZIGBEE | 0x03,       /**< Operation failed */
46 } zb_error_e;
47 #endif /* __COMMON_H__ */