Restore recorded_date temporarily
[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 *year;                             /**< year*/
47         char *recorded_date;            /**< recorded date*/
48         char *track_num;                        /**< track number*/
49         int width;                              /**< width*/
50         int height;                             /**< height*/
51         char *datetaken;                        /**< datetaken*/
52         int orientation;                        /**< orientation*/
53 } media_svc_content_meta_s;
54
55 /**
56  * Media data information
57  */
58 typedef struct {
59         char            *media_uuid;                                    /**< Unique ID of item */
60         char            *path;                                          /**< Full path of media file */
61         char            *file_name;                                     /**< File name of media file. Display name */
62         int             media_type;                                     /**< Type of media file : internal/external */
63         char            *mime_type;                                     /**< Full path and file name of media file */
64         unsigned long long      size;                                                   /**< size */
65         time_t  added_time;                                     /**< added time, time_t */
66         time_t  modified_time;                          /**< modified time, time_t */
67         time_t  timeline;                                       /**< timeline of media, time_t */
68         long long int folder_id;                                        /**< Unique ID of folder */
69         int             album_id;                                       /**< Unique ID of album */
70         char            *thumbnail_path;                                /**< Thumbnail image file path */
71         char            *storage_uuid;                                  /**< Unique ID of storage */
72         media_svc_content_meta_s        media_meta;     /**< meta data structure for audio files */
73 } media_svc_content_info_s;
74
75 /**
76  * Type definition for content type
77  */
78 typedef enum {
79         MEDIA_SVC_MEDIA_TYPE_IMAGE      = 0,    /**< Image Content*/
80         MEDIA_SVC_MEDIA_TYPE_VIDEO      = 1,    /**< Video Content*/
81         MEDIA_SVC_MEDIA_TYPE_SOUND      = 2,    /**< Sound Content like Ringtone*/
82         MEDIA_SVC_MEDIA_TYPE_MUSIC      = 3,    /**< Music Content like mp3*/
83         MEDIA_SVC_MEDIA_TYPE_OTHER      = 4,    /**< Not media Content*/
84         MEDIA_SVC_MEDIA_TYPE_BOOK       = 5,    /**< Book Content like epub*/
85 } media_svc_media_type_e;
86
87 typedef enum {
88         MEDIA_SVC_SEARCH_TYPE_DIRECT = 0,
89         MEDIA_SVC_SEARCH_TYPE_DB,
90 } media_svc_search_type_e;
91
92 void _media_svc_remove_file(const char *path);
93 int _media_svc_get_thumbnail_path(char *thumb_path, const char *pathname, const char *img_format, uid_t uid);
94 int _media_svc_get_file_time(const char *full_path);
95 char * _media_svc_get_title_by_path(const char *path);
96 int _media_svc_set_media_info(media_svc_content_info_s *content_info, const char *storage_id, const char *path, bool refresh);
97 int _media_svc_extract_image_metadata(media_svc_content_info_s *content_info);
98 int _media_svc_extract_audio_metadata(sqlite3 *handle, bool is_direct, media_svc_content_info_s *content_info, uid_t uid);
99 int _media_svc_extract_video_metadata(media_svc_content_info_s *content_info);
100 int _media_svc_extract_book_metadata(media_svc_content_info_s *content_info);
101 void _media_svc_destroy_content_info(media_svc_content_info_s *content_info);
102 int _media_svc_create_thumbnail(const char *path, char *thumb_path, media_svc_media_type_e media_type, uid_t uid);
103 int _media_svc_get_media_type(const char *path, int *mediatype);
104 bool _media_svc_is_keyword_included(const char *path, const char *keyword);
105 void _media_svc_update_wordbook(const char *path, uid_t uid);
106 void _media_svc_clean_wordbook(uid_t uid);
107 bool _media_svc_get_matched_list(const char *keyword, uid_t uid, GList **list);
108
109 #ifdef __cplusplus
110 }
111 #endif
112
113 #endif /*_MEDIA_SVC_UTIL_H_*/