51f33ee51f73655d5008db9e75862ad87c8cb750
[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  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #include <unistd.h>
21 #include <stdlib.h>
22 #ifndef __USE_XOPEN
23 #define DEF_XOPEN
24 #define __USE_XOPEN /* needed for strptime */
25 #endif
26 #include <time.h>
27 #ifdef DEF_XOPEN
28 #undef __USE_XOPEN
29 #endif
30 #include <string.h>
31 #include <sys/vfs.h>
32 #include <glib/gstdio.h>
33 #include <sys/stat.h>
34 #include <dirent.h>
35 #include <ctype.h>
36 #include <aul/aul.h>
37 #include <mm_file.h>
38 #include <libexif/exif-data.h>
39 #include <media-util.h>
40 #include <uuid/uuid.h>
41 #include <mm_util_magick.h>
42 #include <media-thumbnail.h>
43 #include "media-util-err.h"
44 #include "media-svc-util.h"
45 #include "media-svc-db-utils.h"
46 #include "media-svc-debug.h"
47 #include "media-svc-env.h"
48 #include "media-svc-hash.h"
49 #include "media-svc-album.h"
50 /*For ebook metadata */
51 #include <zip.h>
52 #include <libxml/xmlmemory.h>
53 #include <libxml/parser.h>
54 #include <libxml/HTMLparser.h>
55 #include <dlfcn.h>
56
57 #define MEDIA_SVC_FILE_EXT_LEN_MAX                              6                       /**< Maximum file ext lenth*/
58
59 #define MUSIC_MIME_NUM 29
60 #define SOUND_MIME_NUM 2
61 #define THUMB_HASH_LEN 256
62 #define MIME_LENGTH 50
63 #define MEDIA_SVC_DEFAULT_FORMAT_LEN 19
64 #define IMAGE_PREFIX "image/"
65 #define IMAGE_PREFIX_LEN 6
66 #define AUDIO_PREFIX "audio/"
67 #define AUDIO_PREFIX_LEN 6
68 #define VIDEO_PREFIX "video/"
69 #define VIDEO_PREFIX_LEN 6
70
71 #define MEDIA_SVC_DEFAULT_GPS_VALUE                     -200                    /**< Default GPS Value*/
72
73 #define MEDIA_SVC_PDF_TAG_TAIL_LEN 12
74 #define MEDIA_SVC_PDF_BUF_SIZE 256
75
76 #define MEDIA_SVC_THUMB_WIDTH 320
77 #define MEDIA_SVC_THUMB_HEIGHT 240
78
79 #define PATH_PLUGIN_LIB                         PATH_LIBDIR"/libmedia-ebook-plugin.so"
80
81 enum Exif_Orientation {
82         NOT_AVAILABLE = 0,
83         NORMAL = 1,
84         HFLIP = 2,
85         ROT_180 = 3,
86         VFLIP = 4,
87         TRANSPOSE = 5,
88         ROT_90 = 6,
89         TRANSVERSE = 7,
90         ROT_270 = 8
91 };
92
93 static const char music_mime_table[MUSIC_MIME_NUM][MIME_LENGTH] = {
94         /*known mime types of normal files*/
95         "mpeg",
96         "ogg",
97         "x-ms-wma",
98         "x-flac",
99         "mp4",
100         "mp3",
101         "x-mp3", /*alias of audio/mpeg*/
102         "x-mpeg", /*alias of audio/mpeg*/
103         "3gpp",
104         "x-ogg", /*alias of audio/ogg*/
105         "vnd.ms-playready.media.pya:*.pya", /*playready*/
106         "wma",
107         "aac",
108         "x-m4a", /*alias of audio/mp4*/
109         /* below mimes are rare*/
110         "x-vorbis+ogg",
111         "x-flac+ogg",
112         "x-matroska",
113         "ac3",
114         "mp2",
115         "x-ape",
116         "x-ms-asx",
117         "vnd.rn-realaudio",
118
119         "x-vorbis", /*alias of audio/x-vorbis+ogg*/
120         "vorbis", /*alias of audio/x-vorbis+ogg*/
121         "x-oggflac",
122         "x-mp2", /*alias of audio/mp2*/
123         "x-pn-realaudio", /*alias of audio/vnd.rn-realaudio*/
124         "vnd.m-realaudio", /*alias of audio/vnd.rn-realaudio*/
125         "x-wav",
126 };
127
128 static const char sound_mime_table[SOUND_MIME_NUM][MIME_LENGTH] = {
129         "application/x-smaf",
130         "text/x-iMelody"
131 };
132
133 static char *__media_info_generate_uuid(void)
134 {
135         uuid_t uuid_value;
136         char uuid_unparsed[37];
137
138 RETRY_GEN:
139         uuid_generate(uuid_value);
140         uuid_unparse(uuid_value, uuid_unparsed);
141
142         if (strlen(uuid_unparsed) < 36) {
143                 media_svc_debug("INVALID UUID : %s. RETRY GENERATE.", uuid_unparsed);
144                 goto RETRY_GEN;
145         }
146
147         return g_strdup(uuid_unparsed);
148 }
149
150 /* GPS information is not ExifTag member */
151 static int __media_svc_get_exif_gps_double(ExifData *ed, double *value, long tagtype)
152 {
153         ExifEntry *entry;
154         char gps_buf[MEDIA_SVC_METADATA_LEN_MAX + 1] = {0, };
155         double tmp_arr[3] = { 0.0, 0.0, 0.0 };
156         int i = 0;
157         char **tmp_split = NULL;
158
159         media_svc_retv_if(!ed, MS_MEDIA_ERR_INVALID_PARAMETER);
160         media_svc_retv_if(!value, MS_MEDIA_ERR_INVALID_PARAMETER);
161
162         entry = exif_data_get_entry(ed, tagtype);
163         media_svc_retv_if(!entry, MS_MEDIA_ERR_INTERNAL);
164
165         exif_entry_get_value(entry, gps_buf, sizeof(gps_buf));
166         gps_buf[strlen(gps_buf)] = '\0';
167
168         tmp_split = g_strsplit(gps_buf, ",", -1);
169         if (g_strv_length(tmp_split) != 3) {
170                 g_strfreev(tmp_split);
171                 media_svc_error("Wrong GPS format");
172                 return MS_MEDIA_ERR_INTERNAL;
173         }
174
175         for (i = 0; i < 3; i++)
176                 tmp_arr[i] = g_strtod(tmp_split[i], NULL);
177
178         g_strfreev(tmp_split);
179
180         *value = tmp_arr[0] + tmp_arr[1] / 60 + tmp_arr[2] / 3600;
181
182         return MS_MEDIA_ERR_NONE;
183 }
184
185 static int __media_svc_get_exif_gps_str(ExifData *ed, char *value, long tagtype)
186 {
187         ExifEntry *entry;
188
189         media_svc_retv_if(!ed, MS_MEDIA_ERR_INVALID_PARAMETER);
190         media_svc_retv_if(!value, MS_MEDIA_ERR_INVALID_PARAMETER);
191
192         entry = exif_data_get_entry(ed, tagtype);
193         if (entry) {
194                 exif_entry_get_value(entry, value, MEDIA_SVC_METADATA_LEN_MAX);
195                 value[strlen(value)] = '\0';
196         }
197
198         return MS_MEDIA_ERR_NONE;
199 }
200
201 static int __media_svc_get_exif_info(ExifData *ed, char *buf, int *i_value, double *d_value, ExifTag tagtype)
202 {
203         ExifEntry *entry;
204         ExifByteOrder mByteOrder;
205         ExifRational mRational;
206         long numerator, denominator;
207
208         media_svc_retv_if(!ed, MS_MEDIA_ERR_INVALID_PARAMETER);
209
210         entry = exif_data_get_entry(ed, tagtype);
211         media_svc_retv_if(!entry, MS_MEDIA_ERR_NONE);
212
213         switch (tagtype) {
214         case EXIF_TAG_ORIENTATION:
215         case EXIF_TAG_PIXEL_X_DIMENSION:
216         case EXIF_TAG_PIXEL_Y_DIMENSION:
217         case EXIF_TAG_ISO_SPEED_RATINGS:
218                 media_svc_retvm_if(!i_value, MS_MEDIA_ERR_INVALID_PARAMETER, "i_value is NULL");
219
220                 mByteOrder = exif_data_get_byte_order(ed);
221                 short exif_value = exif_get_short(entry->data, mByteOrder);
222                 *i_value = (int)exif_value;
223                 break;
224         case EXIF_TAG_EXPOSURE_TIME:
225                 media_svc_retvm_if(!buf, MS_MEDIA_ERR_INVALID_PARAMETER, "buf is NULL");
226
227                 mByteOrder = exif_data_get_byte_order(ed);
228                 mRational = exif_get_rational(entry->data, mByteOrder);
229                 numerator = mRational.numerator;
230                 denominator = mRational.denominator;
231                 snprintf(buf, MEDIA_SVC_METADATA_LEN_MAX, "%ld/%ld", numerator, denominator);
232                 break;
233         case EXIF_TAG_FNUMBER:
234                 media_svc_retvm_if(!d_value, MS_MEDIA_ERR_INVALID_PARAMETER, "d_value is NULL");
235
236                 mByteOrder = exif_data_get_byte_order(ed);
237                 mRational = exif_get_rational(entry->data, mByteOrder);
238                 numerator = mRational.numerator;
239                 denominator = mRational.denominator;
240
241                 *d_value = ((numerator*1.0)/(denominator*1.0));
242                 break;
243         default:
244                 media_svc_retvm_if(!buf, MS_MEDIA_ERR_INVALID_PARAMETER, "buf is NULL");
245
246                 exif_entry_get_value(entry, buf, MEDIA_SVC_METADATA_LEN_MAX);
247                 buf[strlen(buf)] = '\0';
248         }
249
250         return MS_MEDIA_ERR_NONE;
251 }
252
253 static time_t __media_svc_get_timeline_from_str(const char *timstr)
254 {
255         struct tm t;
256         time_t modified_t = 0;
257         time_t rawtime;
258         struct tm timeinfo;
259
260         if (!STRING_VALID(timstr)) {
261                 media_svc_error("Invalid Parameter");
262                 return 0;
263         }
264
265         /*Exif Format : %Y:%m:%d %H:%M:%S
266         Videoc Content Creation_time format of FFMpeg : %Y-%m-%d %H:%M:%S*/
267         memset(&t, 0x00, sizeof(struct tm));
268
269         tzset();
270         time(&rawtime);
271         localtime_r(&rawtime, &timeinfo);
272
273         if (strptime(timstr, "%Y:%m:%d %H:%M:%S", &t) || strptime(timstr, "%Y-%m-%d %H:%M:%S", &t)) {
274                 t.tm_isdst = timeinfo.tm_isdst;
275                 if (t.tm_isdst != 0)
276                         media_svc_debug("DST %d", t.tm_isdst);
277
278                 /* If time string has timezone */
279                 if (strptime(timstr, "%Y:%m:%d %H:%M:%S %z", &t) || strptime(timstr, "%Y-%m-%d %H:%M:%S %z", &t)) {
280                         char tim_tmp_str[255] = { 0, };
281
282                         /* ISO8601 Time string format */
283                         strftime(tim_tmp_str, 255, "%Y-%m-%dT%H:%M:%S%z", &t);
284                         GDateTime *pdatetime = g_date_time_new_from_iso8601(tim_tmp_str, NULL);
285                         if (pdatetime)
286                                 modified_t = g_date_time_to_unix(pdatetime);
287                         g_date_time_unref(pdatetime);
288                         media_svc_debug("Calibrated timeval : [%ld][%s]", modified_t, tim_tmp_str);
289                 } else {
290                         /* Just localtime */
291                         modified_t = mktime(&t);
292                 }
293
294                 if (modified_t > 0)
295                         return modified_t;
296                 else
297                         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);
298         } else {
299                 media_svc_error("Failed to get timeline : [%s]", timstr);
300         }
301
302         return 0;
303 }
304
305 static int __media_svc_get_media_type(const char *path, const char *mime_type, media_svc_media_type_e *media_type)
306 {
307         int idx = 0;
308         int audio = 0;
309         int video = 0;
310
311         media_svc_retvm_if(!path, MS_MEDIA_ERR_INVALID_PARAMETER, "path is null");
312         media_svc_retvm_if(!mime_type, MS_MEDIA_ERR_INVALID_PARAMETER, "mime_type is null");
313         media_svc_retvm_if(!media_type, MS_MEDIA_ERR_INVALID_PARAMETER, "media_type is null");
314
315         /* Image */
316         if (strncmp(mime_type, IMAGE_PREFIX, IMAGE_PREFIX_LEN) == 0) {
317                 *media_type = MEDIA_SVC_MEDIA_TYPE_IMAGE;
318                 return MS_MEDIA_ERR_NONE;
319         }
320
321         /* Audio */
322         if (strncmp(mime_type, AUDIO_PREFIX, AUDIO_PREFIX_LEN) == 0) {
323                 *media_type = MEDIA_SVC_MEDIA_TYPE_SOUND;
324
325                 for (idx = 0; idx < MUSIC_MIME_NUM; idx++) {
326                         if (strcmp(mime_type + AUDIO_PREFIX_LEN, music_mime_table[idx]) == 0) {
327                                 *media_type = MEDIA_SVC_MEDIA_TYPE_MUSIC;
328                                 break;
329                         }
330                 }
331
332                 /* audio/x-mpegurl : .m3u file (playlist file) */
333                 if (strcmp(mime_type + AUDIO_PREFIX_LEN, "x-mpegurl") == 0)
334                         *media_type = MEDIA_SVC_MEDIA_TYPE_OTHER;
335
336                 return MS_MEDIA_ERR_NONE;
337         }
338
339         /* Video */
340         if (strncmp(mime_type, VIDEO_PREFIX, VIDEO_PREFIX_LEN) == 0) {
341                 *media_type = MEDIA_SVC_MEDIA_TYPE_VIDEO;
342
343                 /*some video files don't have video stream. in this case it is categorize as music. */
344                 if (strcmp(mime_type + VIDEO_PREFIX_LEN, "3gpp") == 0 ||
345                         strcmp(mime_type + VIDEO_PREFIX_LEN, "mp4") == 0) {
346                         if (mm_file_get_stream_info(path, &audio, &video) == FILEINFO_ERROR_NONE) {
347                                 if (audio > 0 && video == 0)
348                                         *media_type = MEDIA_SVC_MEDIA_TYPE_MUSIC;
349                         }
350                 }
351
352                 return MS_MEDIA_ERR_NONE;
353         }
354
355         /* ETC */
356         *media_type = MEDIA_SVC_MEDIA_TYPE_OTHER;
357
358         for (idx = 0; idx < SOUND_MIME_NUM; idx++) {
359                 if (strcmp(mime_type, sound_mime_table[idx]) == 0) {
360                         *media_type = MEDIA_SVC_MEDIA_TYPE_SOUND;
361                         return MS_MEDIA_ERR_NONE;
362                 }
363         }
364
365         /*"asf" must check video stream and then categorize in directly. */
366         if (strcmp(mime_type, "application/vnd.ms-asf") == 0) {
367                 if (mm_file_get_stream_info(path, &audio, &video) == FILEINFO_ERROR_NONE) {
368                         if (audio > 0 && video == 0)
369                                 *media_type = MEDIA_SVC_MEDIA_TYPE_MUSIC;
370                         else
371                                 *media_type = MEDIA_SVC_MEDIA_TYPE_VIDEO;
372                 }
373
374                 return MS_MEDIA_ERR_NONE;
375         }
376
377         if (strcmp(mime_type, "application/epub+zip") == 0 || strcmp(mime_type, "application/pdf") == 0)
378                 *media_type = MEDIA_SVC_MEDIA_TYPE_BOOK;
379
380         return MS_MEDIA_ERR_NONE;
381 }
382
383 static int __media_svc_get_mime_type(const char *path, char *mimetype)
384 {
385         media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
386
387         if (aul_get_mime_from_file(path, mimetype, 255) < 0) {
388                 media_svc_error("aul_get_mime_from_file fail");
389                 return MS_MEDIA_ERR_INTERNAL;
390         }
391
392         return MS_MEDIA_ERR_NONE;
393 }
394
395 static bool __media_svc_get_file_ext(const char *file_path, char *file_ext)
396 {
397         int i = 0;
398
399         for (i = strlen(file_path); i >= 0; i--) {
400                 if (file_path[i] == '.') {
401                         SAFE_STRLCPY(file_ext, &file_path[i + 1], MEDIA_SVC_FILE_EXT_LEN_MAX);
402                         return true;
403                 }
404
405                 if (file_path[i] == '/')
406                         return false;
407         }
408         return false;
409 }
410
411 static int __media_svc_safe_atoi(char *buffer, int *si)
412 {
413         char *end = NULL;
414         errno = 0;
415         media_svc_retvm_if(buffer == NULL || si == NULL, MS_MEDIA_ERR_INTERNAL, "invalid parameter");
416
417         const long sl = strtol(buffer, &end, 10);
418
419         media_svc_retvm_if(end == buffer, MS_MEDIA_ERR_INTERNAL, "not a decimal number");
420         media_svc_retvm_if('\0' != *end, MS_MEDIA_ERR_INTERNAL, "extra characters at end of input: %s", end);
421         media_svc_retvm_if((LONG_MIN == sl || LONG_MAX == sl) && (ERANGE == errno), MS_MEDIA_ERR_INTERNAL, "out of range of type long");
422         media_svc_retvm_if(sl > INT_MAX, MS_MEDIA_ERR_INTERNAL, "greater than INT_MAX");
423         media_svc_retvm_if(sl < INT_MIN, MS_MEDIA_ERR_INTERNAL, "less than INT_MIN");
424
425         *si = (int)sl;
426
427         return MS_MEDIA_ERR_NONE;
428 }
429
430 static int __media_svc_save_image(unsigned char *image, unsigned int size, char *image_path, uid_t uid)
431 {
432         int ret = MS_MEDIA_ERR_NONE;
433         struct statfs fs;
434         char *thumb_path = NULL;
435         long bsize_kbytes = 0;
436         GError *error = NULL;
437
438         media_svc_retvm_if(!image || size == 0, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid image");
439         media_svc_sec_debug("start save image, path [%s] image size [%d]", image_path, size);
440
441         ret = ms_user_get_root_thumb_store_path(uid, &thumb_path);
442         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "ms_user_get_root_thumb_store_path error");
443
444         ret = statfs(thumb_path, &fs);
445         g_free(thumb_path);
446         media_svc_retvm_if(ret == -1, MS_MEDIA_ERR_INTERNAL, "statfs failed");
447
448         bsize_kbytes = fs.f_bsize >> 10;
449         media_svc_retvm_if((bsize_kbytes * fs.f_bavail) < 1024, MS_MEDIA_ERR_NOT_ENOUGH_SPACE, "Not enough space");
450
451         if (!g_file_set_contents(image_path, (const gchar *)image, (gssize)size, &error)) {
452                 media_svc_error("g_file_set_contents faild:%s", error->message);
453                 g_error_free(error);
454                 return MS_MEDIA_ERR_INTERNAL;
455         }
456
457         return MS_MEDIA_ERR_NONE;
458 }
459
460 static char *__media_svc_get_title_from_filepath(const char *path)
461 {
462         char *filename = NULL;
463         char *title = NULL;
464         char *last_dot = NULL;
465
466         media_svc_retvm_if(!STRING_VALID(path), NULL, "Invalid path");
467
468         filename = g_path_get_basename(path);
469
470         last_dot = strrchr(filename, '.');
471         if (last_dot) {
472                 title = g_strndup(filename, last_dot - filename);
473                 g_free(filename);
474         } else {
475                 title = filename;
476         }
477
478         media_svc_debug("extract title is [%s]", title);
479
480         return title;
481 }
482
483 void _media_svc_remove_file(const char *path)
484 {
485         if (!STRING_VALID(path))
486                 return;
487
488         if (remove(path) != 0)
489                 media_svc_stderror("fail to remove file result");
490 }
491
492 int _media_svc_get_thumbnail_path(char *thumb_path, const char *pathname, const char *img_format, uid_t uid)
493 {
494         int ret = MS_MEDIA_ERR_NONE;
495         char file_ext[MEDIA_SVC_FILE_EXT_LEN_MAX + 1] = {0, };
496         char hash[THUMB_HASH_LEN] = {0, };
497         char *thumb_dir = NULL;
498
499         ret = ms_user_get_root_thumb_store_path(uid, &thumb_dir);
500         media_svc_retvm_if(!STRING_VALID(thumb_dir), MS_MEDIA_ERR_INTERNAL, "ms_user_get_root_thumb_store_path failed");
501
502         if (!g_file_test(thumb_dir, G_FILE_TEST_IS_DIR)) {
503                 media_svc_error("Wrong path[%s]", thumb_dir);
504                 g_free(thumb_dir);
505                 return MS_MEDIA_ERR_INTERNAL;
506         }
507
508         memset(file_ext, 0, sizeof(file_ext));
509         if (!__media_svc_get_file_ext(pathname, file_ext))
510                 media_svc_error("get file ext fail");
511
512         ret = mb_svc_generate_hash_code(pathname, hash, THUMB_HASH_LEN);
513         if (ret != MS_MEDIA_ERR_NONE) {
514                 media_svc_error("mb_svc_generate_hash_code failed : %d", ret);
515                 g_free(thumb_dir);
516                 return MS_MEDIA_ERR_INTERNAL;
517         }
518
519         if (img_format) {
520                 /* 'img_format' is mime-type */
521                 if (!g_str_has_prefix(img_format, IMAGE_PREFIX) || strlen(img_format) == IMAGE_PREFIX_LEN) {
522                         media_svc_error("Not proper img format");
523                         g_free(thumb_dir);
524                         return MS_MEDIA_ERR_INTERNAL;
525                 }
526
527                 snprintf(thumb_path, MEDIA_SVC_PATHNAME_SIZE, "%s/.%s-%s.%s", thumb_dir, file_ext, hash, img_format + IMAGE_PREFIX_LEN);
528         } else {
529                 if (strcasecmp(file_ext, "PNG") == 0)
530                         snprintf(thumb_path, MEDIA_SVC_PATHNAME_SIZE, "%s/.%s-%s.png", thumb_dir, file_ext, hash);
531                 else
532                         snprintf(thumb_path, MEDIA_SVC_PATHNAME_SIZE, "%s/.%s-%s.jpg", thumb_dir, file_ext, hash);
533         }
534
535         g_free(thumb_dir);
536
537         return MS_MEDIA_ERR_NONE;
538 }
539
540 int _media_svc_get_file_time(const char *full_path)
541 {
542         struct stat statbuf = { 0, };
543
544         if (stat(full_path, &statbuf) == -1) {
545                 media_svc_stderror("stat fails.");
546                 return 0;
547         }
548
549         return statbuf.st_mtime;
550 }
551
552 int _media_svc_set_media_info(media_svc_content_info_s *content_info, const char *storage_id, const char *path, bool refresh)
553 {
554         int ret = MS_MEDIA_ERR_NONE;
555         char mime_type[256] = {0, };
556         media_svc_media_type_e media_type;
557
558         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
559
560         content_info->path = g_strdup(path);
561         media_svc_retv_del_if(content_info->path == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
562
563         struct stat st;
564         memset(&st, 0, sizeof(struct stat));
565         if (stat(path, &st) == 0) {
566                 content_info->modified_time = st.st_mtime;
567                 content_info->timeline = content_info->modified_time;
568                 content_info->size = st.st_size;
569         } else {
570                 media_svc_stderror("stat failed");
571         }
572
573         /* refresh is TRUE when file modified. so only modified_time and size are changed*/
574         if (refresh) {
575                 media_svc_debug("refresh");
576                 return MS_MEDIA_ERR_NONE;
577         }
578
579         content_info->storage_uuid = g_strdup(storage_id);
580         media_svc_retv_del_if(content_info->storage_uuid == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
581
582         time(&content_info->added_time);
583
584         content_info->media_uuid = __media_info_generate_uuid();
585         media_svc_retv_del_if(content_info->media_uuid == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
586
587         content_info->file_name = g_path_get_basename(path);
588         media_svc_retv_del_if(content_info->file_name == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
589
590         ret = __media_svc_get_mime_type(path, mime_type);
591         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, content_info);
592
593         media_svc_debug("mime [%s]", mime_type);
594
595         ret = __media_svc_get_media_type(path, mime_type, &media_type);
596         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, content_info);
597
598         content_info->mime_type = g_strdup(mime_type);
599         media_svc_retv_del_if(content_info->mime_type == NULL, MS_MEDIA_ERR_INTERNAL, content_info);
600
601         media_svc_sec_debug("path[%s], media_type[%d]", path, media_type);
602
603         content_info->media_type = media_type;
604
605         return MS_MEDIA_ERR_NONE;
606 }
607
608 static int __image_360_check(const char *path)
609 {
610         FILE *fp = NULL;
611         size_t size = 0, app1_size = 0, exif_app1_xmp_size = 0;
612         unsigned char exif_header[4] = {0, };
613         unsigned char exif_app1[2] = {0, };
614         unsigned char exif_app1_xmp[2] = {0, };
615         unsigned char exif_app1_xmp_t[2] = {0, };
616         GString *xmp_data = NULL;
617         int fdata = 0;
618         int result = 0;
619
620         memset(exif_header, 0x00, sizeof(exif_header));
621         memset(exif_app1, 0x00, sizeof(exif_app1));
622         memset(exif_app1_xmp, 0x00, sizeof(exif_app1_xmp));
623         memset(exif_app1_xmp_t, 0x00, sizeof(exif_app1_xmp_t));
624
625         fp = fopen(path, "rb");
626         if (fp == NULL)
627                 goto ERROR;
628
629         size = fread(exif_header, 1, sizeof(exif_header), fp);
630         if (size != sizeof(exif_header))
631                 goto ERROR;
632
633         if ((exif_header[0] == 0xff) && (exif_header[1] == 0xd8) && (exif_header[2] == 0xff) && (exif_header[3] == 0xe1)) {
634                 size = fread(exif_app1, 1, sizeof(exif_app1), fp);
635                 if (size != sizeof(exif_app1))
636                         goto ERROR;
637
638                 if ((size_t)((exif_app1[0] << 8) | (exif_app1[1])) <= 2)
639                         goto ERROR;
640
641                 app1_size = (size_t)((exif_app1[0] << 8) | (exif_app1[1])) - 2 ;
642                 if (fseek(fp, app1_size, SEEK_CUR) != 0)
643                         goto ERROR;
644
645                 size = fread(exif_app1_xmp, 1, sizeof(exif_app1_xmp), fp);
646                 if (size != sizeof(exif_app1_xmp))
647                         goto ERROR;
648
649                 if ((exif_app1_xmp[0] == 0xff) && (exif_app1_xmp[1] == 0xe1)) {
650                         size = fread(exif_app1_xmp_t, 1, sizeof(exif_app1_xmp_t), fp);
651                         if (size != sizeof(exif_app1_xmp_t))
652                                 goto ERROR;
653
654                         if ((size_t)((exif_app1_xmp_t[0] << 8) | (exif_app1_xmp_t[1])) <= 2)
655                                 goto ERROR;
656
657                         exif_app1_xmp_size = (size_t)((exif_app1_xmp_t[0] << 8) | (exif_app1_xmp_t[1])) - 2;
658
659                         xmp_data = g_string_sized_new(exif_app1_xmp_size);
660
661                         do {
662                                 exif_app1_xmp_size--;
663                                 fdata = fgetc(fp);
664                                 if (fdata == EOF)
665                                         continue;
666                                 if (fdata == '\0')
667                                         continue;
668
669                                 xmp_data = g_string_append_c(xmp_data, (gchar)fdata);
670                         } while (exif_app1_xmp_size > 0);
671
672                         if (strstr(xmp_data->str, "UsePanoramaViewer") &&
673                                 strstr(xmp_data->str, "True") &&
674                                 strstr(xmp_data->str, "ProjectionType") &&
675                                 strstr(xmp_data->str, "equirectangular"))
676                                 result = 1;
677
678                         g_string_free(xmp_data, TRUE);
679                 }
680         }
681
682 ERROR:
683         if (fp) {
684                 fclose(fp);
685                 fp = NULL;
686         }
687
688         return result;
689 }
690
691 static char * __media_svc_get_title(MMHandleType tag, const char *path)
692 {
693         int ret = FILEINFO_ERROR_NONE;
694         char *p = NULL;
695         int size = 0;
696         char *title = NULL;
697
698         if (tag) {
699                 ret = mm_file_get_attrs(tag, MM_FILE_TAG_TITLE, &p, &size, NULL);
700                 if (ret == FILEINFO_ERROR_NONE && size > 0) {
701                         while(p && isspace(*p))
702                                 p++;
703
704                         return g_strdup(p);
705                 }
706         }
707
708         title = __media_svc_get_title_from_filepath(path);
709         if (title)
710                 return title;
711
712         media_svc_error("Can't extract title");
713
714         return g_strdup(MEDIA_SVC_TAG_UNKNOWN);
715 }
716
717 char * _media_svc_get_title_by_path(const char *path)
718 {
719         /* No MMHandleType in media-svc.c */
720         return __media_svc_get_title(NULL, path);
721 }
722
723 int _media_svc_extract_image_metadata(media_svc_content_info_s *content_info)
724 {
725         double value = 0.0;
726         int orient_value = 0;
727         int exif_width = 0;
728         int exif_height = 0;
729         ExifData *ed = NULL;
730         bool has_datetaken = false;
731         double fnumber = 0.0;
732         int iso = 0;
733         char *path = NULL;
734
735         char buf[MEDIA_SVC_METADATA_LEN_MAX + 1] = { '\0' };
736
737         media_svc_retvm_if(!content_info, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid content_info");
738         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);
739         media_svc_retvm_if(!STRING_VALID(content_info->path), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid path");
740
741         path = content_info->path;
742         content_info->media_meta.title = __media_svc_get_title(NULL, path);
743
744         content_info->media_meta.latitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
745         content_info->media_meta.longitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
746         content_info->media_meta.altitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
747
748         /* Not used. But to preserved the behavior, set MEDIA_SVC_TAG_UNKNOWN. */
749         content_info->media_meta.album = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
750         content_info->media_meta.artist = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
751         content_info->media_meta.album_artist = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
752         content_info->media_meta.genre = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
753         content_info->media_meta.composer = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
754         content_info->media_meta.year = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
755         content_info->media_meta.copyright = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
756         content_info->media_meta.track_num = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
757
758         /* Load an ExifData object from an EXIF file */
759         ed = exif_data_new_from_file(path);
760         if (!ed) {
761                 media_svc_sec_debug("There is no exif data in [ %s ]", path);
762                 goto GET_WIDTH_HEIGHT;
763         }
764
765         content_info->media_meta.is_360 = __image_360_check(path);
766
767         memset(buf, 0x00, sizeof(buf));
768         if (__media_svc_get_exif_gps_double(ed, &value, EXIF_TAG_GPS_LATITUDE) == MS_MEDIA_ERR_NONE) {
769                 if (__media_svc_get_exif_gps_str(ed, buf, EXIF_TAG_GPS_LATITUDE_REF) == MS_MEDIA_ERR_NONE) {
770                         if (!g_strcmp0(buf, "S"))
771                                 value *= -1;
772                         content_info->media_meta.latitude = value;
773                 }
774         }
775
776         memset(buf, 0x00, sizeof(buf));
777         if (__media_svc_get_exif_gps_double(ed, &value, EXIF_TAG_GPS_LONGITUDE) == MS_MEDIA_ERR_NONE) {
778                 if (__media_svc_get_exif_gps_str(ed, buf, EXIF_TAG_GPS_LONGITUDE_REF) == MS_MEDIA_ERR_NONE) {
779                         if (!g_strcmp0(buf, "W"))
780                                 value *= -1;
781
782                         content_info->media_meta.longitude = value;
783                 }
784         }
785
786         memset(buf, 0x00, sizeof(buf));
787         if (__media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_IMAGE_DESCRIPTION) == MS_MEDIA_ERR_NONE) {
788                 if (strlen(buf) > 0)
789                         content_info->media_meta.description = g_strdup(buf);
790                 else
791                         content_info->media_meta.description = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
792         }
793
794         memset(buf, 0x00, sizeof(buf));
795         if (!has_datetaken && __media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_DATE_TIME_ORIGINAL) == MS_MEDIA_ERR_NONE) {
796                 if (strlen(buf) > 0) {
797                         has_datetaken = true;
798                         content_info->media_meta.datetaken = g_strdup(buf);
799
800                         /* This is same as recorded_date */
801                         content_info->media_meta.recorded_date = g_strdup(buf);
802                 }
803         }
804
805         memset(buf, 0x00, sizeof(buf));
806         if (!has_datetaken && __media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_DATE_TIME) == MS_MEDIA_ERR_NONE) {
807                 if (strlen(buf) > 0) {
808                         has_datetaken = true;
809                         content_info->media_meta.datetaken = g_strdup(buf);
810
811                         /* This is same as recorded_date */
812                         content_info->media_meta.recorded_date = g_strdup(buf);
813                 }
814         }
815
816         if (has_datetaken) {
817                 content_info->timeline = __media_svc_get_timeline_from_str(content_info->media_meta.datetaken);
818                 if (content_info->timeline == 0)
819                         content_info->timeline = content_info->modified_time;
820                 else
821                         media_svc_debug("Timeline : %ld", content_info->timeline);
822         }
823
824         memset(buf, 0x00, sizeof(buf));
825         /* Get exposure_time value from exif. */
826         if (__media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_EXPOSURE_TIME) == MS_MEDIA_ERR_NONE) {
827                 if (strlen(buf) > 0)
828                         content_info->media_meta.exposure_time = g_strdup(buf);
829         }
830
831         /* Get fnumber value from exif. */
832         if (__media_svc_get_exif_info(ed, NULL, NULL, &fnumber, EXIF_TAG_FNUMBER) == MS_MEDIA_ERR_NONE)
833                 content_info->media_meta.fnumber = fnumber;
834
835         /* Get iso value from exif. */
836         if (__media_svc_get_exif_info(ed, NULL, &iso, NULL, EXIF_TAG_ISO_SPEED_RATINGS) == MS_MEDIA_ERR_NONE)
837                 content_info->media_meta.iso = iso;
838
839         memset(buf, 0x00, sizeof(buf));
840         /* Get model value from exif. */
841         if (__media_svc_get_exif_info(ed, buf, NULL, NULL, EXIF_TAG_MODEL) == MS_MEDIA_ERR_NONE) {
842                 if (strlen(buf) > 0)
843                         content_info->media_meta.model = g_strdup(buf);
844         }
845
846         /* Get orientation value from exif. */
847         if (__media_svc_get_exif_info(ed, NULL, &orient_value, NULL, EXIF_TAG_ORIENTATION) == MS_MEDIA_ERR_NONE) {
848                 if (orient_value >= NOT_AVAILABLE && orient_value <= ROT_270)
849                         content_info->media_meta.orientation = orient_value;
850         }
851
852         /* Get width value from exif. */
853         if (__media_svc_get_exif_info(ed, NULL, &exif_width, NULL, EXIF_TAG_PIXEL_X_DIMENSION) == MS_MEDIA_ERR_NONE) {
854                 if (exif_width > 0)
855                         content_info->media_meta.width = exif_width;
856         }
857
858         /* Get height value from exif. */
859         if (__media_svc_get_exif_info(ed, NULL, &exif_height, NULL, EXIF_TAG_PIXEL_Y_DIMENSION) == MS_MEDIA_ERR_NONE) {
860                 if (exif_height > 0)
861                         content_info->media_meta.height = exif_height;
862         }
863
864         if (ed)
865                 exif_data_unref(ed);
866
867 GET_WIDTH_HEIGHT:
868
869         if (content_info->media_meta.width == 0 || content_info->media_meta.height == 0) {
870                 /*Get image width, height*/
871                 unsigned int img_width = 0;
872                 unsigned int img_height = 0;
873                 mm_util_img_codec_type img_type = IMG_CODEC_UNKNOWN_TYPE;
874
875                 mm_util_extract_image_info(path, &img_type, &img_width, &img_height);
876                 if (content_info->media_meta.width == 0)
877                         content_info->media_meta.width = img_width;
878
879                 if (content_info->media_meta.height == 0)
880                         content_info->media_meta.height = img_height;
881         }
882
883         return MS_MEDIA_ERR_NONE;
884 }
885
886 static char * __media_svc_get_tag_str_value(MMHandleType tag, const char *tag_name)
887 {
888         int ret = FILEINFO_ERROR_NONE;
889         char *p = NULL;
890         int size = 0;
891
892         ret = mm_file_get_attrs(tag, tag_name, &p, &size, NULL);
893         if (ret == FILEINFO_ERROR_NONE && size > 0)
894                 return g_strdup(p);
895
896         return g_strdup(MEDIA_SVC_TAG_UNKNOWN);
897 }
898
899 int _media_svc_extract_media_metadata(sqlite3 *handle, bool is_direct, media_svc_content_info_s *content_info, uid_t uid)
900 {
901         MMHandleType content = 0;
902         MMHandleType tag = 0;
903         char *p = NULL;
904         unsigned char *image = NULL;
905         unsigned int size = 0;
906         int mmf_error = FILEINFO_ERROR_NONE;
907         int album_id = 0;
908         int ret = MS_MEDIA_ERR_NONE;
909         int convert_value = 0;
910         bool support_albumart = ms_user_thumb_support(uid, content_info->path);
911
912         /*Get Content Tag attribute ===========*/
913         if (support_albumart)
914                 mmf_error = mm_file_create_tag_attrs(&tag, content_info->path);
915         else
916                 mmf_error = mm_file_create_tag_attrs_no_albumart(&tag, content_info->path);
917
918         if (mmf_error == FILEINFO_ERROR_NONE) {
919                 content_info->media_meta.title = __media_svc_get_title(tag, content_info->path);
920                 content_info->media_meta.album = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ALBUM);
921                 content_info->media_meta.artist = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ARTIST);
922                 content_info->media_meta.album_artist = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_ALBUM_ARTIST);
923                 content_info->media_meta.genre = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_GENRE);
924                 content_info->media_meta.description = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_DESCRIPTION);
925                 content_info->media_meta.composer = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_AUTHOR);
926                 content_info->media_meta.copyright = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_COPYRIGHT);
927                 content_info->media_meta.track_num = __media_svc_get_tag_str_value(tag, MM_FILE_TAG_TRACK_NUM);
928
929                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_RECDATE, &p, &size, NULL);
930                 if ((mmf_error == FILEINFO_ERROR_NONE) && (size > 0)) {
931                         if (g_str_has_suffix(content_info->mime_type, "mp4") || g_str_has_suffix(content_info->mime_type, "3gpp")) {
932                                 /*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*/
933                                 char *p_value = g_strdelimit(g_strdup(p), "-", ':');
934                                 content_info->media_meta.recorded_date = g_strdup_printf("%s +0000", p_value);
935                                 g_free(p_value);
936                         } else {
937                                 content_info->media_meta.recorded_date = g_strdup(p);
938                         }
939
940                         if (STRING_VALID(content_info->media_meta.recorded_date)) {
941                                 content_info->timeline = __media_svc_get_timeline_from_str(content_info->media_meta.recorded_date);
942                                 if (content_info->timeline == 0)
943                                         content_info->timeline = content_info->modified_time;
944
945                                 /* This is same as datetaken */
946                                 /* Remove compensation string */
947                                 if (strlen(content_info->media_meta.recorded_date) > MEDIA_SVC_DEFAULT_FORMAT_LEN) {
948                                         content_info->media_meta.datetaken = g_strndup(content_info->media_meta.recorded_date, MEDIA_SVC_DEFAULT_FORMAT_LEN);
949                                         g_free(content_info->media_meta.recorded_date);
950                                         content_info->media_meta.recorded_date = g_strdup(content_info->media_meta.datetaken);
951                                 } else {
952                                         content_info->media_meta.datetaken = g_strdup(content_info->media_meta.recorded_date);
953                                 }
954                         }
955                 }
956
957                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_DATE, &p, &size, NULL);
958                 if (mmf_error == FILEINFO_ERROR_NONE && size == 4) {
959                         if (__media_svc_safe_atoi(p, &convert_value) == MS_MEDIA_ERR_NONE)
960                                 content_info->media_meta.year = g_strdup(p);
961                 }
962
963                 if (!content_info->media_meta.year)
964                                 content_info->media_meta.year = g_strdup(MEDIA_SVC_TAG_UNKNOWN);
965
966                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_RATING, &p, &size, NULL);
967                 if (mmf_error == FILEINFO_ERROR_NONE && size > 0) {
968                         if (__media_svc_safe_atoi(p, &convert_value) == MS_MEDIA_ERR_NONE)
969                                 content_info->media_meta.rating = convert_value;
970                 } else {
971                         content_info->media_meta.rating = 0;
972                 }
973
974                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_SPHERICAL, &content_info->media_meta.is_360, NULL);
975
976                 /*Do not extract artwork for the USB Storage content*/
977                 if (support_albumart) {
978                         mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ARTWORK, &image, &size, NULL);
979                         if (mmf_error != FILEINFO_ERROR_NONE)
980                                 media_svc_error("fail to get tag artwork - err(%x)", mmf_error);
981
982                         mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ARTWORK_SIZE, &size, NULL);
983                         if (mmf_error != FILEINFO_ERROR_NONE)
984                                 media_svc_error("fail to get artwork size - err(%x)", mmf_error);
985
986                         if (image != NULL && size > 0) {
987                                 char thumb_path[MEDIA_SVC_PATHNAME_SIZE] = "\0";
988                                 int artwork_mime_size = -1;
989
990                                 mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ARTWORK_MIME, &p, &artwork_mime_size, NULL);
991                                 if ((mmf_error == FILEINFO_ERROR_NONE) && (artwork_mime_size > 0)) {
992                                         ret = _media_svc_get_thumbnail_path(thumb_path, content_info->path, p, uid);
993                                         if (ret != MS_MEDIA_ERR_NONE) {
994                                                 media_svc_error("Fail to Get Thumbnail Path");
995                                         } else {
996                                                 ret = __media_svc_save_image(image, size, thumb_path, uid);
997                                                 if (ret != MS_MEDIA_ERR_NONE) {
998                                                         media_svc_error("Fail to Save Image");
999                                                 } else {
1000                                                         content_info->thumbnail_path = g_strdup(thumb_path);
1001                                                 }
1002                                         }
1003                                 }
1004                         }
1005                 }
1006
1007                 /*Initialize album_id to 0. below code will set the album_id*/
1008                 content_info->album_id = album_id;
1009                 ret = _media_svc_get_album_id(handle, content_info->media_meta.album, content_info->media_meta.artist, &album_id);
1010                 if (ret != MS_MEDIA_ERR_NONE) {
1011                         if (ret == MS_MEDIA_ERR_DB_NO_RECORD) {
1012                                 media_svc_debug("album does not exist. So start to make album art");
1013                                 if ((g_strcmp0(content_info->media_meta.album, MEDIA_SVC_TAG_UNKNOWN)) &&
1014                                         (g_strcmp0(content_info->media_meta.artist, MEDIA_SVC_TAG_UNKNOWN)))
1015                                         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);
1016                                 else
1017                                         ret = _media_svc_append_album(handle, is_direct, content_info->media_meta.album, content_info->media_meta.artist, NULL, &album_id, uid);
1018
1019                                 content_info->album_id = album_id;
1020                         }
1021                 } else {
1022                         content_info->album_id = album_id;
1023                 }
1024
1025                 content_info->media_meta.longitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
1026                 content_info->media_meta.latitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
1027                 content_info->media_meta.altitude = MEDIA_SVC_DEFAULT_GPS_VALUE;
1028
1029                 if (content_info->media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
1030                         double longitude = 0.0;
1031                         double latitude = 0.0;
1032                         double altitude = 0.0;
1033
1034                         mm_file_get_attrs(tag, MM_FILE_TAG_LONGITUDE, &longitude,
1035                                 MM_FILE_TAG_LATIDUE, &latitude,
1036                                 MM_FILE_TAG_ALTIDUE, &altitude,
1037                                 NULL);
1038
1039                         content_info->media_meta.longitude = (longitude == 0.0) ? MEDIA_SVC_DEFAULT_GPS_VALUE : longitude;
1040                         content_info->media_meta.latitude = (latitude == 0.0) ? MEDIA_SVC_DEFAULT_GPS_VALUE : latitude;
1041                         content_info->media_meta.altitude = (altitude == 0.0) ? MEDIA_SVC_DEFAULT_GPS_VALUE : altitude;
1042
1043                         mmf_error = mm_file_get_attrs(tag, MM_FILE_TAG_ROTATE, &p, &size, NULL);
1044                         if ((mmf_error == FILEINFO_ERROR_NONE) && (size > 0)) {
1045                                 content_info->media_meta.orientation = atoi(p);
1046                         } else {
1047                                 content_info->media_meta.orientation = 0;
1048                                 media_svc_debug("fail to get video orientation attr - err(%x)", mmf_error);
1049                         }
1050                 }
1051
1052                 mmf_error = mm_file_destroy_tag_attrs(tag);
1053                 if (mmf_error != FILEINFO_ERROR_NONE)
1054                         media_svc_error("fail to free tag attr - err(%x)", mmf_error);
1055         }       else {
1056                 content_info->media_meta.title = __media_svc_get_title(NULL, content_info->path);
1057                 content_info->album_id = album_id;
1058         }
1059
1060         /*Get Content attribute ===========*/
1061         mmf_error = mm_file_create_content_attrs_simple(&content, content_info->path);
1062
1063         media_svc_retvm_if(mmf_error != FILEINFO_ERROR_NONE, MS_MEDIA_ERR_NONE, "mm_file_create_content_attrs failed");
1064
1065         if (content_info->media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
1066                 int audio_bitrate = 0;
1067                 int video_bitrate = 0;
1068
1069                 mm_file_get_attrs(content, MM_FILE_CONTENT_DURATION, &content_info->media_meta.duration,
1070                         MM_FILE_CONTENT_AUDIO_BITRATE, &audio_bitrate,
1071                         MM_FILE_CONTENT_VIDEO_BITRATE, &video_bitrate,
1072                         MM_FILE_CONTENT_VIDEO_WIDTH, &content_info->media_meta.width,
1073                         MM_FILE_CONTENT_VIDEO_HEIGHT, &content_info->media_meta.height,
1074                         NULL);
1075
1076                 content_info->media_meta.bitrate = audio_bitrate + video_bitrate;
1077         } else {
1078                 mm_file_get_attrs(content, MM_FILE_CONTENT_DURATION, &content_info->media_meta.duration,
1079                         MM_FILE_CONTENT_AUDIO_BITRATE, &content_info->media_meta.bitrate,
1080                         MM_FILE_CONTENT_AUDIO_SAMPLERATE, &content_info->media_meta.samplerate,
1081                         MM_FILE_CONTENT_AUDIO_CHANNELS, &content_info->media_meta.channel,
1082                         MM_FILE_CONTENT_AUDIO_BITPERSAMPLE, &content_info->media_meta.bitpersample,
1083                         NULL);
1084         }
1085
1086         mm_file_destroy_content_attrs(content);
1087
1088         return MS_MEDIA_ERR_NONE;
1089 }
1090
1091 static gchar * __media_svc_get_zipfile_string(zip_t *z, const char *fname)
1092 {
1093         int err = 0;
1094         zip_int64_t index_num = 0;
1095         zip_file_t *file = NULL;
1096         zip_stat_t sb = {0, };
1097         gchar *buf = NULL;
1098
1099         media_svc_retvm_if(!z, NULL, "z is NULL");
1100         media_svc_retvm_if(!fname, NULL, "fname is NULL");
1101
1102         index_num = zip_name_locate(z, fname, ZIP_FL_NOCASE);
1103         media_svc_retvm_if(index_num == -1, NULL, "fname is not exists [%s]", fname);
1104
1105         err = zip_stat_index(z, index_num, ZIP_STAT_SIZE, &sb);
1106         media_svc_retvm_if(err == -1, NULL, "zip_stat_index failed");
1107
1108         file = zip_fopen_index(z, index_num, ZIP_FL_UNCHANGED);
1109         media_svc_retvm_if(!file, NULL, "zip_fopen_index failed");
1110
1111         buf = g_malloc0(sb.size + 1);
1112
1113         err = zip_fread(file, buf, sb.size);
1114         zip_fclose(file);
1115
1116         if (err == -1) {
1117                 g_free(buf);
1118                 buf = NULL;
1119         }
1120
1121         return buf;
1122 }
1123
1124 static xmlNodePtr __media_svc_find_node(xmlNodePtr node, const char *key)
1125 {
1126         xmlNodePtr tmp = NULL;
1127
1128         media_svc_retvm_if(!node, NULL, "node is NULL");
1129         media_svc_retvm_if(!key, NULL, "key is NULL");
1130
1131         for (tmp = node->children; tmp; tmp = tmp->next) {
1132                 if (xmlIsBlankNode(tmp))
1133                         continue;
1134
1135                 if (g_str_has_suffix((gchar *)tmp->name, key))
1136                         return tmp;
1137         }
1138
1139         return NULL;
1140 }
1141
1142 static char * __media_svc_remove_escape_c(const char *value)
1143 {
1144         int start = -1;
1145         int end = 0;
1146         int len, i;
1147
1148         media_svc_retv_if(!value, NULL);
1149
1150         len = strlen(value);
1151
1152         for (i = 0; i < len; i++) {
1153                 if (value[i] != 10 && value[i] != 32) { // 10='\n' 32=' '
1154                         if (start == -1)
1155                                 start = i;
1156
1157                         end = i;
1158                 }
1159         }
1160
1161         end = end - start + 1;
1162
1163         return g_strndup(value + start, end);
1164 }
1165
1166 static char * __media_svc_find_and_get_value(xmlNodePtr node, const char *key)
1167 {
1168         xmlNodePtr tmp = NULL;
1169         char *tmp_res = NULL;
1170         char *res = NULL;
1171
1172         media_svc_retvm_if(!node, NULL, "node is NULL");
1173         media_svc_retvm_if(!key, NULL, "key is NULL");
1174
1175         for (tmp = node->children; tmp; tmp = tmp->next) {
1176                 if (xmlIsBlankNode(tmp))
1177                         continue;
1178
1179                 if (tmp->children) {
1180                         tmp_res = __media_svc_find_and_get_value(tmp, key);
1181                         if (tmp_res) {
1182                                 res = __media_svc_remove_escape_c(tmp_res);
1183                                 xmlFree(tmp_res);
1184                                 return res;
1185                         }
1186                 }
1187
1188                 if (g_str_has_suffix((gchar *)tmp->name, key))
1189                         return (char *)xmlNodeGetContent(tmp);
1190         }
1191
1192         return NULL;
1193 }
1194
1195 static gboolean __media_svc_get_epub_root_file(zip_t *z, char **opf_file)
1196 {
1197         gchar *buf = NULL;
1198         gchar *tmp_buf = NULL;
1199         xmlDocPtr doc = NULL;
1200         xmlNodePtr node = NULL;
1201
1202         media_svc_retvm_if(!z, FALSE, "z is NULL");
1203         media_svc_retvm_if(!opf_file, FALSE, "opf_file is NULL");
1204
1205         buf = __media_svc_get_zipfile_string(z, "META-INF/container.xml");
1206         media_svc_retvm_if(!buf, FALSE, "buf is NULL");
1207
1208         tmp_buf = g_strrstr(buf, ">");
1209         if (tmp_buf)
1210                 *(tmp_buf + 1) = '\0';
1211
1212         doc = xmlParseDoc((const xmlChar *)buf);
1213         g_free(buf);
1214         media_svc_retvm_if(!doc, FALSE, "doc is NULL");
1215
1216         node = xmlDocGetRootElement(doc);
1217         node = __media_svc_find_node(node, "rootfiles");
1218         node = __media_svc_find_node(node, "rootfile");
1219
1220         *opf_file = (char *)xmlGetProp(node, (const xmlChar *)"full-path");
1221         media_svc_sec_debug("OPF [%s]", *opf_file);
1222         xmlFreeDoc(doc);
1223
1224         return TRUE;
1225 }
1226
1227 static gboolean __media_svc_get_xml_metadata(const xmlChar *buffer, gboolean is_pdf, media_svc_content_info_s *content_info)
1228 {
1229         xmlDocPtr doc = NULL;
1230         xmlNodePtr root = NULL;
1231
1232         media_svc_retvm_if(!buffer, FALSE, "buffer is NULL");
1233         media_svc_retvm_if(!content_info, FALSE, "content_info is NULL");
1234
1235         doc = xmlParseDoc(buffer);
1236         media_svc_retv_if(!doc, FALSE);
1237
1238         root = xmlDocGetRootElement(doc);
1239         if (!root) {
1240                 xmlFreeDoc(doc);
1241                 return FALSE;
1242         }
1243
1244         content_info->media_meta.title = __media_svc_find_and_get_value(root, "title");
1245         if (is_pdf && !content_info->media_meta.title) {
1246                 xmlFreeDoc(doc);
1247                 return FALSE;
1248         }
1249
1250         content_info->media_meta.composer = __media_svc_find_and_get_value(root, "creator");
1251         if (!content_info->media_meta.composer)
1252                 content_info->media_meta.composer = __media_svc_find_and_get_value(root, "author");
1253
1254         content_info->media_meta.copyright = __media_svc_find_and_get_value(root, "publisher");
1255         content_info->media_meta.recorded_date = __media_svc_find_and_get_value(root, "date");
1256         content_info->media_meta.genre = __media_svc_find_and_get_value(root, "subject");
1257         content_info->media_meta.description = __media_svc_find_and_get_value(root, "description");
1258
1259         xmlFreeDoc(doc);
1260
1261         return TRUE;
1262 }
1263
1264 static int __media_svc_get_epub_metadata(media_svc_content_info_s *content_info)
1265 {
1266         int err = 0;
1267         zip_t *z = NULL;
1268         gchar *buf = NULL;
1269         char *opf_path = NULL;
1270
1271         media_svc_retvm_if(!content_info, MS_MEDIA_ERR_INVALID_PARAMETER, "content_info is NULL");
1272
1273         //1. open epub
1274         z = zip_open(content_info->path, ZIP_RDONLY, &err);
1275         media_svc_retvm_if(err == -1, MS_MEDIA_ERR_INTERNAL, "zip_open failed");
1276
1277         //2. find and read opf file
1278         if (!__media_svc_get_epub_root_file(z, &opf_path)) {
1279                 media_svc_error("__media_svc_get_epub_root_file failed");
1280                 zip_close(z);
1281                 return MS_MEDIA_ERR_INTERNAL;
1282         }
1283
1284         //3. get metadata
1285         buf = __media_svc_get_zipfile_string(z, opf_path);
1286         xmlFree(opf_path);
1287         zip_close(z);
1288         media_svc_retvm_if(!buf, MS_MEDIA_ERR_INTERNAL, "__media_svc_get_zipfile_string failed");
1289
1290         if (!__media_svc_get_xml_metadata((const xmlChar *)buf, FALSE, content_info))
1291                 media_svc_error("__media_svc_get_xml_metadata failed");
1292
1293         g_free(buf);
1294
1295         return MS_MEDIA_ERR_NONE;
1296 }
1297
1298 static int __media_svc_get_pdf_metadata(media_svc_content_info_s *content_info)
1299 {
1300     int fd = 0;
1301     int start_pos = 0;
1302     int end_pos = 0;
1303     int cur_pos = 0;
1304     int search_limit = 0;
1305     char tmp[MEDIA_SVC_PDF_BUF_SIZE + 1] = {0, };
1306     gchar *meta_buf = NULL;
1307     char *found = NULL;
1308
1309         media_svc_retvm_if(!content_info, MS_MEDIA_ERR_INVALID_PARAMETER, "content_info is NULL");
1310         media_svc_retvm_if(content_info->size < 256, MS_MEDIA_ERR_INTERNAL, "open failed");
1311
1312         fd = open(content_info->path, O_RDONLY);
1313         media_svc_retvm_if(fd < 0, MS_MEDIA_ERR_INTERNAL, "open failed");
1314
1315         search_limit = content_info->size - MEDIA_SVC_PDF_TAG_TAIL_LEN;
1316
1317         while (cur_pos <= search_limit) {
1318                 if (lseek(fd, cur_pos, SEEK_SET) == -1)
1319                         break;
1320
1321                 memset(&tmp, 0x00, MEDIA_SVC_PDF_BUF_SIZE + 1);
1322
1323                 if (read(fd, &tmp, MEDIA_SVC_PDF_BUF_SIZE) != MEDIA_SVC_PDF_BUF_SIZE) {
1324                         media_svc_error("read failed");
1325                         break;
1326                 }
1327
1328                 //1.Find <x:xmpmeta .. </x:xmpmeta> block
1329                 if (start_pos == 0 && (found = strstr(tmp, "<x:xmpmeta"))) {
1330                         start_pos = cur_pos + (found - tmp);
1331 //                      media_svc_error("FIND START_POS[%d]", start_pos);
1332                         found = NULL;
1333                 }
1334
1335
1336                 if (start_pos != 0 && (found = strstr(tmp, "</x:xmpmeta>"))) {
1337                         end_pos = cur_pos + (found - tmp) + MEDIA_SVC_PDF_TAG_TAIL_LEN;
1338 //                      media_svc_error("FIND END_POS[%d]", end_pos);
1339                         found = NULL;
1340                 }
1341
1342                 //2.get metadata using xml parser
1343                 if (start_pos && end_pos) {
1344                         if (lseek(fd, start_pos, SEEK_SET) == -1)
1345                                 break;
1346
1347                         meta_buf = g_malloc0(end_pos - start_pos + 1);
1348
1349                         if (read(fd, meta_buf, end_pos - start_pos) == end_pos - start_pos) {
1350                                 if (__media_svc_get_xml_metadata((const xmlChar *)meta_buf, TRUE, content_info)) {
1351                                         g_free(meta_buf);
1352                                         break;
1353                                 }
1354                         }
1355
1356                         g_free(meta_buf);
1357
1358                         start_pos = 0;
1359                         end_pos = 0;
1360                 }
1361
1362                 cur_pos += 240;
1363
1364         }
1365
1366         close(fd);
1367
1368         return MS_MEDIA_ERR_NONE;
1369 }
1370
1371 int _media_svc_extract_book_metadata(media_svc_content_info_s *content_info)
1372 {
1373         media_svc_retvm_if(!content_info, MS_MEDIA_ERR_INVALID_PARAMETER, "content info is NULL");
1374
1375         if (g_str_has_suffix(content_info->mime_type, "epub+zip"))
1376                 return __media_svc_get_epub_metadata(content_info);
1377         else
1378                 return __media_svc_get_pdf_metadata(content_info);
1379 }
1380
1381 void _media_svc_destroy_content_info(media_svc_content_info_s *content_info)
1382 {
1383         media_svc_retm_if(!content_info, "content info is NULL");
1384
1385         /* Delete media_svc_content_info_s */
1386         g_free(content_info->media_uuid);
1387         g_free(content_info->path);
1388         g_free(content_info->file_name);
1389         g_free(content_info->mime_type);
1390         g_free(content_info->thumbnail_path);
1391         g_free(content_info->storage_uuid);
1392
1393         /* Delete media_svc_content_meta_s */
1394         g_free(content_info->media_meta.title);
1395         g_free(content_info->media_meta.album);
1396         g_free(content_info->media_meta.artist);
1397         g_free(content_info->media_meta.album_artist);
1398         g_free(content_info->media_meta.genre);
1399         g_free(content_info->media_meta.composer);
1400         g_free(content_info->media_meta.year);
1401         g_free(content_info->media_meta.recorded_date);
1402         g_free(content_info->media_meta.copyright);
1403         g_free(content_info->media_meta.track_num);
1404         g_free(content_info->media_meta.description);
1405         g_free(content_info->media_meta.datetaken);
1406         g_free(content_info->media_meta.exposure_time);
1407         g_free(content_info->media_meta.model);
1408 }
1409
1410 int _media_svc_create_thumbnail(const char *path, char *thumb_path, media_svc_media_type_e media_type, uid_t uid)
1411 {
1412         int ret = MS_MEDIA_ERR_NONE;
1413
1414         media_svc_retvm_if(!path, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid path");
1415         media_svc_retvm_if(!thumb_path, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid thumb_path");
1416         media_svc_retvm_if(!g_file_test(path, G_FILE_TEST_IS_REGULAR), MS_MEDIA_ERR_INVALID_PARAMETER, "File doesn't exist[%s]", path);
1417
1418         if (!ms_user_thumb_support(uid, path)) {
1419                 media_svc_sec_error("origin path(%s) is invalid", path);
1420                 return MS_MEDIA_ERR_INVALID_PARAMETER;
1421         }
1422
1423         media_svc_sec_debug("Path[%s] Type[%d]", path, media_type);
1424
1425         //1. make hash path
1426         ret = _media_svc_get_thumbnail_path(thumb_path, path, NULL, uid);
1427         if (ret != MS_MEDIA_ERR_NONE) {
1428                 media_svc_error("_media_svc_get_thumbnail_path failed - %d", ret);
1429                 SAFE_STRLCPY(thumb_path, "", MAX_FILEPATH_LEN);
1430                 return ret;
1431         }
1432
1433         //2. save thumbnail
1434         if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE)
1435                 return create_image_thumbnail_to_file(path, MEDIA_SVC_THUMB_WIDTH, MEDIA_SVC_THUMB_HEIGHT, thumb_path, true);
1436         else
1437                 return create_video_thumbnail_to_file(path, MEDIA_SVC_THUMB_WIDTH, MEDIA_SVC_THUMB_HEIGHT, thumb_path, true);
1438
1439 }
1440
1441 int _media_svc_get_media_type(const char *path, int *mediatype)
1442 {
1443         int ret = MS_MEDIA_ERR_NONE;
1444         char mime_type[256] = {0};
1445         media_svc_media_type_e media_type = MEDIA_SVC_MEDIA_TYPE_OTHER;
1446
1447         media_svc_retvm_if(mediatype == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "mediatype is NULL");
1448
1449         ret = __media_svc_get_mime_type(path, mime_type);
1450         if (ret == MS_MEDIA_ERR_NONE)
1451                 __media_svc_get_media_type(path, mime_type, &media_type);
1452         else
1453                 media_svc_error("__media_svc_get_mime_type failed");
1454
1455         *mediatype = media_type;
1456
1457         return ret;
1458 }
1459
1460 bool _media_svc_is_keyword_included(const char *path, const char *keyword)
1461 {
1462         bool ret = false;
1463         void *handle = NULL;
1464         bool (*svc_search) (const char *, const char *);
1465
1466         media_svc_retvm_if(!path, false, "Invalid path");
1467         media_svc_retvm_if(!keyword, false, "Invalid keyword");
1468
1469         handle = dlopen(PATH_PLUGIN_LIB, RTLD_LAZY);
1470         media_svc_retvm_if(!handle, false, "dlopen failed");
1471
1472         if (g_str_has_suffix(path, "epub") || g_str_has_suffix(path, "EPUB"))
1473                 svc_search = dlsym(handle, "media_svc_epub_is_keyword_included");
1474         else
1475                 svc_search = dlsym(handle, "media_svc_pdf_is_keyword_included");
1476
1477         if (!svc_search) {
1478                 media_svc_error("dlsym failed - %s", dlerror());
1479                 dlclose(handle);
1480                 return false;
1481         }
1482
1483         ret = svc_search(path, keyword);
1484         dlclose(handle);
1485
1486         return ret;
1487 }
1488
1489 static int __media_svc_create_wordbook_db(const char *path, sqlite3 **handle)
1490 {
1491         int ret = SQLITE_OK;
1492         sqlite3 *db_handle = NULL;
1493         char *err = NULL;
1494
1495         ret = sqlite3_open_v2(path, &db_handle, SQLITE_OPEN_CREATE | SQLITE_OPEN_READWRITE, NULL);
1496         media_svc_retvm_if(ret != SQLITE_OK, ret, "sqlite3_open_v2 failed : %d", ret);
1497
1498         ret = sqlite3_exec(db_handle, "PRAGMA journal_mode = OFF;", NULL, NULL, &err);
1499         if (ret != SQLITE_OK)
1500                 goto ERROR;
1501
1502         ret = sqlite3_exec(db_handle, "CREATE TABLE IF NOT EXISTS files(id integer primary key autoincrement, path text unique, validity integer default 1);", NULL, NULL, &err);
1503         if (ret != SQLITE_OK)
1504                 goto ERROR;
1505
1506         ret = sqlite3_exec(db_handle, "CREATE TABLE IF NOT EXISTS words(file_id integer, word text, frequency integer default 1, unique(file_id, word));", NULL, NULL, &err);
1507         if (ret != SQLITE_OK)
1508                 goto ERROR;
1509
1510         ret = sqlite3_exec(db_handle, "CREATE TRIGGER IF NOT EXISTS TR_files_words DELETE ON files BEGIN DELETE FROM words WHERE file_id = old.id;END;", NULL, NULL, &err);
1511         if (ret != SQLITE_OK)
1512                 goto ERROR;
1513
1514         *handle = db_handle;
1515
1516         return SQLITE_OK;
1517
1518 ERROR:
1519         media_svc_error("sqlite3_exec failed : %s", err);
1520         SQLITE3_SAFE_FREE(err);
1521         sqlite3_close_v2(db_handle);
1522
1523         return ret;
1524 }
1525
1526 static bool __media_svc_get_wordbook_handle(uid_t uid, sqlite3 **handle)
1527 {
1528         int ret = SQLITE_OK;
1529         char *db_path = NULL;
1530
1531         ms_user_get_wordbook_db_path(uid, &db_path);
1532         if (!db_path)
1533                 return false;
1534
1535         ret = sqlite3_open_v2(db_path, handle, SQLITE_OPEN_READWRITE, NULL);
1536         if (ret != SQLITE_OK) {
1537                 ret = __media_svc_create_wordbook_db(db_path, handle);
1538                 free(db_path);
1539                 media_svc_retvm_if(ret != SQLITE_OK, false, "__media_svc_create_wordbook_db failed : %d", ret);
1540         } else {
1541                 ret = sqlite3_exec(*handle, "PRAGMA journal_mode = OFF;", NULL, NULL, NULL);
1542                 if (ret != SQLITE_OK)
1543                         media_svc_error("Failed to change journal mode [%d]", ret);
1544         }
1545
1546         return true;
1547 }
1548
1549 static bool __media_svc_is_exist_in_wordbook(sqlite3 *db_handle, const char *path)
1550 {
1551         int ret = SQLITE_OK;
1552         char *err = NULL;
1553         char *query = NULL;
1554
1555         query = sqlite3_mprintf("UPDATE files SET validity=1 WHERE path = %Q", path);
1556
1557         ret = sqlite3_exec(db_handle, query, NULL, NULL, &err);
1558         SQLITE3_SAFE_FREE(query);
1559         if (ret != SQLITE_OK) {
1560                 media_svc_error("Query failed. [%s]", err);
1561                 SQLITE3_SAFE_FREE(err);
1562                 return false;
1563         }
1564
1565         return sqlite3_changes(db_handle) > 0 ? true : false;
1566 }
1567
1568 static void __media_svc_insert_to_wordbook(sqlite3 *db_handle, const char *path)
1569 {
1570         void *handle = NULL;
1571         void (*svc_update) (sqlite3 *, const char *);
1572         char *query = NULL;
1573
1574         query = sqlite3_mprintf("INSERT INTO files(path) VALUES(%Q);", path);
1575         sqlite3_exec(db_handle, query, NULL, NULL, NULL);
1576         sqlite3_free(query);
1577
1578         handle = dlopen(PATH_PLUGIN_LIB, RTLD_LAZY);
1579         if (!handle) {
1580                 media_svc_error("dlopen failed");
1581                 return;
1582         }
1583
1584         if (g_str_has_suffix(path, "epub") || g_str_has_suffix(path, "EPUB"))
1585                 svc_update = dlsym(handle, "media_svc_epub_insert_to_db");
1586         else
1587                 svc_update = dlsym(handle, "media_svc_pdf_insert_to_db");
1588
1589         if (!svc_update) {
1590                 media_svc_error("dlsym failed - %s", dlerror());
1591                 dlclose(handle);
1592                 return;
1593         }
1594
1595         svc_update(db_handle, path);
1596         dlclose(handle);
1597 }
1598
1599 void _media_svc_update_wordbook(const char *path, uid_t uid)
1600 {
1601         sqlite3 *db_handle = NULL;
1602
1603         if (!path) {
1604                 media_svc_error("Invalid path");
1605                 return;
1606         }
1607
1608         // check db..
1609         if (!__media_svc_get_wordbook_handle(uid, &db_handle))
1610                 return;
1611
1612         if (__media_svc_is_exist_in_wordbook(db_handle, path)) {
1613                 sqlite3_close_v2(db_handle);
1614                 return;
1615         }
1616
1617         // if no item, insert to db..
1618         __media_svc_insert_to_wordbook(db_handle, path);
1619         sqlite3_close_v2(db_handle);
1620 }
1621
1622 void _media_svc_clean_wordbook(uid_t uid)
1623 {
1624         sqlite3 *db_handle = NULL;
1625
1626         if (!__media_svc_get_wordbook_handle(uid, &db_handle))
1627                 return;
1628
1629         sqlite3_exec(db_handle, "DELETE FROM files where validity = 0;", NULL, NULL, NULL);
1630         sqlite3_exec(db_handle, "UPDATE files SET validity = 0;", NULL, NULL, NULL);
1631         sqlite3_close_v2(db_handle);
1632 }
1633
1634 bool _media_svc_get_matched_list(const char *keyword, uid_t uid, GList **list)
1635 {
1636         int ret = SQLITE_OK;
1637         sqlite3 *handle = NULL;
1638         sqlite3_stmt *stmt = NULL;
1639         char *query = NULL;
1640
1641         media_svc_retvm_if(!list, false, "list is NULL");
1642         media_svc_retvm_if(!keyword, false, "keyword is NULL");
1643         media_svc_retvm_if(!__media_svc_get_wordbook_handle(uid, &handle), false, "Failed to get handle");
1644
1645         query = sqlite3_mprintf("SELECT files.path FROM files JOIN (SELECT file_id, sum(frequency) AS freq_sum FROM words WHERE word LIKE '%q%%' GROUP BY file_id ORDER BY freq_sum DESC) w ON files.id = w.file_id;", keyword);
1646         ret = sqlite3_prepare_v2(handle, query, -1, &stmt, NULL);
1647         SQLITE3_SAFE_FREE(query);
1648
1649         if (ret != SQLITE_OK) {
1650                 media_svc_error("Query failed[%d]", ret);
1651                 sqlite3_close_v2(handle);
1652                 return false;
1653         }
1654
1655         while (sqlite3_step(stmt) == SQLITE_ROW)
1656                 *list = g_list_append(*list, g_strdup((char *)sqlite3_column_text(stmt, 0)));
1657
1658         sqlite3_finalize(stmt);
1659         sqlite3_close_v2(handle);
1660
1661         return true;
1662 }