ctsvc_client_handle_remove in CTS_MUTEX_CONNECTION
[platform/core/pim/contacts-service.git] / client / ctsvc_client_handle.c
1 /*
2  * Contacts Service
3  *
4  * Copyright (c) 2015 Samsung Electronics Co., Ltd. All rights reserved.
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 #include <glib.h>
21 #include <unistd.h>
22
23 #include "ctsvc_internal.h"
24 #include "ctsvc_handle.h"
25 #include "ctsvc_mutex.h"
26 #include "ctsvc_client_utils.h"
27 #include "ctsvc_client_handle.h"
28
29 static GHashTable *_ctsvc_handle_table = NULL;
30
31 static int _ctsvc_client_handle_get_key(unsigned int id, char *key, int key_len)
32 {
33         int ret;
34         int len;
35
36         ret = gethostname(key, key_len);
37         RETVM_IF(0 != ret, CONTACTS_ERROR_SYSTEM, "gethostname() Failed(%d)", errno);
38
39         len = strlen(key);
40         snprintf(key+len, key_len-len, ":%u", id);
41
42         return CONTACTS_ERROR_NONE;
43 }
44
45 int ctsvc_client_handle_get_p_with_id(unsigned int id, contacts_h *p_contact)
46 {
47         int ret;
48         char key[CTSVC_STR_SHORT_LEN] = {0};
49         contacts_h contact = NULL;
50
51         RETVM_IF(NULL == _ctsvc_handle_table, CONTACTS_ERROR_NO_DATA, "_ctsvc_handle_table is NULL");
52
53         ret = _ctsvc_client_handle_get_key(id, key, sizeof(key));
54         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "_ctsvc_client_handle_get_key() Fail(%d)", ret);
55
56         ctsvc_mutex_lock(CTS_MUTEX_HANDLE);
57         contact = g_hash_table_lookup(_ctsvc_handle_table, key);
58         ctsvc_mutex_unlock(CTS_MUTEX_HANDLE);
59
60         if (NULL == contact)
61         {
62                 CTS_ERR("g_hash_table_lookup() return NULL");
63                 return CONTACTS_ERROR_NO_DATA;
64         }
65
66         *p_contact = contact;
67         return CONTACTS_ERROR_NONE;
68 }
69
70 int ctsvc_client_handle_get_p(contacts_h *p_contact)
71 {
72         int ret;
73         char key[CTSVC_STR_SHORT_LEN] = {0};
74         contacts_h contact = NULL;
75
76         RETVM_IF(NULL == _ctsvc_handle_table, CONTACTS_ERROR_NO_DATA, "_ctsvc_handle_table is NULL");
77
78         ret = _ctsvc_client_handle_get_key(ctsvc_client_get_tid(), key, sizeof(key));
79         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "_ctsvc_client_handle_get_key() Fail(%d)", ret);
80
81         ctsvc_mutex_lock(CTS_MUTEX_HANDLE);
82         contact = g_hash_table_lookup(_ctsvc_handle_table, key);
83         ctsvc_mutex_unlock(CTS_MUTEX_HANDLE);
84
85         if (NULL == contact) {
86                 ret = _ctsvc_client_handle_get_key(ctsvc_client_get_pid(), key, sizeof(key));
87                 RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "_ctsvc_client_handle_get_key() Fail(%d)", ret);
88
89                 ctsvc_mutex_lock(CTS_MUTEX_HANDLE);
90                 contact = g_hash_table_lookup(_ctsvc_handle_table, key);
91                 ctsvc_mutex_unlock(CTS_MUTEX_HANDLE);
92
93                 RETVM_IF(NULL == contact, CONTACTS_ERROR_NO_DATA, "g_hash_table_lookup() return NULL");
94         }
95         *p_contact = contact;
96         return CONTACTS_ERROR_NONE;
97 }
98
99 int ctsvc_client_handle_create(unsigned int id, contacts_h *p_contact)
100 {
101         int ret;
102         char handle_key[CTSVC_STR_SHORT_LEN] = {0};
103         contacts_h contact = NULL;
104
105         RETVM_IF(NULL == p_contact, CONTACTS_ERROR_INVALID_PARAMETER, "p_contact is NULL");
106         *p_contact = NULL;
107
108         ret = _ctsvc_client_handle_get_key(id, handle_key, sizeof(handle_key));
109         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "_ctsvc_client_handle_get_key() Fail(%d)", ret);
110
111         ret = ctsvc_handle_create(&contact);
112         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_handle_create() Fail(%d)", ret);
113
114         ctsvc_mutex_lock(CTS_MUTEX_HANDLE);
115         if (NULL == _ctsvc_handle_table)
116                 _ctsvc_handle_table = g_hash_table_new_full(g_str_hash, g_str_equal, free, NULL);
117
118         g_hash_table_insert(_ctsvc_handle_table, strdup(handle_key), contact);
119         ctsvc_mutex_unlock(CTS_MUTEX_HANDLE);
120
121         *p_contact = contact;
122         return CONTACTS_ERROR_NONE;
123 }
124
125 int ctsvc_client_handle_remove(unsigned int id, contacts_h contact)
126 {
127         int ret;
128         char key[CTSVC_STR_SHORT_LEN] = {0};
129         RETVM_IF(NULL == _ctsvc_handle_table, CONTACTS_ERROR_NONE, "_ctsvc_handle_table is NULL");
130
131         ret = _ctsvc_client_handle_get_key(id, key, sizeof(key));
132         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "_ctsvc_client_handle_get_key() Fail(%d)", ret);
133
134         ctsvc_mutex_lock(CTS_MUTEX_HANDLE);
135         g_hash_table_remove(_ctsvc_handle_table, key);
136         if (0 == g_hash_table_size(_ctsvc_handle_table)) {
137                 g_hash_table_destroy(_ctsvc_handle_table);
138                 _ctsvc_handle_table = NULL;
139         }
140         ctsvc_handle_destroy(contact);
141         ctsvc_mutex_unlock(CTS_MUTEX_HANDLE);
142
143         return CONTACTS_ERROR_NONE;
144 }
145
146