Add db integrity check
[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 EXPORT_API int contacts_phone_log_reset_statistics(void)
25 {
26         CHECK_CONTACT_SUPPORTED(CONTACT_FEATURE);
27         int ret;
28         contacts_h contact = NULL;
29
30         ret = ctsvc_client_handle_get_p(&contact);
31         if (CONTACTS_ERROR_INVALID_PARAMETER == ret)
32                 ret = CONTACTS_ERROR_IPC;
33         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
34
35         ret = ctsvc_client_phone_log_reset_statistics(contact);
36         if (CONTACTS_ERROR_INVALID_PARAMETER == ret)
37                 ret = CONTACTS_ERROR_IPC;
38
39         return ret;
40 }
41
42 EXPORT_API int contacts_phone_log_reset_statistics_by_sim(int sim_slot_no)
43 {
44         CHECK_CONTACT_SUPPORTED(CONTACT_FEATURE);
45         int ret;
46         contacts_h contact = NULL;
47
48         ret = ctsvc_client_handle_get_p(&contact);
49         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
50
51         ret = ctsvc_client_phone_log_reset_statistics_by_sim(contact, sim_slot_no);
52
53         return ret;
54 }
55
56
57 EXPORT_API int contacts_phone_log_delete(contacts_phone_log_delete_e op, ...)
58 {
59         CHECK_CONTACT_SUPPORTED(CONTACT_FEATURE);
60         int ret;
61         contacts_h contact = NULL;
62
63         ret = ctsvc_client_handle_get_p(&contact);
64         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
65
66         va_list args;
67         va_start(args, op);
68         ret = ctsvc_client_phone_log_delete(contact, op, args);
69         va_end(args);
70
71         return ret;
72 }
73