Restore GDBus API from async to sync.
[platform/core/connectivity/zigbee-manager.git] / zigbee-daemon / zigbee-interface / src / zigbee_service_interface.c
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Contact: Suresh Kumar N (suresh.n@samsung.com)
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22
23 #include <glib.h>
24 #include <dlog.h>
25
26 #include <zblib.h>
27
28 #include "zigbee_service_interface.h"
29 #include "zigbee_service_dbus_interface.h"
30
31 /**< Zigbee service interface initialization */
32 gboolean zigbee_service_interface_init(ZigBeeService *service)
33 {
34         gboolean ret;
35
36         if (NULL == service) {
37                 Z_LOGE("service is NULL");
38                 return FALSE;
39         }
40
41         /* Initialize dbus interface */
42         ret = zigbee_service_dbus_interface_init(service);
43         if (FALSE == ret) {
44                 Z_LOGE("zigbee_service_dbus_interface_init failed!!!");
45                 return FALSE;
46         }
47
48         return TRUE;
49 }
50
51 /**< Zigbee service interface de-initialization */
52 void zigbee_service_interface_deinit(ZigBeeService *service)
53 {
54         if (NULL == service) {
55                 Z_LOGE("service is NULL");
56                 return;
57         }
58
59         /* De-initialize dbus interface */
60         zigbee_service_dbus_interface_deinit(service);
61 }