405833ff138d75b4b48a821f7e648c651179c3b9
[platform/core/multimedia/libmedia-service.git] / src / include / common / media-svc-util.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_UTIL_H_
23 #define _MEDIA_SVC_UTIL_H_
24
25 #include <string.h>
26 #include <stdbool.h>
27 #include <sqlite3.h>
28 #include <time.h>
29 #include <media-util.h>
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 #define STRING_VALID(str)       (str != NULL && strlen(str) > 0)
36
37 /**
38  * Media meta data information
39  */
40 typedef struct {
41         char            *title;                         /**< track title*/
42         char            *album;                         /**< album name*/
43         char            *artist;                                /**< artist name*/
44         char            *album_artist;          /**< artist name*/
45         char            *genre;                         /**< genre of track*/
46         char            *composer;                      /**< composer name*/
47         char            *year;                          /**< year*/
48         char            *recorded_date;         /**< recorded date*/
49         char            *copyright;                     /**< copyright*/
50         char            *track_num;                     /**< track number*/
51         char            *description;                   /**< description*/
52         int             bitrate;                                /**< bitrate*/
53         int             samplerate;                     /**< samplerate*/
54         int             channel;                                /**< channel*/
55         int             duration;                       /**< duration*/
56         int             width;                          /**< width*/
57         int             height;                         /**< height*/
58         char            *datetaken;                     /**< datetaken*/
59         int             orientation;                    /**< orientation*/
60         int             rating;                         /**< user defined rating */
61         int             bitpersample;           /**< bitrate*/
62 } media_svc_content_meta_s;
63
64 /**
65  * Media data information
66  */
67 typedef struct {
68         char            *media_uuid;                                    /**< Unique ID of item */
69         char            *path;                                          /**< Full path of media file */
70         char            *file_name;                                     /**< File name of media file. Display name */
71         int             media_type;                                     /**< Type of media file : internal/external */
72         char            *mime_type;                                     /**< Full path and file name of media file */
73         unsigned long long      size;                                                   /**< size */
74         time_t  added_time;                                     /**< added time, time_t */
75         time_t  modified_time;                          /**< modified time, time_t */
76         time_t  timeline;                                       /**< timeline of media, time_t */
77         long long int folder_id;                                        /**< Unique ID of folder */
78         int             album_id;                                       /**< Unique ID of album */
79         char            *thumbnail_path;                                /**< Thumbnail image file path */
80         char            *storage_uuid;                                  /**< Unique ID of storage */
81         media_svc_content_meta_s        media_meta;     /**< meta data structure for audio files */
82 } media_svc_content_info_s;
83
84 /**
85  * Type definition for content type
86  */
87 typedef enum {
88         MEDIA_SVC_MEDIA_TYPE_IMAGE      = 0,    /**< Image Content*/
89         MEDIA_SVC_MEDIA_TYPE_VIDEO      = 1,    /**< Video Content*/
90         MEDIA_SVC_MEDIA_TYPE_SOUND      = 2,    /**< Sound Content like Ringtone*/
91         MEDIA_SVC_MEDIA_TYPE_MUSIC      = 3,    /**< Music Content like mp3*/
92         MEDIA_SVC_MEDIA_TYPE_OTHER      = 4,    /**< Not media Content*/
93         MEDIA_SVC_MEDIA_TYPE_BOOK       = 5,    /**< Book Content like epub*/
94 } media_svc_media_type_e;
95
96 typedef enum {
97         MEDIA_SVC_SEARCH_TYPE_DIRECT = 0,
98         MEDIA_SVC_SEARCH_TYPE_DB,
99 } media_svc_search_type_e;
100
101 void _media_svc_remove_file(const char *path);
102 int _media_svc_get_thumbnail_path(char *thumb_path, const char *pathname, const char *img_format, uid_t uid);
103 int _media_svc_get_file_time(const char *full_path);
104 char * _media_svc_get_title_by_path(const char *path);
105 int _media_svc_set_media_info(media_svc_content_info_s *content_info, const char *storage_id, const char *path, bool refresh);
106 int _media_svc_extract_image_metadata(media_svc_content_info_s *content_info);
107 int _media_svc_extract_media_metadata(sqlite3 *handle, bool is_direct, media_svc_content_info_s *content_info, uid_t uid);
108 int _media_svc_extract_book_metadata(media_svc_content_info_s *content_info);
109 void _media_svc_destroy_content_info(media_svc_content_info_s *content_info);
110 int _media_svc_create_thumbnail(const char *path, char *thumb_path, media_svc_media_type_e media_type, uid_t uid);
111 int _media_svc_get_media_type(const char *path, int *mediatype);
112 bool _media_svc_is_keyword_included(const char *path, const char *keyword);
113 void _media_svc_update_wordbook(const char *path, uid_t uid);
114 void _media_svc_clean_wordbook(uid_t uid);
115 bool _media_svc_get_matched_list(const char *keyword, uid_t uid, GList **list);
116
117 #ifdef __cplusplus
118 }
119 #endif
120
121 #endif /*_MEDIA_SVC_UTIL_H_*/