summaryrefslogtreecommitdiff
path: root/include/media-svc-db-utils.h
blob: e5acdc70da96df156929b91fcc73f7a235f2f732 (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
/*
 * libmedia-service
 *
 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
 *
 * 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.
 *
 */


#ifndef _MEDIA_SVC_DB_UTILS_H_
#define _MEDIA_SVC_DB_UTILS_H_

#include <stdbool.h>
#include <sqlite3.h>
#include <glib.h>
#include "media-svc-env.h"

#define SQLITE3_FINALIZE(x)		if (x != NULL) sqlite3_finalize(x);
#define SQLITE3_SAFE_FREE(x)	  {if (x != NULL) {sqlite3_free(x); x = NULL; } }

int _media_svc_make_table_query(const char *table_name, media_svc_table_slist_e list, uid_t uid);
int _media_svc_init_table_query(void);
void _media_svc_destroy_table_query(void);
int _media_svc_sql_query(const char *sql_str, uid_t uid);
int _media_svc_sql_query_direct(const char *sql_str, uid_t uid);
int _media_svc_check_table_exist(sqlite3 *db_handle, bool *exist);
int _media_svc_get_result_with_check_record(sqlite3 *handle, const char *sql_str, sqlite3_stmt **stmt);
int _media_svc_get_result(sqlite3 *handle, const char *sql_str, sqlite3_stmt **stmt);
int _media_svc_sql_query_list(GList **query_list, uid_t uid);
int _media_svc_sql_query_list_direct(GList **query_list, uid_t uid);
void _media_svc_sql_query_add(GList **query_list, char **query);
void _media_svc_sql_query_release(GList **query_list);

#endif /*_MEDIA_SVC_DB_UTILS_H_*/