Add to search ebooks with keywords
[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  * Contact: Hyunjun Ko <zzoon.ko@samsung.com>, Haejeong Kim <backto.kim@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22
23
24 #ifndef _MEDIA_SVC_H_
25 #define _MEDIA_SVC_H_
26
27 #include <media-util.h>
28 #include <stdbool.h>
29 #include <sqlite3.h>
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35
36 int media_svc_get_user_version(sqlite3 *handle, int *user_version);
37 int media_svc_create_table(uid_t uid);
38 int media_svc_check_item_exist_by_path(sqlite3 *handle, const char *storage_id, const char *path);
39 int media_svc_get_modified_time(sqlite3 *handle, const char *storage_id, const char *path, int *modified_time);
40 int media_svc_insert_folder(sqlite3 *handle, const char *storage_id, ms_user_storage_type_e storage_type, const char *path, uid_t uid);
41 int media_svc_insert_item_begin(bool with_noti, int from_pid);
42 int media_svc_insert_item_end(uid_t uid);
43 int media_svc_insert_item_bulk(sqlite3 *handle, const char *storage_id, ms_user_storage_type_e storage_type, const char *path, uid_t uid);
44 int media_svc_insert_item_immediately(sqlite3 *handle, const char *storage_id, ms_user_storage_type_e storage_type, const char *path, uid_t uid);
45 int media_svc_move_item(sqlite3 *handle,
46                                                 const char *src_path,
47                                                 const char *dest_path,
48                                                 const char *media_id,
49                                                 int media_type,
50                                                 const char *mime_type,
51                                                 uid_t uid);
52
53 int media_svc_set_item_validity(const char *path, int validity, uid_t uid);
54 int media_svc_delete_item_by_path(sqlite3 *handle, const char *storage_id, const char *path, uid_t uid);
55 int media_svc_refresh_item(sqlite3 *handle, bool is_direct, const char *storage_id, ms_user_storage_type_e storage_type, const char *path, uid_t uid);
56 int media_svc_send_dir_update_noti(const char *dir_path, const char *folder_id, media_item_update_type_e update_type, int pid);
57 int media_svc_check_db_upgrade(sqlite3 *handle, int user_version, uid_t uid);
58 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);
59 int media_svc_get_pinyin(const char *src_str, char **pinyin_str);
60 int media_svc_check_pinyin_support(bool *support);
61 int media_svc_update_item_meta(sqlite3 *handle, uid_t uid);
62
63 int media_svc_check_storage(sqlite3 *handle, const char *storage_id, char **storage_path, int *validity);
64 int media_svc_insert_storage(sqlite3 *handle, const char *storage_id, const char *storage_path, ms_user_storage_type_e storage_type, uid_t uid);
65 int media_svc_update_storage(sqlite3 *handle, const char *storage_id, const char *storage_path, uid_t uid);
66 int media_svc_set_storage_validity(sqlite3 *handle, const char *storage_id, int validity, uid_t uid);
67 int media_svc_get_storage_id(sqlite3 *handle, const char *path, char *storage_id, uid_t uid);
68 int media_svc_set_folder_validity(const char *storage_id, const char *start_path, int validity, bool is_recursive, uid_t uid);
69
70 int media_svc_check_folder_exist_by_path(sqlite3 *handle, const char *storage_id, const char *folder_path);
71
72 int media_svc_append_query(const char *query, uid_t uid);
73 int media_svc_send_query(uid_t uid);
74
75 int media_svc_get_media_type(const char *path, int *mediatype);
76 int media_svc_create_thumbnail(const char *file_path, int media_type, uid_t uid, char **thumbnail_path);
77
78 int media_svc_get_book_by_keyword(sqlite3 *handle, const char *keyword, GList **result);
79
80 #ifdef __cplusplus
81 }
82 #endif
83
84 #endif /*_MEDIA_SVC_H_*/