Rollback changes to submit TIZEN:COMMON project
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / include / bt-service-util.h
1 /*
2  * bluetooth-frwk
3  *
4  * Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
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
20 #ifndef _BT_SERVICE_UTIL_H_
21 #define _BT_SERVICE_UTIL_H_
22
23 #include <sys/types.h>
24 #include <dbus/dbus-glib.h>
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif /* __cplusplus */
29
30 #define BT_NODE_NAME_LEN 50
31
32 typedef struct {
33         int req_id;
34         int service_function;
35         char name[BT_NODE_NAME_LEN];
36         DBusGMethodInvocation *context;
37 } request_info_t;
38
39
40 void _bt_init_request_id(void);
41
42 int _bt_assign_request_id(void);
43
44 void _bt_delete_request_id(int request_id);
45
46
47 void _bt_init_request_list(void);
48
49 int _bt_insert_request_list(int req_id, int service_function,
50                         char *name, DBusGMethodInvocation *context);
51
52 int _bt_delete_request_list(int req_id);
53
54 request_info_t *_bt_get_request_info(int req_id);
55
56 void _bt_clear_request_list(void);
57
58 #ifdef __cplusplus
59 }
60 #endif /* __cplusplus */
61 #endif /*_BT_SERVICE_UTIL_H_*/
62