add commnet LCOV_EXCL
[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 _client_handle_get_key(unsigned int id, char *key, int key_len)
32 {
33         RETV_IF(NULL == key, CONTACTS_ERROR_INVALID_PARAMETER);
34
35         snprintf(key, key_len, "%d:%u", getuid(), id);
36         DBG("key[%s]", key);
37         return CONTACTS_ERROR_NONE;
38 }
39
40 int ctsvc_client_handle_get_p_with_id(unsigned int id, contacts_h *p_contact)
41 {
42         int ret;
43         char key[CTSVC_STR_SHORT_LEN] = {0};
44         contacts_h contact = NULL;
45
46         RETV_IF(NULL == _ctsvc_handle_table, CONTACTS_ERROR_NO_DATA);
47         RETV_IF(NULL == p_contact, CONTACTS_ERROR_INVALID_PARAMETER);
48
49         ret = _client_handle_get_key(id, key, sizeof(key));
50         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "_client_handle_get_key() Fail(%d)", ret);
51
52         ctsvc_mutex_lock(CTS_MUTEX_HANDLE);
53         contact = g_hash_table_lookup(_ctsvc_handle_table, key);
54         ctsvc_mutex_unlock(CTS_MUTEX_HANDLE);
55
56         if (NULL == contact) {
57                 /* LCOV_EXCL_START */
58                 ERR("g_hash_table_lookup() Fail. key[%s]", key);
59                 return CONTACTS_ERROR_NO_DATA;
60                 /* LCOV_EXCL_STOP */
61         }
62
63         *p_contact = contact;
64         return CONTACTS_ERROR_NONE;
65 }
66
67 int ctsvc_client_handle_get_p(contacts_h *p_contact)
68 {
69         int ret;
70         char key[CTSVC_STR_SHORT_LEN] = {0};
71         contacts_h contact = NULL;
72
73         RETV_IF(NULL == _ctsvc_handle_table, CONTACTS_ERROR_NO_DATA);
74         RETV_IF(NULL == p_contact, CONTACTS_ERROR_INVALID_PARAMETER);
75
76         ret = _client_handle_get_key(ctsvc_client_get_tid(), key, sizeof(key));
77         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "_client_handle_get_key() Fail(%d)", ret);
78
79         ctsvc_mutex_lock(CTS_MUTEX_HANDLE);
80         contact = g_hash_table_lookup(_ctsvc_handle_table, key);
81         ctsvc_mutex_unlock(CTS_MUTEX_HANDLE);
82
83         if (NULL == contact) {
84                 ret = _client_handle_get_key(ctsvc_client_get_pid(), key, sizeof(key));
85                 RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "_client_handle_get_key() Fail(%d)", ret);
86
87                 ctsvc_mutex_lock(CTS_MUTEX_HANDLE);
88                 contact = g_hash_table_lookup(_ctsvc_handle_table, key);
89                 ctsvc_mutex_unlock(CTS_MUTEX_HANDLE);
90                 RETVM_IF(NULL == contact, CONTACTS_ERROR_NO_DATA, "g_hash_table_lookup(%s) Fail", key);
91         }
92         *p_contact = contact;
93         return CONTACTS_ERROR_NONE;
94 }
95
96 int ctsvc_client_handle_create(unsigned int id, contacts_h *p_contact)
97 {
98         int ret;
99         char handle_key[CTSVC_STR_SHORT_LEN] = {0};
100         contacts_h contact = NULL;
101
102         RETV_IF(NULL == p_contact, CONTACTS_ERROR_INVALID_PARAMETER);
103         *p_contact = NULL;
104
105         ret = _client_handle_get_key(id, handle_key, sizeof(handle_key));
106         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "_client_handle_get_key() Fail(%d)", ret);
107
108         ret = ctsvc_handle_create(&contact);
109         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_handle_create() Fail(%d)", ret);
110
111         ctsvc_mutex_lock(CTS_MUTEX_HANDLE);
112         if (NULL == _ctsvc_handle_table)
113                 _ctsvc_handle_table = g_hash_table_new_full(g_str_hash, g_str_equal, free, NULL);
114
115         g_hash_table_insert(_ctsvc_handle_table, strdup(handle_key), contact);
116         INFO("handle insert key[%s]", handle_key);
117         ctsvc_mutex_unlock(CTS_MUTEX_HANDLE);
118
119         *p_contact = contact;
120         return CONTACTS_ERROR_NONE;
121 }
122
123 int ctsvc_client_handle_remove(unsigned int id, contacts_h contact)
124 {
125         int ret;
126         char key[CTSVC_STR_SHORT_LEN] = {0};
127
128         RETV_IF(NULL == _ctsvc_handle_table, CONTACTS_ERROR_NONE);
129
130         ret = _client_handle_get_key(id, key, sizeof(key));
131         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "_client_handle_get_key() Fail(%d)", ret);
132
133         ctsvc_mutex_lock(CTS_MUTEX_HANDLE);
134         if (false == g_hash_table_remove(_ctsvc_handle_table, key))
135                 ERR("g_hash_table_remove() Fail. key[%s]", key);
136
137         if (0 == g_hash_table_size(_ctsvc_handle_table)) {
138                 g_hash_table_destroy(_ctsvc_handle_table);
139                 _ctsvc_handle_table = NULL;
140         }
141         ctsvc_handle_destroy(contact);
142         ctsvc_mutex_unlock(CTS_MUTEX_HANDLE);
143
144         return CONTACTS_ERROR_NONE;
145 }
146
147