Remove default setting function
[platform/core/multimedia/libmedia-service.git] / src / common / media-svc.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 <string.h>
23 #include <errno.h>
24 #include "media-svc.h"
25 #include "media-svc-media.h"
26 #include "media-svc-debug.h"
27 #include "media-svc-util.h"
28 #include "media-svc-db-utils.h"
29 #include "media-svc-env.h"
30 #include "media-svc-media-folder.h"
31 #include "media-svc-album.h"
32 #include "media-svc-noti.h"
33 #include "media-svc-storage.h"
34
35 //static __thread int g_media_svc_data_cnt = 0;
36 static __thread int g_media_svc_cur_data_cnt = 0;
37
38 /* Flag for items to be published by notification */
39 static __thread bool g_insert_with_noti = false;
40
41 #define BATCH_ITEM_COUNT_MAX 100
42
43 int media_svc_get_user_version(sqlite3 *handle, int *user_version)
44 {
45         return _media_svc_get_user_version(handle, user_version);
46 }
47
48 int media_svc_create_table(uid_t uid)
49 {
50         int ret = MS_MEDIA_ERR_NONE;
51         char *sql = NULL;
52
53         media_svc_debug_fenter();
54
55         ret = _media_svc_init_table_query(MEDIA_SVC_DB_TABLE_MEDIA);
56         if (ret != MS_MEDIA_ERR_NONE) {
57                 media_svc_error("_media_svc_init_table_query fail.");
58                 goto ERROR;
59         }
60
61         /*create media table*/
62         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_MEDIA, MEDIA_SVC_DB_LIST_MEDIA, uid);
63         if (ret != MS_MEDIA_ERR_NONE) {
64                 media_svc_error("_media_svc_make_table_query fail.");
65                 goto ERROR;
66         }
67
68         /*create folder table*/
69         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_FOLDER, MEDIA_SVC_DB_LIST_FOLDER, uid);
70         if (ret != MS_MEDIA_ERR_NONE) {
71                 media_svc_error("_media_svc_make_table_query fail.");
72                 goto ERROR;
73         }
74
75         /*create playlist_map table*/
76         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_PLAYLIST_MAP, MEDIA_SVC_DB_LIST_PLAYLIST_MAP, uid);
77         if (ret != MS_MEDIA_ERR_NONE) {
78                 media_svc_error("_media_svc_make_table_query fail.");
79                 goto ERROR;
80         }
81
82         /*create playlist table*/
83         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_PLAYLIST, MEDIA_SVC_DB_LIST_PLAYLIST, uid);
84         if (ret != MS_MEDIA_ERR_NONE) {
85                 media_svc_error("_media_svc_make_table_query fail.");
86                 goto ERROR;
87         }
88
89         /* create album table*/
90         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_ALBUM, MEDIA_SVC_DB_LIST_ALBUM, uid);
91         if (ret != MS_MEDIA_ERR_NONE) {
92                 media_svc_error("_media_svc_make_table_query fail.");
93                 goto ERROR;
94         }
95
96         /*create tag_map table*/
97         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_TAG_MAP, MEDIA_SVC_DB_LIST_TAG_MAP, uid);
98         if (ret != MS_MEDIA_ERR_NONE) {
99                 media_svc_error("_media_svc_make_table_query fail.");
100                 goto ERROR;
101         }
102
103         /*create tag table*/
104         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_TAG, MEDIA_SVC_DB_LIST_TAG, uid);
105         if (ret != MS_MEDIA_ERR_NONE) {
106                 media_svc_error("_media_svc_make_table_query fail.");
107                 goto ERROR;
108         }
109
110         /*create bookmark table*/
111         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_BOOKMARK, MEDIA_SVC_DB_LIST_BOOKMARK, uid);
112         if (ret != MS_MEDIA_ERR_NONE) {
113                 media_svc_error("_media_svc_make_table_query fail.");
114                 goto ERROR;
115         }
116
117         /*create storage table from tizen 2.4 */
118         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_STORAGE, MEDIA_SVC_DB_LIST_STORAGE, uid);
119         if (ret != MS_MEDIA_ERR_NONE) {
120                 media_svc_error("_media_svc_make_table_query fail.");
121                 goto ERROR;
122         }
123
124         /*create face table. from tizen 3.0*/
125         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_FACE_SCAN_LIST, MEDIA_SVC_DB_LIST_FACE_SCAN_LIST, uid);
126         if (ret != MS_MEDIA_ERR_NONE) {
127                 media_svc_error("_media_svc_make_table_query fail.");
128                 goto ERROR;
129         }
130
131         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_FACE, MEDIA_SVC_DB_LIST_FACE, uid);
132         if (ret != MS_MEDIA_ERR_NONE) {
133                 media_svc_error("_media_svc_make_table_query fail.");
134                 goto ERROR;
135         }
136
137         sql = sqlite3_mprintf("pragma user_version = %d;", LATEST_DB_VERSION);
138         ret = _media_svc_sql_query(sql, uid);
139         if (ret != MS_MEDIA_ERR_NONE) {
140                 media_svc_error("user_version update fail.");
141                 goto ERROR;
142         }
143
144         _media_svc_destroy_table_query();
145
146         media_svc_debug_fleave();
147
148         return MS_MEDIA_ERR_NONE;
149 ERROR:
150         _media_svc_destroy_table_query();
151
152         media_svc_debug_fleave();
153
154         return ret;
155 }
156
157 int media_svc_check_item_exist_by_path(sqlite3 *handle, const char *storage_id, const char *path)
158 {
159         int ret = MS_MEDIA_ERR_NONE;
160         int count = -1;
161
162         ret = _media_svc_count_record_with_path(handle, path, &count);
163         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
164
165         if (count > 0) {
166                 media_svc_debug("item is exist in database");
167                 return MS_MEDIA_ERR_NONE;
168         } else {
169                 media_svc_debug("item is not exist in database");
170                 return MS_MEDIA_ERR_DB_NO_RECORD;
171         }
172
173         return MS_MEDIA_ERR_NONE;
174 }
175
176 int media_svc_get_modified_time(sqlite3 *handle, const char *storage_id, const char *path, int *modified_time)
177 {
178         return _media_svc_get_modified_time(handle, path, modified_time);
179 }
180
181 int media_svc_insert_item_begin(bool with_noti, int from_pid)
182 {
183         g_media_svc_cur_data_cnt = 0;
184
185         /* Prepare for making noti item list */
186         if (with_noti) {
187                 media_svc_debug("making noti list from pid[%d]", from_pid);
188                 _media_svc_initialize_noti_list();
189                 _media_svc_set_noti_from_pid(from_pid);
190                 g_insert_with_noti = true;
191         }
192
193         return MS_MEDIA_ERR_NONE;
194 }
195
196 int media_svc_insert_item_end(uid_t uid)
197 {
198         int ret = MS_MEDIA_ERR_NONE;
199
200         media_svc_debug_fenter();
201
202         if (g_media_svc_cur_data_cnt > 0) {
203                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_SCANNER, uid);
204                 if (g_insert_with_noti) {
205                         media_svc_debug("sending noti list");
206                         _media_svc_publish_noti_list();
207                         _media_svc_initialize_noti_list();
208                         g_insert_with_noti = false;
209                         _media_svc_set_noti_from_pid(-1);
210                 }
211         }
212
213         g_media_svc_cur_data_cnt = 0;
214
215         return ret;
216 }
217
218 int media_svc_insert_item_bulk(sqlite3 *handle, const char *storage_id, ms_user_storage_type_e storage_type, const char *path, uid_t uid)
219 {
220         int ret = MS_MEDIA_ERR_NONE;
221         char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
222
223         media_svc_retvm_if(handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
224         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
225         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
226         media_svc_retvm_if(!_media_svc_is_valid_storage_type(storage_type), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
227
228         media_svc_content_info_s content_info;
229         memset(&content_info, 0, sizeof(media_svc_content_info_s));
230
231         /*Set media info*/
232         /* if drm_contentinfo is not NULL, the file is OMA DRM.*/
233         ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, path, false);
234         if (ret != MS_MEDIA_ERR_NONE)
235                 return ret;
236
237         switch (content_info.media_type) {
238         case MEDIA_SVC_MEDIA_TYPE_IMAGE:
239                 ret = _media_svc_extract_image_metadata(&content_info);
240                 break;
241         case MEDIA_SVC_MEDIA_TYPE_VIDEO:
242         case MEDIA_SVC_MEDIA_TYPE_SOUND:
243         case MEDIA_SVC_MEDIA_TYPE_MUSIC:
244                 ret = _media_svc_extract_media_metadata(handle, true, &content_info, uid);
245                 break;
246         default:
247                 /* The 'TITLE' should always be filled in */
248                 content_info.media_meta.title = _media_svc_get_title_by_path(content_info.path);
249                 break;
250         }
251
252         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
253
254         /*Set or Get folder id*/
255         ret = _media_svc_get_and_append_folder_id_by_path(handle, true, storage_id, path, storage_type, folder_uuid, uid);
256         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
257
258         content_info.folder_uuid = g_strdup(folder_uuid);
259         media_svc_retv_del_if(content_info.folder_uuid == NULL, MS_MEDIA_ERR_INTERNAL, &content_info);
260
261         ret = _media_svc_insert_item_with_data(true, &content_info, true, uid);
262         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
263
264         if (g_insert_with_noti)
265                 _media_svc_insert_item_to_noti_list(&content_info);
266
267         /* To avoid over-occupying memory, update per BATCH_ITEM_COUNT_MAX. */
268         if (++g_media_svc_cur_data_cnt == BATCH_ITEM_COUNT_MAX) {
269                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_SCANNER, uid);
270                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
271
272                 if (g_insert_with_noti) {
273                         _media_svc_publish_noti_list();
274                         _media_svc_initialize_noti_list();
275                 }
276
277                 g_media_svc_cur_data_cnt = 0;
278         }
279
280         _media_svc_destroy_content_info(&content_info);
281
282         return MS_MEDIA_ERR_NONE;
283 }
284
285 int media_svc_insert_item_immediately(sqlite3 *handle, const char *storage_id, ms_user_storage_type_e storage_type, const char *path, uid_t uid)
286 {
287         int ret = MS_MEDIA_ERR_NONE;
288         char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
289
290         media_svc_retvm_if(handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
291         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
292         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
293         media_svc_retvm_if(!_media_svc_is_valid_storage_type(storage_type), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
294
295         media_svc_content_info_s content_info;
296         memset(&content_info, 0, sizeof(media_svc_content_info_s));
297
298         /*Set media info*/
299         ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, path, false);
300         if (ret != MS_MEDIA_ERR_NONE)
301                 return ret;
302
303         switch (content_info.media_type) {
304         case MEDIA_SVC_MEDIA_TYPE_IMAGE:
305                 ret = _media_svc_extract_image_metadata(&content_info);
306                 break;
307         case MEDIA_SVC_MEDIA_TYPE_VIDEO:
308         case MEDIA_SVC_MEDIA_TYPE_SOUND:
309         case MEDIA_SVC_MEDIA_TYPE_MUSIC:
310                 ret = _media_svc_extract_media_metadata(handle, false, &content_info, uid);
311                 break;
312         default:
313                 /* The 'TITLE' should always be filled in */
314                 content_info.media_meta.title = _media_svc_get_title_by_path(content_info.path);
315                 break;
316         }
317
318         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
319
320         /*Set or Get folder id*/
321         ret = _media_svc_get_and_append_folder_id_by_path(handle, false, storage_id, path, storage_type, folder_uuid, uid);
322         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
323
324         content_info.folder_uuid = g_strdup(folder_uuid);
325         media_svc_retv_del_if(content_info.folder_uuid == NULL, MS_MEDIA_ERR_INTERNAL, &content_info);
326
327         /* Extracting thumbnail */
328         if (content_info.thumbnail_path == NULL) {
329                 if (content_info.media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE || content_info.media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
330                         char thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
331
332                         ret = _media_svc_create_thumbnail(content_info.path, thumb_path, content_info.media_type, uid);
333                         if (ret == MS_MEDIA_ERR_NONE)
334                                 content_info.thumbnail_path = g_strdup(thumb_path);
335                 }
336         }
337
338         ret = _media_svc_insert_item_with_data(false, &content_info, false, uid);
339
340         if (ret == MS_MEDIA_ERR_NONE) {
341                 media_svc_debug("Insertion is successful. Sending noti for this");
342                 _media_svc_publish_noti(MS_MEDIA_ITEM_INSERT, content_info.path, content_info.media_type, content_info.media_uuid, content_info.mime_type);
343         } else if (ret == MS_MEDIA_ERR_DB_CONSTRAINT_FAIL) {
344                 media_svc_error("This item is already inserted. This may be normal operation because other process already did this");
345         }
346
347         _media_svc_destroy_content_info(&content_info);
348         return ret;
349 }
350
351 int media_svc_move_item(sqlite3 *handle,
352                                                                 const char *src_path,
353                                                                 const char *dest_path,
354                                                                 const char *media_id,
355                                                                 int media_type,
356                                                                 const char *mime_type,
357                                                                 uid_t uid)
358 {
359         int ret = MS_MEDIA_ERR_NONE;
360         char *file_name = NULL;
361         char *folder_path = NULL;
362         int modified_time = 0;
363         char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
364         char old_thumb_path[MEDIA_SVC_PATHNAME_SIZE] = {0, };
365         char dst_stg_id[MEDIA_SVC_UUID_SIZE + 1] = {0, };
366         ms_user_storage_type_e org_stg_type = MS_USER_STORAGE_INTERNAL;
367         ms_user_storage_type_e dst_stg_type = MS_USER_STORAGE_INTERNAL;
368
369         media_svc_debug_fenter();
370
371         media_svc_retvm_if(handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
372         media_svc_retvm_if(!STRING_VALID(src_path), MS_MEDIA_ERR_INVALID_PARAMETER, "src_path is NULL");
373         media_svc_retvm_if(!STRING_VALID(dest_path), MS_MEDIA_ERR_INVALID_PARAMETER, "dest_path is NULL");
374         media_svc_retvm_if(!STRING_VALID(media_id), MS_MEDIA_ERR_INVALID_PARAMETER, "media_id is NULL");
375         media_svc_retvm_if(!STRING_VALID(mime_type), MS_MEDIA_ERR_INVALID_PARAMETER, "mime_type is NULL");
376
377         /* Get storage_id */
378         ret = _media_svc_get_storage_uuid(handle, dest_path, dst_stg_id, uid);
379         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
380         /* Get storage_type */
381         ret = ms_user_get_storage_type(uid, src_path, &org_stg_type);
382         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
383         ret = ms_user_get_storage_type(uid, dest_path, &dst_stg_type);
384         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
385
386         /*check and update folder*/
387         ret = _media_svc_get_and_append_folder_id_by_path(handle, false, dst_stg_id, dest_path, dst_stg_type, folder_uuid, uid);
388         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
389
390         /*get filename*/
391         file_name = g_path_get_basename(dest_path);
392
393         /*get modified_time*/
394         modified_time = _media_svc_get_file_time(dest_path);
395
396         /*get old thumbnail_path and remove thumbnail */
397         ret = _media_svc_get_thumbnail_path_by_path(handle, src_path, old_thumb_path);
398         if ((ret != MS_MEDIA_ERR_NONE) && (ret != MS_MEDIA_ERR_DB_NO_RECORD)) {
399                 media_svc_error("_media_svc_get_thumbnail_path_by_path failed");
400                 SAFE_FREE(file_name);
401                 return ret;
402         }
403
404         _media_svc_remove_file(old_thumb_path);
405
406         /*move item*/
407         ret = _media_svc_update_item_by_path(src_path, dst_stg_id, dst_stg_type, dest_path, file_name, modified_time, folder_uuid, uid);
408         SAFE_FREE(file_name);
409         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
410
411         media_svc_debug("Move is successful. Sending noti for this");
412         _media_svc_publish_noti(MS_MEDIA_ITEM_UPDATE, src_path, media_type, media_id, mime_type);
413
414         /*update folder modified_time*/
415         folder_path = g_path_get_dirname(dest_path);
416         ret = _media_svc_update_folder_modified_time_by_folder_uuid(folder_uuid, folder_path, uid);
417         SAFE_FREE(folder_path);
418         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
419
420         return MS_MEDIA_ERR_NONE;
421 }
422
423 int media_svc_set_item_validity(const char *path, int validity, uid_t uid)
424 {
425         int ret = MS_MEDIA_ERR_NONE;
426
427         ret = _media_svc_update_item_validity(path, validity, true, uid);
428         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
429
430         /* To avoid over-occupying memory, update per BATCH_ITEM_COUNT_MAX. */
431         if (++g_media_svc_cur_data_cnt == BATCH_ITEM_COUNT_MAX) {
432                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_SCANNER, uid);
433                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
434
435                 g_media_svc_cur_data_cnt = 0;
436         }
437
438         return ret;
439 }
440
441 int media_svc_delete_item_by_path(sqlite3 *handle, const char *storage_id, const char *path, uid_t uid)
442 {
443         int ret = MS_MEDIA_ERR_NONE;
444         char thumb_path[MEDIA_SVC_PATHNAME_SIZE] = {0, };
445         media_svc_noti_item *noti_item = NULL;
446
447         media_svc_debug_fenter();
448
449         /*Get thumbnail path to delete*/
450         ret = _media_svc_get_thumbnail_path_by_path(handle, path, thumb_path);
451         media_svc_retv_if((ret != MS_MEDIA_ERR_NONE) && (ret != MS_MEDIA_ERR_DB_NO_RECORD), ret);
452
453         /* Get notification info */
454         ret = _media_svc_get_noti_info(handle, path, &noti_item);
455         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
456
457         /*Delete item*/
458         ret = _media_svc_delete_item_by_path(path, uid);
459         if (ret != MS_MEDIA_ERR_NONE) {
460                 media_svc_error("_media_svc_delete_item_by_path failed : %d", ret);
461                 _media_svc_destroy_noti_item(noti_item);
462
463                 return ret;
464         }
465
466         /* Send notification */
467         media_svc_debug("Deletion is successful. Sending noti for this");
468         _media_svc_publish_noti(MS_MEDIA_ITEM_DELETE, path, noti_item->media_type, noti_item->media_uuid, noti_item->mime_type);
469         _media_svc_destroy_noti_item(noti_item);
470
471         /*Delete thumbnail*/
472         _media_svc_remove_file(thumb_path);
473
474         return MS_MEDIA_ERR_NONE;
475 }
476
477 int media_svc_refresh_item(sqlite3 *handle, bool is_direct, const char *storage_id, ms_user_storage_type_e storage_type, const char *path, uid_t uid)
478 {
479         int ret = MS_MEDIA_ERR_NONE;
480         char thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
481
482         media_svc_retvm_if(handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
483         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
484         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
485         media_svc_retvm_if(!_media_svc_is_valid_storage_type(storage_type), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
486
487         media_svc_content_info_s content_info;
488         memset(&content_info, 0, sizeof(media_svc_content_info_s));
489
490         /*Set media info*/
491         ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, path, true);
492         if (ret != MS_MEDIA_ERR_NONE)
493                 return ret;
494
495         /* Initialize thumbnail information to remake thumbnail. */
496         ret = _media_svc_get_thumbnail_path_by_path(handle, path, thumb_path);
497         if (ret != MS_MEDIA_ERR_NONE && ret != MS_MEDIA_ERR_DB_NO_RECORD) {
498                 _media_svc_destroy_content_info(&content_info);
499                 return ret;
500         }
501
502         if (STRING_VALID(thumb_path)) {
503                 _media_svc_remove_file(thumb_path);
504
505                 ret = _media_svc_update_thumbnail_path(path, NULL, uid);
506                 if (ret != MS_MEDIA_ERR_NONE) {
507                         _media_svc_destroy_content_info(&content_info);
508                         return ret;
509                 }
510         }
511
512         /* Get notification info */
513         media_svc_noti_item *noti_item = NULL;
514         ret = _media_svc_get_noti_info(handle, path, &noti_item);
515         if (ret != MS_MEDIA_ERR_NONE) {
516                 _media_svc_destroy_content_info(&content_info);
517                 return ret;
518         }
519
520         content_info.media_type = noti_item->media_type;
521         content_info.mime_type = g_strdup(noti_item->mime_type);
522
523         switch (content_info.media_type) {
524         case MEDIA_SVC_MEDIA_TYPE_IMAGE:
525                 ret = _media_svc_extract_image_metadata(&content_info);
526                 break;
527         case MEDIA_SVC_MEDIA_TYPE_VIDEO:
528         case MEDIA_SVC_MEDIA_TYPE_SOUND:
529         case MEDIA_SVC_MEDIA_TYPE_MUSIC:
530                 ret = _media_svc_extract_media_metadata(handle, is_direct, &content_info, uid);
531                 break;
532         default:
533                 /* The 'TITLE' should always be filled in */
534                 content_info.media_meta.title = _media_svc_get_title_by_path(content_info.path);
535                 break;
536         }
537
538         if (ret != MS_MEDIA_ERR_NONE) {
539                 _media_svc_destroy_noti_item(noti_item);
540                 _media_svc_destroy_content_info(&content_info);
541                 return ret;
542         }
543
544         /* Extracting thumbnail */
545         if (content_info.thumbnail_path == NULL) {
546                 if (content_info.media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE || content_info.media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
547                         memset(thumb_path, 0, sizeof(thumb_path));
548
549                         ret = _media_svc_create_thumbnail(content_info.path, thumb_path, content_info.media_type, uid);
550                         if (ret == MS_MEDIA_ERR_NONE)
551                                 content_info.thumbnail_path = g_strdup(thumb_path);
552                 }
553         }
554
555         ret = _media_svc_update_item_with_data(is_direct, &content_info, uid);
556
557         if (ret == MS_MEDIA_ERR_NONE) {
558                 media_svc_debug("Update is successful. Sending noti for this");
559                 _media_svc_publish_noti(MS_MEDIA_ITEM_UPDATE, content_info.path, noti_item->media_type, noti_item->media_uuid, noti_item->mime_type);
560         } else {
561                 media_svc_error("_media_svc_update_item_with_data failed : %d", ret);
562         }
563
564         _media_svc_destroy_content_info(&content_info);
565         _media_svc_destroy_noti_item(noti_item);
566
567         return ret;
568 }
569
570 int media_svc_send_dir_update_noti(const char *dir_path, const char *folder_id, media_item_update_type_e update_type, int pid)
571 {
572         media_svc_retvm_if(!STRING_VALID(dir_path), MS_MEDIA_ERR_INVALID_PARAMETER, "dir_path is NULL");
573
574         return _media_svc_publish_dir_noti(update_type, dir_path, folder_id, pid);
575 }
576
577 int media_svc_check_db_upgrade(sqlite3 *handle, int user_version, uid_t uid)
578 {
579         media_svc_debug_fenter();
580
581         return _media_svc_check_db_upgrade(handle, user_version, uid);
582 }
583
584 static void __media_svc_noti_all_storage(sqlite3 *handle, uid_t uid)
585 {
586         int ret = MS_MEDIA_ERR_NONE;
587         char *root_path = NULL;
588         GPtrArray *path_list = NULL;
589         int i = 0;
590
591         ret = ms_user_get_internal_root_path(uid, &root_path);
592         media_svc_retm_if(ret != MS_MEDIA_ERR_NONE, "Fail to get root path");
593
594         ret = _media_svc_publish_dir_noti(MS_MEDIA_ITEM_UPDATE, root_path, NULL, 0);
595         if (ret != MS_MEDIA_ERR_NONE)
596                 media_svc_error("Fail to send noti");
597
598         SAFE_FREE(root_path);
599
600         path_list = g_ptr_array_new_with_free_func(g_free);
601         _media_svc_get_storage_path(handle, &path_list);
602
603         for (i = 0; i < path_list->len; i++) {
604                 root_path = g_ptr_array_index(path_list, i);
605
606                 ret = _media_svc_publish_dir_noti(MS_MEDIA_ITEM_UPDATE, root_path, NULL, 0);
607                 if (ret != MS_MEDIA_ERR_NONE)
608                         media_svc_error("Fail to send noti");
609         }
610
611         g_ptr_array_free(path_list, TRUE);
612 }
613
614 int media_svc_update_item_meta(sqlite3 *handle, uid_t uid)
615 {
616         int ret = MS_MEDIA_ERR_NONE;
617         int i = 0;
618         char *sql = NULL;
619         char *file_path = NULL;
620         media_svc_content_info_s content_info;
621         GPtrArray *path_list = NULL;
622
623         path_list = g_ptr_array_new_with_free_func(g_free);
624         media_svc_retvm_if(!path_list, MS_MEDIA_ERR_OUT_OF_MEMORY, "Allocation failed");
625
626         sql = sqlite3_mprintf("SELECT media_path FROM %q WHERE media_type=3 AND validity=1", MEDIA_SVC_DB_TABLE_MEDIA);
627         ret = _media_svc_get_media(handle, sql, &path_list);
628         if (ret != MS_MEDIA_ERR_NONE) {
629                 media_svc_error("Fail to get media list");
630                 g_ptr_array_free(path_list, TRUE);
631                 return ret;
632         }
633
634         for (i = 0; i < path_list->len; i++) {
635                 file_path = g_ptr_array_index(path_list, i);
636
637                 memset(&content_info, 0, sizeof(media_svc_content_info_s));
638                 ret = _media_svc_extract_music_metadata_for_update(&content_info, file_path);
639                 if (ret != MS_MEDIA_ERR_NONE) {
640                         media_svc_error("Fail to extract metadata");
641                         _media_svc_destroy_content_info(&content_info);
642                         continue;
643                 }
644
645                 ret = _media_svc_update_meta_with_data(&content_info);
646                 if (ret != MS_MEDIA_ERR_NONE)
647                         media_svc_error("Fail to append item[%s]", content_info.path);
648
649                 _media_svc_destroy_content_info(&content_info);
650         }
651
652         g_ptr_array_free(path_list, TRUE);
653
654         ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_SCANNER, uid);
655         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "_media_svc_list_query_do failed");
656
657         /* Noti for this */
658         __media_svc_noti_all_storage(handle, uid);
659
660         return ret;
661 }
662
663 int media_svc_publish_noti(media_item_update_type_e update_type, const char *path, media_type_e media_type, const char *uuid, const char *mime_type)
664 {
665         return _media_svc_publish_noti(update_type, path, media_type, uuid, mime_type);
666 }
667
668 int media_svc_get_pinyin(const char *src_str, char **pinyin_str)
669 {
670         return _media_svc_get_pinyin_str(src_str, pinyin_str);
671 }
672
673 int media_svc_check_pinyin_support(bool *support)
674 {
675         *support = _media_svc_check_pinyin_support();
676
677         return MS_MEDIA_ERR_NONE;
678 }
679
680 int media_svc_set_storage_validity(sqlite3 *handle, const char *storage_id, int validity, uid_t uid)
681 {
682         int ret = MS_MEDIA_ERR_NONE;
683
684         media_svc_retvm_if(handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
685
686         ret = _media_svc_update_storage_validity(storage_id, validity, uid);
687         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "update storage validity failed: %d", ret);
688
689         return ret;
690 }
691
692 int media_svc_get_storage_id(sqlite3 *handle, const char *path, char *storage_id, uid_t uid)
693 {
694         return _media_svc_get_storage_uuid(handle, path, storage_id, uid);
695 }
696
697 int media_svc_generate_uuid(char **uuid)
698 {
699         char *gen_uuid = NULL;
700         gen_uuid = _media_info_generate_uuid();
701         media_svc_retvm_if(gen_uuid == NULL, MS_MEDIA_ERR_INTERNAL, "Fail to generate uuid");
702
703         *uuid = strdup(gen_uuid);
704
705         return MS_MEDIA_ERR_NONE;
706 }
707
708 int media_svc_check_storage(sqlite3 *handle, const char *storage_id, char **storage_path, int *validity)
709 {
710         return _media_svc_check_storage(handle, storage_id, storage_path, validity);
711 }
712
713 int media_svc_update_storage(sqlite3 *handle, const char *storage_id, const char *storage_path, uid_t uid)
714 {
715         return _media_svc_update_storage_path(handle, storage_id, storage_path, uid);
716 }
717
718 int media_svc_insert_storage(sqlite3 *handle, const char *storage_id, const char *storage_path, ms_user_storage_type_e storage_type, uid_t uid)
719 {
720         int ret = MS_MEDIA_ERR_NONE;
721
722         media_svc_retvm_if(handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
723         media_svc_retvm_if(storage_id == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
724         media_svc_retvm_if(storage_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_path is NULL");
725         media_svc_retvm_if(!_media_svc_is_valid_storage_type(storage_type), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
726
727         ret = _media_svc_append_storage(storage_id, storage_path, storage_type, uid);
728         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "append storage failed : %d", ret);
729
730         /* Remove external storage that validity is 0 */
731         ret = _media_svc_delete_invalid_storage(handle, uid);
732         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "Delete invalid storage failed : %d", ret);
733
734         return ret;
735 }
736
737 int media_svc_insert_folder(sqlite3 *handle, const char *storage_id, ms_user_storage_type_e storage_type, const char *path, uid_t uid)
738 {
739         media_svc_retvm_if(handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
740         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
741         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
742         media_svc_retvm_if(!_media_svc_is_valid_storage_type(storage_type), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
743
744         return _media_svc_get_and_append_folder_id_by_folder_path(handle, storage_id, path, storage_type, uid);
745 }
746
747 int media_svc_set_folder_validity(sqlite3 *handle, const char *storage_id, const char *start_path, int validity, bool is_recursive, uid_t uid)
748 {
749         return _media_svc_set_folder_validity(handle, true, storage_id, start_path, validity, is_recursive, uid);
750 }
751
752 int media_svc_check_folder_exist_by_path(sqlite3 *handle, const char *storage_id, const char *folder_path)
753 {
754         int ret = MS_MEDIA_ERR_NONE;
755         int count = -1;
756
757         ret = _media_svc_count_folder_with_path(handle, storage_id, folder_path, &count);
758         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
759
760         if (count > 0) {
761                 media_svc_debug("item is exist in database");
762                 return MS_MEDIA_ERR_NONE;
763         } else {
764                 media_svc_debug("item is not exist in database");
765                 return MS_MEDIA_ERR_DB_NO_RECORD;
766         }
767
768         return MS_MEDIA_ERR_NONE;
769 }
770
771 int media_svc_append_query(const char *query, uid_t uid)
772 {
773         return _media_svc_append_query_list(query, uid);
774 }
775
776 int media_svc_send_query(uid_t uid)
777 {
778         return _media_svc_list_query_do(MEDIA_SVC_QUERY_UPDATE_COMMON, uid);
779 }
780
781 int media_svc_get_media_type(const char *path, int *mediatype)
782 {
783         return _media_svc_get_media_type(path, mediatype);
784 }
785
786 int media_svc_create_thumbnail(const char *file_path, int media_type, uid_t uid, char **thumbnail_path)
787 {
788         int ret = MS_MEDIA_ERR_NONE;
789         char thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = { 0, };
790         char *sql = NULL;
791
792         // 1. Check media type
793         if (media_type != MS_MEDIA_IMAGE && media_type != MS_MEDIA_VIDEO)
794                 return MS_MEDIA_ERR_UNSUPPORTED_CONTENT;
795
796         // 2. try to create thumbnail
797         ret = _media_svc_create_thumbnail(file_path, thumb_path, media_type, uid);
798         if (ret != MS_MEDIA_ERR_NONE) {
799                 media_svc_error("Failed to create thumbnail [%d]", ret);
800                 if (ret == MS_MEDIA_ERR_UNSUPPORTED_CONTENT)
801                         return ret;
802         }
803
804         // 3. Update creation result to media db
805         sql = sqlite3_mprintf("UPDATE %q SET media_thumbnail_path='%q' WHERE media_path='%q';", MEDIA_SVC_DB_TABLE_MEDIA, thumb_path, file_path);
806
807         ret = _media_svc_sql_query(sql, uid);
808         SQLITE3_SAFE_FREE(sql);
809         if (ret != MS_MEDIA_ERR_NONE) {
810                 media_svc_error("Failed to update media db [%d]", ret);
811                 *thumbnail_path = g_strdup("");
812         } else {
813                 *thumbnail_path = g_strdup(thumb_path);
814         }
815
816         return ret;
817 }