add APIs for getting SIM init status and importing SIM contacts by sim slot no
[platform/core/pim/contacts-service.git] / client / ctsvc_client_phonelog.c
1 /*
2  * Contacts Service
3  *
4  * Copyright (c) 2010 - 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 #include "contacts.h"
20 #include "ctsvc_internal.h"
21 #include "ctsvc_client_handle.h"
22 #include "ctsvc_client_phonelog_helper.h"
23
24 API int contacts_phone_log_reset_statistics(void)
25 {
26         int ret;
27         contacts_h contact = NULL;
28
29         ret = ctsvc_client_handle_get_p(&contact);
30         if (CONTACTS_ERROR_INVALID_PARAMETER == ret)
31                 ret = CONTACTS_ERROR_IPC;
32         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
33
34         ret = ctsvc_client_phone_log_reset_statistics(contact);
35         if (CONTACTS_ERROR_INVALID_PARAMETER == ret)
36                 ret = CONTACTS_ERROR_IPC;
37
38         return ret;
39 }
40
41 API int contacts_phone_log_reset_statistics_by_sim(int sim_slot_no)
42 {
43         int ret;
44         contacts_h contact = NULL;
45
46         ret = ctsvc_client_handle_get_p(&contact);
47         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
48
49         ret = ctsvc_client_phone_log_reset_statistics_by_sim(contact, sim_slot_no);
50
51         return ret;
52 }
53
54
55 API int contacts_phone_log_delete(contacts_phone_log_delete_e op, ...)
56 {
57         int ret;
58         contacts_h contact = NULL;
59
60         ret = ctsvc_client_handle_get_p(&contact);
61         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
62
63         va_list args;
64         va_start(args, op);
65         ret = ctsvc_client_phone_log_delete(contact, op, args);
66         va_end(args);
67
68         return ret;
69 }
70