Code Sync [Tizen3.0]: Merged the tizen_2.4 Spin code to tizen.org
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / bt-service-util.c
1 /*
2  * Bluetooth-frwk
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact:  Hocheol Seo <hocheol.seo@samsung.com>
7  *               Girishashok Joshi <girish.joshi@samsung.com>
8  *               Chanyeol Park <chanyeol.park@samsung.com>
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *              http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  *
22  */
23
24 #include <string.h>
25 #include <dbus/dbus-glib.h>
26 #include <dbus/dbus.h>
27 #include <glib.h>
28 #include <dlog.h>
29
30 #include "bluetooth-api.h"
31 #include "bt-service-common.h"
32 #include "bt-service-util.h"
33
34 static GSList *req_list = NULL;
35
36 /* available request id : 0 ~ 244 */
37 #define BT_REQUEST_ID_RANGE_MAX 245
38
39 static int assigned_id;
40 static gboolean req_id_used[BT_REQUEST_ID_RANGE_MAX];
41
42 void _bt_init_request_id(void)
43 {
44         assigned_id = 0;
45         memset(req_id_used, 0x00, BT_REQUEST_ID_RANGE_MAX);
46 }
47
48 int _bt_assign_request_id(void)
49 {
50         int index;
51
52         index = assigned_id + 1;
53
54         if (index >= BT_REQUEST_ID_RANGE_MAX)
55                 index = 0;
56
57         while (req_id_used[index] == TRUE) {
58                 if (index == assigned_id) {
59                         /* No available ID */
60                         BT_ERR("All request ID is used");
61                         return -1;
62                 }
63
64                 index++;
65
66                 if (index >= BT_REQUEST_ID_RANGE_MAX)
67                         index = 0;
68         }
69
70         assigned_id = index;
71         req_id_used[index] = TRUE;
72
73         return assigned_id;
74 }
75
76 void _bt_delete_request_id(int request_id)
77 {
78         ret_if(request_id >= BT_REQUEST_ID_RANGE_MAX);
79         ret_if(request_id < 0);
80
81         req_id_used[request_id] = FALSE;
82 }
83
84 void _bt_init_request_list(void)
85 {
86         _bt_clear_request_list();
87 }
88
89 /* insert request next to head */
90 int _bt_insert_request_list(int req_id, int service_function,
91                         char *name, DBusGMethodInvocation *context)
92 {
93         request_info_t *info;
94
95         info = g_malloc0(sizeof(request_info_t));
96
97         info->req_id = req_id;
98         info->service_function = service_function;
99         info->context = context;
100
101         req_list = g_slist_append(req_list, info);
102
103         return BLUETOOTH_ERROR_NONE;
104 }
105
106 request_info_t *_bt_get_request_info(int req_id)
107 {
108         GSList *l;
109         request_info_t *info;
110
111         for (l = req_list; l != NULL; l = g_slist_next(l)) {
112                 info = l->data;
113                 if (info == NULL)
114                         continue;
115
116                 if (info->req_id == req_id)
117                         return info;
118         }
119
120         return NULL;
121 }
122
123 /* delete request which has the target req_id */
124 int _bt_delete_request_list(int req_id)
125 {
126         GSList *l;
127         request_info_t *info;
128
129         for (l = req_list; l != NULL; l = g_slist_next(l)) {
130                 info = l->data;
131                 if (info == NULL)
132                         continue;
133
134                 if (info->req_id == req_id) {
135                         req_list = g_slist_remove(req_list, info);
136                         _bt_delete_request_id(info->req_id);
137                         g_free(info);
138                         return BLUETOOTH_ERROR_NONE;
139                 }
140         }
141
142         return BLUETOOTH_ERROR_NOT_FOUND;
143 }
144
145 void _bt_clear_request_list(void)
146 {
147         if (req_list) {
148                 g_slist_foreach(req_list, (GFunc)g_free, NULL);
149                 g_slist_free(req_list);
150                 req_list = NULL;
151         }
152 }
153