summaryrefslogtreecommitdiff
path: root/src/badge_setting.c
blob: 410f784e2034756b6ee680cf3ee347c96b0f6e55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/*
 *  libbadge
 *
 * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
 *
 * Contact: Youngjoo Park <yjoo93.park@samsung.com>,
 *      Seungtaek Chung <seungtaek.chung@samsung.com>, Youngsub Ko <ys4610.ko@samsung.com>
 *
 * Licensed under the Apache License, Version 2.0 (the License);
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an AS IS BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

#include <stdlib.h>
#include <stdarg.h>
#include <sqlite3.h>
#include <db-util.h>
#include <tzplatform_config.h>

#include "badge.h"
#include "badge_log.h"
#include "badge_error.h"
#include "badge_internal.h"
#include "badge_ipc.h"
#include "badge_setting.h"
#include "badge_db.h"

#define SETTING_DB_TABLE "notification_setting"
#define SETTING_DB_FILE tzplatform_mkpath(TZ_USER_DB,".notification_parser.db")

struct prop_table {
	const char *property;
	const char *column;
	const char *default_value;
};

static struct prop_table g_prop_table[] = {
		{
			.property = "OPT_BADGE",
			.column = "badge",
			.default_value = "ON",
		},
		{
			.property = NULL,
			.column = NULL,
			.default_value = NULL,
		}
};

static const char *_get_prop_column(const char *property)
{
	int i;

	for (i = 0; g_prop_table[i].property; i++) {
		if (strcmp(g_prop_table[i].property, property))
			continue;

		return g_prop_table[i].column;
	}

	return NULL;
}

#ifdef TBD
static const char *_get_prop_default_value(const char *property)
{
	int i;

	for (i = 0; g_prop_table[i].property; i++) {
		if (strcmp(g_prop_table[i].property, property))
			continue;

		return g_prop_table[i].default_value;
	}

	return NULL;
}
#endif

static badge_error_e _is_record_exist(const char *pkgname, sqlite3 *db)
{
	sqlite3_stmt *stmt = NULL;
	int count = 0;
	int result = BADGE_ERROR_NONE;
	char *sqlbuf = NULL;
	int sqlret;

	if (!pkgname)
		return BADGE_ERROR_INVALID_DATA;

	if (!db)
		return BADGE_ERROR_INVALID_DATA;

	sqlbuf = sqlite3_mprintf("SELECT count(*) FROM %s WHERE " \
			 "appid = %Q",
			 SETTING_DB_TABLE, pkgname);

	if (!sqlbuf) {
		ERR("fail to alloc sql query");
		return BADGE_ERROR_NO_MEMORY;
	}

	sqlret = sqlite3_prepare_v2(db, sqlbuf, -1, &stmt, NULL);
	if (sqlret != SQLITE_OK) {
		ERR("DB err [%s]", sqlite3_errmsg(db));
		ERR("query[%s]", sqlbuf);
		result = BADGE_ERROR_FROM_DB;
		goto free_and_return;
	}

	sqlret = sqlite3_step(stmt);
	if (sqlret == SQLITE_ROW)
		count = sqlite3_column_int(stmt, 0);
	else
		count = 0;

	if (count > 0)
		result = BADGE_ERROR_ALREADY_EXIST;
	else
		result = BADGE_ERROR_NOT_EXIST;

free_and_return:
	if (sqlbuf)
		sqlite3_free(sqlbuf);

	if (stmt)
		sqlite3_finalize(stmt);

	return result;
}

EXPORT_API badge_error_e badge_setting_db_set(const char *pkgname, const char *property, const char *value)
{
	badge_error_e ret = BADGE_ERROR_NONE;
	badge_error_e result = BADGE_ERROR_NONE;
	sqlite3 *db = NULL;
	char *sqlbuf = NULL;
	int sqlret;
	const char *column = NULL;

	if (!pkgname)
		return BADGE_ERROR_INVALID_DATA;

	if (!property)
		return BADGE_ERROR_INVALID_DATA;

	if (!value)
		return BADGE_ERROR_INVALID_DATA;

	column = _get_prop_column(property);
	if (!column)
		return BADGE_ERROR_INVALID_DATA;

	sqlret = db_util_open(SETTING_DB_FILE, &db, 0);
	if (sqlret != SQLITE_OK || !db) {
		ERR("fail to db_util_open - [%d]", sqlret);
		return BADGE_ERROR_FROM_DB;
	}

	ret = _is_record_exist(pkgname, db);
	if (ret != BADGE_ERROR_ALREADY_EXIST) {
		result = ret;
		goto return_close_db;
	}

	sqlbuf = sqlite3_mprintf("UPDATE %s SET %s = %Q " \
			"WHERE appid = %Q",
			SETTING_DB_TABLE, column, value, pkgname);
	if (!sqlbuf) {
		ERR("fail to alloc query");
		result = BADGE_ERROR_NO_MEMORY;
		goto return_close_db;
	}

	ret = badge_db_exec(db, sqlbuf, NULL);
	if (ret != BADGE_ERROR_NONE) {
		ERR("failed to set pkgname[%s] option[%s], value[%s], err[%d]",
				pkgname, column, value, ret);
		result = ret;
		goto return_close_db;
	}

return_close_db:
	if (sqlbuf)
		sqlite3_free(sqlbuf);

	sqlret = db_util_close(db);
	if (sqlret != SQLITE_OK)
		WARN("fail to db_util_close - [%d]", sqlret);

	return result;
}

EXPORT_API badge_error_e badge_setting_db_get(const char *pkgname, const char *property, char **value)
{
	badge_error_e ret = BADGE_ERROR_NONE;
	badge_error_e result = BADGE_ERROR_NONE;
	sqlite3 *db = NULL;
	char *sqlbuf = NULL;
	sqlite3_stmt *stmt = NULL;
	int sqlret;
	const char *column = NULL;

	if (!pkgname)
		return BADGE_ERROR_INVALID_DATA;

	if (!property)
		return BADGE_ERROR_INVALID_DATA;

	if (!value)
		return BADGE_ERROR_INVALID_DATA;

	column = _get_prop_column(property);
	if (!column)
		return BADGE_ERROR_INVALID_DATA;

	sqlret = db_util_open(SETTING_DB_FILE, &db, 0);
	if (sqlret != SQLITE_OK || !db) {
		ERR("fail to db_util_open - [%d]", sqlret);
		return BADGE_ERROR_FROM_DB;
	}

	ret = _is_record_exist(pkgname, db);
	if (ret != BADGE_ERROR_ALREADY_EXIST) {
		result = ret;
		goto return_close_db;
	}

	sqlbuf = sqlite3_mprintf("SELECT %s FROM %s " \
			"WHERE appid = %Q",
			column, SETTING_DB_TABLE, pkgname);
	if (!sqlbuf) {
		ERR("fail to alloc query");
		result = BADGE_ERROR_NO_MEMORY;
		goto return_close_db;
	}

	sqlret = sqlite3_prepare_v2(db, sqlbuf, -1, &stmt, NULL);
	if (sqlret != SQLITE_OK) {
		ERR("fail to prepare %s - [%s]",
				sqlbuf, sqlite3_errmsg(db));
		result = BADGE_ERROR_FROM_DB;
		goto return_close_db;
	}

	sqlret = sqlite3_step(stmt);
	if (sqlret == SQLITE_ROW) {
		int get_bytes = sqlite3_column_bytes(stmt, 0);
		char *get_data = (char *)calloc(get_bytes + 1, sizeof(char));
		if (get_data != NULL) {
			memcpy(get_data, sqlite3_column_text(stmt, 0),
					get_bytes * sizeof(char));
			get_data[get_bytes] = '\0';
			*value = get_data;
		} else {
			ERR("fail to alloc query");
			result = BADGE_ERROR_NO_MEMORY;
			goto return_close_db;
		}
	}

return_close_db:
	if (sqlbuf)
		sqlite3_free(sqlbuf);

	if (stmt)
		sqlite3_finalize(stmt);

	sqlret = db_util_close(db);
	if (sqlret != SQLITE_OK)
		WARN("fail to db_util_close - [%d]", sqlret);

	return result;
}

EXPORT_API badge_error_e badge_setting_property_set(const char *pkgname, const char *property, const char *value)
{
	int ret = 0;

	if (!pkgname)
		return BADGE_ERROR_INVALID_DATA;

	if (!property)
		return BADGE_ERROR_INVALID_DATA;

	if (!value)
		return BADGE_ERROR_INVALID_DATA;

	ret = badge_ipc_setting_property_set(pkgname, property, value);
	if (ret != BADGE_ERROR_NONE) {
		return ret;
	}

	return BADGE_ERROR_NONE;
}

EXPORT_API badge_error_e badge_setting_property_get(const char *pkgname, const char *property, char **value)
{
	int ret = 0;

	if (!pkgname)
		return BADGE_ERROR_INVALID_DATA;

	if (!property)
		return BADGE_ERROR_INVALID_DATA;

	if (!value)
		return BADGE_ERROR_INVALID_DATA;

	ret = badge_ipc_setting_property_get(pkgname, property, value);
	if (ret != BADGE_ERROR_NONE) {
		return ret;
	}

	return BADGE_ERROR_NONE;
}