Reinforce readability
[platform/core/multimedia/libmedia-service.git] / src / common / media-svc-util.c
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 #include <unistd.h>
23 #include <stdlib.h>
24 #ifndef __USE_XOPEN
25 #define DEF_XOPEN
26 #define __USE_XOPEN /* needed for strptime */
27 #endif
28 #include <time.h>
29 #ifdef DEF_XOPEN
30 #undef __USE_XOPEN
31 #endif
32 #include <string.h>
33 #include <system_info.h>
34 #include <sys/vfs.h>
35 #include <glib/gstdio.h>
36 #include <sys/stat.h>
37 #include <dirent.h>
38 #include <ctype.h>
39 #include <aul/aul.h>
40 #include <mm_file.h>
41 #include <libexif/exif-data.h>
42 #include <media-util.h>
43 #include <uuid/uuid.h>
44 #include <mm_util_magick.h>
45 #include <media-thumbnail.h>
46 #include "media-util-err.h"
47 #include "media-svc-util.h"
48 #include "media-svc-db-utils.h"
49 #include "media-svc-debug.h"
50 #include "media-svc-env.h"
51 #include "media-svc-hash.h"
52 #include "media-svc-album.h"
53 #include "media-svc-localize_ch.h"
54
55 #define MEDIA_SVC_FILE_EXT_LEN_MAX                              6                       /**< Maximum file ext lenth*/
56
57 /* Define data structures for media type and mime type */
58 #define MEDIA_SVC_CATEGORY_UNKNOWN      0x00000000      /**< Default */
59 #define MEDIA_SVC_CATEGORY_ETC          0x00000001      /**< ETC category */
60 #define MEDIA_SVC_CATEGORY_IMAGE        0x00000002      /**< Image category */
61 #define MEDIA_SVC_CATEGORY_VIDEO        0x00000004      /**< Video category */
62 #define MEDIA_SVC_CATEGORY_MUSIC        0x00000008      /**< Music category */
63 #define MEDIA_SVC_CATEGORY_SOUND        0x00000010      /**< Sound category */
64 #define MEDIA_SVC_CATEGORY_PVR  0x00000020      /**< PVR category */
65 #define MEDIA_SVC_CATEGORY_UHD  0x00000040      /**< UHD category */
66 #define MEDIA_SVC_CATEGORY_SCSA 0x00000080      /**< SCSA category */
67
68 #define CONTENT_TYPE_NUM 5
69 #define MUSIC_MIME_NUM 29
70 #define SOUND_MIME_NUM 1
71 #define MIME_TYPE_LENGTH 255
72 #define MIME_LENGTH 50
73 #define _3GP_FILE ".3gp"
74 #define _MP4_FILE ".mp4"
75 #define _ASF_FILE ".asf"
76 #define MEDIA_SVC_ARTWORK_SIZE 2000
77 #define MEDIA_SVC_DEFAULT_FORMAT_LEN 19
78
79 #define MEDIA_SVC_DEFAULT_GPS_VALUE                     -200                    /**< Default GPS Value*/
80
81 typedef struct {
82         char content_type[15];
83         int category_by_mime;
84 } _media_svc_content_table_s;
85
86 enum Exif_Orientation {
87         NOT_AVAILABLE = 0,
88         NORMAL = 1,
89         HFLIP = 2,
90         ROT_180 = 3,
91         VFLIP = 4,
92         TRANSPOSE = 5,
93         ROT_90 = 6,
94         TRANSVERSE = 7,
95         ROT_270 = 8
96 };
97
98 static const _media_svc_content_table_s content_category[CONTENT_TYPE_NUM] = {
99         {"audio", MEDIA_SVC_CATEGORY_SOUND},
100         {"image", MEDIA_SVC_CATEGORY_IMAGE},
101         {"video", MEDIA_SVC_CATEGORY_VIDEO},
102         {"application", MEDIA_SVC_CATEGORY_ETC},
103         {"text", MEDIA_SVC_CATEGORY_ETC},
104 };
105
106 static const char music_mime_table[MUSIC_MIME_NUM][MIME_LENGTH] = {
107         /*known mime types of normal files*/
108         "mpeg",
109         "ogg",
110         "x-ms-wma",
111         "x-flac",
112         "mp4",
113         /* known mime types of drm files*/
114         "mp3",
115         "x-mp3", /*alias of audio/mpeg*/
116         "x-mpeg", /*alias of audio/mpeg*/
117         "3gpp",
118         "x-ogg", /*alias of audio/ogg*/
119         "vnd.ms-playready.media.pya:*.pya", /*playready*/
120         "wma",
121         "aac",
122         "x-m4a", /*alias of audio/mp4*/
123         /* below mimes are rare*/
124         "x-vorbis+ogg",
125         "x-flac+ogg",
126         "x-matroska",
127         "ac3",
128         "mp2",
129         "x-ape",
130         "x-ms-asx",
131         "vnd.rn-realaudio",
132
133         "x-vorbis", /*alias of audio/x-vorbis+ogg*/
134         "vorbis", /*alias of audio/x-vorbis+ogg*/
135         "x-oggflac",
136         "x-mp2", /*alias of audio/mp2*/
137         "x-pn-realaudio", /*alias of audio/vnd.rn-realaudio*/
138         "vnd.m-realaudio", /*alias of audio/vnd.rn-realaudio*/
139         "x-wav",
140 };
141
142 static const char sound_mime_table[SOUND_MIME_NUM][MIME_LENGTH] = {
143         "x-smaf",
144 };
145
146 char *_media_info_generate_uuid(void)
147 {
148         uuid_t uuid_value;
149         char uuid_unparsed[37];
150
151 RETRY_GEN:
152         uuid_generate(uuid_value);
153         uuid_unparse(uuid_value, uuid_unparsed);
154
155         if (strlen(uuid_unparsed) < 36) {
156                 media_svc_debug("INVALID UUID : %s. RETRY GENERATE.", uuid_unparsed);
157                 goto RETRY_GEN;
158         }
159
160         return g_strdup(uuid_unparsed);
161 }
162
163 /* GPS information is not ExifTag member */
164 static int __media_svc_get_exif_gps_double(ExifData *ed, double *value, long tagtype)
165 {
166         ExifEntry *entry;
167         char gps_buf[MEDIA_SVC_METADATA_LEN_MAX + 1] = {0, };
168         double tmp_arr[3] = { 0.0, 0.0, 0.0 };
169         int i = 0;
170         char **tmp_split = NULL;
171
172         media_svc_retv_if(!ed, MS_MEDIA_ERR_INVALID_PARAMETER);
173         media_svc_retv_if(!value, MS_MEDIA_ERR_INVALID_PARAMETER);
174
175         entry = exif_data_get_entry(ed, tagtype);
176         media_svc_retv_if(!entry, MS_MEDIA_ERR_INTERNAL);
177
178         exif_entry_get_value(entry, gps_buf, sizeof(gps_buf));
179         gps_buf[strlen(gps_buf)] = '\0';
180
181         tmp_split = g_strsplit(gps_buf, ",", -1);
182         if (g_strv_length(tmp_split) != 3) {
183                 g_strfreev(tmp_split);
184                 media_svc_error("Wrong GPS format");
185                 return MS_MEDIA_ERR_INTERNAL;
186         }
187
188         for (i = 0; i < 3; i++)
189                 tmp_arr[i] = g_strtod(tmp_split[i], NULL);
190
191         g_strfreev(tmp_split);
192
193         *value = tmp_arr[0] + tmp_arr[1] / 60 + tmp_arr[2] / 3600;
194
195         return MS_MEDIA_ERR_NONE;
196 }
197
198 static int __media_svc_get_exif_gps_str(ExifData *ed, char *value, long tagtype)
199 {
200         ExifEntry *entry;
201
202         media_svc_retv_if(!ed, MS_MEDIA_ERR_INVALID_PARAMETER);
203         media_svc_retv_if(!value, MS_MEDIA_ERR_INVALID_PARAMETER);
204
205         entry = exif_data_get_entry(ed, tagtype);
206         if (entry) {
207                 exif_entry_get_value(entry, value, MEDIA_SVC_METADATA_LEN_MAX);
208                 value[strlen(value)] = '\0';
209         }
210
211         return MS_MEDIA_ERR_NONE;
212 }
213
214 static int __media_svc_get_exif_info(ExifData *ed, char *buf, int *i_value, double *d_value, ExifTag tagtype)
215 {
216         ExifEntry *entry;
217         ExifByteOrder mByteOrder;
218         ExifRational mRational;
219         long numerator, denominator;
220
221         media_svc_retv_if(!ed, MS_MEDIA_ERR_INVALID_PARAMETER);
222
223         entry = exif_data_get_entry(ed, tagtype);
224         media_svc_retv_if(!entry, MS_MEDIA_ERR_NONE);
225
226         switch (tagtype) {
227         case EXIF_TAG_ORIENTATION:
228         case EXIF_TAG_PIXEL_X_DIMENSION:
229         case EXIF_TAG_PIXEL_Y_DIMENSION:
230         case EXIF_TAG_ISO_SPEED_RATINGS:
231                 media_svc_retvm_if(!i_value, MS_MEDIA_ERR_INVALID_PARAMETER, "i_value is NULL");
232
233                 mByteOrder = exif_data_get_byte_order(ed);
234                 short exif_value = exif_get_short(entry->data, mByteOrder);
235                 *i_value = (int)exif_value;
236                 break;
237         case EXIF_TAG_EXPOSURE_TIME:
238                 media_svc_retvm_if(!buf, MS_MEDIA_ERR_INVALID_PARAMETER, "buf is NULL");
239
240                 mByteOrder = exif_data_get_byte_order(ed);
241                 mRational = exif_get_rational(entry->data, mByteOrder);
242                 numerator = mRational.numerator;
243                 denominator = mRational.denominator;
244                 snprintf(buf, MEDIA_SVC_METADATA_LEN_MAX, "%ld/%ld", numerator, denominator);
245                 break;
246         case EXIF_TAG_FNUMBER:
247                 media_svc_retvm_if(!d_value, MS_MEDIA_ERR_INVALID_PARAMETER, "d_value is NULL");
248
249                 mByteOrder = exif_data_get_byte_order(ed);
250                 mRational = exif_get_rational(entry->data, mByteOrder);
251                 numerator = mRational.numerator;
252                 denominator = mRational.denominator;
253
254                 *d_value = ((numerator*1.0)/(denominator*1.0));
255                 break;
256         default:
257                 media_svc_retvm_if(!buf, MS_MEDIA_ERR_INVALID_PARAMETER, "buf is NULL");
258
259                 exif_entry_get_value(entry, buf, MEDIA_SVC_METADATA_LEN_MAX);
260                 buf[strlen(buf)] = '\0';
261         }
262
263         return MS_MEDIA_ERR_NONE;
264 }
265
266 static time_t __media_svc_get_timeline_from_str(const char *timstr)
267 {
268         struct tm t;
269         time_t modified_t = 0;
270         time_t rawtime;
271         struct tm timeinfo;
272
273         if (!STRING_VALID(timstr)) {
274                 media_svc_error("Invalid Parameter");
275                 return 0;
276         }
277
278         /*Exif Format : %Y:%m:%d %H:%M:%S
279         Videoc Content Creation_time format of FFMpeg : %Y-%m-%d %H:%M:%S*/
280         memset(&t, 0x00, sizeof(struct tm));
281
282         tzset();
283         time(&rawtime);
284         localtime_r(&rawtime, &timeinfo);
285
286         if (strptime(timstr, "%Y:%m:%d %H:%M:%S", &t) || strptime(timstr, "%Y-%m-%d %H:%M:%S", &t)) {
287                 t.tm_isdst = timeinfo.tm_isdst;
288                 if (t.tm_isdst != 0)
289                         media_svc_debug("DST %d", t.tm_isdst);
290
291                 /* If time string has timezone */
292                 if (strptime(timstr, "%Y:%m:%d %H:%M:%S %z", &t) || strptime(timstr, "%Y-%m-%d %H:%M:%S %z", &t)) {
293                         char tim_tmp_str[255] = { 0, };
294
295                         /* ISO8601 Time string format */
296                         strftime(tim_tmp_str, 255, "%Y-%m-%dT%H:%M:%S%z", &t);
297                         GDateTime *pdatetime = g_date_time_new_from_iso8601(tim_tmp_str, NULL);
298                         if (pdatetime)
299                                 modified_t = g_date_time_to_unix(pdatetime);
300                         g_date_time_unref(pdatetime);
301                         media_svc_debug("Calibrated timeval : [%ld][%s]", modified_t, tim_tmp_str);
302                 } else {
303                         /* Just localtime */
304                         modified_t = mktime(&t);
305                 }
306
307                 if (modified_t > 0)
308                         return modified_t;
309                 else
310                         media_svc_debug("Failed to get timeline : [%s] [%d:%d:%d: %d:%d:%d]", timstr, t.tm_year, t.tm_mon, t.tm_mday, t.tm_hour, t.tm_min, t.tm_sec);
311         } else {
312                 media_svc_error("Failed to get timeline : [%s]", timstr);
313         }
314
315         return 0;
316 }
317
318 static int __media_svc_get_content_type_from_mime(const char *path, const char *mimetype, int *category)
319 {
320         int idx = 0;
321
322         media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is null");
323         media_svc_retvm_if(mimetype == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "mimetype is null");
324         media_svc_retvm_if(category == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "category is null");
325
326         *category = MEDIA_SVC_CATEGORY_UNKNOWN;
327
328         /*categorize from mimetype */
329         for (idx = 0; idx < CONTENT_TYPE_NUM; idx++) {
330                 if (strncmp(mimetype, content_category[idx].content_type, strlen(content_category[idx].content_type)) == 0) {
331                         *category = (*category | content_category[idx].category_by_mime);
332                         break;
333                 }
334         }
335
336         /*in application type, exitst sound file ex) x-smafs, asf */
337         if (*category & MEDIA_SVC_CATEGORY_ETC) {
338                 int prefix_len = strlen(content_category[3].content_type) + 1;
339                 char *ext = NULL;
340
341                 for (idx = 0; idx < SOUND_MIME_NUM; idx++) {
342                         if (strstr(mimetype + prefix_len, sound_mime_table[idx]) != NULL) {
343                                 *category ^= MEDIA_SVC_CATEGORY_ETC;
344                                 *category |= MEDIA_SVC_CATEGORY_SOUND;
345                                 break;
346                         }
347                 }
348
349                 if (strncasecmp(mimetype, "text/x-iMelody", strlen("text/x-iMelody")) == 0) {
350                         *category ^= MEDIA_SVC_CATEGORY_ETC;
351                         *category |= MEDIA_SVC_CATEGORY_SOUND;
352                 }
353
354                 /*"asf" must check video stream and then categorize in directly. */
355                 ext = strrchr(path, '.');
356                 if (ext != NULL) {
357                         if (strncasecmp(ext, _ASF_FILE, 5) == 0) {
358                                 int audio = 0;
359                                 int video = 0;
360                                 int err = 0;
361
362                                 err = mm_file_get_stream_info(path, &audio, &video);
363                                 if (err == 0) {
364                                         if (audio > 0 && video == 0) {
365                                                 *category ^= MEDIA_SVC_CATEGORY_ETC;
366                                                 *category |= MEDIA_SVC_CATEGORY_MUSIC;
367                                         } else {
368                                                 *category ^= MEDIA_SVC_CATEGORY_ETC;
369                                                 *category |= MEDIA_SVC_CATEGORY_VIDEO;
370                                         }
371                                 }
372                         }
373                 }
374         }
375
376         /*check music file in sound files. */
377         if (*category & MEDIA_SVC_CATEGORY_SOUND) {
378                 int prefix_len = strlen(content_category[0].content_type) + 1;
379
380                 for (idx = 0; idx < MUSIC_MIME_NUM; idx++) {
381                         if (strcmp(mimetype + prefix_len, music_mime_table[idx]) == 0) {
382                                 *category ^= MEDIA_SVC_CATEGORY_SOUND;
383                                 *category |= MEDIA_SVC_CATEGORY_MUSIC;
384                                 break;
385                         }
386                 }
387
388                 /*m3u file is playlist but mime type is "audio/x-mpegurl". but It has to be classified into MS_CATEGORY_ETC since playlist is not a sound track*/
389                 if (strncasecmp(mimetype, "audio/x-mpegurl", strlen("audio/x-mpegurl")) == 0) {
390                         *category ^= MEDIA_SVC_CATEGORY_SOUND;
391                         *category |= MEDIA_SVC_CATEGORY_ETC;
392                 }
393         } else if (*category & MEDIA_SVC_CATEGORY_VIDEO) {
394                 /*some video files don't have video stream. in this case it is categorize as music. */
395                 char *ext = NULL;
396                 /*"3gp" and "mp4" must check video stream and then categorize in directly. */
397                 ext = strrchr(path, '.');
398                 if (ext != NULL) {
399                         if ((strncasecmp(ext, _3GP_FILE, 4) == 0) || (strncasecmp(ext, _MP4_FILE, 5) == 0)) {
400                                 int audio = 0;
401                                 int video = 0;
402                                 int err = 0;
403
404                                 err = mm_file_get_stream_info(path, &audio, &video);
405                                 if (err == 0) {
406                                         if (audio > 0 && video == 0) {
407                                                 *category ^= MEDIA_SVC_CATEGORY_VIDEO;
408                                                 *category |= MEDIA_SVC_CATEGORY_MUSIC;
409                                         }
410                                 }
411                                 /*even though error occued in mm_file_get_stream_info return MS_MEDIA_ERR_NONE. fail means invalid media content. */
412                         }
413                 }
414         }
415
416         return MS_MEDIA_ERR_NONE;
417 }
418
419 static int __media_svc_get_media_type(const char *path, const char *mime_type, media_svc_media_type_e *media_type)
420 {
421         int ret = MS_MEDIA_ERR_NONE;
422         int category = 0;
423
424         ret = __media_svc_get_content_type_from_mime(path, mime_type, &category);
425         if (ret != MS_MEDIA_ERR_NONE)
426                 media_svc_error("__media_svc_get_content_type_from_mime failed : %d", ret);
427
428         switch (category) {
429         case MEDIA_SVC_CATEGORY_SOUND:
430                 *media_type = MEDIA_SVC_MEDIA_TYPE_SOUND;
431                 break;
432         case MEDIA_SVC_CATEGORY_MUSIC:
433                 *media_type = MEDIA_SVC_MEDIA_TYPE_MUSIC;
434                 break;
435         case MEDIA_SVC_CATEGORY_IMAGE:
436                 *media_type = MEDIA_SVC_MEDIA_TYPE_IMAGE;
437                 break;
438         case MEDIA_SVC_CATEGORY_VIDEO:
439                 *media_type = MEDIA_SVC_MEDIA_TYPE_VIDEO;
440                 break;
441         default:
442                 *media_type = MEDIA_SVC_MEDIA_TYPE_OTHER;
443         }
444
445         return ret;
446 }
447
448 /*
449 drm_contentifo is not NULL, if the file is OMA DRM.
450 If the file is not OMA DRM, drm_contentinfo must be NULL.
451 */
452 static int __media_svc_get_mime_type(const char *path, char *mimetype)
453 {
454         media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
455
456         /*in case of normal files or failure to get mime in drm */
457         if (aul_get_mime_from_file(path, mimetype, 255) < 0) {
458                 media_svc_error("aul_get_mime_from_file fail");
459                 return MS_MEDIA_ERR_INTERNAL;
460         }
461
462         return MS_MEDIA_ERR_NONE;
463 }
464
465 static bool __media_svc_get_file_ext(const char *file_path, char *file_ext)
466 {
467         int i = 0;
468
469         for (i = strlen(file_path); i >= 0; i--) {
470                 if (file_path[i] == '.') {
471                         SAFE_STRLCPY(file_ext, &file_path[i + 1], MEDIA_SVC_FILE_EXT_LEN_MAX);
472                         return true;
473                 }
474
475                 if (file_path[i] == '/')
476                         return false;
477         }
478         return false;
479 }
480
481 static int __media_svc_safe_atoi(char *buffer, int *si)
482 {
483         char *end = NULL;
484         errno = 0;
485         media_svc_retvm_if(buffer == NULL || si == NULL, MS_MEDIA_ERR_INTERNAL, "invalid parameter");
486
487         const long sl = strtol(buffer, &end, 10);
488
489         media_svc_retvm_if(end == buffer, MS_MEDIA_ERR_INTERNAL, "not a decimal number");
490         media_svc_retvm_if('\0' != *end, MS_MEDIA_ERR_INTERNAL, "extra characters at end of input: %s", end);
491         media_svc_retvm_if((LONG_MIN == sl || LONG_MAX == sl) && (ERANGE == errno), MS_MEDIA_ERR_INTERNAL, "out of range of type long");
492         media_svc_retvm_if(sl > INT_MAX, MS_MEDIA_ERR_INTERNAL, "greater than INT_MAX");
493         media_svc_retvm_if(sl < INT_MIN, MS_MEDIA_ERR_INTERNAL, "less than INT_MIN");
494
495         *si = (int)sl;
496
497         return MS_MEDIA_ERR_NONE;
498 }
499
500 static int __media_svc_save_image(unsigned char *image, unsigned int size, char *image_path, uid_t uid)
501 {
502         int ret = MS_MEDIA_ERR_NONE;
503         struct statfs fs;
504         char *thumb_path = NULL;
505         long bsize_kbytes = 0;
506         GError *error = NULL;
507
508         media_svc_retvm_if(!image || size == 0, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid image");
509         media_svc_sec_debug("start save image, path [%s] image size [%d]", image_path, size);
510
511         ret = ms_user_get_root_thumb_store_path(uid, &thumb_path);
512         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "ms_user_get_root_thumb_store_path error");
513
514         ret = statfs(thumb_path, &fs);
515         g_free(thumb_path);
516         media_svc_retvm_if(ret == -1, MS_MEDIA_ERR_INTERNAL, "statfs failed");
517
518         bsize_kbytes = fs.f_bsize >> 10;
519         media_svc_retvm_if((bsize_kbytes * fs.f_bavail) < 1024, MS_MEDIA_ERR_NOT_ENOUGH_SPACE, "Not enough space");
520
521         if (!g_file_set_contents(image_path, (const gchar *)image, (gssize)size, &error)) {
522                 media_svc_error("g_file_set_contents faild:%s", error->message);
523                 g_error_free(error);
524                 return MS_MEDIA_ERR_INTERNAL;
525         }
526
527         return MS_MEDIA_ERR_NONE;
528 }
529
530 static char *__media_svc_get_title_from_filepath(const char *path)
531 {
532         char *filename = NULL;
533         char *title = NULL;
534         char *last_dot = NULL;
535
536         media_svc_retvm_if(!STRING_VALID(path), NULL, "Invalid path");
537
538         filename = g_path_get_basename(path);
539
540         last_dot = strrchr(filename, '.');
541         if (last_dot) {
542                 title = g_strndup(filename, last_dot - filename);
543                 g_free(filename);
544         } else {
545                 title = filename;
546         }
547
548         media_svc_debug("extract title is [%s]", title);
549
550         return title;
551 }
552
553 void _media_svc_remove_file(const char *path)
554 {
555         if (!STRING_VALID(path))
556                 return;
557
558         if (remove(path) != 0)
559                 media_svc_stderror("fail to remove file result");
560 }
561
562 int _media_svc_get_thumbnail_path(media_svc_media_type_e media_type, char *thumb_path, const char *pathname, const char *img_format, uid_t uid)
563 {
564         int ret = MS_MEDIA_ERR_NONE;
565         char file_ext[MEDIA_SVC_FILE_EXT_LEN_MAX + 1] = {0, };
566         char hash[255 + 1] = {0, };
567         char *thumb_dir = NULL;
568         char *thumbfile_ext = NULL;
569
570         ret = ms_user_get_root_thumb_store_path(uid, &thumb_dir);
571         if (!STRING_VALID(thumb_dir)) {
572                 media_svc_error("ms_user_get_root_thumb_store_path failed");
573                 return MS_MEDIA_ERR_INTERNAL;
574         }
575
576         if (!g_file_test(thumb_dir, G_FILE_TEST_IS_DIR)) {
577                 media_svc_error("Wrong path[%s]", thumb_dir);
578                 g_free(thumb_dir);
579                 return MS_MEDIA_ERR_INTERNAL;
580         }
581
582         memset(file_ext, 0, sizeof(file_ext));
583         if (!__media_svc_get_file_ext(pathname, file_ext))
584                 media_svc_error("get file ext fail");
585
586         ret = mb_svc_generate_hash_code(pathname, hash, sizeof(hash));
587         if (ret != MS_MEDIA_ERR_NONE) {
588                 media_svc_error("mb_svc_generate_hash_code failed : %d", ret);
589                 g_free(thumb_dir);
590                 return MS_MEDIA_ERR_INTERNAL;
591         }
592
593         if (media_type == MEDIA_SVC_MEDIA_TYPE_MUSIC) {
594                 if ((strstr(img_format, "jpeg") != NULL) || (strstr(img_format, "jpg") != NULL) || (strstr(img_format, "JPG") != NULL)) {
595                         thumbfile_ext = (char *)"jpg";
596                 } else if ((strstr(img_format, "png") != NULL) || (strstr(img_format, "PNG") != NULL)) {
597                         thumbfile_ext = (char *)"png";
598                 } else if ((strstr(img_format, "gif") != NULL) || (strstr(img_format, "GIF") != NULL)) {
599                         thumbfile_ext = (char *)"gif";
600                 } else if ((strstr(img_format, "bmp") != NULL) || (strstr(img_format, "BMP") != NULL)) {
601                         thumbfile_ext = (char *)"bmp";
602                 } else {
603                         media_svc_error("Not proper img format");
604                         g_free(thumb_dir);
605                         return MS_MEDIA_ERR_INTERNAL;
606                 }
607
608                 snprintf(thumb_path, MEDIA_SVC_PATHNAME_SIZE, "%s/.%s-%s.%s", thumb_dir, file_ext, hash, thumbfile_ext);
609         } else {
610                 if (strcasecmp(file_ext, "PNG") == 0)
611                         snprintf(thumb_path, MEDIA_SVC_PATHNAME_SIZE, "%s/.%s-%s.png", thumb_dir, file_ext, hash);
612                 else
613                         snprintf(thumb_path, MEDIA_SVC_PATHNAME_SIZE, "%s/.%s-%s.jpg", thumb_dir, file_ext, hash);
614         }
615
616         g_free(thumb_dir);
617
618         return MS_MEDIA_ERR_NONE;
619 }
620
621 int _media_svc_get_file_time(const char *full_path)
622 {
623         struct stat statbuf = { 0, };
624
625         if (stat(full_path, &statbuf) == -1) {
626                 media_svc_stderror("stat fails.");
627                 return 0;
628         }
629
630         return statbuf.st_mtime;
631 }
632
633 int _media_svc_set_media_info(media_svc_content_info_s *content_info, const char *storage_id, ms_user_storage_type_e storage_type, const char *path, bool refresh)
634 {
635         int ret = MS_MEDIA_ERR_NONE;
636         bool drm_type = false;
637         char mime_type[256] = {0, };
638         media_svc_media_type_e media_type;
639
640         media_svc_retvm_if(!_media_svc_is_valid_storage_type(storage_type), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
641         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
642
643         content_info->path = g_strdup(path);
644         media_svc_retv_del_if(content_info->path == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
645
646         struct stat st;
647         memset(&st, 0, sizeof(struct stat));
648         if (stat(path, &st) == 0) {
649                 content_info->modified_time = st.st_mtime;
650                 content_info->timeline = content_info->modified_time;
651                 content_info->size = st.st_size;
652         } else {
653                 media_svc_stderror("stat failed");
654         }
655
656         /* refresh is TRUE when file modified. so only modified_time and size are changed*/
657         if (refresh) {
658                 media_svc_debug("refresh");
659                 return MS_MEDIA_ERR_NONE;
660         }
661
662         content_info->storage_uuid = g_strdup(storage_id);
663         media_svc_retv_del_if(content_info->storage_uuid == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
664
665         content_info->storage_type = storage_type;
666         time(&content_info->added_time);
667
668         content_info->media_uuid = _media_info_generate_uuid();
669         media_svc_retv_del_if(content_info->media_uuid == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
670
671         content_info->file_name = g_path_get_basename(path);
672         media_svc_retv_del_if(content_info->file_name == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
673
674         /* if the file is DRM file, drm_type value is DRM_TRUE(1).
675         if drm_contentinfo is not NULL, the file is OMA DRM.*/
676         ret = __media_svc_get_mime_type(path, mime_type);
677         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, content_info);
678
679         media_svc_debug("mime [%s]", mime_type);
680         content_info->is_drm = drm_type;
681
682         ret = __media_svc_get_media_type(path, mime_type, &media_type);
683         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, content_info);
684
685         content_info->mime_type = g_strdup(mime_type);
686         media_svc_retv_del_if(content_info->mime_type == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
687
688         media_svc_sec_debug("storage[%d], path[%s], media_type[%d]", storage_type, path, media_type);
689
690         content_info->media_type = media_type;
691
692         return MS_MEDIA_ERR_NONE;
693 }
694
695 static int __image_360_check(const char *path)
696 {
697         FILE *fp = NULL;
698         size_t size = 0, app1_size = 0, exif_app1_xmp_size = 0;
699         unsigned char exif_header[4] = {0, };
700         unsigned char exif_app1[2] = {0, };
701         unsigned char exif_app1_xmp[2] = {0, };
702         unsigned char exif_app1_xmp_t[2] = {0, };
703         GString *xmp_data = NULL;
704         int fdata = 0;
705         int result = 0;
706
707         memset(exif_header, 0x00, sizeof(exif_header));
708         memset(exif_app1, 0x00, sizeof(exif_app1));
709         memset(exif_app1_xmp, 0x00, sizeof(exif_app1_xmp));
710         memset(exif_app1_xmp_t, 0x00, sizeof(exif_app1_xmp_t));
711
712         fp = fopen(path, "rb");
713         if (fp == NULL)
714                 goto ERROR;
715
716         size = fread(exif_header, 1, sizeof(exif_header), fp);
717         if (size != sizeof(exif_header))
718                 goto ERROR;
719
720         if ((exif_header[0] == 0xff) && (exif_header[1] == 0xd8) && (exif_header[2] == 0xff) && (exif_header[3] == 0xe1)) {
721                 size = fread(exif_app1, 1, sizeof(exif_app1), fp);
722                 if (size != sizeof(exif_app1))
723                         goto ERROR;
724
725                 if ((size_t)((exif_app1[0] << 8) | (exif_app1[1])) <= 2)
726                         goto ERROR;
727
728                 app1_size = (size_t)((exif_app1[0] << 8) | (exif_app1[1])) - 2 ;
729                 if (fseek(fp, app1_size, SEEK_CUR) != 0)
730                         goto ERROR;
731
732                 size = fread(exif_app1_xmp, 1, sizeof(exif_app1_xmp), fp);
733                 if (size != sizeof(exif_app1_xmp))
734                         goto ERROR;
735
736                 if ((exif_app1_xmp[0] == 0xff) && (exif_app1_xmp[1] == 0xe1)) {
737                         size = fread(exif_app1_xmp_t, 1, sizeof(exif_app1_xmp_t), fp);
738                         if (size != sizeof(exif_app1_xmp_t))
739                                 goto ERROR;
740
741                         if ((size_t)((exif_app1_xmp_t[0] << 8) | (exif_app1_xmp_t[1])) <= 2)
742                                 goto ERROR;
743
744                         exif_app1_xmp_size = (size_t)((exif_app1_xmp_t[0] << 8) | (exif_app1_xmp_t[1])) - 2;
745
746                         xmp_data = g_string_sized_new(exif_app1_xmp_size);
747
748                         do {
749                                 exif_app1_xmp_size--;
750                                 fdata = fgetc(fp);
751                                 if (fdata == EOF)
752                                         continue;
753                                 if (fdata == '\0')
754                                         continue;
755
756                                 xmp_data = g_string_append_c(xmp_data, (gchar)fdata);
757                         } while (exif_app1_xmp_size > 0);
758
759                         if (strstr(xmp_data->str, "UsePanoramaViewer") &&
760                                 strstr(xmp_data->str, "True") &&
761                                 strstr(xmp_data->str, "ProjectionType") &&
762                                 strstr(xmp_data->str, "equirectangular"))
763                                 result = 1;
764
765                         g_string_free(xmp_data, TRUE);
766                 }
767         }
768
769 ERROR:
770         if (fp) {
771                 fclose(fp);
772                 fp = NULL;
773         }
774
775         return result;
776 }
777
778 static char * __media_svc_get_title(MMHandleType tag, const char *path)
779 {
780         int ret = FILEINFO_ERROR_NONE;
781         char *p = NULL;
782         int size = 0;
783         char *title = NULL;
784
785         if (tag) {
786                 ret = mm_file_get_attrs(tag, MM_FILE_TAG_TITLE, &p, &size, NULL);
787                 if (ret == FILEINFO_ERROR_NONE && size > 0) {
788                         while(p && isspace(*p))
789                                 p++;
790
791                         return g_strdup(p);
792                 }
793         }
794
795         title = __media_svc_get_title_from_filepath(path);
796         if (title)
797                 return title;
798
799         media_svc_error("Can't extract title");
800
801         return g_strdup(MEDIA_SVC_TAG_UNKNOWN);
802 }
803
804 char * _media_svc_get_title_by_path(const char *path)
805 {
806         /* No MMHandleType in media-svc.c */
807         return __media_svc_get_title(NULL, path);
808 }
809
810 int _media_svc_extract_image_metadata(media_svc_content_info_s *content_info)
811 {
812         double value = 0.0;
813         int orient_value = 0;
814         int exif_width = 0;
815         int exif_height = 0;
816         ExifData *ed = NULL;
817         bool has_datetaken = false;
818         double fnumber = 0.0;
819         int iso = 0;
820         char *path = NULL;
821
822         char buf[MEDIA_SVC_METADATA_LEN_MAX + 1] = { '\0' };
823
824         media_svc_retvm_if(!content_info, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid content_info");
825         media_svc_retvm_if(content_info->media_type != MEDIA_SVC_MEDIA_TYPE_IMAGE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid media_type [%d]", content_info->media_type);
826         media_svc_retvm_if(!STRING_VALID(content_info->path), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid path");
827
828         path = content_info->path;
829         content_info->media_meta.title = __media_svc_get_title(NULL, path);
830
831         content_info->media_meta.latitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
832         content_info->media_meta.longitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
833         content_info->media_meta.altitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
834
835         /* Not used. But to preserved the behavior, set MEDIA_SVC_TAG_UNKNOWN. */
836         content_info->media_meta.album = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
837         content_info->media_meta.artist = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
838         content_info->media_meta.album_artist = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
839         content_info->media_meta.genre = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
840         content_info->media_meta.composer = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
841         content_info->media_meta.year = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
842         content_info->media_meta.copyright = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
843         content_info->media_meta.track_num = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
844
845         /* Load an ExifData object from an EXIF file */
846         ed = exif_data_new_from_file(path);
847         if (!ed) {
848                 media_svc_sec_debug("There is no exif data in [ %s ]", path);
849                 goto GET_WIDTH_HEIGHT;
850         }
851
852         content_info->media_meta.is_360 = __image_360_check(path);
853
854         memset(buf, 0x00, sizeof(buf));
855         if (__media_svc_get_exif_gps_double(ed, &value, EXIF_TAG_GPS_LATITUDE) == MS_MEDIA_ERR_NONE) {
856                 if (__media_svc_get_exif_gps_str(ed, buf, EXIF_TAG_GPS_LATITUDE_REF) == MS_MEDIA_ERR_NONE) {
857                         if (!g_strcmp0(buf, "S"))
858                                 value *= -1;
859                         content_info->media_meta.latitude = value;
860                 }
861         }
862
863         memset(buf, 0x00, sizeof(buf));
864         if (__media_svc_get_exif_gps_double(ed, &value, EXIF_TAG_GPS_LONGITUDE) == MS_MEDIA_ERR_NONE) {
865                 if (__media_svc_get_exif_gps_str(ed, buf, EXIF_TAG_GPS_LONGITUDE_REF) == MS_MEDIA_ERR_NONE) {
866                         if (!g_strcmp0(buf, "W"))
867                                 value *= -1;
868
869                         content_info->media_meta.longitude = value;
870                 }
871         }
872
873         memset(buf, 0x00, sizeof(buf));
874         if (__media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_IMAGE_DESCRIPTION) == MS_MEDIA_ERR_NONE) {
875                 if (strlen(buf) > 0)
876                         content_info->media_meta.description = g_strdup(buf);
877                 else
878                         content_info->media_meta.description = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
879         }
880
881         memset(buf, 0x00, sizeof(buf));
882         if (!has_datetaken && __media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_DATE_TIME_ORIGINAL) == MS_MEDIA_ERR_NONE) {
883                 if (strlen(buf) > 0) {
884                         has_datetaken = true;
885                         content_info->media_meta.datetaken = g_strdup(buf);
886
887                         /* This is same as recorded_date */
888                         content_info->media_meta.recorded_date = g_strdup(buf);
889                 }
890         }
891
892         memset(buf, 0x00, sizeof(buf));
893         if (!has_datetaken && __media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_DATE_TIME) == MS_MEDIA_ERR_NONE) {
894                 if (strlen(buf) > 0) {
895                         has_datetaken = true;
896                         content_info->media_meta.datetaken = g_strdup(buf);
897
898                         /* This is same as recorded_date */
899                         content_info->media_meta.recorded_date = g_strdup(buf);
900                 }
901         }
902
903         if (has_datetaken) {
904                 content_info->timeline = __media_svc_get_timeline_from_str(content_info->media_meta.datetaken);
905                 if (content_info->timeline == 0)
906                         content_info->timeline = content_info->modified_time;
907                 else
908                         media_svc_debug("Timeline : %ld", content_info->timeline);
909         }
910
911         memset(buf, 0x00, sizeof(buf));
912         /* Get exposure_time value from exif. */
913         if (__media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_EXPOSURE_TIME) == MS_MEDIA_ERR_NONE) {
914                 if (strlen(buf) > 0)
915                         content_info->media_meta.exposure_time = g_strdup(buf);
916         }
917
918         /* Get fnumber value from exif. */
919         if (__media_svc_get_exif_info(ed, NULL, NULL, &fnumber, EXIF_TAG_FNUMBER) == MS_MEDIA_ERR_NONE)
920                 content_info->media_meta.fnumber = fnumber;
921
922         /* Get iso value from exif. */
923         if (__media_svc_get_exif_info(ed, NULL, &iso, NULL, EXIF_TAG_ISO_SPEED_RATINGS) == MS_MEDIA_ERR_NONE)
924                 content_info->media_meta.iso = iso;
925
926         memset(buf, 0x00, sizeof(buf));
927         /* Get model value from exif. */
928         if (__media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_MODEL) == MS_MEDIA_ERR_NONE) {
929                 if (strlen(buf) > 0)
930                         content_info->media_meta.model = g_strdup(buf);
931         }
932
933         /* Get orientation value from exif. */
934         if (__media_svc_get_exif_info(ed, NULL, &orient_value, NULL, EXIF_TAG_ORIENTATION) == MS_MEDIA_ERR_NONE) {
935                 if (orient_value >= NOT_AVAILABLE && orient_value <= ROT_270)
936                         content_info->media_meta.orientation = orient_value;
937         }
938
939         /* Get width value from exif. */
940         if (__media_svc_get_exif_info(ed, NULL, &exif_width, NULL, EXIF_TAG_PIXEL_X_DIMENSION) == MS_MEDIA_ERR_NONE) {
941                 if (exif_width > 0)
942                         content_info->media_meta.width = exif_width;
943         }
944
945         /* Get height value from exif. */
946         if (__media_svc_get_exif_info(ed, NULL, &exif_height, NULL, EXIF_TAG_PIXEL_Y_DIMENSION) == MS_MEDIA_ERR_NONE) {
947                 if (exif_height > 0)
948                         content_info->media_meta.height = exif_height;
949         }
950
951         if (ed)
952                 exif_data_unref(ed);
953
954 GET_WIDTH_HEIGHT:
955
956         if (content_info->media_meta.width == 0 || content_info->media_meta.height == 0) {
957                 /*Get image width, height*/
958                 unsigned int img_width = 0;
959                 unsigned int img_height = 0;
960                 mm_util_img_codec_type img_type = IMG_CODEC_UNKNOWN_TYPE;
961
962                 mm_util_extract_image_info(path, &img_type, &img_width, &img_height);
963                 if (content_info->media_meta.width == 0)
964                         content_info->media_meta.width = img_width;
965
966                 if (content_info->media_meta.height == 0)
967                         content_info->media_meta.height = img_height;
968         }
969
970         return MS_MEDIA_ERR_NONE;
971 }
972
973 static char * __media_svc_get_tag_str_value(MMHandleType tag, const char *tag_name)
974 {
975         int ret = FILEINFO_ERROR_NONE;
976         char *p = NULL;
977         int size = 0;
978
979         ret = mm_file_get_attrs(tag, tag_name, &p, &size, NULL);
980         if (ret == FILEINFO_ERROR_NONE && size > 0)
981                 return g_strdup(p);
982
983         return g_strdup(MEDIA_SVC_TAG_UNKNOWN);
984 }
985
986 int _media_svc_extract_music_metadata_for_update(media_svc_content_info_s *content_info, const char *path)
987 {
988         MMHandleType tag = 0;
989         int mmf_error = FILEINFO_ERROR_NONE;
990
991         content_info->path = g_strdup(path);
992
993         mmf_error = mm_file_create_tag_attrs_no_albumart(&tag, content_info->path);
994         if (mmf_error == FILEINFO_ERROR_NONE) {
995                 content_info->media_meta.title = __media_svc_get_title(tag, content_info->path);
996                 content_info->media_meta.album = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ALBUM);
997                 content_info->media_meta.artist = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ARTIST);
998                 content_info->media_meta.album_artist = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ALBUM_ARTIST);
999                 content_info->media_meta.genre = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_GENRE);
1000                 content_info->media_meta.description = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_DESCRIPTION);
1001                 content_info->media_meta.composer = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_AUTHOR);
1002                 content_info->media_meta.copyright = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_COPYRIGHT);
1003         } else {
1004                 content_info->media_meta.title = __media_svc_get_title(NULL, content_info->path);
1005         }
1006
1007         mm_file_destroy_tag_attrs(tag);
1008
1009         return MS_MEDIA_ERR_NONE;
1010 }
1011
1012 int _media_svc_extract_media_metadata(sqlite3 *handle, bool is_direct, media_svc_content_info_s *content_info, uid_t uid)
1013 {
1014         MMHandleType content = 0;
1015         MMHandleType tag = 0;
1016         char *p = NULL;
1017         unsigned char *image = NULL;
1018         unsigned int size = 0;
1019         int mmf_error = FILEINFO_ERROR_NONE;
1020         int album_id = 0;
1021         int ret = MS_MEDIA_ERR_NONE;
1022         int convert_value = 0;
1023         int cdis_value = 0;
1024
1025         /*Get Content Tag attribute ===========*/
1026         if (content_info->storage_type == MS_USER_STORAGE_EXTERNAL_USB)
1027                 mmf_error = mm_file_create_tag_attrs_no_albumart(&tag, content_info->path);
1028         else
1029                 mmf_error = mm_file_create_tag_attrs(&tag, content_info->path);
1030
1031         if (mmf_error == FILEINFO_ERROR_NONE) {
1032                 content_info->media_meta.title = __media_svc_get_title(tag, content_info->path);
1033                 content_info->media_meta.album = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ALBUM);
1034                 content_info->media_meta.artist = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ARTIST);
1035                 content_info->media_meta.album_artist = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ALBUM_ARTIST);
1036                 content_info->media_meta.genre = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_GENRE);
1037                 content_info->media_meta.description = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_DESCRIPTION);
1038                 content_info->media_meta.composer = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_AUTHOR);
1039                 content_info->media_meta.copyright = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_COPYRIGHT);
1040                 content_info->media_meta.track_num = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_TRACK_NUM);
1041
1042                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_RECDATE, &p, &size, NULL);
1043                 if ((mmf_error == FILEINFO_ERROR_NONE) && (size > 0)) {
1044                         if (g_str_has_suffix(content_info->mime_type, "mp4") || g_str_has_suffix(content_info->mime_type, "3gpp")) {
1045                                 /*Creation time format is 2013-01-01 00:00:00 +0000. change it to 2013:01:01 00:00:00  +0000 like exif time format*/
1046                                 char *p_value = g_strdelimit(g_strdup(p), "-", ':');
1047                                 content_info->media_meta.recorded_date = g_strdup_printf("%s +0000", p_value);
1048                                 g_free(p_value);
1049                         } else {
1050                                 content_info->media_meta.recorded_date = g_strdup(p);
1051                         }
1052
1053                         if (STRING_VALID(content_info->media_meta.recorded_date)) {
1054                                 content_info->timeline = __media_svc_get_timeline_from_str(content_info->media_meta.recorded_date);
1055                                 if (content_info->timeline == 0)
1056                                         content_info->timeline = content_info->modified_time;
1057
1058                                 /* This is same as datetaken */
1059                                 /* Remove compensation string */
1060                                 if (strlen(content_info->media_meta.recorded_date) > MEDIA_SVC_DEFAULT_FORMAT_LEN) {
1061                                         content_info->media_meta.datetaken = g_strndup(content_info->media_meta.recorded_date, MEDIA_SVC_DEFAULT_FORMAT_LEN);
1062                                         g_free(content_info->media_meta.recorded_date);
1063                                         content_info->media_meta.recorded_date = g_strdup(content_info->media_meta.datetaken);
1064                                 } else {
1065                                         content_info->media_meta.datetaken = g_strdup(content_info->media_meta.recorded_date);
1066                                 }
1067                         }
1068                 }
1069
1070                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_DATE, &p, &size, NULL);
1071                 if (mmf_error == FILEINFO_ERROR_NONE && size == 4) {
1072                         if (__media_svc_safe_atoi(p, &convert_value) == MS_MEDIA_ERR_NONE)
1073                                 content_info->media_meta.year = g_strdup(p);
1074                 }
1075
1076                 if (!content_info->media_meta.year)
1077                                 content_info->media_meta.year = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
1078
1079                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_RATING, &p, &size, NULL);
1080                 if (mmf_error == FILEINFO_ERROR_NONE && size > 0) {
1081                         if (__media_svc_safe_atoi(p, &convert_value) == MS_MEDIA_ERR_NONE)
1082                                 content_info->media_meta.rating = convert_value;
1083                 } else {
1084                         content_info->media_meta.rating = 0;
1085                 }
1086
1087                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_SPHERICAL, &content_info->media_meta.is_360, NULL);
1088
1089                 /*Do not extract artwork for the USB Storage content*/
1090                 if (content_info->storage_type != MS_USER_STORAGE_EXTERNAL_USB) {
1091                         mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ARTWORK, &image, &size, NULL);
1092                         if (mmf_error != FILEINFO_ERROR_NONE)
1093                                 media_svc_error("fail to get tag artwork - err(%x)", mmf_error);
1094
1095                         mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ARTWORK_SIZE, &size, NULL);
1096                         if (mmf_error != FILEINFO_ERROR_NONE)
1097                                 media_svc_error("fail to get artwork size - err(%x)", mmf_error);
1098
1099                         if (image != NULL && size > 0) {
1100                                 char thumb_path[MEDIA_SVC_PATHNAME_SIZE] = "\0";
1101                                 int artwork_mime_size = -1;
1102
1103                                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ARTWORK_MIME, &p, &artwork_mime_size, NULL);
1104                                 if ((mmf_error == FILEINFO_ERROR_NONE) && (artwork_mime_size > 0)) {
1105                                         ret = _media_svc_get_thumbnail_path(content_info->media_type, thumb_path, content_info->path, p, uid);
1106                                         if (ret != MS_MEDIA_ERR_NONE) {
1107                                                 media_svc_error("Fail to Get Thumbnail Path");
1108                                         } else {
1109                                                 ret = __media_svc_save_image(image, size, thumb_path, uid);
1110                                                 if (ret != MS_MEDIA_ERR_NONE) {
1111                                                         media_svc_error("Fail to Save Image");
1112                                                 } else {
1113                                                         content_info->thumbnail_path = g_strdup(thumb_path);
1114                                                 }
1115                                         }
1116                                 }
1117                         }
1118                 }
1119
1120                 /*Initialize album_id to 0. below code will set the album_id*/
1121                 content_info->album_id = album_id;
1122                 ret = _media_svc_get_album_id(handle, content_info->media_meta.album, content_info->media_meta.artist, &album_id);
1123                 if (ret != MS_MEDIA_ERR_NONE) {
1124                         if (ret == MS_MEDIA_ERR_DB_NO_RECORD) {
1125                                 media_svc_debug("album does not exist. So start to make album art");
1126                                 if ((g_strcmp0(content_info->media_meta.album, MEDIA_SVC_TAG_UNKNOWN)) &&
1127                                         (g_strcmp0(content_info->media_meta.artist, MEDIA_SVC_TAG_UNKNOWN)))
1128                                         ret = _media_svc_append_album(handle, is_direct, content_info->media_meta.album, content_info->media_meta.artist, content_info->thumbnail_path, &album_id, uid);
1129                                 else
1130                                         ret = _media_svc_append_album(handle, is_direct, content_info->media_meta.album, content_info->media_meta.artist, NULL, &album_id, uid);
1131
1132                                 content_info->album_id = album_id;
1133                         }
1134                 } else {
1135                         content_info->album_id = album_id;
1136                 }
1137
1138                 content_info->media_meta.longitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
1139                 content_info->media_meta.latitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
1140                 content_info->media_meta.altitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
1141
1142                 if (content_info->media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
1143                         double longitude = 0.0;
1144                         double latitude = 0.0;
1145                         double altitude = 0.0;
1146
1147                         mm_file_get_attrs(tag, MM_FILE_TAG_LONGITUDE, &longitude,
1148                                 MM_FILE_TAG_LATIDUE, &latitude,
1149                                 MM_FILE_TAG_ALTIDUE, &altitude,
1150                                 NULL);
1151
1152                         content_info->media_meta.longitude = (longitude == 0.0) ? MEDIA_SVC_DEFAULT_GPS_VALUE : longitude;
1153                         content_info->media_meta.latitude = (latitude == 0.0) ? MEDIA_SVC_DEFAULT_GPS_VALUE : latitude;
1154                         content_info->media_meta.altitude = (altitude == 0.0) ? MEDIA_SVC_DEFAULT_GPS_VALUE : altitude;
1155
1156                         mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_CDIS, &cdis_value, NULL);
1157                         if (mmf_error != FILEINFO_ERROR_NONE)
1158                                 cdis_value = 0;
1159
1160                         media_svc_debug("CDIS : %d", cdis_value);
1161
1162                         mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ROTATE, &p, &size, NULL);
1163                         if ((mmf_error == FILEINFO_ERROR_NONE) && (size > 0)) {
1164                                 content_info->media_meta.orientation = atoi(p);
1165                         } else {
1166                                 content_info->media_meta.orientation = 0;
1167                                 media_svc_debug("fail to get video orientation attr - err(%x)", mmf_error);
1168                         }
1169                 }
1170
1171                 mmf_error = mm_file_destroy_tag_attrs(tag);
1172                 if (mmf_error != FILEINFO_ERROR_NONE)
1173                         media_svc_error("fail to free tag attr - err(%x)", mmf_error);
1174         }       else {
1175                 content_info->media_meta.title = __media_svc_get_title(NULL, content_info->path);
1176                 content_info->album_id = album_id;
1177         }
1178
1179         /*Get Content attribute ===========*/
1180         if (cdis_value == 1)
1181                 mmf_error = mm_file_create_content_attrs_safe(&content, content_info->path);
1182         else
1183                 mmf_error = mm_file_create_content_attrs_simple(&content, content_info->path);
1184
1185         media_svc_retvm_if(mmf_error != FILEINFO_ERROR_NONE, MS_MEDIA_ERR_NONE, "mm_file_create_content_attrs failed");
1186
1187         if (content_info->media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
1188                 int audio_bitrate = 0;
1189                 int video_bitrate = 0;
1190
1191                 mm_file_get_attrs(content, MM_FILE_CONTENT_DURATION, &content_info->media_meta.duration,
1192                         MM_FILE_CONTENT_AUDIO_BITRATE, &audio_bitrate,
1193                         MM_FILE_CONTENT_VIDEO_BITRATE, &video_bitrate,
1194                         MM_FILE_CONTENT_VIDEO_WIDTH, &content_info->media_meta.width,
1195                         MM_FILE_CONTENT_VIDEO_HEIGHT, &content_info->media_meta.height,
1196                         NULL);
1197
1198                 content_info->media_meta.bitrate = audio_bitrate + video_bitrate;
1199         } else {
1200                 mm_file_get_attrs(content, MM_FILE_CONTENT_DURATION, &content_info->media_meta.duration,
1201                         MM_FILE_CONTENT_AUDIO_BITRATE, &content_info->media_meta.bitrate,
1202                         MM_FILE_CONTENT_AUDIO_SAMPLERATE, &content_info->media_meta.samplerate,
1203                         MM_FILE_CONTENT_AUDIO_CHANNELS, &content_info->media_meta.channel,
1204                         MM_FILE_CONTENT_AUDIO_BITPERSAMPLE, &content_info->media_meta.bitpersample,
1205                         NULL);
1206         }
1207
1208         mm_file_destroy_content_attrs(content);
1209
1210         return MS_MEDIA_ERR_NONE;
1211 }
1212
1213 void _media_svc_destroy_content_info(media_svc_content_info_s *content_info)
1214 {
1215         media_svc_retm_if(content_info == NULL, "content info is NULL");
1216
1217         /* Delete media_svc_content_info_s */
1218         g_free(content_info->media_uuid);
1219         g_free(content_info->path);
1220         g_free(content_info->file_name);
1221         g_free(content_info->mime_type);
1222         g_free(content_info->folder_uuid);
1223         g_free(content_info->thumbnail_path);
1224         g_free(content_info->storage_uuid);
1225
1226         /* Delete media_svc_content_meta_s */
1227         g_free(content_info->media_meta.title);
1228         g_free(content_info->media_meta.album);
1229         g_free(content_info->media_meta.artist);
1230         g_free(content_info->media_meta.album_artist);
1231         g_free(content_info->media_meta.genre);
1232         g_free(content_info->media_meta.composer);
1233         g_free(content_info->media_meta.year);
1234         g_free(content_info->media_meta.recorded_date);
1235         g_free(content_info->media_meta.copyright);
1236         g_free(content_info->media_meta.track_num);
1237         g_free(content_info->media_meta.description);
1238         g_free(content_info->media_meta.datetaken);
1239         g_free(content_info->media_meta.exposure_time);
1240         g_free(content_info->media_meta.model);
1241
1242         g_free(content_info->file_name_pinyin);
1243         g_free(content_info->media_meta.title_pinyin);
1244         g_free(content_info->media_meta.album_pinyin);
1245         g_free(content_info->media_meta.artist_pinyin);
1246         g_free(content_info->media_meta.album_artist_pinyin);
1247         g_free(content_info->media_meta.genre_pinyin);
1248         g_free(content_info->media_meta.composer_pinyin);
1249         g_free(content_info->media_meta.copyright_pinyin);
1250         g_free(content_info->media_meta.description_pinyin);
1251 }
1252
1253 int _media_svc_create_thumbnail(const char *path, char *thumb_path, media_svc_media_type_e media_type, uid_t uid)
1254 {
1255         int ret = MS_MEDIA_ERR_NONE;
1256
1257         media_svc_retvm_if(!path, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid path");
1258         media_svc_retvm_if(!thumb_path, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid thumb_path");
1259         media_svc_retvm_if(!g_file_test(path, G_FILE_TEST_IS_REGULAR), MS_MEDIA_ERR_INVALID_PARAMETER, "File doesn't exist[%s]", path);
1260
1261         ms_user_storage_type_e store_type = -1;
1262         ret = ms_user_get_storage_type(uid, path, &store_type);
1263
1264         if ((ret != MS_MEDIA_ERR_NONE) || ((store_type != MS_USER_STORAGE_INTERNAL) && (store_type != MS_USER_STORAGE_EXTERNAL))) {
1265                 media_svc_sec_error("origin path(%s) is invalid. err : [%d] store_type [%d]", path, ret, store_type);
1266                 return MS_MEDIA_ERR_INVALID_PARAMETER;
1267         }
1268
1269         media_svc_sec_debug("Path[%s] Type[%d]", path, media_type);
1270
1271         //1. make hash path
1272         ret = _media_svc_get_thumbnail_path(media_type, thumb_path, path, NULL, uid);
1273         if (ret != MS_MEDIA_ERR_NONE) {
1274                 media_svc_error("_media_svc_get_thumbnail_path failed - %d", ret);
1275                 SAFE_STRLCPY(thumb_path, "", MAX_FILEPATH_LEN);
1276                 return ret;
1277         }
1278
1279         //2. save thumbnail
1280         if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE)
1281                 return create_image_thumbnail_to_file(path, CONTENT_THUMB_DEFAULT_WIDTH, CONTENT_THUMB_DEFAULT_HEIGHT, thumb_path, true);
1282         else
1283                 return create_video_thumbnail_to_file(path, CONTENT_THUMB_DEFAULT_WIDTH, CONTENT_THUMB_DEFAULT_HEIGHT, thumb_path, true);
1284
1285 }
1286
1287 int _media_svc_get_pinyin_str(const char *src_str, char **pinyin_str)
1288 {
1289         int ret = MS_MEDIA_ERR_NONE;
1290         int size = 0;
1291         pinyin_name_s *pinyinname = NULL;
1292
1293         media_svc_retvm_if(!STRING_VALID(src_str), MS_MEDIA_ERR_INVALID_PARAMETER, "String is NULL");
1294         media_svc_retvm_if(pinyin_str == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "pinyin_str is NULL");
1295
1296         *pinyin_str = NULL;
1297
1298         ret = _media_svc_convert_chinese_to_pinyin(src_str, &pinyinname, &size);
1299         if (ret == MS_MEDIA_ERR_NONE) {
1300                 if (size > 0 && STRING_VALID(pinyinname[0].pinyin_name))
1301                         *pinyin_str = g_strdup(pinyinname[0].pinyin_name);
1302                 else
1303                         *pinyin_str = g_strdup(src_str);        /* Return Original Non China Character */
1304         }
1305
1306         _media_svc_pinyin_free(pinyinname, size);
1307
1308         return ret;
1309 }
1310
1311 bool _media_svc_check_pinyin_support(void)
1312 {
1313         int ret = SYSTEM_INFO_ERROR_NONE;
1314         bool is_supported = false;
1315         static int media_svc_pinyin_support = -1;
1316
1317         if (media_svc_pinyin_support == -1) {
1318                 ret = system_info_get_platform_bool("http://tizen.org/feature/content.filter.pinyin", &is_supported);
1319                 if (ret != SYSTEM_INFO_ERROR_NONE) {
1320                         media_svc_debug("SYSTEM_INFO_ERROR: content.filter.pinyin [%d]", ret);
1321                         return false;
1322                 }
1323
1324                 media_svc_pinyin_support = is_supported;
1325         }
1326
1327         return media_svc_pinyin_support;
1328 }
1329
1330 int _media_svc_get_media_type(const char *path, int *mediatype)
1331 {
1332         int ret = MS_MEDIA_ERR_NONE;
1333         char mime_type[256] = {0};
1334         media_svc_media_type_e media_type = MEDIA_SVC_MEDIA_TYPE_OTHER;
1335
1336         media_svc_retvm_if(mediatype == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "mediatype is NULL");
1337
1338         ret = __media_svc_get_mime_type(path, mime_type);
1339         if (ret == MS_MEDIA_ERR_NONE)
1340                 __media_svc_get_media_type(path, mime_type, &media_type);
1341         else
1342                 media_svc_error("__media_svc_get_mime_type failed");
1343
1344         *mediatype = media_type;
1345
1346         return ret;
1347 }
1348
1349 bool _media_svc_is_valid_storage_type(ms_user_storage_type_e storage_type)
1350 {
1351         switch (storage_type) {
1352         case MS_USER_STORAGE_INTERNAL:
1353         case MS_USER_STORAGE_EXTERNAL:
1354         case MS_USER_STORAGE_EXTERNAL_USB:
1355                 return true;
1356         default:
1357                 media_svc_error("storage type is incorrect[%d]", storage_type);
1358                 return false;
1359         }
1360 }