Remove __media_svc_resize_artwork()
[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
504         media_svc_sec_debug("start save image, path [%s] image size [%d]", image_path, size);
505
506         if (!image) {
507                 media_svc_error("invalid image..");
508                 return MS_MEDIA_ERR_INVALID_PARAMETER;
509         }
510
511         struct statfs fs;
512         char *thumb_path = NULL;
513         ret = ms_user_get_root_thumb_store_path(uid, &thumb_path);
514         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "ms_user_get_root_thumb_store_path fail");
515
516         if (-1 == statfs(thumb_path, &fs)) {
517                 media_svc_error("error in statfs");
518                 g_free(thumb_path);
519                 return MS_MEDIA_ERR_INTERNAL;
520         }
521
522         g_free(thumb_path);
523
524         long bsize_kbytes = fs.f_bsize >> 10;
525
526         if ((bsize_kbytes * fs.f_bavail) < 1024) {
527                 media_svc_error("not enought space...");
528                 return MS_MEDIA_ERR_NOT_ENOUGH_SPACE;
529         }
530
531         FILE *fp = NULL;
532         int nwrite = -1;
533         if (image != NULL && size > 0) {
534                 fp = fopen(image_path, "w");
535
536                 if (fp == NULL) {
537                         media_svc_error("failed to open file");
538                         return MS_MEDIA_ERR_INTERNAL;
539                 }
540
541                 nwrite = fwrite(image, 1, size, fp);
542                 if (nwrite != size) {
543                         media_svc_error("failed to write thumbnail");
544                         fclose(fp);
545                         return MS_MEDIA_ERR_INTERNAL;
546                 }
547                 fclose(fp);
548         }
549
550         return MS_MEDIA_ERR_NONE;
551 }
552
553 static char *__media_svc_get_title_from_filepath(const char *path)
554 {
555         char *filename = NULL;
556         char *title = NULL;
557         char    *ext = NULL;
558         int filename_len = -1;
559         int new_title_len = -1;
560
561         if (!path) {
562                 media_svc_error("path is NULL");
563                 return NULL;
564         }
565
566         filename = g_path_get_basename(path);
567         if (!STRING_VALID(filename)) {
568                 media_svc_error("wrong file name");
569                 g_free(filename);
570                 return NULL;
571         }
572
573         filename_len = strlen(filename);
574
575         ext = g_strrstr(filename, ".");
576         if (!ext) {
577                 media_svc_error("there is no file extention");
578                 return filename;
579         }
580
581         new_title_len = filename_len - strlen(ext);
582         if (new_title_len < 1) {
583                 media_svc_error("title length is zero");
584                 g_free(filename);
585                 return NULL;
586         }
587
588         title = g_strndup(filename, new_title_len < MEDIA_SVC_PATHNAME_SIZE ? new_title_len : MEDIA_SVC_PATHNAME_SIZE - 1);
589
590         g_free(filename);
591
592         media_svc_debug("extract title is [%s]", title);
593
594         return title;
595 }
596
597 void _media_svc_remove_file(const char *path)
598 {
599         if (!STRING_VALID(path))
600                 return;
601
602         if (remove(path) != 0)
603                 media_svc_stderror("fail to remove file result");
604 }
605
606 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)
607 {
608         int ret = MS_MEDIA_ERR_NONE;
609         char file_ext[MEDIA_SVC_FILE_EXT_LEN_MAX + 1] = {0, };
610         char hash[255 + 1] = {0, };
611         char *thumb_dir = NULL;
612         char *thumbfile_ext = NULL;
613
614         ret = ms_user_get_root_thumb_store_path(uid, &thumb_dir);
615         if (!STRING_VALID(thumb_dir)) {
616                 media_svc_error("ms_user_get_root_thumb_store_path failed");
617                 return MS_MEDIA_ERR_INTERNAL;
618         }
619
620         if (!g_file_test(thumb_dir, G_FILE_TEST_IS_DIR)) {
621                 media_svc_error("Wrong path[%s]", thumb_dir);
622                 g_free(thumb_dir);
623                 return MS_MEDIA_ERR_INTERNAL;
624         }
625
626         memset(file_ext, 0, sizeof(file_ext));
627         if (!__media_svc_get_file_ext(pathname, file_ext))
628                 media_svc_error("get file ext fail");
629
630         ret = mb_svc_generate_hash_code(pathname, hash, sizeof(hash));
631         if (ret != MS_MEDIA_ERR_NONE) {
632                 media_svc_error("mb_svc_generate_hash_code failed : %d", ret);
633                 g_free(thumb_dir);
634                 return MS_MEDIA_ERR_INTERNAL;
635         }
636
637         if (media_type == MEDIA_SVC_MEDIA_TYPE_MUSIC) {
638                 if ((strstr(img_format, "jpeg") != NULL) || (strstr(img_format, "jpg") != NULL) || (strstr(img_format, "JPG") != NULL)) {
639                         thumbfile_ext = (char *)"jpg";
640                 } else if ((strstr(img_format, "png") != NULL) || (strstr(img_format, "PNG") != NULL)) {
641                         thumbfile_ext = (char *)"png";
642                 } else if ((strstr(img_format, "gif") != NULL) || (strstr(img_format, "GIF") != NULL)) {
643                         thumbfile_ext = (char *)"gif";
644                 } else if ((strstr(img_format, "bmp") != NULL) || (strstr(img_format, "BMP") != NULL)) {
645                         thumbfile_ext = (char *)"bmp";
646                 } else {
647                         media_svc_error("Not proper img format");
648                         g_free(thumb_dir);
649                         return MS_MEDIA_ERR_INTERNAL;
650                 }
651
652                 snprintf(thumb_path, MEDIA_SVC_PATHNAME_SIZE, "%s/.%s-%s.%s", thumb_dir, file_ext, hash, thumbfile_ext);
653         } else {
654                 if (strcasecmp(file_ext, "PNG") == 0)
655                         snprintf(thumb_path, MEDIA_SVC_PATHNAME_SIZE, "%s/.%s-%s.png", thumb_dir, file_ext, hash);
656                 else
657                         snprintf(thumb_path, MEDIA_SVC_PATHNAME_SIZE, "%s/.%s-%s.jpg", thumb_dir, file_ext, hash);
658         }
659
660         g_free(thumb_dir);
661
662         return MS_MEDIA_ERR_NONE;
663 }
664
665 int _media_svc_get_file_time(const char *full_path)
666 {
667         struct stat statbuf = { 0, };
668
669         if (stat(full_path, &statbuf) == -1) {
670                 media_svc_stderror("stat fails.");
671                 return 0;
672         }
673
674         return statbuf.st_mtime;
675 }
676
677 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)
678 {
679         int ret = MS_MEDIA_ERR_NONE;
680         bool drm_type = false;
681         char mime_type[256] = {0, };
682         media_svc_media_type_e media_type;
683
684         media_svc_retvm_if(!_media_svc_is_valid_storage_type(storage_type), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
685         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
686
687         content_info->path = g_strdup(path);
688         media_svc_retv_del_if(content_info->path == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
689
690         struct stat st;
691         memset(&st, 0, sizeof(struct stat));
692         if (stat(path, &st) == 0) {
693                 content_info->modified_time = st.st_mtime;
694                 content_info->timeline = content_info->modified_time;
695                 content_info->size = st.st_size;
696         } else {
697                 media_svc_stderror("stat failed");
698         }
699
700         /* refresh is TRUE when file modified. so only modified_time and size are changed*/
701         if (refresh) {
702                 media_svc_debug("refresh");
703                 return MS_MEDIA_ERR_NONE;
704         }
705
706         content_info->storage_uuid = g_strdup(storage_id);
707         media_svc_retv_del_if(content_info->storage_uuid == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
708
709         content_info->storage_type = storage_type;
710         time(&content_info->added_time);
711
712         content_info->media_uuid = _media_info_generate_uuid();
713         media_svc_retv_del_if(content_info->media_uuid == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
714
715         content_info->file_name = g_path_get_basename(path);
716         media_svc_retv_del_if(content_info->file_name == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
717
718         /* if the file is DRM file, drm_type value is DRM_TRUE(1).
719         if drm_contentinfo is not NULL, the file is OMA DRM.*/
720         ret = __media_svc_get_mime_type(path, mime_type);
721         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, content_info);
722
723         media_svc_debug("mime [%s]", mime_type);
724         content_info->is_drm = drm_type;
725
726         ret = __media_svc_get_media_type(path, mime_type, &media_type);
727         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, content_info);
728
729         content_info->mime_type = g_strdup(mime_type);
730         media_svc_retv_del_if(content_info->mime_type == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
731
732         media_svc_sec_debug("storage[%d], path[%s], media_type[%d]", storage_type, path, media_type);
733
734         content_info->media_type = media_type;
735
736         return MS_MEDIA_ERR_NONE;
737 }
738
739 static int __image_360_check(const char *path)
740 {
741         FILE *fp = NULL;
742         size_t size = 0, app1_size = 0, exif_app1_xmp_size = 0;
743         unsigned char exif_header[4] = {0, };
744         unsigned char exif_app1[2] = {0, };
745         unsigned char exif_app1_xmp[2] = {0, };
746         unsigned char exif_app1_xmp_t[2] = {0, };
747         GString *xmp_data = NULL;
748         int fdata = 0;
749         int result = 0;
750
751         memset(exif_header, 0x00, sizeof(exif_header));
752         memset(exif_app1, 0x00, sizeof(exif_app1));
753         memset(exif_app1_xmp, 0x00, sizeof(exif_app1_xmp));
754         memset(exif_app1_xmp_t, 0x00, sizeof(exif_app1_xmp_t));
755
756         fp = fopen(path, "rb");
757         if (fp == NULL)
758                 goto ERROR;
759
760         size = fread(exif_header, 1, sizeof(exif_header), fp);
761         if (size != sizeof(exif_header))
762                 goto ERROR;
763
764         if ((exif_header[0] == 0xff) && (exif_header[1] == 0xd8) && (exif_header[2] == 0xff) && (exif_header[3] == 0xe1)) {
765                 size = fread(exif_app1, 1, sizeof(exif_app1), fp);
766                 if (size != sizeof(exif_app1))
767                         goto ERROR;
768
769                 if ((size_t)((exif_app1[0] << 8) | (exif_app1[1])) <= 2)
770                         goto ERROR;
771
772                 app1_size = (size_t)((exif_app1[0] << 8) | (exif_app1[1])) - 2 ;
773                 if (fseek(fp, app1_size, SEEK_CUR) != 0)
774                         goto ERROR;
775
776                 size = fread(exif_app1_xmp, 1, sizeof(exif_app1_xmp), fp);
777                 if (size != sizeof(exif_app1_xmp))
778                         goto ERROR;
779
780                 if ((exif_app1_xmp[0] == 0xff) && (exif_app1_xmp[1] == 0xe1)) {
781                         size = fread(exif_app1_xmp_t, 1, sizeof(exif_app1_xmp_t), fp);
782                         if (size != sizeof(exif_app1_xmp_t))
783                                 goto ERROR;
784
785                         if ((size_t)((exif_app1_xmp_t[0] << 8) | (exif_app1_xmp_t[1])) <= 2)
786                                 goto ERROR;
787
788                         exif_app1_xmp_size = (size_t)((exif_app1_xmp_t[0] << 8) | (exif_app1_xmp_t[1])) - 2;
789
790                         xmp_data = g_string_sized_new(exif_app1_xmp_size);
791
792                         do {
793                                 exif_app1_xmp_size--;
794                                 fdata = fgetc(fp);
795                                 if (fdata == EOF)
796                                         continue;
797                                 if (fdata == '\0')
798                                         continue;
799
800                                 xmp_data = g_string_append_c(xmp_data, (gchar)fdata);
801                         } while (exif_app1_xmp_size > 0);
802
803                         if (strstr(xmp_data->str, "UsePanoramaViewer") &&
804                                 strstr(xmp_data->str, "True") &&
805                                 strstr(xmp_data->str, "ProjectionType") &&
806                                 strstr(xmp_data->str, "equirectangular"))
807                                 result = 1;
808
809                         g_string_free(xmp_data, TRUE);
810                 }
811         }
812
813 ERROR:
814         if (fp) {
815                 fclose(fp);
816                 fp = NULL;
817         }
818
819         return result;
820 }
821
822 static char * __media_svc_get_title(MMHandleType tag, const char *path)
823 {
824         int ret = FILEINFO_ERROR_NONE;
825         char *p = NULL;
826         int size = 0;
827         char *title = NULL;
828
829         if (tag) {
830                 ret = mm_file_get_attrs(tag, MM_FILE_TAG_TITLE, &p, &size, NULL);
831                 if (ret == FILEINFO_ERROR_NONE && size > 0) {
832                         while(p && isspace(*p))
833                                 p++;
834
835                         return g_strdup(p);
836                 }
837         }
838
839         title = __media_svc_get_title_from_filepath(path);
840         if (title)
841                 return title;
842
843         media_svc_error("Can't extract title");
844
845         return g_strdup(MEDIA_SVC_TAG_UNKNOWN);
846 }
847
848 char * _media_svc_get_title_by_path(const char *path)
849 {
850         /* No MMHandleType in media-svc.c */
851         return __media_svc_get_title(NULL, path);
852 }
853
854 int _media_svc_extract_image_metadata(media_svc_content_info_s *content_info)
855 {
856         double value = 0.0;
857         int orient_value = 0;
858         int exif_width = 0;
859         int exif_height = 0;
860         ExifData *ed = NULL;
861         bool has_datetaken = false;
862         double fnumber = 0.0;
863         int iso = 0;
864         char *path = NULL;
865
866         char buf[MEDIA_SVC_METADATA_LEN_MAX + 1] = { '\0' };
867
868         media_svc_retvm_if(!content_info, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid content_info");
869         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);
870         media_svc_retvm_if(!STRING_VALID(content_info->path), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid path");
871
872         path = content_info->path;
873         content_info->media_meta.title = __media_svc_get_title(NULL, path);
874
875         content_info->media_meta.latitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
876         content_info->media_meta.longitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
877         content_info->media_meta.altitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
878
879         /* Not used. But to preserved the behavior, set MEDIA_SVC_TAG_UNKNOWN. */
880         content_info->media_meta.album = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
881         content_info->media_meta.artist = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
882         content_info->media_meta.album_artist = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
883         content_info->media_meta.genre = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
884         content_info->media_meta.composer = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
885         content_info->media_meta.year = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
886         content_info->media_meta.copyright = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
887         content_info->media_meta.track_num = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
888
889         /* Load an ExifData object from an EXIF file */
890         ed = exif_data_new_from_file(path);
891         if (!ed) {
892                 media_svc_sec_debug("There is no exif data in [ %s ]", path);
893                 goto GET_WIDTH_HEIGHT;
894         }
895
896         content_info->media_meta.is_360 = __image_360_check(path);
897
898         memset(buf, 0x00, sizeof(buf));
899         if (__media_svc_get_exif_gps_double(ed, &value, EXIF_TAG_GPS_LATITUDE) == MS_MEDIA_ERR_NONE) {
900                 if (__media_svc_get_exif_gps_str(ed, buf, EXIF_TAG_GPS_LATITUDE_REF) == MS_MEDIA_ERR_NONE) {
901                         if (!g_strcmp0(buf, "S"))
902                                 value *= -1;
903                         content_info->media_meta.latitude = value;
904                 }
905         }
906
907         memset(buf, 0x00, sizeof(buf));
908         if (__media_svc_get_exif_gps_double(ed, &value, EXIF_TAG_GPS_LONGITUDE) == MS_MEDIA_ERR_NONE) {
909                 if (__media_svc_get_exif_gps_str(ed, buf, EXIF_TAG_GPS_LONGITUDE_REF) == MS_MEDIA_ERR_NONE) {
910                         if (!g_strcmp0(buf, "W"))
911                                 value *= -1;
912
913                         content_info->media_meta.longitude = value;
914                 }
915         }
916
917         memset(buf, 0x00, sizeof(buf));
918         if (__media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_IMAGE_DESCRIPTION) == MS_MEDIA_ERR_NONE) {
919                 if (strlen(buf) > 0)
920                         content_info->media_meta.description = g_strdup(buf);
921                 else
922                         content_info->media_meta.description = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
923         }
924
925         memset(buf, 0x00, sizeof(buf));
926         if (!has_datetaken && __media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_DATE_TIME_ORIGINAL) == MS_MEDIA_ERR_NONE) {
927                 if (strlen(buf) > 0) {
928                         has_datetaken = true;
929                         content_info->media_meta.datetaken = g_strdup(buf);
930
931                         /* This is same as recorded_date */
932                         content_info->media_meta.recorded_date = g_strdup(buf);
933                 }
934         }
935
936         memset(buf, 0x00, sizeof(buf));
937         if (!has_datetaken && __media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_DATE_TIME) == MS_MEDIA_ERR_NONE) {
938                 if (strlen(buf) > 0) {
939                         has_datetaken = true;
940                         content_info->media_meta.datetaken = g_strdup(buf);
941
942                         /* This is same as recorded_date */
943                         content_info->media_meta.recorded_date = g_strdup(buf);
944                 }
945         }
946
947         if (has_datetaken) {
948                 content_info->timeline = __media_svc_get_timeline_from_str(content_info->media_meta.datetaken);
949                 if (content_info->timeline == 0)
950                         content_info->timeline = content_info->modified_time;
951                 else
952                         media_svc_debug("Timeline : %ld", content_info->timeline);
953         }
954
955         memset(buf, 0x00, sizeof(buf));
956         /* Get exposure_time value from exif. */
957         if (__media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_EXPOSURE_TIME) == MS_MEDIA_ERR_NONE) {
958                 if (strlen(buf) > 0)
959                         content_info->media_meta.exposure_time = g_strdup(buf);
960         }
961
962         /* Get fnumber value from exif. */
963         if (__media_svc_get_exif_info(ed, NULL, NULL, &fnumber, EXIF_TAG_FNUMBER) == MS_MEDIA_ERR_NONE)
964                 content_info->media_meta.fnumber = fnumber;
965
966         /* Get iso value from exif. */
967         if (__media_svc_get_exif_info(ed, NULL, &iso, NULL, EXIF_TAG_ISO_SPEED_RATINGS) == MS_MEDIA_ERR_NONE)
968                 content_info->media_meta.iso = iso;
969
970         memset(buf, 0x00, sizeof(buf));
971         /* Get model value from exif. */
972         if (__media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_MODEL) == MS_MEDIA_ERR_NONE) {
973                 if (strlen(buf) > 0)
974                         content_info->media_meta.model = g_strdup(buf);
975         }
976
977         /* Get orientation value from exif. */
978         if (__media_svc_get_exif_info(ed, NULL, &orient_value, NULL, EXIF_TAG_ORIENTATION) == MS_MEDIA_ERR_NONE) {
979                 if (orient_value >= NOT_AVAILABLE && orient_value <= ROT_270)
980                         content_info->media_meta.orientation = orient_value;
981         }
982
983         /* Get width value from exif. */
984         if (__media_svc_get_exif_info(ed, NULL, &exif_width, NULL, EXIF_TAG_PIXEL_X_DIMENSION) == MS_MEDIA_ERR_NONE) {
985                 if (exif_width > 0)
986                         content_info->media_meta.width = exif_width;
987         }
988
989         /* Get height value from exif. */
990         if (__media_svc_get_exif_info(ed, NULL, &exif_height, NULL, EXIF_TAG_PIXEL_Y_DIMENSION) == MS_MEDIA_ERR_NONE) {
991                 if (exif_height > 0)
992                         content_info->media_meta.height = exif_height;
993         }
994
995         if (ed)
996                 exif_data_unref(ed);
997
998 GET_WIDTH_HEIGHT:
999
1000         if (content_info->media_meta.width == 0 || content_info->media_meta.height == 0) {
1001                 /*Get image width, height*/
1002                 unsigned int img_width = 0;
1003                 unsigned int img_height = 0;
1004                 mm_util_img_codec_type img_type = IMG_CODEC_UNKNOWN_TYPE;
1005
1006                 mm_util_extract_image_info(path, &img_type, &img_width, &img_height);
1007                 if (content_info->media_meta.width == 0)
1008                         content_info->media_meta.width = img_width;
1009
1010                 if (content_info->media_meta.height == 0)
1011                         content_info->media_meta.height = img_height;
1012         }
1013
1014         return MS_MEDIA_ERR_NONE;
1015 }
1016
1017 static char * __media_svc_get_tag_str_value(MMHandleType tag, const char *tag_name)
1018 {
1019         int ret = FILEINFO_ERROR_NONE;
1020         char *p = NULL;
1021         int size = 0;
1022
1023         ret = mm_file_get_attrs(tag, tag_name, &p, &size, NULL);
1024         if (ret == FILEINFO_ERROR_NONE && size > 0)
1025                 return g_strdup(p);
1026
1027         return g_strdup(MEDIA_SVC_TAG_UNKNOWN);
1028 }
1029
1030 int _media_svc_extract_music_metadata_for_update(media_svc_content_info_s *content_info, const char *path)
1031 {
1032         MMHandleType tag = 0;
1033         int mmf_error = FILEINFO_ERROR_NONE;
1034
1035         content_info->path = g_strdup(path);
1036
1037         mmf_error = mm_file_create_tag_attrs_no_albumart(&tag, content_info->path);
1038         if (mmf_error == FILEINFO_ERROR_NONE) {
1039                 content_info->media_meta.title = __media_svc_get_title(tag, content_info->path);
1040                 content_info->media_meta.album = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ALBUM);
1041                 content_info->media_meta.artist = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ARTIST);
1042                 content_info->media_meta.album_artist = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ALBUM_ARTIST);
1043                 content_info->media_meta.genre = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_GENRE);
1044                 content_info->media_meta.description = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_DESCRIPTION);
1045                 content_info->media_meta.composer = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_AUTHOR);
1046                 content_info->media_meta.copyright = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_COPYRIGHT);
1047         } else {
1048                 content_info->media_meta.title = __media_svc_get_title(NULL, content_info->path);
1049         }
1050
1051         mm_file_destroy_tag_attrs(tag);
1052
1053         return MS_MEDIA_ERR_NONE;
1054 }
1055
1056 int _media_svc_extract_media_metadata(sqlite3 *handle, bool is_direct, media_svc_content_info_s *content_info, uid_t uid)
1057 {
1058         MMHandleType content = 0;
1059         MMHandleType tag = 0;
1060         char *p = NULL;
1061         unsigned char *image = NULL;
1062         unsigned int size = 0;
1063         int mmf_error = FILEINFO_ERROR_NONE;
1064         int album_id = 0;
1065         int ret = MS_MEDIA_ERR_NONE;
1066         int convert_value = 0;
1067         int cdis_value = 0;
1068
1069         /*Get Content Tag attribute ===========*/
1070         if (content_info->storage_type == MS_USER_STORAGE_EXTERNAL_USB)
1071                 mmf_error = mm_file_create_tag_attrs_no_albumart(&tag, content_info->path);
1072         else
1073                 mmf_error = mm_file_create_tag_attrs(&tag, content_info->path);
1074
1075         if (mmf_error == FILEINFO_ERROR_NONE) {
1076                 content_info->media_meta.title = __media_svc_get_title(tag, content_info->path);
1077                 content_info->media_meta.album = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ALBUM);
1078                 content_info->media_meta.artist = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ARTIST);
1079                 content_info->media_meta.album_artist = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ALBUM_ARTIST);
1080                 content_info->media_meta.genre = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_GENRE);
1081                 content_info->media_meta.description = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_DESCRIPTION);
1082                 content_info->media_meta.composer = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_AUTHOR);
1083                 content_info->media_meta.copyright = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_COPYRIGHT);
1084                 content_info->media_meta.track_num = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_TRACK_NUM);
1085
1086                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_RECDATE, &p, &size, NULL);
1087                 if ((mmf_error == FILEINFO_ERROR_NONE) && (size > 0)) {
1088                         if (g_str_has_suffix(content_info->mime_type, "mp4") || g_str_has_suffix(content_info->mime_type, "3gpp")) {
1089                                 /*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*/
1090                                 char *p_value = g_strdelimit(g_strdup(p), "-", ':');
1091                                 content_info->media_meta.recorded_date = g_strdup_printf("%s +0000", p_value);
1092                                 g_free(p_value);
1093                         } else {
1094                                 content_info->media_meta.recorded_date = g_strdup(p);
1095                         }
1096
1097                         if (STRING_VALID(content_info->media_meta.recorded_date)) {
1098                                 content_info->timeline = __media_svc_get_timeline_from_str(content_info->media_meta.recorded_date);
1099                                 if (content_info->timeline == 0)
1100                                         content_info->timeline = content_info->modified_time;
1101
1102                                 /* This is same as datetaken */
1103                                 /* Remove compensation string */
1104                                 if (strlen(content_info->media_meta.recorded_date) > MEDIA_SVC_DEFAULT_FORMAT_LEN) {
1105                                         content_info->media_meta.datetaken = g_strndup(content_info->media_meta.recorded_date, MEDIA_SVC_DEFAULT_FORMAT_LEN);
1106                                         g_free(content_info->media_meta.recorded_date);
1107                                         content_info->media_meta.recorded_date = g_strdup(content_info->media_meta.datetaken);
1108                                 } else {
1109                                         content_info->media_meta.datetaken = g_strdup(content_info->media_meta.recorded_date);
1110                                 }
1111                         }
1112                 }
1113
1114                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_DATE, &p, &size, NULL);
1115                 if (mmf_error == FILEINFO_ERROR_NONE && size == 4) {
1116                         if (__media_svc_safe_atoi(p, &convert_value) == MS_MEDIA_ERR_NONE)
1117                                 content_info->media_meta.year = g_strdup(p);
1118                 }
1119
1120                 if (!content_info->media_meta.year)
1121                                 content_info->media_meta.year = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
1122
1123                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_RATING, &p, &size, NULL);
1124                 if (mmf_error == FILEINFO_ERROR_NONE && size > 0) {
1125                         if (__media_svc_safe_atoi(p, &convert_value) == MS_MEDIA_ERR_NONE)
1126                                 content_info->media_meta.rating = convert_value;
1127                 } else {
1128                         content_info->media_meta.rating = 0;
1129                 }
1130
1131                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_SPHERICAL, &content_info->media_meta.is_360, NULL);
1132
1133                 /*Do not extract artwork for the USB Storage content*/
1134                 if (content_info->storage_type != MS_USER_STORAGE_EXTERNAL_USB) {
1135                         mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ARTWORK, &image, &size, NULL);
1136                         if (mmf_error != FILEINFO_ERROR_NONE)
1137                                 media_svc_error("fail to get tag artwork - err(%x)", mmf_error);
1138
1139                         mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ARTWORK_SIZE, &size, NULL);
1140                         if (mmf_error != FILEINFO_ERROR_NONE)
1141                                 media_svc_error("fail to get artwork size - err(%x)", mmf_error);
1142
1143                         if (image != NULL && size > 0) {
1144                                 char thumb_path[MEDIA_SVC_PATHNAME_SIZE] = "\0";
1145                                 int artwork_mime_size = -1;
1146
1147                                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ARTWORK_MIME, &p, &artwork_mime_size, NULL);
1148                                 if ((mmf_error == FILEINFO_ERROR_NONE) && (artwork_mime_size > 0)) {
1149                                         ret = _media_svc_get_thumbnail_path(content_info->media_type, thumb_path, content_info->path, p, uid);
1150                                         if (ret != MS_MEDIA_ERR_NONE) {
1151                                                 media_svc_error("Fail to Get Thumbnail Path");
1152                                         } else {
1153                                                 ret = __media_svc_save_image(image, size, thumb_path, uid);
1154                                                 if (ret != MS_MEDIA_ERR_NONE) {
1155                                                         media_svc_error("Fail to Save Image");
1156                                                 } else {
1157                                                         content_info->thumbnail_path = g_strdup(thumb_path);
1158                                                 }
1159                                         }
1160                                 }
1161                         }
1162                 }
1163
1164                 /*Initialize album_id to 0. below code will set the album_id*/
1165                 content_info->album_id = album_id;
1166                 ret = _media_svc_get_album_id(handle, content_info->media_meta.album, content_info->media_meta.artist, &album_id);
1167                 if (ret != MS_MEDIA_ERR_NONE) {
1168                         if (ret == MS_MEDIA_ERR_DB_NO_RECORD) {
1169                                 media_svc_debug("album does not exist. So start to make album art");
1170                                 if ((g_strcmp0(content_info->media_meta.album, MEDIA_SVC_TAG_UNKNOWN)) &&
1171                                         (g_strcmp0(content_info->media_meta.artist, MEDIA_SVC_TAG_UNKNOWN)))
1172                                         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);
1173                                 else
1174                                         ret = _media_svc_append_album(handle, is_direct, content_info->media_meta.album, content_info->media_meta.artist, NULL, &album_id, uid);
1175
1176                                 content_info->album_id = album_id;
1177                         }
1178                 } else {
1179                         content_info->album_id = album_id;
1180                 }
1181
1182                 content_info->media_meta.longitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
1183                 content_info->media_meta.latitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
1184                 content_info->media_meta.altitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
1185
1186                 if (content_info->media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
1187                         double longitude = 0.0;
1188                         double latitude = 0.0;
1189                         double altitude = 0.0;
1190
1191                         mm_file_get_attrs(tag, MM_FILE_TAG_LONGITUDE, &longitude,
1192                                 MM_FILE_TAG_LATIDUE, &latitude,
1193                                 MM_FILE_TAG_ALTIDUE, &altitude,
1194                                 NULL);
1195
1196                         content_info->media_meta.longitude = (longitude == 0.0) ? MEDIA_SVC_DEFAULT_GPS_VALUE : longitude;
1197                         content_info->media_meta.latitude = (latitude == 0.0) ? MEDIA_SVC_DEFAULT_GPS_VALUE : latitude;
1198                         content_info->media_meta.altitude = (altitude == 0.0) ? MEDIA_SVC_DEFAULT_GPS_VALUE : altitude;
1199
1200                         mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_CDIS, &cdis_value, NULL);
1201                         if (mmf_error != FILEINFO_ERROR_NONE)
1202                                 cdis_value = 0;
1203
1204                         media_svc_debug("CDIS : %d", cdis_value);
1205
1206                         mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ROTATE, &p, &size, NULL);
1207                         if ((mmf_error == FILEINFO_ERROR_NONE) && (size > 0)) {
1208                                 content_info->media_meta.orientation = atoi(p);
1209                         } else {
1210                                 content_info->media_meta.orientation = 0;
1211                                 media_svc_debug("fail to get video orientation attr - err(%x)", mmf_error);
1212                         }
1213                 }
1214
1215                 mmf_error = mm_file_destroy_tag_attrs(tag);
1216                 if (mmf_error != FILEINFO_ERROR_NONE)
1217                         media_svc_error("fail to free tag attr - err(%x)", mmf_error);
1218         }       else {
1219                 content_info->media_meta.title = __media_svc_get_title(NULL, content_info->path);
1220                 content_info->album_id = album_id;
1221         }
1222
1223         /*Get Content attribute ===========*/
1224         if (cdis_value == 1)
1225                 mmf_error = mm_file_create_content_attrs_safe(&content, content_info->path);
1226         else
1227                 mmf_error = mm_file_create_content_attrs_simple(&content, content_info->path);
1228
1229         media_svc_retvm_if(mmf_error != FILEINFO_ERROR_NONE, MS_MEDIA_ERR_NONE, "mm_file_create_content_attrs failed");
1230
1231         if (content_info->media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
1232                 int audio_bitrate = 0;
1233                 int video_bitrate = 0;
1234
1235                 mm_file_get_attrs(content, MM_FILE_CONTENT_DURATION, &content_info->media_meta.duration,
1236                         MM_FILE_CONTENT_AUDIO_BITRATE, &audio_bitrate,
1237                         MM_FILE_CONTENT_VIDEO_BITRATE, &video_bitrate,
1238                         MM_FILE_CONTENT_VIDEO_WIDTH, &content_info->media_meta.width,
1239                         MM_FILE_CONTENT_VIDEO_HEIGHT, &content_info->media_meta.height,
1240                         NULL);
1241
1242                 content_info->media_meta.bitrate = audio_bitrate + video_bitrate;
1243         } else {
1244                 mm_file_get_attrs(content, MM_FILE_CONTENT_DURATION, &content_info->media_meta.duration,
1245                         MM_FILE_CONTENT_AUDIO_BITRATE, &content_info->media_meta.bitrate,
1246                         MM_FILE_CONTENT_AUDIO_SAMPLERATE, &content_info->media_meta.samplerate,
1247                         MM_FILE_CONTENT_AUDIO_CHANNELS, &content_info->media_meta.channel,
1248                         MM_FILE_CONTENT_AUDIO_BITPERSAMPLE, &content_info->media_meta.bitpersample,
1249                         NULL);
1250         }
1251
1252         mm_file_destroy_content_attrs(content);
1253
1254         return MS_MEDIA_ERR_NONE;
1255 }
1256
1257 void _media_svc_destroy_content_info(media_svc_content_info_s *content_info)
1258 {
1259         media_svc_retm_if(content_info == NULL, "content info is NULL");
1260
1261         /* Delete media_svc_content_info_s */
1262         g_free(content_info->media_uuid);
1263         g_free(content_info->path);
1264         g_free(content_info->file_name);
1265         g_free(content_info->mime_type);
1266         g_free(content_info->folder_uuid);
1267         g_free(content_info->thumbnail_path);
1268         g_free(content_info->storage_uuid);
1269
1270         /* Delete media_svc_content_meta_s */
1271         g_free(content_info->media_meta.title);
1272         g_free(content_info->media_meta.album);
1273         g_free(content_info->media_meta.artist);
1274         g_free(content_info->media_meta.album_artist);
1275         g_free(content_info->media_meta.genre);
1276         g_free(content_info->media_meta.composer);
1277         g_free(content_info->media_meta.year);
1278         g_free(content_info->media_meta.recorded_date);
1279         g_free(content_info->media_meta.copyright);
1280         g_free(content_info->media_meta.track_num);
1281         g_free(content_info->media_meta.description);
1282         g_free(content_info->media_meta.datetaken);
1283         g_free(content_info->media_meta.exposure_time);
1284         g_free(content_info->media_meta.model);
1285
1286         g_free(content_info->file_name_pinyin);
1287         g_free(content_info->media_meta.title_pinyin);
1288         g_free(content_info->media_meta.album_pinyin);
1289         g_free(content_info->media_meta.artist_pinyin);
1290         g_free(content_info->media_meta.album_artist_pinyin);
1291         g_free(content_info->media_meta.genre_pinyin);
1292         g_free(content_info->media_meta.composer_pinyin);
1293         g_free(content_info->media_meta.copyright_pinyin);
1294         g_free(content_info->media_meta.description_pinyin);
1295 }
1296
1297 int _media_svc_create_thumbnail(const char *path, char *thumb_path, media_svc_media_type_e media_type, uid_t uid)
1298 {
1299         int ret = MS_MEDIA_ERR_NONE;
1300
1301         media_svc_retvm_if(!path, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid path");
1302         media_svc_retvm_if(!thumb_path, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid thumb_path");
1303         media_svc_retvm_if(!g_file_test(path, G_FILE_TEST_IS_REGULAR), MS_MEDIA_ERR_INVALID_PARAMETER, "File doesn't exist[%s]", path);
1304
1305         ms_user_storage_type_e store_type = -1;
1306         ret = ms_user_get_storage_type(uid, path, &store_type);
1307
1308         if ((ret != MS_MEDIA_ERR_NONE) || ((store_type != MS_USER_STORAGE_INTERNAL) && (store_type != MS_USER_STORAGE_EXTERNAL))) {
1309                 media_svc_sec_error("origin path(%s) is invalid. err : [%d] store_type [%d]", path, ret, store_type);
1310                 return MS_MEDIA_ERR_INVALID_PARAMETER;
1311         }
1312
1313         media_svc_sec_debug("Path[%s] Type[%d]", path, media_type);
1314
1315         //1. make hash path
1316         ret = _media_svc_get_thumbnail_path(media_type, thumb_path, path, NULL, uid);
1317         if (ret != MS_MEDIA_ERR_NONE) {
1318                 media_svc_error("_media_svc_get_thumbnail_path failed - %d", ret);
1319                 SAFE_STRLCPY(thumb_path, "", MAX_FILEPATH_LEN);
1320                 return ret;
1321         }
1322
1323         //2. save thumbnail
1324         if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE)
1325                 return create_image_thumbnail_to_file(path, CONTENT_THUMB_DEFAULT_WIDTH, CONTENT_THUMB_DEFAULT_HEIGHT, thumb_path, true);
1326         else
1327                 return create_video_thumbnail_to_file(path, CONTENT_THUMB_DEFAULT_WIDTH, CONTENT_THUMB_DEFAULT_HEIGHT, thumb_path, true);
1328
1329 }
1330
1331 int _media_svc_get_pinyin_str(const char *src_str, char **pinyin_str)
1332 {
1333         int ret = MS_MEDIA_ERR_NONE;
1334         int size = 0;
1335         pinyin_name_s *pinyinname = NULL;
1336
1337         media_svc_retvm_if(!STRING_VALID(src_str), MS_MEDIA_ERR_INVALID_PARAMETER, "String is NULL");
1338         media_svc_retvm_if(pinyin_str == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "pinyin_str is NULL");
1339
1340         *pinyin_str = NULL;
1341
1342         ret = _media_svc_convert_chinese_to_pinyin(src_str, &pinyinname, &size);
1343         if (ret == MS_MEDIA_ERR_NONE) {
1344                 if (size > 0 && STRING_VALID(pinyinname[0].pinyin_name))
1345                         *pinyin_str = g_strdup(pinyinname[0].pinyin_name);
1346                 else
1347                         *pinyin_str = g_strdup(src_str);        /* Return Original Non China Character */
1348         }
1349
1350         _media_svc_pinyin_free(pinyinname, size);
1351
1352         return ret;
1353 }
1354
1355 bool _media_svc_check_pinyin_support(void)
1356 {
1357         int ret = SYSTEM_INFO_ERROR_NONE;
1358         bool is_supported = false;
1359         static int media_svc_pinyin_support = -1;
1360
1361         if (media_svc_pinyin_support == -1) {
1362                 ret = system_info_get_platform_bool("http://tizen.org/feature/content.filter.pinyin", &is_supported);
1363                 if (ret != SYSTEM_INFO_ERROR_NONE) {
1364                         media_svc_debug("SYSTEM_INFO_ERROR: content.filter.pinyin [%d]", ret);
1365                         return false;
1366                 }
1367
1368                 media_svc_pinyin_support = is_supported;
1369         }
1370
1371         return media_svc_pinyin_support;
1372 }
1373
1374 int _media_svc_get_media_type(const char *path, int *mediatype)
1375 {
1376         int ret = MS_MEDIA_ERR_NONE;
1377         char mime_type[256] = {0};
1378         media_svc_media_type_e media_type = MEDIA_SVC_MEDIA_TYPE_OTHER;
1379
1380         media_svc_retvm_if(mediatype == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "mediatype is NULL");
1381
1382         ret = __media_svc_get_mime_type(path, mime_type);
1383         if (ret == MS_MEDIA_ERR_NONE)
1384                 __media_svc_get_media_type(path, mime_type, &media_type);
1385         else
1386                 media_svc_error("__media_svc_get_mime_type failed");
1387
1388         *mediatype = media_type;
1389
1390         return ret;
1391 }
1392
1393 bool _media_svc_is_valid_storage_type(ms_user_storage_type_e storage_type)
1394 {
1395         switch (storage_type) {
1396         case MS_USER_STORAGE_INTERNAL:
1397         case MS_USER_STORAGE_EXTERNAL:
1398         case MS_USER_STORAGE_EXTERNAL_USB:
1399                 return true;
1400         default:
1401                 media_svc_error("storage type is incorrect[%d]", storage_type);
1402                 return false;
1403         }
1404 }