e91f2ed1ba54b24c94995ffedeb34a55ea742a94
[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 <media-util.h>
26 #include <stdbool.h>
27 #include <sqlite3.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33
34 int media_svc_check_table_exist(sqlite3 *handle, bool *exist);
35 int media_svc_create_table(uid_t uid);
36 int media_svc_check_item_exist_by_path(sqlite3 *handle, const char *storage_id, const char *path);
37 int media_svc_get_modified_time(sqlite3 *handle, const char *storage_id, const char *path, int *modified_time);
38 int media_svc_insert_folder(sqlite3 *handle, const char *storage_id, const char *path, uid_t uid);
39 int media_svc_insert_item_begin(bool with_noti, int from_pid);
40 int media_svc_insert_item_end(uid_t uid);
41 int media_svc_insert_item_bulk(sqlite3 *handle, const char *storage_id, const char *path, uid_t uid);
42 int media_svc_insert_item_immediately(sqlite3 *handle, const char *storage_id, const char *path, uid_t uid);
43 int media_svc_move_item(sqlite3 *handle,
44                                                 const char *src_path,
45                                                 const char *dest_path,
46                                                 const char *media_id,
47                                                 int media_type,
48                                                 const char *mime_type,
49                                                 uid_t uid);
50
51 int media_svc_set_item_validity(const char *path, int validity, uid_t uid);
52 int media_svc_delete_item_by_path(sqlite3 *handle, const char *storage_id, const char *path, uid_t uid);
53 int media_svc_refresh_item(sqlite3 *handle, bool is_direct, const char *storage_id, const char *path, uid_t uid);
54 int media_svc_send_dir_update_noti(const char *dir_path, const char *folder_id, media_item_update_type_e update_type, int pid);
55 int media_svc_publish_noti(media_item_update_type_e update_type, const char *path, media_type_e media_type, const char *uuid, const char *mime_type);
56
57 int media_svc_check_storage(sqlite3 *handle, const char *storage_id, char **storage_path, int *validity);
58 int media_svc_insert_storage(sqlite3 *handle, const char *storage_id, const char *storage_path, uid_t uid);
59 int media_svc_update_storage(sqlite3 *handle, const char *storage_id, const char *storage_path, uid_t uid);
60 int media_svc_set_storage_validity(const char *storage_id, int validity, uid_t uid);
61 int media_svc_get_storage_id(sqlite3 *handle, const char *path, char *storage_id, uid_t uid);
62 int media_svc_set_folder_validity(const char *start_path, int validity, bool is_recursive, uid_t uid);
63
64 int media_svc_check_folder_exist_by_path(sqlite3 *handle, const char *folder_path);
65
66 int media_svc_append_query(const char *query, uid_t uid);
67 int media_svc_send_query(uid_t uid);
68
69 int media_svc_get_media_type(const char *path, int *mediatype);
70 int media_svc_create_thumbnail(const char *file_path, int media_type, uid_t uid, char **thumbnail_path);
71
72 int media_svc_get_book_by_keyword(sqlite3 *handle, const char *keyword, uid_t uid, GList **result);
73
74 #ifdef __cplusplus
75 }
76 #endif
77
78 #endif /*_MEDIA_SVC_H_*/