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