Remove rollback query
[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-util.h>
25 #include "media-svc.h"
26 #include "media-svc-media.h"
27 #include "media-svc-debug.h"
28 #include "media-svc-util.h"
29 #include "media-svc-db-utils.h"
30 #include "media-svc-env.h"
31 #include "media-svc-media-folder.h"
32 #include "media-svc-album.h"
33 #include "media-svc-noti.h"
34 #include "media-svc-storage.h"
35
36 static __thread int g_media_svc_item_validity_data_cnt = 1;
37 static __thread int g_media_svc_item_validity_cur_data_cnt = 0;
38
39 static __thread int g_media_svc_move_item_data_cnt = 1;
40 static __thread int g_media_svc_move_item_cur_data_cnt = 0;
41
42 static __thread int g_media_svc_insert_item_data_cnt = 1;
43 static __thread int g_media_svc_insert_item_cur_data_cnt = 0;
44
45 static __thread int g_media_svc_update_item_data_cnt = 1;
46 static __thread int g_media_svc_update_item_cur_data_cnt = 0;
47
48 static __thread int g_media_svc_insert_folder_data_cnt = 1;
49 static __thread int g_media_svc_insert_folder_cur_data_cnt = 0;
50
51 /* Flag for items to be published by notification */
52 static __thread int g_insert_with_noti = FALSE;
53
54 #define BATCH_REQUEST_MAX 300
55 typedef struct {
56         int media_type;
57         char *path;
58 } media_svc_item_info_s;
59
60 static bool __media_svc_check_storage(media_svc_storage_type_e storage_type)
61 {
62         if ((storage_type != MEDIA_SVC_STORAGE_INTERNAL)
63                 && (storage_type != MEDIA_SVC_STORAGE_EXTERNAL)
64                 && (storage_type != MEDIA_SVC_STORAGE_EXTERNAL_USB)) {
65                 media_svc_error("storage type is incorrect[%d]", storage_type);
66                 return FALSE;
67         }
68
69         return TRUE;
70 }
71
72 int media_svc_connect(MediaSvcHandle **handle, uid_t uid, bool need_write)
73 {
74         int ret = MS_MEDIA_ERR_NONE;
75         MediaDBHandle *db_handle = NULL;
76
77         media_svc_debug_fenter();
78
79         ret = media_db_connect(&db_handle, uid, need_write);
80         if (ret != MS_MEDIA_ERR_NONE)
81                 return ret;
82
83         *handle = db_handle;
84         return MS_MEDIA_ERR_NONE;
85 }
86
87 int media_svc_disconnect(MediaSvcHandle *handle)
88 {
89         MediaDBHandle *db_handle = (MediaDBHandle *)handle;
90
91         media_svc_debug_fenter();
92
93         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
94
95         int ret = MS_MEDIA_ERR_NONE;
96
97         ret = media_db_disconnect(db_handle);
98         return ret;
99 }
100
101 int media_svc_cleanup_db(MediaSvcHandle *handle, uid_t uid)
102 {
103         MediaDBHandle *db_handle = (MediaDBHandle *)handle;
104
105         media_svc_debug_fenter();
106
107         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
108
109         return _media_svc_do_cleanup(db_handle, uid);
110 }
111
112 int media_svc_get_user_version(MediaSvcHandle *handle, int *user_version)
113 {
114         sqlite3 *db_handle = (sqlite3 *)handle;
115
116         return _media_svc_get_user_version(db_handle, user_version);
117 }
118
119 int media_svc_create_table(uid_t uid)
120 {
121         int ret = MS_MEDIA_ERR_NONE;
122         char *sql = NULL;
123
124         media_svc_debug_fenter();
125
126         ret = _media_svc_init_table_query(MEDIA_SVC_DB_TABLE_MEDIA);
127         if (ret != MS_MEDIA_ERR_NONE) {
128                 media_svc_error("_media_svc_init_table_query fail.");
129                 goto ERROR;
130         }
131
132         /*create media table*/
133         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_MEDIA, MEDIA_SVC_DB_LIST_MEDIA, uid);
134         if (ret != MS_MEDIA_ERR_NONE) {
135                 media_svc_error("_media_svc_make_table_query fail.");
136                 goto ERROR;
137         }
138
139         /*create folder table*/
140         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_FOLDER, MEDIA_SVC_DB_LIST_FOLDER, uid);
141         if (ret != MS_MEDIA_ERR_NONE) {
142                 media_svc_error("_media_svc_make_table_query fail.");
143                 goto ERROR;
144         }
145
146         /*create playlist_map table*/
147         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_PLAYLIST_MAP, MEDIA_SVC_DB_LIST_PLAYLIST_MAP, uid);
148         if (ret != MS_MEDIA_ERR_NONE) {
149                 media_svc_error("_media_svc_make_table_query fail.");
150                 goto ERROR;
151         }
152
153         /*create playlist table*/
154         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_PLAYLIST, MEDIA_SVC_DB_LIST_PLAYLIST, uid);
155         if (ret != MS_MEDIA_ERR_NONE) {
156                 media_svc_error("_media_svc_make_table_query fail.");
157                 goto ERROR;
158         }
159
160         /* create album table*/
161         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_ALBUM, MEDIA_SVC_DB_LIST_ALBUM, uid);
162         if (ret != MS_MEDIA_ERR_NONE) {
163                 media_svc_error("_media_svc_make_table_query fail.");
164                 goto ERROR;
165         }
166
167         /*create tag_map table*/
168         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_TAG_MAP, MEDIA_SVC_DB_LIST_TAG_MAP, uid);
169         if (ret != MS_MEDIA_ERR_NONE) {
170                 media_svc_error("_media_svc_make_table_query fail.");
171                 goto ERROR;
172         }
173
174         /*create tag table*/
175         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_TAG, MEDIA_SVC_DB_LIST_TAG, uid);
176         if (ret != MS_MEDIA_ERR_NONE) {
177                 media_svc_error("_media_svc_make_table_query fail.");
178                 goto ERROR;
179         }
180
181         /*create bookmark table*/
182         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_BOOKMARK, MEDIA_SVC_DB_LIST_BOOKMARK, uid);
183         if (ret != MS_MEDIA_ERR_NONE) {
184                 media_svc_error("_media_svc_make_table_query fail.");
185                 goto ERROR;
186         }
187
188         /*create storage table from tizen 2.4 */
189         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_STORAGE, MEDIA_SVC_DB_LIST_STORAGE, uid);
190         if (ret != MS_MEDIA_ERR_NONE) {
191                 media_svc_error("_media_svc_make_table_query fail.");
192                 goto ERROR;
193         }
194
195         /*create face table. from tizen 3.0*/
196         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_FACE_SCAN_LIST, MEDIA_SVC_DB_LIST_FACE_SCAN_LIST, uid);
197         if (ret != MS_MEDIA_ERR_NONE) {
198                 media_svc_error("_media_svc_make_table_query fail.");
199                 goto ERROR;
200         }
201
202         ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_FACE, MEDIA_SVC_DB_LIST_FACE, uid);
203         if (ret != MS_MEDIA_ERR_NONE) {
204                 media_svc_error("_media_svc_make_table_query fail.");
205                 goto ERROR;
206         }
207
208         sql = sqlite3_mprintf("pragma user_version = %d;", LATEST_VERSION_NUMBER);
209         ret = _media_svc_sql_query(sql, uid);
210         if (ret != MS_MEDIA_ERR_NONE) {
211                 media_svc_error("user_version update fail.");
212                 goto ERROR;
213         }
214
215         _media_svc_destroy_table_query();
216
217         media_svc_debug_fleave();
218
219         return MS_MEDIA_ERR_NONE;
220 ERROR:
221         _media_svc_destroy_table_query();
222
223         media_svc_debug_fleave();
224
225         return ret;
226 }
227
228 int media_svc_get_storage_type(const char *path, media_svc_storage_type_e *storage_type, uid_t uid)
229 {
230         int ret = MS_MEDIA_ERR_NONE;
231         ms_user_storage_type_e type = -1;
232
233         ret = ms_user_get_storage_type(uid, path, &type);
234         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "ms_user_get_storage_type failed : %d", ret);
235
236         *storage_type = type;
237
238         return ret;
239 }
240
241 int media_svc_get_file_info(MediaSvcHandle *handle, const char *storage_id, const char *path, time_t *modified_time, unsigned long long *size)
242 {
243         int ret = MS_MEDIA_ERR_NONE;
244         sqlite3 *db_handle = (sqlite3 *)handle;
245
246         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
247         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
248
249         ret = _media_svc_get_fileinfo_by_path(db_handle, storage_id, path, modified_time, size);
250
251         return ret;
252 }
253
254 int media_svc_check_item_exist_by_path(MediaSvcHandle *handle, const char *storage_id, const char *path)
255 {
256         int ret = MS_MEDIA_ERR_NONE;
257         sqlite3 *db_handle = (sqlite3 *)handle;
258         int count = -1;
259
260         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
261         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
262         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "Path is NULL");
263
264         ret = _media_svc_count_record_with_path(db_handle, storage_id, path, &count);
265         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
266
267         if (count > 0) {
268                 media_svc_debug("item is exist in database");
269                 return MS_MEDIA_ERR_NONE;
270         } else {
271                 media_svc_debug("item is not exist in database");
272                 return MS_MEDIA_ERR_DB_NO_RECORD;
273         }
274
275         return MS_MEDIA_ERR_NONE;
276 }
277
278 int media_svc_insert_item_begin(int data_cnt, int with_noti, int from_pid)
279 {
280         media_svc_debug("Transaction data count : [%d]", data_cnt);
281
282         media_svc_retvm_if(data_cnt < 1, MS_MEDIA_ERR_INVALID_PARAMETER, "data_cnt shuld be bigger than 1");
283
284         g_media_svc_insert_item_data_cnt = data_cnt;
285         g_media_svc_insert_item_cur_data_cnt = 0;
286
287         /* Prepare for making noti item list */
288         if (with_noti) {
289                 media_svc_debug("making noti list from pid[%d]", from_pid);
290                 if (_media_svc_create_noti_list(data_cnt) != MS_MEDIA_ERR_NONE)
291                         return MS_MEDIA_ERR_OUT_OF_MEMORY;
292
293                 _media_svc_set_noti_from_pid(from_pid);
294                 g_insert_with_noti = TRUE;
295         }
296
297         return MS_MEDIA_ERR_NONE;
298 }
299
300 int media_svc_insert_item_end(uid_t uid)
301 {
302         int ret = MS_MEDIA_ERR_NONE;
303
304         media_svc_debug_fenter();
305
306         if (g_media_svc_insert_item_cur_data_cnt > 0) {
307
308                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_INSERT_ITEM, uid);
309                 if (g_insert_with_noti) {
310                         media_svc_debug("sending noti list");
311                         _media_svc_publish_noti_list(g_media_svc_insert_item_cur_data_cnt);
312                         _media_svc_destroy_noti_list(g_media_svc_insert_item_cur_data_cnt);
313                         g_insert_with_noti = FALSE;
314                         _media_svc_set_noti_from_pid(-1);
315                 }
316         }
317
318         g_media_svc_insert_item_data_cnt = 1;
319         g_media_svc_insert_item_cur_data_cnt = 0;
320
321         return ret;
322 }
323
324 int media_svc_insert_item_bulk(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e storage_type, const char *path, int is_burst, uid_t uid)
325 {
326         int ret = MS_MEDIA_ERR_NONE;
327         sqlite3 *db_handle = (sqlite3 *)handle;
328         char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
329         media_svc_media_type_e media_type;
330
331         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
332         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
333         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
334         media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
335
336         media_svc_content_info_s content_info;
337         memset(&content_info, 0, sizeof(media_svc_content_info_s));
338
339         /*Set media info*/
340         /* if drm_contentinfo is not NULL, the file is OMA DRM.*/
341         ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, path, &media_type, FALSE);
342         if (ret != MS_MEDIA_ERR_NONE)
343                 return ret;
344
345         if (media_type == MEDIA_SVC_MEDIA_TYPE_OTHER
346         || (media_type == MEDIA_SVC_MEDIA_TYPE_PVR)
347         || (media_type == MEDIA_SVC_MEDIA_TYPE_UHD)
348         || (media_type == MEDIA_SVC_MEDIA_TYPE_SCSA))
349                 media_svc_debug("Do nothing[%d]", media_type);
350         else if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE)
351                 ret = _media_svc_extract_image_metadata(db_handle, &content_info);
352         else
353                 ret = _media_svc_extract_media_metadata(db_handle, &content_info, uid);
354         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
355
356         /*Set or Get folder id*/
357         ret = _media_svc_get_and_append_folder_id_by_path(db_handle, storage_id, path, storage_type, folder_uuid, uid);
358         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
359
360         content_info.folder_uuid = g_strdup(folder_uuid);
361         media_svc_retv_del_if(content_info.folder_uuid == NULL, MS_MEDIA_ERR_INTERNAL, &content_info);
362
363         if (g_media_svc_insert_item_data_cnt == 1) {
364
365                 ret = _media_svc_insert_item_with_data(db_handle, storage_id, &content_info, is_burst, FALSE, uid);
366                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
367
368                 if (g_insert_with_noti)
369                         _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt++);
370
371         } else if (g_media_svc_insert_item_cur_data_cnt < (g_media_svc_insert_item_data_cnt - 1)) {
372
373                 ret = _media_svc_insert_item_with_data(db_handle, storage_id, &content_info, is_burst, TRUE, uid);
374                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
375
376                 if (g_insert_with_noti)
377                         _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt);
378
379                 g_media_svc_insert_item_cur_data_cnt++;
380
381         } else if (g_media_svc_insert_item_cur_data_cnt == (g_media_svc_insert_item_data_cnt - 1)) {
382
383                 ret = _media_svc_insert_item_with_data(db_handle, storage_id, &content_info, is_burst, TRUE, uid);
384                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
385
386                 if (g_insert_with_noti)
387                         _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt);
388
389                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_INSERT_ITEM, uid);
390                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
391
392                 if (g_insert_with_noti) {
393                         _media_svc_publish_noti_list(g_media_svc_insert_item_cur_data_cnt + 1);
394                         _media_svc_destroy_noti_list(g_media_svc_insert_item_cur_data_cnt + 1);
395
396                         /* Recreate noti list */
397                         ret = _media_svc_create_noti_list(g_media_svc_insert_item_data_cnt);
398                         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
399                 }
400
401                 g_media_svc_insert_item_cur_data_cnt = 0;
402
403         } else {
404                 media_svc_error("Error in media_svc_insert_item_bulk");
405                 _media_svc_destroy_content_info(&content_info);
406                 return MS_MEDIA_ERR_INTERNAL;
407         }
408
409         _media_svc_destroy_content_info(&content_info);
410
411         return MS_MEDIA_ERR_NONE;
412 }
413
414 int media_svc_insert_item_immediately(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e storage_type, const char *path, uid_t uid)
415 {
416         int ret = MS_MEDIA_ERR_NONE;
417         sqlite3 *db_handle = (sqlite3 *)handle;
418         char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
419         media_svc_media_type_e media_type;
420
421         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
422         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
423         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
424         media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
425
426         media_svc_content_info_s content_info;
427         memset(&content_info, 0, sizeof(media_svc_content_info_s));
428
429         /*Set media info*/
430         ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, path, &media_type, FALSE);
431         if (ret != MS_MEDIA_ERR_NONE)
432                 return ret;
433
434         if (media_type == MEDIA_SVC_MEDIA_TYPE_OTHER
435         || (media_type == MEDIA_SVC_MEDIA_TYPE_PVR)
436         || (media_type == MEDIA_SVC_MEDIA_TYPE_UHD)
437         || (media_type == MEDIA_SVC_MEDIA_TYPE_SCSA)) {
438                 /*Do nothing.*/
439         } else if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE) {
440                 ret = _media_svc_extract_image_metadata(db_handle, &content_info);
441         } else {
442                 ret = _media_svc_extract_media_metadata(db_handle, &content_info, uid);
443         }
444
445         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
446
447         /*Set or Get folder id*/
448         ret = _media_svc_get_and_append_folder_id_by_path(db_handle, storage_id, path, storage_type, folder_uuid, uid);
449         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
450
451         content_info.folder_uuid = g_strdup(folder_uuid);
452         media_svc_retv_del_if(content_info.folder_uuid == NULL, MS_MEDIA_ERR_INTERNAL, &content_info);
453
454         /* Extracting thumbnail */
455         if (content_info.thumbnail_path == NULL) {
456                 if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE || media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
457                         char thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
458
459                         ret = _media_svc_request_thumbnail(content_info.path, thumb_path, sizeof(thumb_path), uid);
460                         if (ret == MS_MEDIA_ERR_NONE)
461                                 content_info.thumbnail_path = g_strdup(thumb_path);
462                 }
463         }
464
465         ret = _media_svc_insert_item_with_data(db_handle, storage_id, &content_info, FALSE, FALSE, uid);
466
467         if (ret == MS_MEDIA_ERR_NONE) {
468                 media_svc_debug("Insertion is successful. Sending noti for this");
469                 _media_svc_publish_noti(MS_MEDIA_ITEM_FILE, MS_MEDIA_ITEM_INSERT, content_info.path, content_info.media_type, content_info.media_uuid, content_info.mime_type);
470         } else if (ret == MS_MEDIA_ERR_DB_CONSTRAINT_FAIL) {
471                 media_svc_error("This item is already inserted. This may be normal operation because other process already did this");
472         }
473
474         _media_svc_destroy_content_info(&content_info);
475         return ret;
476 }
477
478 int media_svc_move_item(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e src_storage, const char *src_path,
479                         media_svc_storage_type_e dest_storage, const char *dest_path, uid_t uid)
480 {
481         int ret = MS_MEDIA_ERR_NONE;
482         sqlite3 *db_handle = (sqlite3 *)handle;
483         char *file_name = NULL;
484         char *folder_path = NULL;
485         int modified_time = 0;
486         char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
487         char old_thumb_path[MEDIA_SVC_PATHNAME_SIZE] = {0, };
488         char new_thumb_path[MEDIA_SVC_PATHNAME_SIZE] = {0, };
489         int media_type = -1;
490
491         media_svc_debug_fenter();
492
493         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
494         media_svc_retvm_if(!STRING_VALID(src_path), MS_MEDIA_ERR_INVALID_PARAMETER, "src_path is NULL");
495         media_svc_retvm_if(!STRING_VALID(dest_path), MS_MEDIA_ERR_INVALID_PARAMETER, "dest_path is NULL");
496         media_svc_retvm_if(__media_svc_check_storage(src_storage) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid src_storage");
497         media_svc_retvm_if(__media_svc_check_storage(dest_storage) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid dest_storage");
498
499         /*check and update folder*/
500         ret = _media_svc_get_and_append_folder_id_by_path(db_handle, storage_id, dest_path, dest_storage, folder_uuid, uid);
501         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
502
503         /*get filename*/
504         file_name = g_path_get_basename(dest_path);
505
506         /*get modified_time*/
507         modified_time = _media_svc_get_file_time(dest_path);
508
509         /*get thumbnail_path to update. only for Imgae and Video items. Audio share album_art(thumbnail)*/
510         ret = _media_svc_get_media_type_by_path(db_handle, storage_id, src_path, &media_type);
511         if (ret != MS_MEDIA_ERR_NONE) {
512                 media_svc_error("_media_svc_get_media_type_by_path failed");
513                 SAFE_FREE(file_name);
514                 return ret;
515         }
516
517         if ((media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE) || (media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO)) {
518                 /*get old thumbnail_path*/
519                 ret = _media_svc_get_thumbnail_path_by_path(db_handle, src_path, old_thumb_path);
520                 if ((ret != MS_MEDIA_ERR_NONE) && (ret != MS_MEDIA_ERR_DB_NO_RECORD)) {
521                         media_svc_error("_media_svc_get_thumbnail_path_by_path failed");
522                         SAFE_FREE(file_name);
523                         return ret;
524                 }
525
526                 _media_svc_get_thumbnail_path(dest_storage, new_thumb_path, dest_path, THUMB_EXT, uid);
527         }
528
529         if (g_media_svc_move_item_data_cnt == 1) {
530
531                 /*update item*/
532                 if ((media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE) || (media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO))
533                         ret = _media_svc_update_item_by_path(src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, new_thumb_path, FALSE, uid);
534                 else
535                         ret = _media_svc_update_item_by_path(src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, NULL, FALSE, uid);
536
537                 SAFE_FREE(file_name);
538                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
539
540                 media_svc_debug("Move is successful. Sending noti for this");
541
542                 /* Get notification info */
543                 media_svc_noti_item *noti_item = NULL;
544                 ret = _media_svc_get_noti_info(db_handle, storage_id, dest_path, MS_MEDIA_ITEM_FILE, &noti_item);
545                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
546
547                 /* Send notification for move */
548                 _media_svc_publish_noti(MS_MEDIA_ITEM_FILE, MS_MEDIA_ITEM_UPDATE, src_path, media_type, noti_item->media_uuid, noti_item->mime_type);
549                 _media_svc_destroy_noti_item(noti_item);
550
551                 /*update folder modified_time*/
552                 folder_path = g_path_get_dirname(dest_path);
553                 ret = _media_svc_update_folder_modified_time_by_folder_uuid(folder_uuid, folder_path, FALSE, uid);
554                 SAFE_FREE(folder_path);
555                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
556
557                 ret = _media_svc_update_folder_table(storage_id, uid);
558                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
559
560         } else if (g_media_svc_move_item_cur_data_cnt < (g_media_svc_move_item_data_cnt - 1)) {
561
562                 /*update item*/
563                 if ((media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE) || (media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO))
564                         ret = _media_svc_update_item_by_path(src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, new_thumb_path, TRUE, uid);
565                 else
566                         ret = _media_svc_update_item_by_path(src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, NULL, TRUE, uid);
567
568                 SAFE_FREE(file_name);
569                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
570
571                 /*update folder modified_time*/
572                 folder_path = g_path_get_dirname(dest_path);
573                 ret = _media_svc_update_folder_modified_time_by_folder_uuid(folder_uuid, folder_path, TRUE, uid);
574                 SAFE_FREE(folder_path);
575                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
576
577                 g_media_svc_move_item_cur_data_cnt++;
578
579         } else if (g_media_svc_move_item_cur_data_cnt == (g_media_svc_move_item_data_cnt - 1)) {
580                 /*update item*/
581                 if ((media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE) || (media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO))
582                         ret = _media_svc_update_item_by_path(src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, new_thumb_path, TRUE, uid);
583                 else
584                         ret = _media_svc_update_item_by_path(src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, NULL, TRUE, uid);
585
586                 SAFE_FREE(file_name);
587                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
588
589                 /*update folder modified_time*/
590                 folder_path = g_path_get_dirname(dest_path);
591                 ret = _media_svc_update_folder_modified_time_by_folder_uuid(folder_uuid, folder_path, TRUE, uid);
592                 SAFE_FREE(folder_path);
593                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
594
595                 /*update db*/
596                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_MOVE_ITEM, uid);
597                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
598
599                 g_media_svc_move_item_cur_data_cnt = 0;
600
601         } else {
602                 media_svc_error("Error in media_svc_move_item");
603                 SAFE_FREE(file_name);
604                 return MS_MEDIA_ERR_INTERNAL;
605         }
606
607         /*rename thumbnail file*/
608         if (STRING_VALID(old_thumb_path)) {
609                 ret = _media_svc_rename_file(old_thumb_path, new_thumb_path);
610                 if (ret != MS_MEDIA_ERR_NONE)
611                         media_svc_error("_media_svc_rename_file failed : %d", ret);
612         }
613
614         return MS_MEDIA_ERR_NONE;
615 }
616
617 int media_svc_set_item_validity_begin(int data_cnt)
618 {
619         media_svc_debug("Transaction data count : [%d]", data_cnt);
620
621         media_svc_retvm_if(data_cnt < 1, MS_MEDIA_ERR_INVALID_PARAMETER, "data_cnt shuld be bigger than 1");
622
623         g_media_svc_item_validity_data_cnt = data_cnt;
624         g_media_svc_item_validity_cur_data_cnt = 0;
625
626         return MS_MEDIA_ERR_NONE;
627 }
628
629 int media_svc_set_item_validity_end(uid_t uid)
630 {
631         int ret = MS_MEDIA_ERR_NONE;
632
633         media_svc_debug_fenter();
634
635         if (g_media_svc_item_validity_cur_data_cnt > 0)
636                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_SET_ITEM_VALIDITY, uid);
637
638         g_media_svc_item_validity_data_cnt = 1;
639         g_media_svc_item_validity_cur_data_cnt = 0;
640
641         return ret;
642 }
643
644 int media_svc_set_item_validity(const char *storage_id, const char *path, int validity, uid_t uid)
645 {
646         int ret = MS_MEDIA_ERR_NONE;
647
648         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
649         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
650
651         media_svc_debug("path=[%s], validity=[%d]", path, validity);
652
653         if (g_media_svc_item_validity_data_cnt == 1) {
654
655                 return _media_svc_update_item_validity(storage_id, path, validity, FALSE, uid);
656
657         } else if (g_media_svc_item_validity_cur_data_cnt < (g_media_svc_item_validity_data_cnt - 1)) {
658
659                 ret = _media_svc_update_item_validity(storage_id, path, validity, TRUE, uid);
660                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
661
662                 g_media_svc_item_validity_cur_data_cnt++;
663
664         } else if (g_media_svc_item_validity_cur_data_cnt == (g_media_svc_item_validity_data_cnt - 1)) {
665
666                 ret = _media_svc_update_item_validity(storage_id, path, validity, TRUE, uid);
667                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
668
669                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_SET_ITEM_VALIDITY, uid);
670                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
671
672                 g_media_svc_item_validity_cur_data_cnt = 0;
673
674         } else {
675
676                 media_svc_error("Error in media_svc_set_item_validity");
677                 return MS_MEDIA_ERR_INTERNAL;
678         }
679
680         return MS_MEDIA_ERR_NONE;
681 }
682
683 int media_svc_delete_item_by_path(MediaSvcHandle *handle, const char *storage_id, const char *path, uid_t uid)
684 {
685         int ret = MS_MEDIA_ERR_NONE;
686         sqlite3 *db_handle = (sqlite3 *)handle;
687         char thumb_path[MEDIA_SVC_PATHNAME_SIZE] = {0, };
688
689         media_svc_debug_fenter();
690
691         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
692         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
693         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
694
695         int media_type = -1;
696         ret = _media_svc_get_media_type_by_path(db_handle, storage_id, path, &media_type);
697         media_svc_retv_if((ret != MS_MEDIA_ERR_NONE), ret);
698
699         /*Get thumbnail path to delete*/
700         ret = _media_svc_get_thumbnail_path_by_path(db_handle, path, thumb_path);
701         media_svc_retv_if((ret != MS_MEDIA_ERR_NONE) && (ret != MS_MEDIA_ERR_DB_NO_RECORD), ret);
702
703         if (g_media_svc_insert_item_data_cnt == 1) {
704
705                 /* Get notification info */
706                 media_svc_noti_item *noti_item = NULL;
707                 ret = _media_svc_get_noti_info(db_handle, storage_id, path, MS_MEDIA_ITEM_FILE, &noti_item);
708                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
709
710                 /*Delete item*/
711                 ret = _media_svc_delete_item_by_path(storage_id, path, FALSE, uid);
712                 if (ret != MS_MEDIA_ERR_NONE) {
713                         media_svc_error("_media_svc_delete_item_by_path failed : %d", ret);
714                         _media_svc_destroy_noti_item(noti_item);
715
716                         return ret;
717                 }
718
719                 /* Send notification */
720                 media_svc_debug("Deletion is successful. Sending noti for this");
721                 _media_svc_publish_noti(MS_MEDIA_ITEM_FILE, MS_MEDIA_ITEM_DELETE, path, media_type, noti_item->media_uuid, noti_item->mime_type);
722                 _media_svc_destroy_noti_item(noti_item);
723         } else {
724                 ret = _media_svc_delete_item_by_path(storage_id, path, TRUE, uid);
725                 if (ret != MS_MEDIA_ERR_NONE) {
726                         media_svc_error("_media_svc_delete_item_by_path failed : %d", ret);
727                         return ret;
728                 }
729
730         }
731
732         /*Delete thumbnail*/
733         if (STRING_VALID(thumb_path)) {
734                 ret = _media_svc_remove_file(thumb_path);
735                 if (ret != MS_MEDIA_ERR_NONE)
736                         media_svc_error("fail to remove thumbnail file.");
737         }
738
739         return MS_MEDIA_ERR_NONE;
740 }
741
742 int media_svc_delete_all_items_in_storage(const char *storage_id, media_svc_storage_type_e storage_type, uid_t uid)
743 {
744         int ret = MS_MEDIA_ERR_NONE;
745         char *thumb_path = NULL;
746
747         media_svc_debug("media_svc_delete_all_items_in_storage [%d]", storage_type);
748
749         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
750         media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
751
752         ret = _media_svc_truncate_table(storage_id, storage_type, uid);
753         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
754
755         if (storage_type != MEDIA_SVC_STORAGE_EXTERNAL_USB) {
756                 ret = ms_user_get_thumb_store_path(uid, (ms_user_storage_type_e)storage_type, &thumb_path);
757                 if (!STRING_VALID(thumb_path)) {
758                         media_svc_error("fail to get thumbnail path");
759                         return MS_MEDIA_ERR_INTERNAL;
760                 }
761
762                 ret = _media_svc_remove_all_files_in_dir(thumb_path);
763                 SAFE_FREE(thumb_path);
764                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
765         }
766
767         return MS_MEDIA_ERR_NONE;
768 }
769
770 int media_svc_delete_invalid_items_in_storage(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e storage_type, uid_t uid)
771 {
772         sqlite3 *db_handle = (sqlite3 *)handle;
773
774         media_svc_debug_fenter();
775
776         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
777         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
778         media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
779
780         /*Delete from DB and remove thumbnail files*/
781         return _media_svc_delete_invalid_items(db_handle, storage_id, storage_type, uid);
782 }
783
784 int media_svc_set_all_storage_items_validity(const char *storage_id, media_svc_storage_type_e storage_type, int validity, uid_t uid)
785 {
786         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
787         media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
788
789         return _media_svc_update_storage_item_validity(storage_id, storage_type, validity, uid);
790 }
791
792 int media_svc_set_folder_items_validity(MediaSvcHandle *handle, const char *storage_id, const char *folder_path, int validity, int recursive, uid_t uid)
793 {
794         sqlite3 *db_handle = (sqlite3 *)handle;
795
796         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
797         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
798         media_svc_retvm_if(!STRING_VALID(folder_path), MS_MEDIA_ERR_INVALID_PARAMETER, "folder_path is NULL");
799
800         if (recursive)
801                 return _media_svc_update_recursive_folder_item_validity(storage_id, folder_path, validity, uid);
802         else
803                 return _media_svc_update_folder_item_validity(db_handle, storage_id, folder_path, validity, uid);
804 }
805
806 int media_svc_refresh_item(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e storage_type, const char *path, uid_t uid)
807 {
808         int ret = MS_MEDIA_ERR_NONE;
809         sqlite3 *db_handle = (sqlite3 *)handle;
810         media_svc_media_type_e media_type;
811
812         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
813         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
814         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
815         media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
816
817         media_svc_content_info_s content_info;
818         memset(&content_info, 0, sizeof(media_svc_content_info_s));
819
820         /*Set media info*/
821         ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, path, &media_type, TRUE);
822         if (ret != MS_MEDIA_ERR_NONE)
823                 return ret;
824
825         /* Initialize thumbnail information to remake thumbnail. */
826         char thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1];
827         ret = _media_svc_get_thumbnail_path_by_path(db_handle, path, thumb_path);
828         if (ret != MS_MEDIA_ERR_NONE) {
829                 _media_svc_destroy_content_info(&content_info);
830                 return ret;
831         }
832
833         if (g_file_test(thumb_path, G_FILE_TEST_EXISTS)) {
834                 ret = _media_svc_remove_file(thumb_path);
835                 if (ret != MS_MEDIA_ERR_NONE)
836                         media_svc_error("_media_svc_remove_file failed : %s", thumb_path);
837         }
838
839         ret = _media_svc_update_thumbnail_path(path, NULL, uid);
840         if (ret != MS_MEDIA_ERR_NONE) {
841                 _media_svc_destroy_content_info(&content_info);
842                 return ret;
843         }
844
845         /* Get notification info */
846         media_svc_noti_item *noti_item = NULL;
847         ret = _media_svc_get_noti_info(db_handle, storage_id, path, MS_MEDIA_ITEM_FILE, &noti_item);
848         if (ret != MS_MEDIA_ERR_NONE) {
849                 _media_svc_destroy_content_info(&content_info);
850                 return ret;
851         }
852
853         media_type = noti_item->media_type;
854         content_info.media_type = media_type;
855
856         if (media_type == MEDIA_SVC_MEDIA_TYPE_OTHER
857         || (media_type == MEDIA_SVC_MEDIA_TYPE_PVR)
858         || (media_type == MEDIA_SVC_MEDIA_TYPE_UHD)
859         || (media_type == MEDIA_SVC_MEDIA_TYPE_SCSA))
860                 media_svc_debug("Do nothing [%d]", media_type);
861         else if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE)
862                 ret = _media_svc_extract_image_metadata(db_handle, &content_info);
863         else
864                 ret = _media_svc_extract_media_metadata(db_handle, &content_info, uid);
865
866         if (ret != MS_MEDIA_ERR_NONE) {
867                 _media_svc_destroy_noti_item(noti_item);
868                 _media_svc_destroy_content_info(&content_info);
869                 return ret;
870         }
871
872         /* Extracting thumbnail */
873         if (content_info.thumbnail_path == NULL) {
874                 if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE || media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
875                         char thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
876
877                         ret = _media_svc_request_thumbnail(content_info.path, thumb_path, sizeof(thumb_path), uid);
878                         if (ret == MS_MEDIA_ERR_NONE)
879                                 content_info.thumbnail_path = g_strdup(thumb_path);
880                 }
881         }
882
883         ret = _media_svc_update_item_with_data(storage_id, &content_info, uid);
884
885         if (ret == MS_MEDIA_ERR_NONE) {
886                 media_svc_debug("Update is successful. Sending noti for this");
887                 _media_svc_publish_noti(MS_MEDIA_ITEM_FILE, MS_MEDIA_ITEM_UPDATE, content_info.path, noti_item->media_type, noti_item->media_uuid, noti_item->mime_type);
888         } else {
889                 media_svc_error("_media_svc_update_item_with_data failed : %d", ret);
890         }
891
892         _media_svc_destroy_content_info(&content_info);
893         _media_svc_destroy_noti_item(noti_item);
894
895         return ret;
896 }
897
898 int media_svc_rename_folder(MediaSvcHandle *handle, const char *storage_id, const char *src_path, const char *dst_path, uid_t uid)
899 {
900         sqlite3 *db_handle = (sqlite3 *)handle;
901         int ret = MS_MEDIA_ERR_NONE;
902
903         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
904         media_svc_retvm_if(src_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "src_path is NULL");
905         media_svc_retvm_if(dst_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "dst_path is NULL");
906
907         media_svc_debug("Src path : %s, Dst Path : %s", src_path, dst_path);
908
909         ret = _media_svc_sql_begin_trans(uid);
910         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
911
912         /* Update all folder record's modified date, which are changed above */
913         char *update_folder_modified_time_sql = NULL;
914         time_t date;
915         time(&date);
916
917         update_folder_modified_time_sql = sqlite3_mprintf("UPDATE folder SET modified_time = %d WHERE path LIKE '%q';", date, dst_path);
918
919         ret = media_db_request_update_db_batch(update_folder_modified_time_sql, uid);
920         SQLITE3_SAFE_FREE(update_folder_modified_time_sql);
921
922         if (ret != SQLITE_OK) {
923                 media_svc_error("failed to update folder modified time");
924
925                 return MS_MEDIA_ERR_DB_INTERNAL;
926         }
927
928         /* Update all items */
929         char *select_all_sql = NULL;
930         sqlite3_stmt *sql_stmt = NULL;
931         char dst_child_path[MEDIA_SVC_PATHNAME_SIZE + 1];
932
933         snprintf(dst_child_path, sizeof(dst_child_path), "%s/%%", dst_path);
934
935         select_all_sql = sqlite3_mprintf("SELECT media_uuid, path, thumbnail_path, media_type from '%q' where folder_uuid IN ( SELECT folder_uuid FROM folder where path='%q' or path like '%q');", storage_id, dst_path, dst_child_path);
936
937         media_svc_debug("[SQL query] : %s", select_all_sql);
938
939         ret = _media_svc_sql_prepare_to_step_simple(db_handle, select_all_sql, &sql_stmt);
940         if (ret != MS_MEDIA_ERR_NONE) {
941                 media_svc_error("error when media_svc_rename_folder. err = [%d]", ret);
942                 return ret;
943         }
944
945         while (sqlite3_step(sql_stmt) == SQLITE_ROW) {
946                 char media_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
947                 char media_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
948                 char media_thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
949                 char media_new_thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
950                 /*int media_type; */
951                 bool no_thumb = FALSE;
952
953                 if (STRING_VALID((const char *)sqlite3_column_text(sql_stmt, 0))) {
954                         SAFE_STRLCPY(media_uuid, (const char *)sqlite3_column_text(sql_stmt, 0), sizeof(media_uuid));
955                 } else {
956                         media_svc_error("media UUID is NULL");
957                         return MS_MEDIA_ERR_DB_INTERNAL;
958                 }
959
960                 if (STRING_VALID((const char *)sqlite3_column_text(sql_stmt, 1))) {
961                         SAFE_STRLCPY(media_path, (const char *)sqlite3_column_text(sql_stmt, 1), sizeof(media_path));
962                 } else {
963                         media_svc_error("media path is NULL");
964                         return MS_MEDIA_ERR_DB_INTERNAL;
965                 }
966
967                 if (STRING_VALID((const char *)sqlite3_column_text(sql_stmt, 2))) {
968                         SAFE_STRLCPY(media_thumb_path,  (const char *)sqlite3_column_text(sql_stmt, 2), sizeof(media_thumb_path));
969                 } else {
970                         media_svc_debug("media thumb path doesn't exist in DB");
971                         no_thumb = TRUE;
972                 }
973
974                 /*media_type = sqlite3_column_int(sql_stmt, 3); */
975
976                 /* Update path, thumbnail path of this item */
977                 char *replaced_path = NULL;
978                 replaced_path = _media_svc_replace_path(media_path, src_path, dst_path);
979                 if (replaced_path == NULL) {
980                         media_svc_error("_media_svc_replace_path failed");
981                         SQLITE3_FINALIZE(sql_stmt);
982                         return MS_MEDIA_ERR_INTERNAL;
983                 }
984
985                 media_svc_debug("New media path : %s", replaced_path);
986                 ms_user_storage_type_e storage_type = -1;
987
988                 if (!no_thumb) {
989                         ret = ms_user_get_storage_type(uid, replaced_path, &storage_type);
990                         if (ret != MS_MEDIA_ERR_NONE) {
991                                 media_svc_sec_error("ms_user_get_storage_type failed : [%d], path[%s] storage_type[%d]", ret, replaced_path, storage_type);
992                                 SAFE_FREE(replaced_path);
993                                 return ret;
994                         }
995
996                         ret = _media_svc_get_thumbnail_path(storage_type, media_new_thumb_path, replaced_path, THUMB_EXT, uid);
997                         if (ret != MS_MEDIA_ERR_NONE) {
998                                 media_svc_error("_media_svc_get_thumbnail_path failed : %d", ret);
999                                 SAFE_FREE(replaced_path);
1000                                 SQLITE3_FINALIZE(sql_stmt);
1001                                 return ret;
1002                         }
1003
1004                         /*media_svc_debug("New media thumbnail path : %s", media_new_thumb_path); */
1005                 }
1006
1007                 char *update_item_sql = NULL;
1008
1009                 if (no_thumb)
1010                         update_item_sql = sqlite3_mprintf("UPDATE '%q' SET path='%q' WHERE media_uuid='%q'", storage_id, replaced_path, media_uuid);
1011                 else
1012                         update_item_sql = sqlite3_mprintf("UPDATE '%q' SET path='%q', thumbnail_path='%q' WHERE media_uuid='%q'", storage_id, replaced_path, media_new_thumb_path, media_uuid);
1013
1014                 ret = media_db_request_update_db_batch(update_item_sql, uid);
1015                 SQLITE3_SAFE_FREE(update_item_sql);
1016                 SAFE_FREE(replaced_path);
1017
1018                 if (ret != SQLITE_OK) {
1019                         media_svc_error("failed to update item");
1020                         SQLITE3_FINALIZE(sql_stmt);
1021
1022                         return MS_MEDIA_ERR_DB_INTERNAL;
1023                 }
1024
1025                 /* Rename thumbnail file of file system */
1026                 if (!no_thumb) {
1027                         ret = _media_svc_rename_file(media_thumb_path, media_new_thumb_path);
1028                         if (ret != MS_MEDIA_ERR_NONE)
1029                                 media_svc_error("_media_svc_rename_file failed : %d", ret);
1030                 }
1031
1032         }
1033
1034         SQLITE3_FINALIZE(sql_stmt);
1035
1036         ret = _media_svc_sql_end_trans(uid);
1037         if (ret != MS_MEDIA_ERR_NONE) {
1038                 media_svc_error("mb_svc_sqlite3_commit_trans failed.. Now start to rollback");
1039                 return ret;
1040         }
1041
1042         media_svc_debug("Folder update is successful. Sending noti for this");
1043         /* Get notification info */
1044         media_svc_noti_item *noti_item = NULL;
1045         ret = _media_svc_get_noti_info(db_handle, storage_id, dst_path, MS_MEDIA_ITEM_DIRECTORY, &noti_item);
1046         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
1047
1048         _media_svc_publish_noti(MS_MEDIA_ITEM_DIRECTORY, MS_MEDIA_ITEM_UPDATE, src_path, -1, noti_item->media_uuid, NULL);
1049         _media_svc_destroy_noti_item(noti_item);
1050
1051         return MS_MEDIA_ERR_NONE;
1052 }
1053
1054 int media_svc_request_update_db(const char *db_query, uid_t uid)
1055 {
1056         media_svc_retvm_if(!STRING_VALID(db_query), MS_MEDIA_ERR_INVALID_PARAMETER, "db_query is NULL");
1057
1058         return _media_svc_sql_query(db_query, uid);
1059 }
1060
1061 int media_svc_send_dir_update_noti(MediaSvcHandle *handle, const char *storage_id, const char *dir_path, const char *folder_id, media_item_update_type_e update_type, int pid)
1062 {
1063         int ret = MS_MEDIA_ERR_NONE;
1064         sqlite3 *db_handle = (sqlite3 *)handle;
1065         char *uuid = NULL;
1066
1067         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1068         media_svc_retvm_if(!STRING_VALID(dir_path), MS_MEDIA_ERR_INVALID_PARAMETER, "dir_path is NULL");
1069
1070         /* Get notification info */
1071         media_svc_noti_item *noti_item = NULL;
1072         ret = _media_svc_get_noti_info(db_handle, storage_id, dir_path, MS_MEDIA_ITEM_DIRECTORY, &noti_item);
1073         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
1074
1075         if (folder_id != NULL) {
1076                 uuid = strndup(folder_id, strlen(folder_id));
1077         } else {
1078                 if (noti_item->media_uuid != NULL) {
1079                         uuid = strndup(noti_item->media_uuid, strlen(noti_item->media_uuid));
1080                 } else {
1081                         _media_svc_destroy_noti_item(noti_item);
1082                         media_svc_error("folder uuid is wrong");
1083                         return MS_MEDIA_ERR_DB_INTERNAL;
1084                 }
1085         }
1086
1087         ret = _media_svc_publish_dir_noti(MS_MEDIA_ITEM_DIRECTORY, MS_MEDIA_ITEM_UPDATE, dir_path, -1, noti_item->media_uuid, NULL, pid);
1088         ret = _media_svc_publish_dir_noti_v2(MS_MEDIA_ITEM_DIRECTORY, update_type, dir_path, -1, uuid, NULL, pid);
1089         _media_svc_destroy_noti_item(noti_item);
1090         SAFE_FREE(uuid);
1091
1092         return ret;
1093 }
1094
1095 int media_svc_check_db_upgrade(MediaSvcHandle *handle, int user_version, uid_t uid)
1096 {
1097         sqlite3 *db_handle = (sqlite3 *)handle;
1098
1099         media_svc_debug_fenter();
1100
1101         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1102
1103         return _media_svc_check_db_upgrade(db_handle, user_version, uid);
1104 }
1105
1106 int media_svc_update_folder_time(MediaSvcHandle *handle, const char *storage_id, const char *folder_path, uid_t uid)
1107 {
1108         int ret = MS_MEDIA_ERR_NONE;
1109         sqlite3 *db_handle = (sqlite3 *)handle;
1110         time_t sto_time = 0;
1111         int cur_time = _media_svc_get_file_time(folder_path);
1112         char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
1113
1114         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1115
1116         ret = _media_svc_get_folder_info_by_foldername(db_handle, storage_id, folder_path, folder_uuid, &sto_time);
1117         if (ret == MS_MEDIA_ERR_NONE) {
1118                 if (sto_time != cur_time)
1119                         ret = _media_svc_update_folder_modified_time_by_folder_uuid(folder_uuid, folder_path, FALSE, uid);
1120         }
1121
1122         return ret;
1123 }
1124
1125 int media_svc_update_item_begin(int data_cnt)
1126 {
1127         media_svc_debug("Transaction data count : [%d]", data_cnt);
1128
1129         media_svc_retvm_if(data_cnt < 1, MS_MEDIA_ERR_INVALID_PARAMETER, "data_cnt shuld be bigger than 1");
1130
1131         g_media_svc_update_item_data_cnt = data_cnt;
1132         g_media_svc_update_item_cur_data_cnt = 0;
1133
1134         return MS_MEDIA_ERR_NONE;
1135 }
1136
1137 int media_svc_update_item_end(uid_t uid)
1138 {
1139         int ret = MS_MEDIA_ERR_NONE;
1140
1141         media_svc_debug_fenter();
1142
1143         if (g_media_svc_update_item_cur_data_cnt > 0)
1144                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_UPDATE_ITEM, uid);
1145
1146         g_media_svc_update_item_data_cnt = 1;
1147         g_media_svc_update_item_cur_data_cnt = 0;
1148
1149         return ret;
1150 }
1151
1152 int media_svc_update_item_meta(MediaSvcHandle *handle, const char *file_path, const char *storage_id, int storage_type, uid_t uid)
1153 {
1154         int ret = MS_MEDIA_ERR_NONE;
1155         sqlite3 *db_handle = (sqlite3 *)handle;
1156
1157         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1158
1159         media_svc_media_type_e media_type;
1160         media_svc_retvm_if(!STRING_VALID(file_path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1161         media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
1162
1163         media_svc_content_info_s content_info;
1164         memset(&content_info, 0, sizeof(media_svc_content_info_s));
1165
1166         /*Set media info*/
1167         ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, file_path, &media_type, FALSE);
1168         if (ret != MS_MEDIA_ERR_NONE)
1169                 return ret;
1170
1171         if (media_type == MEDIA_SVC_MEDIA_TYPE_MUSIC)
1172                 ret = _media_svc_extract_music_metadata_for_update(db_handle, &content_info, media_type);
1173         else {
1174                 _media_svc_destroy_content_info(&content_info);
1175                 return MS_MEDIA_ERR_NONE;
1176         }
1177
1178         if (ret != MS_MEDIA_ERR_NONE) {
1179                 _media_svc_destroy_content_info(&content_info);
1180                 return ret;
1181         }
1182
1183         if (g_media_svc_update_item_data_cnt == 1) {
1184
1185                 ret = _media_svc_update_meta_with_data(&content_info);
1186                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1187
1188         } else if (g_media_svc_update_item_cur_data_cnt < (g_media_svc_update_item_data_cnt - 1)) {
1189
1190                 ret = _media_svc_update_meta_with_data(&content_info);
1191                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1192
1193                 g_media_svc_update_item_cur_data_cnt++;
1194
1195         } else if (g_media_svc_update_item_cur_data_cnt == (g_media_svc_update_item_data_cnt - 1)) {
1196
1197                 ret = _media_svc_update_meta_with_data(&content_info);
1198                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1199
1200                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_UPDATE_ITEM, uid);
1201                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1202
1203                 g_media_svc_update_item_cur_data_cnt = 0;
1204
1205         } else {
1206                 media_svc_error("Error in media_svc_update_item_meta");
1207                 _media_svc_destroy_content_info(&content_info);
1208                 return MS_MEDIA_ERR_INTERNAL;
1209         }
1210
1211         _media_svc_destroy_content_info(&content_info);
1212
1213         return ret;
1214 }
1215
1216 int media_svc_publish_noti(media_item_type_e update_item, media_item_update_type_e update_type, const char *path, media_type_e media_type, const char *uuid, const char *mime_type)
1217 {
1218         return _media_svc_publish_noti(update_item, update_type, path, media_type, uuid, mime_type);
1219 }
1220
1221 int media_svc_get_pinyin(const char *src_str, char **pinyin_str)
1222 {
1223         media_svc_retvm_if(!STRING_VALID(src_str), MS_MEDIA_ERR_INVALID_PARAMETER, "String is NULL");
1224
1225         return _media_svc_get_pinyin_str(src_str, pinyin_str);
1226 }
1227
1228 int media_svc_check_pinyin_support(bool *support)
1229 {
1230         *support = _media_svc_check_pinyin_support();
1231
1232         return MS_MEDIA_ERR_NONE;
1233 }
1234
1235 int media_svc_set_storage_validity(MediaSvcHandle *handle, const char *storage_id, int validity, uid_t uid)
1236 {
1237         int ret = MS_MEDIA_ERR_NONE;
1238         sqlite3 * db_handle = (sqlite3 *)handle;
1239
1240         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1241
1242         ret = _media_svc_update_storage_validity(storage_id, validity, uid);
1243         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "update storage validity failed: %d", ret);
1244
1245         ret = _media_svc_update_media_view(db_handle, uid);
1246         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "update media view failed : %d", ret);
1247
1248         return ret;
1249 }
1250
1251 int media_svc_get_storage_id(MediaSvcHandle *handle, const char *path, char *storage_id, uid_t uid)
1252 {
1253         int ret = MS_MEDIA_ERR_NONE;
1254         sqlite3 * db_handle = (sqlite3 *)handle;
1255
1256         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1257         media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1258
1259         ret = _media_svc_get_storage_uuid(db_handle, path, storage_id, uid);
1260
1261         return ret;
1262 }
1263
1264 int media_svc_get_storage_path(MediaSvcHandle *handle, const char *storage_uuid, char **storage_path)
1265 {
1266         int ret = MS_MEDIA_ERR_NONE;
1267         sqlite3 * db_handle = (sqlite3 *)handle;
1268
1269         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1270         media_svc_retvm_if(storage_uuid == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_uuid is NULL");
1271
1272         ret = _media_svc_get_storage_path(db_handle, storage_uuid, storage_path);
1273
1274         return ret;
1275 }
1276
1277 int media_svc_get_storage_scan_status(MediaSvcHandle *handle, const char *storage_uuid, media_svc_scan_status_type_e *storage_status)
1278 {
1279         int ret = MS_MEDIA_ERR_NONE;
1280         sqlite3 * db_handle = (sqlite3 *)handle;
1281
1282         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1283         media_svc_retvm_if(storage_uuid == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_uuid is NULL");
1284
1285         ret = _media_svc_get_storage_scan_status(db_handle, storage_uuid, storage_status);
1286
1287         return ret;
1288 }
1289
1290 int media_svc_set_storage_scan_status(const char *storage_uuid, media_svc_scan_status_type_e storage_status, uid_t uid)
1291 {
1292         int ret = MS_MEDIA_ERR_NONE;
1293
1294         ret = _media_svc_set_storage_scan_status(storage_uuid, storage_status, uid);
1295
1296         return ret;
1297 }
1298
1299 int media_svc_get_storage_list(MediaSvcHandle *handle, char ***storage_list, char ***storage_id_list, int **scan_status_list, int *count)
1300 {
1301         sqlite3 * db_handle = (sqlite3 *)handle;
1302
1303         media_svc_debug_fenter();
1304
1305         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1306         media_svc_retvm_if(count == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "count is NULL");
1307
1308         return _media_svc_get_all_storage(db_handle, storage_list, storage_id_list, scan_status_list, count);
1309 }
1310
1311 static int __media_svc_copy_para_to_content(media_svc_content_info_s *content_info, media_svc_content_info_s *new_content_info)
1312 {
1313         media_svc_retvm_if(content_info == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1314         media_svc_retvm_if(new_content_info == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1315
1316         if (content_info->added_time > 0)
1317                 new_content_info->added_time = content_info->added_time;
1318         new_content_info->last_played_time = content_info->last_played_time;
1319         new_content_info->played_count = content_info->played_count;
1320         new_content_info->favourate = content_info->favourate;
1321
1322         /* Can be NULL if user not to set display_name using media_info_set_displayname().. */
1323         if (STRING_VALID(content_info->file_name)) {
1324                 /* Already filled in _media_svc_set_media_info() */
1325                 SAFE_FREE(new_content_info->file_name);
1326                 new_content_info->file_name = g_strdup(content_info->file_name);
1327         }
1328         new_content_info->media_meta.title = g_strdup(content_info->media_meta.title);
1329         new_content_info->media_meta.album = g_strdup(content_info->media_meta.album);
1330         new_content_info->media_meta.artist = g_strdup(content_info->media_meta.artist);
1331         new_content_info->media_meta.genre = g_strdup(content_info->media_meta.genre);
1332         new_content_info->media_meta.composer = g_strdup(content_info->media_meta.composer);
1333         new_content_info->media_meta.year = g_strdup(content_info->media_meta.year);
1334         new_content_info->media_meta.recorded_date = g_strdup(content_info->media_meta.recorded_date);
1335         new_content_info->media_meta.copyright = g_strdup(content_info->media_meta.copyright);
1336         new_content_info->media_meta.track_num = g_strdup(content_info->media_meta.track_num);
1337         new_content_info->media_meta.description = g_strdup(content_info->media_meta.description);
1338         new_content_info->media_meta.weather = g_strdup(content_info->media_meta.weather);
1339         new_content_info->media_meta.category = g_strdup(content_info->media_meta.category);
1340         new_content_info->media_meta.keyword = g_strdup(content_info->media_meta.keyword);
1341         new_content_info->media_meta.location_tag = g_strdup(content_info->media_meta.location_tag);
1342         new_content_info->media_meta.content_name = g_strdup(content_info->media_meta.content_name);
1343         new_content_info->media_meta.age_rating = g_strdup(content_info->media_meta.age_rating);
1344         new_content_info->media_meta.author = g_strdup(content_info->media_meta.author);
1345         new_content_info->media_meta.provider = g_strdup(content_info->media_meta.provider);
1346
1347         if (STRING_VALID(content_info->media_meta.datetaken)) {
1348                 new_content_info->media_meta.datetaken = g_strdup(content_info->media_meta.datetaken);
1349
1350                 new_content_info->timeline = __media_svc_get_timeline_from_str(content_info->media_meta.datetaken);
1351                 if (new_content_info->timeline == 0) {
1352                         media_svc_error("Failed to get timeline : %s", new_content_info->media_meta.datetaken);
1353                         new_content_info->timeline = new_content_info->modified_time;
1354                 } else {
1355                         media_svc_debug("Timeline : %ld", new_content_info->timeline);
1356                 }
1357         }
1358
1359         new_content_info->media_meta.is_360 = content_info->media_meta.is_360;
1360         /* new_content_info->media_meta.bitrate = content_info->media_meta.bitrate; */
1361         /* new_content_info->media_meta.samplerate = content_info->media_meta.samplerate; */
1362         /* new_content_info->media_meta.channel = content_info->media_meta.channel; */
1363         /* new_content_info->media_meta.orientation = content_info->media_meta.orientation; */
1364
1365         if (content_info->media_meta.longitude != MEDIA_SVC_DEFAULT_GPS_VALUE)
1366                 new_content_info->media_meta.longitude = content_info->media_meta.longitude;
1367         if (content_info->media_meta.latitude != MEDIA_SVC_DEFAULT_GPS_VALUE)
1368                 new_content_info->media_meta.latitude = content_info->media_meta.latitude;
1369         if (content_info->media_meta.altitude != MEDIA_SVC_DEFAULT_GPS_VALUE)
1370                 new_content_info->media_meta.altitude = content_info->media_meta.altitude;
1371
1372         new_content_info->media_meta.rating = content_info->media_meta.rating;
1373
1374         return MS_MEDIA_ERR_NONE;
1375 }
1376
1377 int media_svc_insert_item_immediately_with_data(MediaSvcHandle *handle, media_svc_content_info_s *content_info, uid_t uid)
1378 {
1379         int ret = MS_MEDIA_ERR_NONE;
1380         sqlite3 *db_handle = (sqlite3 *)handle;
1381         char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
1382         bool append_album = FALSE;
1383
1384         /* Checking parameters if they are valid */
1385         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1386         media_svc_retvm_if(content_info == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "content_info is NULL");
1387         media_svc_retvm_if(!STRING_VALID(content_info->path), MS_MEDIA_ERR_INVALID_PARAMETER, "file_path is NULL");
1388
1389         media_svc_debug("storage[%d], path[%s], media_type[%d]", content_info->storage_type, content_info->path, content_info->media_type);
1390
1391         media_svc_content_info_s _new_content_info;
1392         memset(&_new_content_info, 0, sizeof(media_svc_content_info_s));
1393
1394         media_svc_media_type_e media_type;
1395
1396         ret = _media_svc_set_media_info(&_new_content_info, content_info->storage_uuid, content_info->storage_type, content_info->path, &media_type, FALSE);
1397         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "fail _media_svc_set_media_info");
1398
1399         if (media_type == MEDIA_SVC_MEDIA_TYPE_OTHER)
1400                 media_svc_debug("Do nothing[%d]", media_type);
1401         else if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE)
1402                 ret = _media_svc_extract_image_metadata(db_handle, &_new_content_info);
1403         else
1404                 ret = _media_svc_extract_media_metadata(db_handle, &_new_content_info, uid);
1405
1406         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, content_info);
1407
1408         /* Extracting thumbnail */
1409         if (_new_content_info.thumbnail_path == NULL) {
1410                 if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE || media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
1411                         char thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
1412
1413                         ret = _media_svc_request_thumbnail(_new_content_info.path, thumb_path, sizeof(thumb_path), uid);
1414                         if (ret == MS_MEDIA_ERR_NONE)
1415                                 _new_content_info.thumbnail_path = g_strdup(thumb_path);
1416                 }
1417         }
1418
1419         /* set othere data to the structure, which is passed as parameters */
1420         __media_svc_copy_para_to_content(content_info, &_new_content_info);
1421
1422         /* Set or Get folder id */
1423         ret = _media_svc_get_and_append_folder_id_by_path(handle, _new_content_info.storage_uuid, _new_content_info.path, _new_content_info.storage_type, folder_uuid, uid);
1424         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &_new_content_info);
1425
1426         _new_content_info.folder_uuid = g_strdup(folder_uuid);
1427         media_svc_retv_del_if(_new_content_info.folder_uuid == NULL, MS_MEDIA_ERR_INTERNAL, &_new_content_info);
1428
1429         /* register album table data */
1430
1431         int album_id = 0;
1432         if (_new_content_info.media_type == MEDIA_SVC_MEDIA_TYPE_SOUND || _new_content_info.media_type == MEDIA_SVC_MEDIA_TYPE_MUSIC) {
1433                 ret = _media_svc_get_album_id(handle, _new_content_info.media_meta.album, _new_content_info.media_meta.artist, &album_id);
1434
1435                 if (ret != MS_MEDIA_ERR_NONE) {
1436                         if (ret == MS_MEDIA_ERR_DB_NO_RECORD) {
1437                                 media_svc_debug("album does not exist. So start to make album art");
1438                                 append_album = TRUE;
1439                         } else {
1440                                 media_svc_debug("other error");
1441                                 append_album = FALSE;
1442                         }
1443                 } else {
1444                         _new_content_info.album_id = album_id;
1445                         append_album = FALSE;
1446
1447                         if ((!g_strcmp0(_new_content_info.media_meta.album, MEDIA_SVC_TAG_UNKNOWN)) ||
1448                                 (!g_strcmp0(_new_content_info.media_meta.artist, MEDIA_SVC_TAG_UNKNOWN))) {
1449                                 media_svc_debug("Unknown album or artist already exists. Extract thumbnail for Unknown.");
1450                         } else {
1451
1452                                 media_svc_debug("album already exists. don't need to make album art");
1453                                 ret = _media_svc_get_album_art_by_album_id(handle, album_id, &_new_content_info.thumbnail_path);
1454                                 media_svc_retv_del_if((ret != MS_MEDIA_ERR_NONE) && (ret != MS_MEDIA_ERR_DB_NO_RECORD), ret, &_new_content_info);
1455                         }
1456                 }
1457         }
1458
1459         if (append_album == TRUE) {
1460                 if ((g_strcmp0(_new_content_info.media_meta.album, MEDIA_SVC_TAG_UNKNOWN)) &&
1461                         (g_strcmp0(_new_content_info.media_meta.artist, MEDIA_SVC_TAG_UNKNOWN)))
1462                         ret = _media_svc_append_album(handle, _new_content_info.media_meta.album, _new_content_info.media_meta.artist, _new_content_info.thumbnail_path, &album_id, uid);
1463                 else
1464                         ret = _media_svc_append_album(handle, _new_content_info.media_meta.album, _new_content_info.media_meta.artist, NULL, &album_id, uid);
1465
1466                 _new_content_info.album_id = album_id;
1467         }
1468
1469         /* Insert to db - calling _media_svc_insert_item_with_data */
1470         ret = _media_svc_insert_item_with_data(db_handle, _new_content_info.storage_uuid, &_new_content_info, FALSE, FALSE, uid);
1471
1472         if (ret == MS_MEDIA_ERR_NONE)
1473                 media_svc_debug("Insertion is successful.");
1474
1475         if (ret == MS_MEDIA_ERR_DB_CONSTRAINT_FAIL)
1476                 media_svc_error("This item is already inserted. This may be normal operation because other process already did this");
1477
1478         _media_svc_destroy_content_info(&_new_content_info);
1479
1480         /* handling returned value - important */
1481         return ret;
1482 }
1483
1484 void media_svc_destroy_content_info(media_svc_content_info_s *content_info)
1485 {
1486         _media_svc_destroy_content_info(content_info);
1487 }
1488
1489 int media_svc_generate_uuid(char **uuid)
1490 {
1491         char *gen_uuid = NULL;
1492         gen_uuid = _media_info_generate_uuid();
1493         media_svc_retvm_if(gen_uuid == NULL, MS_MEDIA_ERR_INTERNAL, "Fail to generate uuid");
1494
1495         *uuid = strdup(gen_uuid);
1496
1497         return MS_MEDIA_ERR_NONE;
1498 }
1499
1500 int media_svc_get_mmc_info(MediaSvcHandle *handle, char **storage_name, char **storage_path, int *validity, bool *info_exist)
1501 {
1502         sqlite3 * db_handle = (sqlite3 *)handle;
1503
1504         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1505
1506         return _media_svc_get_mmc_info(db_handle, storage_name, storage_path, validity, info_exist);
1507 }
1508
1509 int media_svc_check_storage(MediaSvcHandle *handle, const char *storage_id, char **storage_path, int *validity, uid_t uid)
1510 {
1511         sqlite3 * db_handle = (sqlite3 *)handle;
1512
1513         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1514         media_svc_retvm_if(storage_id == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1515         media_svc_retvm_if(storage_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_path is NULL");
1516         media_svc_retvm_if(validity == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "validity is NULL");
1517
1518         return _media_svc_check_storage(db_handle, storage_id, storage_path, validity, uid);
1519 }
1520
1521 int media_svc_update_storage(MediaSvcHandle *handle, const char *storage_id, const char *storage_path, uid_t uid)
1522 {
1523         sqlite3 * db_handle = (sqlite3 *)handle;
1524
1525         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1526         media_svc_retvm_if(storage_id == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1527         media_svc_retvm_if(storage_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_path is NULL");
1528
1529         return _media_svc_update_storage_path(db_handle, storage_id, storage_path, uid);
1530 }
1531
1532 int media_svc_insert_storage(MediaSvcHandle *handle, const char *storage_id, const char *storage_name, const char *storage_path, media_svc_storage_type_e storage_type, uid_t uid)
1533 {
1534         int ret = MS_MEDIA_ERR_NONE;
1535         sqlite3 *db_handle = (sqlite3 *)handle;
1536
1537         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1538         media_svc_retvm_if(storage_id == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1539         media_svc_retvm_if(storage_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_path is NULL");
1540         media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
1541
1542         ret = _media_svc_append_storage(storage_id, storage_name, storage_path, storage_type, uid);
1543         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "append storage failed : %d", ret);
1544
1545         if (strcmp(storage_id, MEDIA_SVC_DB_TABLE_MEDIA)) {
1546                 ret = _media_svc_create_media_table_with_id(storage_id, uid);
1547                 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "create media table failed : %d", ret);
1548
1549                 ret = _media_svc_update_media_view(db_handle, uid);
1550                 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "update media view failed : %d", ret);
1551         }
1552
1553         return ret;
1554 }
1555
1556 int media_svc_delete_storage(MediaSvcHandle *handle, const char *storage_id, uid_t uid)
1557 {
1558         int ret = MS_MEDIA_ERR_NONE;
1559         sqlite3 *db_handle = (sqlite3 *)handle;
1560         media_svc_storage_type_e storage_type;
1561
1562         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1563         media_svc_retvm_if(storage_id == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1564
1565         ret = _media_svc_get_storage_type(db_handle, storage_id, &storage_type);
1566         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "_media_svc_get_storage_type failed : %d", ret);
1567
1568         ret = _media_svc_delete_storage(storage_id, uid);
1569         media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "remove storage failed : %d", ret);
1570
1571         ret = _media_svc_delete_folder_by_storage_id(storage_id, storage_type, uid);
1572         if (ret != MS_MEDIA_ERR_NONE)
1573                 media_svc_error("fail to _media_svc_delete_folder_by_storage_id. error : [%d]", ret);
1574
1575         if (storage_type == MEDIA_SVC_STORAGE_EXTERNAL_USB) {
1576                 ret = _media_svc_drop_media_table(storage_id, uid);
1577                 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "drop table failed : %d", ret);
1578
1579                 ret = _media_svc_update_media_view(db_handle, uid);
1580                 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "update media view failed : %d", ret);
1581         }
1582
1583         return ret;
1584 }
1585
1586 int media_svc_insert_folder_begin(int data_cnt)
1587 {
1588         media_svc_debug("Transaction data count : [%d]", data_cnt);
1589
1590         media_svc_retvm_if(data_cnt < 1, MS_MEDIA_ERR_INVALID_PARAMETER, "data_cnt shuld be bigger than 1");
1591
1592         g_media_svc_insert_folder_data_cnt = data_cnt;
1593         g_media_svc_insert_folder_cur_data_cnt = 0;
1594
1595         return MS_MEDIA_ERR_NONE;
1596 }
1597
1598 int media_svc_insert_folder_end(uid_t uid)
1599 {
1600         int ret = MS_MEDIA_ERR_NONE;
1601
1602         media_svc_debug_fenter();
1603
1604         if (g_media_svc_insert_folder_cur_data_cnt > 0)
1605                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_INSERT_FOLDER, uid);
1606
1607         g_media_svc_insert_folder_data_cnt = 1;
1608         g_media_svc_insert_folder_cur_data_cnt = 0;
1609
1610         return ret;
1611 }
1612
1613 int media_svc_insert_folder(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e storage_type, const char *path, uid_t uid)
1614 {
1615         int ret = MS_MEDIA_ERR_NONE;
1616         sqlite3 * db_handle = (sqlite3 *)handle;
1617         char folder_uuid[MEDIA_SVC_UUID_SIZE+1] = {0,};
1618
1619         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1620         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1621         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1622         media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
1623
1624         if (g_media_svc_insert_folder_data_cnt == 1) {
1625
1626                 ret = _media_svc_get_and_append_folder_id_by_folder_path(handle, storage_id, path, storage_type, folder_uuid, FALSE, uid);
1627
1628         } else if (g_media_svc_insert_folder_cur_data_cnt < (g_media_svc_insert_folder_data_cnt - 1)) {
1629
1630                 ret = _media_svc_get_and_append_folder_id_by_folder_path(handle, storage_id, path, storage_type, folder_uuid, TRUE, uid);
1631                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
1632
1633                 g_media_svc_insert_folder_cur_data_cnt++;
1634
1635         } else if (g_media_svc_insert_folder_cur_data_cnt == (g_media_svc_insert_folder_data_cnt - 1)) {
1636
1637                 ret = _media_svc_get_and_append_folder_id_by_folder_path(handle, storage_id, path, storage_type, folder_uuid, TRUE, uid);
1638                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
1639
1640                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_INSERT_FOLDER, uid);
1641                 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
1642
1643                 g_media_svc_insert_folder_cur_data_cnt = 0;
1644
1645         } else {
1646                 media_svc_error("Error in media_svc_set_insert_folder");
1647                 return MS_MEDIA_ERR_INTERNAL;
1648         }
1649
1650         return ret;
1651 }
1652
1653 int media_svc_delete_invalid_folder(const char *storage_id, int storage_type, uid_t uid)
1654 {
1655         int ret = MS_MEDIA_ERR_NONE;
1656
1657         ret = _media_svc_delete_invalid_folder(storage_id, storage_type, uid);
1658
1659         return ret;
1660 }
1661
1662 int media_svc_set_folder_validity(MediaSvcHandle *handle, const char *storage_id, const char *start_path, int validity, bool is_recursive, uid_t uid)
1663 {
1664         int ret = MS_MEDIA_ERR_NONE;
1665         sqlite3 * db_handle = (sqlite3 *)handle;
1666
1667         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1668
1669         ret = _media_svc_set_folder_validity(db_handle, storage_id, start_path, validity, is_recursive, uid);
1670
1671         return ret;
1672 }
1673
1674 int media_svc_insert_item_pass1(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e storage_type, const char *path, int is_burst, uid_t uid)
1675 {
1676         int ret = MS_MEDIA_ERR_NONE;
1677         sqlite3 * db_handle = (sqlite3 *)handle;
1678         char folder_uuid[MEDIA_SVC_UUID_SIZE+1] = {0,};
1679         media_svc_media_type_e media_type;
1680
1681         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1682         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1683         media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1684         media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
1685
1686         media_svc_content_info_s content_info;
1687         memset(&content_info, 0, sizeof(media_svc_content_info_s));
1688
1689         /*Set basic media info*/
1690         ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, path, &media_type, FALSE);
1691         if (ret != MS_MEDIA_ERR_NONE) {
1692                 media_svc_error("_media_svc_set_media_info fail %d", ret);
1693                 return ret;
1694         }
1695
1696         /*Set or Get folder id*/
1697         ret = _media_svc_get_and_append_folder_id_by_path(db_handle, storage_id, path, storage_type, folder_uuid, uid);
1698         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1699
1700         content_info.folder_uuid = g_strdup(folder_uuid);
1701         media_svc_retv_del_if(content_info.folder_uuid == NULL, MS_MEDIA_ERR_INTERNAL, &content_info);
1702
1703         if (g_media_svc_insert_item_data_cnt == 1) {
1704
1705                 ret = _media_svc_insert_item_pass1(db_handle, storage_id, &content_info, is_burst, FALSE, uid);
1706                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1707
1708                 if (g_insert_with_noti)
1709                         _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt++);
1710         } else if (g_media_svc_insert_item_cur_data_cnt < (g_media_svc_insert_item_data_cnt - 1)) {
1711
1712                 ret = _media_svc_insert_item_pass1(db_handle, storage_id, &content_info, is_burst, TRUE, uid);
1713                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1714
1715                 if (g_insert_with_noti)
1716                         _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt);
1717
1718                 media_svc_debug("g_media_svc_insert_item_cur_data_cnt %d", g_media_svc_insert_item_cur_data_cnt);
1719                 g_media_svc_insert_item_cur_data_cnt++;
1720
1721         } else if (g_media_svc_insert_item_cur_data_cnt == (g_media_svc_insert_item_data_cnt - 1)) {
1722
1723                 ret = _media_svc_insert_item_pass1(db_handle, storage_id, &content_info, is_burst, TRUE, uid);
1724                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1725
1726                 if (g_insert_with_noti)
1727                         _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt);
1728
1729                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_INSERT_ITEM, uid);
1730                 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1731
1732                 media_svc_debug("_media_svc_list_query_do over");
1733
1734                 if (g_insert_with_noti) {
1735                         media_svc_debug("publish noti list %d", g_media_svc_insert_item_cur_data_cnt);
1736                         _media_svc_publish_noti_list(g_media_svc_insert_item_cur_data_cnt + 1);
1737                         _media_svc_destroy_noti_list(g_media_svc_insert_item_cur_data_cnt + 1);
1738
1739                         /* Recreate noti list */
1740                         ret = _media_svc_create_noti_list(g_media_svc_insert_item_data_cnt);
1741                         media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1742                 }
1743
1744                 g_media_svc_insert_item_cur_data_cnt = 0;
1745
1746         } else {
1747                 media_svc_error("Error in media_svc_insert_item_pass1");
1748                 _media_svc_destroy_content_info(&content_info);
1749                 return MS_MEDIA_ERR_INTERNAL;
1750         }
1751
1752         _media_svc_destroy_content_info(&content_info);
1753
1754         return MS_MEDIA_ERR_NONE;
1755 }
1756
1757 int media_svc_insert_item_pass2(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e storage_type, int scan_type, const char *extract_path, int is_burst, uid_t uid)
1758 {
1759         int ret = MS_MEDIA_ERR_NONE;
1760         sqlite3 * db_handle = (sqlite3 *)handle;
1761         sqlite3_stmt *sql_stmt = NULL;
1762         media_svc_media_type_e media_type;
1763         media_svc_content_info_s content_info;
1764         GArray *db_data_array = NULL;
1765         media_svc_item_info_s *db_data = NULL;
1766         int idx = 0;
1767
1768         media_svc_debug_fenter();
1769
1770         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1771         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1772
1773         if ((storage_type != MEDIA_SVC_STORAGE_INTERNAL) && (storage_type != MEDIA_SVC_STORAGE_EXTERNAL) && (storage_type != MEDIA_SVC_STORAGE_EXTERNAL_USB)) {
1774                 media_svc_error("storage type is incorrect[%d]", storage_type);
1775                 return MS_MEDIA_ERR_INVALID_PARAMETER;
1776         }
1777
1778         db_data_array = g_array_new(FALSE, FALSE, sizeof(media_svc_item_info_s*));
1779         if (db_data_array == NULL) {
1780                 media_svc_error("db_data_array is NULL. Out of memory");
1781                 return MS_MEDIA_ERR_OUT_OF_MEMORY;
1782         }
1783
1784         char *sql;
1785         char folder_uuid[MEDIA_SVC_UUID_SIZE+1] = {0,};
1786         if (scan_type == MS_MSG_DIRECTORY_SCANNING_NON_RECURSIVE)
1787                 ret = _media_svc_get_folder_id_by_foldername(handle, storage_id, extract_path, folder_uuid, uid);
1788
1789         if (scan_type == MS_MSG_DIRECTORY_SCANNING_NON_RECURSIVE && ret == MS_MEDIA_ERR_NONE) {
1790                 media_svc_error("folder no recursive extract");
1791                 if (is_burst == 1)
1792                         sql = sqlite3_mprintf("SELECT path, media_type FROM '%s' WHERE validity = 1 AND title IS NULL and folder_uuid = '%q' ", storage_id, folder_uuid);
1793                 else
1794                         sql = sqlite3_mprintf("SELECT path, media_type FROM '%s' WHERE validity = 1 AND title IS NULL and folder_uuid = '%q' LIMIT %d", storage_id, folder_uuid, BATCH_REQUEST_MAX);
1795         } else if (scan_type == MS_MSG_DIRECTORY_SCANNING) {
1796                 media_svc_error("folder recursive extract");
1797                 if (is_burst == 1)
1798                         sql = sqlite3_mprintf("SELECT path, media_type FROM '%s' WHERE validity = 1 and title IS NULL and path LIKE '%q%%' ", storage_id, extract_path);
1799                 else
1800                         sql = sqlite3_mprintf("SELECT path, media_type FROM '%s' WHERE validity = 1 and title IS NULL and path LIKE '%q%%' LIMIT %d", storage_id, extract_path, BATCH_REQUEST_MAX);
1801         } else {
1802                 if (is_burst == 1)
1803                         sql = sqlite3_mprintf("SELECT path, media_type FROM '%s' WHERE validity = 1 and title IS NULL", storage_id);
1804                 else
1805                         sql = sqlite3_mprintf("SELECT path, media_type FROM '%s' WHERE validity = 1 and title IS NULL LIMIT %d", storage_id, BATCH_REQUEST_MAX);
1806         }
1807
1808         ret = _media_svc_sql_prepare_to_step_simple(handle, sql, &sql_stmt);
1809         if (ret != MS_MEDIA_ERR_NONE) {
1810                 media_svc_error("error when get list. err = [%d]", ret);
1811                 g_array_free(db_data_array, FALSE);
1812                 return ret;
1813         }
1814
1815         while (sqlite3_step(sql_stmt) == SQLITE_ROW) {
1816                 db_data = NULL;
1817                 db_data = malloc(sizeof(media_svc_item_info_s));
1818                 if (db_data == NULL) {
1819                         media_svc_error("Out of memory");
1820                         continue;
1821                 }
1822
1823                 db_data->path = g_strdup((const char *)sqlite3_column_text(sql_stmt, 0));
1824                 db_data->media_type = (int)sqlite3_column_int(sql_stmt, 1);
1825
1826                 g_array_append_val(db_data_array, db_data);
1827         }
1828
1829         SQLITE3_FINALIZE(sql_stmt);
1830         media_svc_error("Insert Pass 2 get %d items!", db_data_array->len);
1831
1832         while (db_data_array->len != 0) {
1833                 db_data = NULL;
1834                 db_data = g_array_index(db_data_array, media_svc_item_info_s*, 0);
1835                 g_array_remove_index(db_data_array, 0);
1836
1837                 if ((db_data == NULL) || (db_data->path == NULL)) {
1838                         media_svc_error("invalid db data");
1839                         continue;
1840                 }
1841
1842                 media_type = db_data->media_type;
1843                 /* media_svc_debug("path is %s, media type %d", db_data->path, media_type); */
1844                 memset(&content_info, 0, sizeof(media_svc_content_info_s));
1845                 content_info.path = g_strdup(db_data->path);
1846
1847                 content_info.media_type = media_type;
1848                 content_info.storage_type = storage_type;
1849
1850                 _media_svc_set_default_value(&content_info, FALSE);
1851
1852                 if (media_type == MEDIA_SVC_MEDIA_TYPE_OTHER
1853                         || (media_type == MEDIA_SVC_MEDIA_TYPE_PVR)
1854                         || (media_type == MEDIA_SVC_MEDIA_TYPE_UHD)
1855                         || (media_type == MEDIA_SVC_MEDIA_TYPE_SCSA))
1856                         media_svc_debug("Do nothing[%d]", media_type);
1857                 else if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE)
1858                         ret = _media_svc_extract_image_metadata(db_handle, &content_info);
1859                 else
1860                         ret = _media_svc_extract_media_metadata(db_handle, &content_info, uid);
1861
1862                 ret = _media_svc_insert_item_pass2(storage_id, &content_info, is_burst, TRUE, uid);
1863
1864                 _media_svc_destroy_content_info(&content_info);
1865                 SAFE_FREE(db_data->path);
1866                 SAFE_FREE(db_data);
1867                 idx++;
1868         }
1869
1870         if (idx > 0) {
1871                 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_UPDATE_ITEM, uid);
1872                 if (0) {
1873                         _media_svc_publish_noti_list(idx);
1874                         _media_svc_destroy_noti_list(idx);
1875
1876                         /* Recreate noti list */
1877                         ret = _media_svc_create_noti_list(idx);
1878                 }
1879         }
1880
1881         while (db_data_array->len != 0) {
1882                 db_data = NULL;
1883                 db_data = g_array_index(db_data_array, media_svc_item_info_s*, 0);
1884                 g_array_remove_index(db_data_array, 0);
1885
1886                 if (db_data) {
1887                         SAFE_FREE(db_data->path);
1888                         SAFE_FREE(db_data);
1889                 }
1890         }
1891
1892         g_array_free(db_data_array, FALSE);
1893         db_data_array = NULL;
1894
1895         media_svc_debug_fleave();
1896
1897         return MS_MEDIA_ERR_NONE;
1898 }
1899
1900 int media_svc_get_folder_scan_status(MediaSvcHandle *handle, const char *storage_id, const char *path, int *storage_status)
1901 {
1902         int ret = MS_MEDIA_ERR_NONE;
1903         sqlite3 * db_handle = (sqlite3 *)handle;
1904
1905         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1906         media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1907
1908         ret = _media_svc_get_folder_scan_status(db_handle, storage_id, path, storage_status);
1909
1910         return ret;
1911 }
1912
1913 int media_svc_set_folder_scan_status(const char *storage_id, const char *path, int storage_status, uid_t uid)
1914 {
1915         int ret = MS_MEDIA_ERR_NONE;
1916
1917         ret = _media_svc_set_folder_scan_status(storage_id, path, storage_status, uid);
1918
1919         return ret;
1920 }
1921
1922 int media_svc_get_folder_modified_time(MediaSvcHandle *handle, const char *path, const char *storage_id, bool *modified)
1923 {
1924         int ret = MS_MEDIA_ERR_NONE;
1925         sqlite3 * db_handle = (sqlite3 *)handle;
1926         time_t modified_time = 0;
1927         int system_time = 0;
1928
1929         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1930
1931         ret = _media_svc_get_folder_modified_time_by_path(db_handle, path, storage_id, &modified_time);
1932
1933         system_time = _media_svc_get_file_time(path);
1934         media_svc_error("modified_time = [%ld], system_time = [%d], path = [%s]", modified_time, system_time, path);
1935
1936         if (system_time != modified_time && system_time != 0)
1937                 *modified = TRUE;
1938         else
1939                 *modified = FALSE;
1940
1941         return ret;
1942 }
1943
1944 int media_svc_get_null_scan_folder_list(MediaSvcHandle *handle, const char *storage_id, const char *folder_path, char ***folder_list, int *count)
1945 {
1946         sqlite3 * db_handle = (sqlite3 *)handle;
1947
1948         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1949         media_svc_retvm_if(count == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "count is NULL");
1950
1951         return _media_svc_get_null_scan_folder_list(db_handle, storage_id, folder_path, folder_list, count);
1952 }
1953
1954 int media_svc_change_validity_item_batch(const char *storage_id, const char *path, int des_validity, int src_validity, uid_t uid)
1955 {
1956         media_svc_retvm_if(storage_id == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1957         media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1958
1959         return _media_svc_change_validity_item_batch(storage_id, path, des_validity, src_validity, uid);
1960 }
1961
1962 int media_svc_check_folder_exist_by_path(MediaSvcHandle *handle, const char *storage_id, const char *folder_path)
1963 {
1964         int ret = MS_MEDIA_ERR_NONE;
1965         sqlite3 * db_handle = (sqlite3 *)handle;
1966         int count = -1;
1967
1968         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1969         media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1970         media_svc_retvm_if(!STRING_VALID(folder_path), MS_MEDIA_ERR_INVALID_PARAMETER, "Path is NULL");
1971
1972         ret = _media_svc_count_folder_with_path(db_handle, storage_id, folder_path, &count);
1973         media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
1974
1975         if (count > 0) {
1976                 media_svc_debug("item is exist in database");
1977                 return MS_MEDIA_ERR_NONE;
1978         } else {
1979                 media_svc_debug("item is not exist in database");
1980                 return MS_MEDIA_ERR_DB_NO_RECORD;
1981         }
1982
1983         return MS_MEDIA_ERR_NONE;
1984 }
1985
1986 int media_svc_get_folder_id(MediaSvcHandle *handle, const char *storage_id, const char *path, char *folder_id)
1987 {
1988         int ret = MS_MEDIA_ERR_NONE;
1989         sqlite3 * db_handle = (sqlite3 *)handle;
1990
1991         media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1992         media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1993
1994         ret = _media_svc_get_folder_uuid(db_handle, storage_id, path, folder_id);
1995
1996         return ret;
1997 }
1998
1999 int media_svc_append_query(const char *query, uid_t uid)
2000 {
2001         int ret = MS_MEDIA_ERR_NONE;
2002
2003         media_svc_retvm_if(query == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "query is NULL");
2004
2005         ret = _media_svc_append_query_list(query, uid);
2006
2007         return ret;
2008 }
2009
2010 int media_svc_send_query(uid_t uid)
2011 {
2012         int ret = MS_MEDIA_ERR_NONE;
2013
2014         ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_UPDATE_COMMON, uid);
2015
2016         return ret;
2017 }
2018
2019 int media_svc_get_media_type(const char *path, int *mediatype)
2020 {
2021         media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
2022
2023         return _media_svc_get_media_type(path, mediatype);
2024 }
2025