Cleanup header
[platform/core/multimedia/libmedia-service.git] / include / media-svc.h
1 /*
2  * libmedia-service
3  *
4  * Copyright (c) 2000 - 2011 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
20
21
22 #ifndef _MEDIA_SVC_H_
23 #define _MEDIA_SVC_H_
24
25 #include <stdbool.h>
26 #include <sys/types.h>
27 #include <sqlite3.h>
28 #include <glib.h>
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34
35 int media_svc_check_table_exist(sqlite3 *handle, bool *exist);
36 int media_svc_create_table(uid_t uid);
37 int media_svc_check_item_exist_by_path(sqlite3 *handle, const char *storage_id, const char *path);
38 int media_svc_get_modified_time(sqlite3 *handle, const char *storage_id, const char *path, int *modified_time);
39 int media_svc_insert_folder(sqlite3 *handle, const char *storage_id, const char *path, uid_t uid);
40 int media_svc_insert_item_begin(bool with_noti, int from_pid);
41 int media_svc_insert_item_end(uid_t uid);
42 int media_svc_insert_item_bulk(sqlite3 *handle, const char *storage_id, const char *path, uid_t uid);
43 int media_svc_insert_item_immediately(sqlite3 *handle, const char *storage_id, const char *path, uid_t uid);
44 int media_svc_move_item(sqlite3 *handle,
45                                                 const char *src_path,
46                                                 const char *dest_path,
47                                                 const char *media_id,
48                                                 int media_type,
49                                                 const char *mime_type,
50                                                 uid_t uid);
51
52 int media_svc_set_item_validity(const char *path, int validity, uid_t uid);
53 int media_svc_delete_item_by_path(sqlite3 *handle, const char *storage_id, const char *path, uid_t uid);
54 int media_svc_refresh_item(sqlite3 *handle, bool is_direct, const char *storage_id, const char *path, uid_t uid);
55 int media_svc_send_dir_update_noti(const char *dir_path, const char *folder_id, int update_type, int pid);
56 int media_svc_publish_update_noti(const char *path, int media_type, const char *uuid, const char *mime_type);
57
58 int media_svc_check_storage(sqlite3 *handle, const char *storage_id, char **storage_path, int *validity);
59 int media_svc_insert_storage(sqlite3 *handle, const char *storage_id, const char *storage_path, uid_t uid);
60 int media_svc_update_storage(sqlite3 *handle, const char *storage_id, const char *storage_path, uid_t uid);
61 int media_svc_set_storage_validity(const char *storage_id, int validity, uid_t uid);
62 int media_svc_get_storage_id(sqlite3 *handle, const char *path, char *storage_id, uid_t uid);
63 int media_svc_set_folder_validity(const char *start_path, int validity, bool is_recursive, uid_t uid);
64
65 int media_svc_check_folder_exist_by_path(sqlite3 *handle, const char *folder_path);
66
67 int media_svc_append_query(const char *query, uid_t uid);
68 int media_svc_send_query(uid_t uid);
69
70 int media_svc_get_media_type(const char *path, int *mediatype);
71 int media_svc_create_thumbnail(const char *file_path, int media_type, uid_t uid, char **thumbnail_path);
72
73 int media_svc_get_book_by_keyword(sqlite3 *handle, const char *keyword, uid_t uid, GList **result);
74 int media_svc_check_db(sqlite3 *handle, uid_t uid);
75
76 #ifdef __cplusplus
77 }
78 #endif
79
80 #endif /*_MEDIA_SVC_H_*/