Use thread safe functions and fix return values
[platform/core/appfw/librua.git] / src / rua_stat.c
1 /*
2  * Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /*
18  * @file    rua_stat.c
19  * @author  Hyunho Kang (hhstark.kang@samsung.com)
20  * @version 0.1
21  */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <sys/types.h>
28
29 #include <db-util.h>
30 #include <aul.h>
31
32 #include "rua_stat_internal.h"
33 #include "rua_stat.h"
34 #include "rua_util.h"
35
36 int rua_stat_update_for_uid(char *caller, char *tag, uid_t uid)
37 {
38         int r;
39         bundle *b = NULL;
40
41         r = _rua_util_check_uid(uid);
42         if (r == -1)
43                 return r;
44
45         if (caller == NULL || tag == NULL) {
46                 LOGE("invalid param");
47                 return -1;
48         }
49
50         b = bundle_create();
51         if (b == NULL) {
52                 LOGE("bundle_create fail out of memory.");
53                 return -1;
54         }
55         bundle_add_str(b, AUL_SVC_K_RUA_STAT_CALLER, caller);
56         bundle_add_str(b, AUL_SVC_K_RUA_STAT_TAG, tag);
57         r = aul_update_rua_stat_for_uid(b, uid);
58         LOGI("rua_add_history_for_uid result : %d ", r);
59         bundle_free(b);
60         return r;
61 }
62
63 int rua_stat_get_stat_tags(char *caller,
64                 int (*rua_stat_tag_iter_fn)(const char *rua_stat_tag, void *data),
65                 void *data)
66 {
67         return rua_stat_get_stat_tags_for_uid(caller, rua_stat_tag_iter_fn, data, getuid());
68 }
69
70 int rua_stat_get_stat_tags_for_uid(char *caller,
71                 int (*rua_stat_tag_iter_fn)(const char *rua_stat_tag, void *data),
72                 void *data, uid_t uid)
73 {
74         int r;
75         sqlite3_stmt *stmt;
76         char query[QUERY_MAXLEN];
77         const unsigned char *ct;
78         sqlite3 *db = NULL;
79
80         r = _rua_util_check_uid(uid);
81         if (r == -1)
82                 return r;
83
84         r = _rua_stat_init(&db, RUA_STAT_DB_NAME, SQLITE_OPEN_READONLY, uid);
85         if (r == -1) {
86                 LOGE("__rua_stat_init fail");
87                 return -1;
88         }
89
90         sqlite3_snprintf(QUERY_MAXLEN, query,
91                 "SELECT rua_stat_tag FROM rua_panel_stat WHERE caller_panel = ? ORDER BY score DESC");
92
93         r = sqlite3_prepare(db, query, sizeof(query), &stmt, NULL);
94         if (r != SQLITE_OK) {
95                 LOGE("sqlite3_prepare error(%d , %d, %s)", r, sqlite3_extended_errcode(db), sqlite3_errmsg(db));
96                 goto out;
97         }
98
99         r = sqlite3_bind_text(stmt, 1, caller, strlen(caller), SQLITE_STATIC);
100         if (r != SQLITE_OK) {
101                 LOGE("caller bind error(%d) \n", r);
102                 goto out;
103         }
104
105         while (sqlite3_step(stmt) == SQLITE_ROW) {
106                 ct = sqlite3_column_text(stmt, 0);
107                 if (ct == NULL || ct[0] == '\0')
108                         LOGW("sqlite3_column_text null");
109
110                 rua_stat_tag_iter_fn((const char *)ct, data);
111         }
112
113 out:
114         if (stmt)
115                 sqlite3_finalize(stmt);
116
117         if (db)
118                 db_util_close(db);
119
120         return r;
121 }