4 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
6 * Contact: Hyunjun Ko <zzoon.ko@samsung.com>, Haejeong Kim <backto.kim@samsung.com>
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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.
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"
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;
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;
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;
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;
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;
51 /* Flag for items to be published by notification */
52 static __thread int g_insert_with_noti = FALSE;
54 #define BATCH_REQUEST_MAX 300
58 } media_svc_item_info_s;
60 static bool __media_svc_check_storage(media_svc_storage_type_e storage_type)
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);
72 int media_svc_connect(MediaSvcHandle **handle, uid_t uid, bool need_write)
74 int ret = MS_MEDIA_ERR_NONE;
75 MediaDBHandle *db_handle = NULL;
77 media_svc_debug_fenter();
79 ret = media_db_connect(&db_handle, uid, need_write);
80 if (ret != MS_MEDIA_ERR_NONE)
84 return MS_MEDIA_ERR_NONE;
87 int media_svc_disconnect(MediaSvcHandle *handle)
89 MediaDBHandle *db_handle = (MediaDBHandle *)handle;
91 media_svc_debug_fenter();
93 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
95 int ret = MS_MEDIA_ERR_NONE;
97 ret = media_db_disconnect(db_handle);
101 int media_svc_get_user_version(MediaSvcHandle *handle, int *user_version)
103 sqlite3 *db_handle = (sqlite3 *)handle;
105 return _media_svc_get_user_version(db_handle, user_version);
108 int media_svc_create_table(uid_t uid)
110 int ret = MS_MEDIA_ERR_NONE;
113 media_svc_debug_fenter();
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.");
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.");
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.");
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.");
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.");
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.");
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.");
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.");
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.");
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.");
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.");
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.");
198 /*init storage table*/
199 ret = _media_svc_init_storage(db_handle, uid);
200 if (ret != MS_MEDIA_ERR_NONE) {
201 media_svc_error("_media_svc_make_table_query fail.");
206 /*create face table. from tizen 3.0*/
207 ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_FACE_SCAN_LIST, MEDIA_SVC_DB_LIST_FACE_SCAN_LIST, uid);
208 if (ret != MS_MEDIA_ERR_NONE) {
209 media_svc_error("_media_svc_make_table_query fail.");
213 ret = _media_svc_make_table_query(MEDIA_SVC_DB_TABLE_FACE, MEDIA_SVC_DB_LIST_FACE, uid);
214 if (ret != MS_MEDIA_ERR_NONE) {
215 media_svc_error("_media_svc_make_table_query fail.");
219 sql = sqlite3_mprintf("pragma user_version = %d;", LATEST_VERSION_NUMBER);
220 ret = _media_svc_sql_query(sql, uid);
221 if (ret != MS_MEDIA_ERR_NONE) {
222 media_svc_error("user_version update fail.");
226 _media_svc_destroy_table_query();
228 media_svc_debug_fleave();
230 return MS_MEDIA_ERR_NONE;
232 _media_svc_destroy_table_query();
234 media_svc_debug_fleave();
239 int media_svc_get_storage_type(const char *path, media_svc_storage_type_e *storage_type, uid_t uid)
241 int ret = MS_MEDIA_ERR_NONE;
242 ms_user_storage_type_t type = -1;
244 ret = ms_user_get_storage_type(uid, path, &type);
245 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "ms_user_get_storage_type failed : %d", ret);
247 *storage_type = type;
252 int media_svc_get_file_info(MediaSvcHandle *handle, const char *storage_id, const char *path, time_t *modified_time, unsigned long long *size)
254 int ret = MS_MEDIA_ERR_NONE;
255 sqlite3 *db_handle = (sqlite3 *)handle;
257 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
258 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
260 ret = _media_svc_get_fileinfo_by_path(db_handle, storage_id, path, modified_time, size);
265 int media_svc_check_item_exist_by_path(MediaSvcHandle *handle, const char *storage_id, const char *path)
267 int ret = MS_MEDIA_ERR_NONE;
268 sqlite3 *db_handle = (sqlite3 *)handle;
271 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
272 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
273 media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "Path is NULL");
275 ret = _media_svc_count_record_with_path(db_handle, storage_id, path, &count);
276 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
279 media_svc_debug("item is exist in database");
280 return MS_MEDIA_ERR_NONE;
282 media_svc_debug("item is not exist in database");
283 return MS_MEDIA_ERR_DB_NO_RECORD;
286 return MS_MEDIA_ERR_NONE;
289 int media_svc_insert_item_begin(int data_cnt, int with_noti, int from_pid)
291 media_svc_debug("Transaction data count : [%d]", data_cnt);
293 media_svc_retvm_if(data_cnt < 1, MS_MEDIA_ERR_INVALID_PARAMETER, "data_cnt shuld be bigger than 1");
295 g_media_svc_insert_item_data_cnt = data_cnt;
296 g_media_svc_insert_item_cur_data_cnt = 0;
298 /* Prepare for making noti item list */
300 media_svc_debug("making noti list from pid[%d]", from_pid);
301 if (_media_svc_create_noti_list(data_cnt) != MS_MEDIA_ERR_NONE)
302 return MS_MEDIA_ERR_OUT_OF_MEMORY;
304 _media_svc_set_noti_from_pid(from_pid);
305 g_insert_with_noti = TRUE;
308 return MS_MEDIA_ERR_NONE;
311 int media_svc_insert_item_end(uid_t uid)
313 int ret = MS_MEDIA_ERR_NONE;
315 media_svc_debug_fenter();
317 if (g_media_svc_insert_item_cur_data_cnt > 0) {
319 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_INSERT_ITEM, uid);
320 if (g_insert_with_noti) {
321 media_svc_debug("sending noti list");
322 _media_svc_publish_noti_list(g_media_svc_insert_item_cur_data_cnt);
323 _media_svc_destroy_noti_list(g_media_svc_insert_item_cur_data_cnt);
324 g_insert_with_noti = FALSE;
325 _media_svc_set_noti_from_pid(-1);
329 g_media_svc_insert_item_data_cnt = 1;
330 g_media_svc_insert_item_cur_data_cnt = 0;
335 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)
337 int ret = MS_MEDIA_ERR_NONE;
338 sqlite3 *db_handle = (sqlite3 *)handle;
339 char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
340 media_svc_media_type_e media_type;
342 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
343 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
344 media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
345 media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
347 media_svc_content_info_s content_info;
348 memset(&content_info, 0, sizeof(media_svc_content_info_s));
351 /* if drm_contentinfo is not NULL, the file is OMA DRM.*/
352 ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, path, &media_type, FALSE);
353 if (ret != MS_MEDIA_ERR_NONE)
356 if (media_type == MEDIA_SVC_MEDIA_TYPE_OTHER
357 || (media_type == MEDIA_SVC_MEDIA_TYPE_PVR)
358 || (media_type == MEDIA_SVC_MEDIA_TYPE_UHD)
359 || (media_type == MEDIA_SVC_MEDIA_TYPE_SCSA))
360 media_svc_debug("Do nothing[%d]", media_type);
361 else if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE)
362 ret = _media_svc_extract_image_metadata(db_handle, &content_info);
364 ret = _media_svc_extract_media_metadata(db_handle, &content_info, uid);
365 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
367 /*Set or Get folder id*/
368 ret = _media_svc_get_and_append_folder_id_by_path(db_handle, storage_id, path, storage_type, folder_uuid, uid);
369 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
371 content_info.folder_uuid = g_strdup(folder_uuid);
372 media_svc_retv_del_if(content_info.folder_uuid == NULL, MS_MEDIA_ERR_INTERNAL, &content_info);
374 if (g_media_svc_insert_item_data_cnt == 1) {
376 ret = _media_svc_insert_item_with_data(db_handle, storage_id, &content_info, is_burst, FALSE, uid);
377 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
379 if (g_insert_with_noti)
380 _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt++);
382 } else if (g_media_svc_insert_item_cur_data_cnt < (g_media_svc_insert_item_data_cnt - 1)) {
384 ret = _media_svc_insert_item_with_data(db_handle, storage_id, &content_info, is_burst, TRUE, uid);
385 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
387 if (g_insert_with_noti)
388 _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt);
390 g_media_svc_insert_item_cur_data_cnt++;
392 } else if (g_media_svc_insert_item_cur_data_cnt == (g_media_svc_insert_item_data_cnt - 1)) {
394 ret = _media_svc_insert_item_with_data(db_handle, storage_id, &content_info, is_burst, TRUE, uid);
395 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
397 if (g_insert_with_noti)
398 _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt);
400 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_INSERT_ITEM, uid);
401 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
403 if (g_insert_with_noti) {
404 _media_svc_publish_noti_list(g_media_svc_insert_item_cur_data_cnt + 1);
405 _media_svc_destroy_noti_list(g_media_svc_insert_item_cur_data_cnt + 1);
407 /* Recreate noti list */
408 ret = _media_svc_create_noti_list(g_media_svc_insert_item_data_cnt);
409 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
412 g_media_svc_insert_item_cur_data_cnt = 0;
415 media_svc_error("Error in media_svc_insert_item_bulk");
416 _media_svc_destroy_content_info(&content_info);
417 return MS_MEDIA_ERR_INTERNAL;
420 _media_svc_destroy_content_info(&content_info);
422 return MS_MEDIA_ERR_NONE;
425 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)
427 int ret = MS_MEDIA_ERR_NONE;
428 sqlite3 *db_handle = (sqlite3 *)handle;
429 char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
430 media_svc_media_type_e media_type;
432 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
433 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
434 media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
435 media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
437 media_svc_content_info_s content_info;
438 memset(&content_info, 0, sizeof(media_svc_content_info_s));
441 ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, path, &media_type, FALSE);
442 if (ret != MS_MEDIA_ERR_NONE)
445 if (media_type == MEDIA_SVC_MEDIA_TYPE_OTHER
446 || (media_type == MEDIA_SVC_MEDIA_TYPE_PVR)
447 || (media_type == MEDIA_SVC_MEDIA_TYPE_UHD)
448 || (media_type == MEDIA_SVC_MEDIA_TYPE_SCSA)) {
450 } else if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE) {
451 ret = _media_svc_extract_image_metadata(db_handle, &content_info);
453 ret = _media_svc_extract_media_metadata(db_handle, &content_info, uid);
456 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
458 /*Set or Get folder id*/
459 ret = _media_svc_get_and_append_folder_id_by_path(db_handle, storage_id, path, storage_type, folder_uuid, uid);
460 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
462 content_info.folder_uuid = g_strdup(folder_uuid);
463 media_svc_retv_del_if(content_info.folder_uuid == NULL, MS_MEDIA_ERR_INTERNAL, &content_info);
465 /* Extracting thumbnail */
466 if (content_info.thumbnail_path == NULL) {
467 if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE || media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
468 char thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
470 ret = _media_svc_request_thumbnail(content_info.path, thumb_path, sizeof(thumb_path), uid);
471 if (ret == MS_MEDIA_ERR_NONE)
472 content_info.thumbnail_path = g_strdup(thumb_path);
476 ret = _media_svc_insert_item_with_data(db_handle, storage_id, &content_info, FALSE, FALSE, uid);
478 if (ret == MS_MEDIA_ERR_NONE) {
479 media_svc_debug("Insertion is successful. Sending noti for this");
480 _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);
481 } else if (ret == MS_MEDIA_ERR_DB_CONSTRAINT_FAIL) {
482 media_svc_error("This item is already inserted. This may be normal operation because other process already did this");
485 _media_svc_destroy_content_info(&content_info);
489 int media_svc_move_item(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e src_storage, const char *src_path,
490 media_svc_storage_type_e dest_storage, const char *dest_path, uid_t uid)
492 int ret = MS_MEDIA_ERR_NONE;
493 sqlite3 *db_handle = (sqlite3 *)handle;
494 char *file_name = NULL;
495 char *folder_path = NULL;
496 int modified_time = 0;
497 char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
498 char old_thumb_path[MEDIA_SVC_PATHNAME_SIZE] = {0, };
499 char new_thumb_path[MEDIA_SVC_PATHNAME_SIZE] = {0, };
502 media_svc_debug_fenter();
504 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
505 media_svc_retvm_if(!STRING_VALID(src_path), MS_MEDIA_ERR_INVALID_PARAMETER, "src_path is NULL");
506 media_svc_retvm_if(!STRING_VALID(dest_path), MS_MEDIA_ERR_INVALID_PARAMETER, "dest_path is NULL");
507 media_svc_retvm_if(__media_svc_check_storage(src_storage) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid src_storage");
508 media_svc_retvm_if(__media_svc_check_storage(dest_storage) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid dest_storage");
510 /*check and update folder*/
511 ret = _media_svc_get_and_append_folder_id_by_path(db_handle, storage_id, dest_path, dest_storage, folder_uuid, uid);
512 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
515 file_name = g_path_get_basename(dest_path);
517 /*get modified_time*/
518 modified_time = _media_svc_get_file_time(dest_path);
520 /*get thumbnail_path to update. only for Imgae and Video items. Audio share album_art(thumbnail)*/
521 ret = _media_svc_get_media_type_by_path(db_handle, storage_id, src_path, &media_type);
522 if (ret != MS_MEDIA_ERR_NONE) {
523 media_svc_error("_media_svc_get_media_type_by_path failed");
524 SAFE_FREE(file_name);
528 if ((media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE) || (media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO)) {
529 /*get old thumbnail_path*/
530 ret = _media_svc_get_thumbnail_path_by_path(db_handle, storage_id, src_path, old_thumb_path);
531 if ((ret != MS_MEDIA_ERR_NONE) && (ret != MS_MEDIA_ERR_DB_NO_RECORD)) {
532 media_svc_error("_media_svc_get_thumbnail_path_by_path failed");
533 SAFE_FREE(file_name);
537 _media_svc_get_thumbnail_path(dest_storage, new_thumb_path, dest_path, THUMB_EXT, uid);
540 if (g_media_svc_move_item_data_cnt == 1) {
543 if ((media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE) || (media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO))
544 ret = _media_svc_update_item_by_path(storage_id, src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, new_thumb_path, FALSE, uid);
546 ret = _media_svc_update_item_by_path(storage_id, src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, NULL, FALSE, uid);
548 SAFE_FREE(file_name);
549 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
551 media_svc_debug("Move is successful. Sending noti for this");
553 /* Get notification info */
554 media_svc_noti_item *noti_item = NULL;
555 ret = _media_svc_get_noti_info(db_handle, storage_id, dest_path, MS_MEDIA_ITEM_FILE, ¬i_item);
556 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
558 /* Send notification for move */
559 _media_svc_publish_noti(MS_MEDIA_ITEM_FILE, MS_MEDIA_ITEM_UPDATE, src_path, media_type, noti_item->media_uuid, noti_item->mime_type);
560 _media_svc_destroy_noti_item(noti_item);
562 /*update folder modified_time*/
563 folder_path = g_path_get_dirname(dest_path);
564 ret = _media_svc_update_folder_modified_time_by_folder_uuid(folder_uuid, folder_path, FALSE, uid);
565 SAFE_FREE(folder_path);
566 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
568 ret = _media_svc_update_folder_table(storage_id, uid);
569 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
571 } else if (g_media_svc_move_item_cur_data_cnt < (g_media_svc_move_item_data_cnt - 1)) {
574 if ((media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE) || (media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO))
575 ret = _media_svc_update_item_by_path(storage_id, src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, new_thumb_path, TRUE, uid);
577 ret = _media_svc_update_item_by_path(storage_id, src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, NULL, TRUE, uid);
579 SAFE_FREE(file_name);
580 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
582 /*update folder modified_time*/
583 folder_path = g_path_get_dirname(dest_path);
584 ret = _media_svc_update_folder_modified_time_by_folder_uuid(folder_uuid, folder_path, TRUE, uid);
585 SAFE_FREE(folder_path);
586 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
588 g_media_svc_move_item_cur_data_cnt++;
590 } else if (g_media_svc_move_item_cur_data_cnt == (g_media_svc_move_item_data_cnt - 1)) {
592 if ((media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE) || (media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO))
593 ret = _media_svc_update_item_by_path(storage_id, src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, new_thumb_path, TRUE, uid);
595 ret = _media_svc_update_item_by_path(storage_id, src_path, dest_storage, dest_path, file_name, modified_time, folder_uuid, NULL, TRUE, uid);
597 SAFE_FREE(file_name);
598 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
600 /*update folder modified_time*/
601 folder_path = g_path_get_dirname(dest_path);
602 ret = _media_svc_update_folder_modified_time_by_folder_uuid(folder_uuid, folder_path, TRUE, uid);
603 SAFE_FREE(folder_path);
604 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
607 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_MOVE_ITEM, uid);
608 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
610 g_media_svc_move_item_cur_data_cnt = 0;
613 media_svc_error("Error in media_svc_move_item");
614 SAFE_FREE(file_name);
615 return MS_MEDIA_ERR_INTERNAL;
618 /*rename thumbnail file*/
619 if (STRING_VALID(old_thumb_path)) {
620 ret = _media_svc_rename_file(old_thumb_path, new_thumb_path);
621 if (ret != MS_MEDIA_ERR_NONE)
622 media_svc_error("_media_svc_rename_file failed : %d", ret);
625 return MS_MEDIA_ERR_NONE;
628 int media_svc_set_item_validity_begin(int data_cnt)
630 media_svc_debug("Transaction data count : [%d]", data_cnt);
632 media_svc_retvm_if(data_cnt < 1, MS_MEDIA_ERR_INVALID_PARAMETER, "data_cnt shuld be bigger than 1");
634 g_media_svc_item_validity_data_cnt = data_cnt;
635 g_media_svc_item_validity_cur_data_cnt = 0;
637 return MS_MEDIA_ERR_NONE;
640 int media_svc_set_item_validity_end(uid_t uid)
642 int ret = MS_MEDIA_ERR_NONE;
644 media_svc_debug_fenter();
646 if (g_media_svc_item_validity_cur_data_cnt > 0)
647 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_SET_ITEM_VALIDITY, uid);
649 g_media_svc_item_validity_data_cnt = 1;
650 g_media_svc_item_validity_cur_data_cnt = 0;
655 int media_svc_set_item_validity(const char *storage_id, const char *path, int validity, uid_t uid)
657 int ret = MS_MEDIA_ERR_NONE;
659 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
660 media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
662 media_svc_debug("path=[%s], validity=[%d]", path, validity);
664 if (g_media_svc_item_validity_data_cnt == 1) {
666 return _media_svc_update_item_validity(storage_id, path, validity, FALSE, uid);
668 } else if (g_media_svc_item_validity_cur_data_cnt < (g_media_svc_item_validity_data_cnt - 1)) {
670 ret = _media_svc_update_item_validity(storage_id, path, validity, TRUE, uid);
671 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
673 g_media_svc_item_validity_cur_data_cnt++;
675 } else if (g_media_svc_item_validity_cur_data_cnt == (g_media_svc_item_validity_data_cnt - 1)) {
677 ret = _media_svc_update_item_validity(storage_id, path, validity, TRUE, uid);
678 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
680 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_SET_ITEM_VALIDITY, uid);
681 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
683 g_media_svc_item_validity_cur_data_cnt = 0;
687 media_svc_error("Error in media_svc_set_item_validity");
688 return MS_MEDIA_ERR_INTERNAL;
691 return MS_MEDIA_ERR_NONE;
694 int media_svc_delete_item_by_path(MediaSvcHandle *handle, const char *storage_id, const char *path, uid_t uid)
696 int ret = MS_MEDIA_ERR_NONE;
697 sqlite3 *db_handle = (sqlite3 *)handle;
698 char thumb_path[MEDIA_SVC_PATHNAME_SIZE] = {0, };
700 media_svc_debug_fenter();
702 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
703 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
704 media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
707 ret = _media_svc_get_media_type_by_path(db_handle, storage_id, path, &media_type);
708 media_svc_retv_if((ret != MS_MEDIA_ERR_NONE), ret);
710 /*Get thumbnail path to delete*/
711 ret = _media_svc_get_thumbnail_path_by_path(db_handle, storage_id, path, thumb_path);
712 media_svc_retv_if((ret != MS_MEDIA_ERR_NONE) && (ret != MS_MEDIA_ERR_DB_NO_RECORD), ret);
714 if (g_media_svc_insert_item_data_cnt == 1) {
716 /* Get notification info */
717 media_svc_noti_item *noti_item = NULL;
718 ret = _media_svc_get_noti_info(db_handle, storage_id, path, MS_MEDIA_ITEM_FILE, ¬i_item);
719 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
722 ret = _media_svc_delete_item_by_path(storage_id, path, FALSE, uid);
723 if (ret != MS_MEDIA_ERR_NONE) {
724 media_svc_error("_media_svc_delete_item_by_path failed : %d", ret);
725 _media_svc_destroy_noti_item(noti_item);
730 /* Send notification */
731 media_svc_debug("Deletion is successful. Sending noti for this");
732 _media_svc_publish_noti(MS_MEDIA_ITEM_FILE, MS_MEDIA_ITEM_DELETE, path, media_type, noti_item->media_uuid, noti_item->mime_type);
733 _media_svc_destroy_noti_item(noti_item);
735 ret = _media_svc_delete_item_by_path(storage_id, path, TRUE, uid);
736 if (ret != MS_MEDIA_ERR_NONE) {
737 media_svc_error("_media_svc_delete_item_by_path failed : %d", ret);
744 if (STRING_VALID(thumb_path)) {
745 ret = _media_svc_remove_file(thumb_path);
746 if (ret != MS_MEDIA_ERR_NONE)
747 media_svc_error("fail to remove thumbnail file.");
750 return MS_MEDIA_ERR_NONE;
753 int media_svc_delete_all_items_in_storage(const char *storage_id, media_svc_storage_type_e storage_type, uid_t uid)
755 int ret = MS_MEDIA_ERR_NONE;
757 media_svc_debug("media_svc_delete_all_items_in_storage [%d]", storage_type);
759 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
760 media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
762 ret = _media_svc_truncate_table(storage_id, storage_type, uid);
763 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
765 if (storage_type != MEDIA_SVC_STORAGE_EXTERNAL_USB) {
766 char *internal_thumb_path = NULL;
767 char *external_thumb_path = NULL;
769 ret = ms_user_get_default_thumb_store_path(uid, &internal_thumb_path);
770 ret = ms_user_get_mmc_thumb_store_path(uid, &external_thumb_path);
772 if (!STRING_VALID(internal_thumb_path) || !STRING_VALID(external_thumb_path)) {
773 media_svc_error("fail to get thumbnail path");
774 SAFE_FREE(internal_thumb_path);
775 SAFE_FREE(external_thumb_path);
776 return MS_MEDIA_ERR_INTERNAL;
778 const char *dirpath = (storage_type == MEDIA_SVC_STORAGE_INTERNAL) ? internal_thumb_path : external_thumb_path;
780 /* remove thumbnails */
781 if (STRING_VALID(dirpath))
782 ret = _media_svc_remove_all_files_in_dir(dirpath);
783 SAFE_FREE(internal_thumb_path);
784 SAFE_FREE(external_thumb_path);
785 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
788 return MS_MEDIA_ERR_NONE;
791 int media_svc_delete_invalid_items_in_storage(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e storage_type, uid_t uid)
793 sqlite3 *db_handle = (sqlite3 *)handle;
795 media_svc_debug_fenter();
797 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
798 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
799 media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
801 /*Delete from DB and remove thumbnail files*/
802 return _media_svc_delete_invalid_items(db_handle, storage_id, storage_type, uid);
805 int media_svc_delete_invalid_items_in_folder(MediaSvcHandle *handle, const char *storage_id, const char *folder_path, bool is_recursive, uid_t uid)
807 sqlite3 *db_handle = (sqlite3 *)handle;
809 media_svc_debug_fenter();
811 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
812 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
814 /*Delete from DB and remove thumbnail files*/
815 return _media_svc_delete_invalid_folder_items(db_handle, storage_id, folder_path, is_recursive, uid);
818 int media_svc_set_all_storage_items_validity(const char *storage_id, media_svc_storage_type_e storage_type, int validity, uid_t uid)
820 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
821 media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
823 return _media_svc_update_storage_item_validity(storage_id, storage_type, validity, uid);
826 int media_svc_set_folder_items_validity(MediaSvcHandle *handle, const char *storage_id, const char *folder_path, int validity, int recursive, uid_t uid)
828 sqlite3 *db_handle = (sqlite3 *)handle;
830 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
831 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
832 media_svc_retvm_if(!STRING_VALID(folder_path), MS_MEDIA_ERR_INVALID_PARAMETER, "folder_path is NULL");
835 return _media_svc_update_recursive_folder_item_validity(storage_id, folder_path, validity, uid);
837 return _media_svc_update_folder_item_validity(db_handle, storage_id, folder_path, validity, uid);
840 int media_svc_refresh_item(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e storage_type, const char *path, uid_t uid)
842 int ret = MS_MEDIA_ERR_NONE;
843 sqlite3 *db_handle = (sqlite3 *)handle;
844 media_svc_media_type_e media_type;
846 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
847 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
848 media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
849 media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
851 media_svc_content_info_s content_info;
852 memset(&content_info, 0, sizeof(media_svc_content_info_s));
855 ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, path, &media_type, TRUE);
856 if (ret != MS_MEDIA_ERR_NONE)
859 /* Initialize thumbnail information to remake thumbnail. */
860 char thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1];
861 ret = _media_svc_get_thumbnail_path_by_path(db_handle, storage_id, path, thumb_path);
862 if (ret != MS_MEDIA_ERR_NONE) {
863 _media_svc_destroy_content_info(&content_info);
867 if (g_file_test(thumb_path, G_FILE_TEST_EXISTS)) {
868 ret = _media_svc_remove_file(thumb_path);
869 if (ret != MS_MEDIA_ERR_NONE)
870 media_svc_error("_media_svc_remove_file failed : %s", thumb_path);
873 ret = _media_svc_update_thumbnail_path(storage_id, path, NULL, uid);
874 if (ret != MS_MEDIA_ERR_NONE) {
875 _media_svc_destroy_content_info(&content_info);
879 /* Get notification info */
880 media_svc_noti_item *noti_item = NULL;
881 ret = _media_svc_get_noti_info(db_handle, storage_id, path, MS_MEDIA_ITEM_FILE, ¬i_item);
882 if (ret != MS_MEDIA_ERR_NONE) {
883 _media_svc_destroy_content_info(&content_info);
887 media_type = noti_item->media_type;
888 content_info.media_type = media_type;
890 if (media_type == MEDIA_SVC_MEDIA_TYPE_OTHER
891 || (media_type == MEDIA_SVC_MEDIA_TYPE_PVR)
892 || (media_type == MEDIA_SVC_MEDIA_TYPE_UHD)
893 || (media_type == MEDIA_SVC_MEDIA_TYPE_SCSA))
894 media_svc_debug("Do nothing [%d]", media_type);
895 else if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE)
896 ret = _media_svc_extract_image_metadata(db_handle, &content_info);
898 ret = _media_svc_extract_media_metadata(db_handle, &content_info, uid);
900 if (ret != MS_MEDIA_ERR_NONE) {
901 _media_svc_destroy_noti_item(noti_item);
902 _media_svc_destroy_content_info(&content_info);
906 /* Extracting thumbnail */
907 if (content_info.thumbnail_path == NULL) {
908 if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE || media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
909 char thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
911 ret = _media_svc_request_thumbnail(content_info.path, thumb_path, sizeof(thumb_path), uid);
912 if (ret == MS_MEDIA_ERR_NONE)
913 content_info.thumbnail_path = g_strdup(thumb_path);
917 ret = _media_svc_update_item_with_data(storage_id, &content_info, uid);
919 if (ret == MS_MEDIA_ERR_NONE) {
920 media_svc_debug("Update is successful. Sending noti for this");
921 _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);
923 media_svc_error("_media_svc_update_item_with_data failed : %d", ret);
926 _media_svc_destroy_content_info(&content_info);
927 _media_svc_destroy_noti_item(noti_item);
932 int media_svc_rename_folder(MediaSvcHandle *handle, const char *storage_id, const char *src_path, const char *dst_path, uid_t uid)
934 sqlite3 *db_handle = (sqlite3 *)handle;
935 int ret = MS_MEDIA_ERR_NONE;
937 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
938 media_svc_retvm_if(src_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "src_path is NULL");
939 media_svc_retvm_if(dst_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "dst_path is NULL");
941 media_svc_debug("Src path : %s, Dst Path : %s", src_path, dst_path);
943 ret = _media_svc_sql_begin_trans(uid);
944 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
946 /* Update all folder record's modified date, which are changed above */
947 char *update_folder_modified_time_sql = NULL;
951 update_folder_modified_time_sql = sqlite3_mprintf("UPDATE folder SET modified_time = %d WHERE path LIKE '%q';", date, dst_path);
953 ret = media_db_request_update_db_batch(update_folder_modified_time_sql, uid);
954 SQLITE3_SAFE_FREE(update_folder_modified_time_sql);
956 if (ret != SQLITE_OK) {
957 media_svc_error("failed to update folder modified time");
958 _media_svc_sql_rollback_trans(uid);
960 return MS_MEDIA_ERR_DB_INTERNAL;
963 /* Update all items */
964 char *select_all_sql = NULL;
965 sqlite3_stmt *sql_stmt = NULL;
966 char dst_child_path[MEDIA_SVC_PATHNAME_SIZE + 1];
968 snprintf(dst_child_path, sizeof(dst_child_path), "%s/%%", dst_path);
970 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);
972 media_svc_debug("[SQL query] : %s", select_all_sql);
974 ret = _media_svc_sql_prepare_to_step_simple(db_handle, select_all_sql, &sql_stmt);
975 if (ret != MS_MEDIA_ERR_NONE) {
976 media_svc_error("error when media_svc_rename_folder. err = [%d]", ret);
977 _media_svc_sql_rollback_trans(uid);
981 while (sqlite3_step(sql_stmt) == SQLITE_ROW) {
982 char media_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
983 char media_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
984 char media_thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
985 char media_new_thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
987 bool no_thumb = FALSE;
989 if (STRING_VALID((const char *)sqlite3_column_text(sql_stmt, 0))) {
990 SAFE_STRLCPY(media_uuid, (const char *)sqlite3_column_text(sql_stmt, 0), sizeof(media_uuid));
992 media_svc_error("media UUID is NULL");
993 return MS_MEDIA_ERR_DB_INTERNAL;
996 if (STRING_VALID((const char *)sqlite3_column_text(sql_stmt, 1))) {
997 SAFE_STRLCPY(media_path, (const char *)sqlite3_column_text(sql_stmt, 1), sizeof(media_path));
999 media_svc_error("media path is NULL");
1000 return MS_MEDIA_ERR_DB_INTERNAL;
1003 if (STRING_VALID((const char *)sqlite3_column_text(sql_stmt, 2))) {
1004 SAFE_STRLCPY(media_thumb_path, (const char *)sqlite3_column_text(sql_stmt, 2), sizeof(media_thumb_path));
1006 media_svc_debug("media thumb path doesn't exist in DB");
1010 /*media_type = sqlite3_column_int(sql_stmt, 3); */
1012 /* Update path, thumbnail path of this item */
1013 char *replaced_path = NULL;
1014 replaced_path = _media_svc_replace_path(media_path, src_path, dst_path);
1015 if (replaced_path == NULL) {
1016 media_svc_error("_media_svc_replace_path failed");
1017 SQLITE3_FINALIZE(sql_stmt);
1018 _media_svc_sql_rollback_trans(uid);
1019 return MS_MEDIA_ERR_INTERNAL;
1022 media_svc_debug("New media path : %s", replaced_path);
1023 ms_user_storage_type_t storage_type = -1;
1026 ret = ms_user_get_storage_type(uid, replaced_path, &storage_type);
1027 if (ret != MS_MEDIA_ERR_NONE) {
1028 media_svc_sec_error("ms_user_get_storage_type failed : [%d], path[%s] storage_type[%d]", ret, replaced_path, storage_type);
1029 SAFE_FREE(replaced_path);
1030 _media_svc_sql_rollback_trans(uid);
1034 ret = _media_svc_get_thumbnail_path(storage_type, media_new_thumb_path, replaced_path, THUMB_EXT, uid);
1035 if (ret != MS_MEDIA_ERR_NONE) {
1036 media_svc_error("_media_svc_get_thumbnail_path failed : %d", ret);
1037 SAFE_FREE(replaced_path);
1038 SQLITE3_FINALIZE(sql_stmt);
1039 _media_svc_sql_rollback_trans(uid);
1043 /*media_svc_debug("New media thumbnail path : %s", media_new_thumb_path); */
1046 char *update_item_sql = NULL;
1049 update_item_sql = sqlite3_mprintf("UPDATE '%q' SET path='%q' WHERE media_uuid='%q'", storage_id, replaced_path, media_uuid);
1052 if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE || media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO)
1053 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);
1055 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);
1057 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);
1061 ret = media_db_request_update_db_batch(update_item_sql, uid);
1062 SQLITE3_SAFE_FREE(update_item_sql);
1063 SAFE_FREE(replaced_path);
1065 if (ret != SQLITE_OK) {
1066 media_svc_error("failed to update item");
1067 SQLITE3_FINALIZE(sql_stmt);
1068 _media_svc_sql_rollback_trans(uid);
1070 return MS_MEDIA_ERR_DB_INTERNAL;
1073 /* Rename thumbnail file of file system */
1075 ret = _media_svc_rename_file(media_thumb_path, media_new_thumb_path);
1076 if (ret != MS_MEDIA_ERR_NONE)
1077 media_svc_error("_media_svc_rename_file failed : %d", ret);
1082 SQLITE3_FINALIZE(sql_stmt);
1084 ret = _media_svc_sql_end_trans(uid);
1085 if (ret != MS_MEDIA_ERR_NONE) {
1086 media_svc_error("mb_svc_sqlite3_commit_trans failed.. Now start to rollback");
1087 _media_svc_sql_rollback_trans(uid);
1091 media_svc_debug("Folder update is successful. Sending noti for this");
1092 /* Get notification info */
1093 media_svc_noti_item *noti_item = NULL;
1094 ret = _media_svc_get_noti_info(db_handle, storage_id, dst_path, MS_MEDIA_ITEM_DIRECTORY, ¬i_item);
1095 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
1097 _media_svc_publish_noti(MS_MEDIA_ITEM_DIRECTORY, MS_MEDIA_ITEM_UPDATE, src_path, -1, noti_item->media_uuid, NULL);
1098 _media_svc_destroy_noti_item(noti_item);
1100 return MS_MEDIA_ERR_NONE;
1103 int media_svc_request_update_db(const char *db_query, uid_t uid)
1105 media_svc_retvm_if(!STRING_VALID(db_query), MS_MEDIA_ERR_INVALID_PARAMETER, "db_query is NULL");
1107 return _media_svc_sql_query(db_query, uid);
1110 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)
1112 int ret = MS_MEDIA_ERR_NONE;
1113 sqlite3 *db_handle = (sqlite3 *)handle;
1116 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1117 media_svc_retvm_if(!STRING_VALID(dir_path), MS_MEDIA_ERR_INVALID_PARAMETER, "dir_path is NULL");
1119 /* Get notification info */
1120 media_svc_noti_item *noti_item = NULL;
1121 ret = _media_svc_get_noti_info(db_handle, storage_id, dir_path, MS_MEDIA_ITEM_DIRECTORY, ¬i_item);
1122 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
1124 if (folder_id != NULL) {
1125 uuid = strndup(folder_id, strlen(folder_id));
1127 if (noti_item->media_uuid != NULL) {
1128 uuid = strndup(noti_item->media_uuid, strlen(noti_item->media_uuid));
1130 _media_svc_destroy_noti_item(noti_item);
1131 media_svc_error("folder uuid is wrong");
1132 return MS_MEDIA_ERR_DB_INTERNAL;
1136 ret = _media_svc_publish_dir_noti(MS_MEDIA_ITEM_DIRECTORY, MS_MEDIA_ITEM_UPDATE, dir_path, -1, noti_item->media_uuid, NULL, pid);
1137 ret = _media_svc_publish_dir_noti_v2(MS_MEDIA_ITEM_DIRECTORY, update_type, dir_path, -1, uuid, NULL, pid);
1138 _media_svc_destroy_noti_item(noti_item);
1144 int media_svc_count_invalid_items_in_folder(MediaSvcHandle *handle, const char *storage_id, const char *folder_path, int *count)
1146 sqlite3 *db_handle = (sqlite3 *)handle;
1148 media_svc_debug_fenter();
1150 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1151 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1152 media_svc_retvm_if(folder_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "folder_path is NULL");
1153 media_svc_retvm_if(count == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "count is NULL");
1155 return _media_svc_count_invalid_folder_items(db_handle, storage_id, folder_path, count);
1158 int media_svc_check_db_upgrade(MediaSvcHandle *handle, int user_version, uid_t uid)
1160 sqlite3 *db_handle = (sqlite3 *)handle;
1162 media_svc_debug_fenter();
1164 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1166 return _media_svc_check_db_upgrade(db_handle, user_version, uid);
1169 int media_svc_check_db_corrupt(MediaSvcHandle *handle)
1171 sqlite3 *db_handle = (sqlite3 *)handle;
1173 media_svc_debug_fenter();
1175 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1177 return _media_db_check_corrupt(db_handle);
1180 int media_svc_get_folder_list(MediaSvcHandle *handle, char *start_path, char ***folder_list, time_t **modified_time_list, int **item_num_list, int *count)
1182 sqlite3 *db_handle = (sqlite3 *)handle;
1184 media_svc_debug_fenter();
1186 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1187 media_svc_retvm_if(count == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "count is NULL");
1189 return _media_svc_get_all_folders(db_handle, start_path, folder_list, modified_time_list, item_num_list, count);
1192 int media_svc_update_folder_time(MediaSvcHandle *handle, const char *storage_id, const char *folder_path, uid_t uid)
1194 int ret = MS_MEDIA_ERR_NONE;
1195 sqlite3 *db_handle = (sqlite3 *)handle;
1196 time_t sto_time = 0;
1197 int cur_time = _media_svc_get_file_time(folder_path);
1198 char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
1200 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1202 ret = _media_svc_get_folder_info_by_foldername(db_handle, storage_id, folder_path, folder_uuid, &sto_time);
1203 if (ret == MS_MEDIA_ERR_NONE) {
1204 if (sto_time != cur_time)
1205 ret = _media_svc_update_folder_modified_time_by_folder_uuid(folder_uuid, folder_path, FALSE, uid);
1211 int media_svc_update_item_begin(int data_cnt)
1213 media_svc_debug("Transaction data count : [%d]", data_cnt);
1215 media_svc_retvm_if(data_cnt < 1, MS_MEDIA_ERR_INVALID_PARAMETER, "data_cnt shuld be bigger than 1");
1217 g_media_svc_update_item_data_cnt = data_cnt;
1218 g_media_svc_update_item_cur_data_cnt = 0;
1220 return MS_MEDIA_ERR_NONE;
1223 int media_svc_update_item_end(uid_t uid)
1225 int ret = MS_MEDIA_ERR_NONE;
1227 media_svc_debug_fenter();
1229 if (g_media_svc_update_item_cur_data_cnt > 0)
1230 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_UPDATE_ITEM, uid);
1232 g_media_svc_update_item_data_cnt = 1;
1233 g_media_svc_update_item_cur_data_cnt = 0;
1238 int media_svc_update_item_meta(MediaSvcHandle *handle, const char *file_path, const char *storage_id, int storage_type, uid_t uid)
1240 int ret = MS_MEDIA_ERR_NONE;
1241 sqlite3 *db_handle = (sqlite3 *)handle;
1243 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1245 media_svc_media_type_e media_type;
1246 media_svc_retvm_if(!STRING_VALID(file_path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1247 media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
1249 media_svc_content_info_s content_info;
1250 memset(&content_info, 0, sizeof(media_svc_content_info_s));
1253 ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, file_path, &media_type, FALSE);
1254 if (ret != MS_MEDIA_ERR_NONE)
1257 if (media_type == MEDIA_SVC_MEDIA_TYPE_MUSIC)
1258 ret = _media_svc_extract_music_metadata_for_update(db_handle, &content_info, media_type);
1260 _media_svc_destroy_content_info(&content_info);
1261 return MS_MEDIA_ERR_NONE;
1264 if (ret != MS_MEDIA_ERR_NONE) {
1265 _media_svc_destroy_content_info(&content_info);
1269 if (g_media_svc_update_item_data_cnt == 1) {
1271 ret = _media_svc_update_meta_with_data(&content_info);
1272 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1274 } else if (g_media_svc_update_item_cur_data_cnt < (g_media_svc_update_item_data_cnt - 1)) {
1276 ret = _media_svc_update_meta_with_data(&content_info);
1277 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1279 g_media_svc_update_item_cur_data_cnt++;
1281 } else if (g_media_svc_update_item_cur_data_cnt == (g_media_svc_update_item_data_cnt - 1)) {
1283 ret = _media_svc_update_meta_with_data(&content_info);
1284 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1286 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_UPDATE_ITEM, uid);
1287 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1289 g_media_svc_update_item_cur_data_cnt = 0;
1292 media_svc_error("Error in media_svc_update_item_meta");
1293 _media_svc_destroy_content_info(&content_info);
1294 return MS_MEDIA_ERR_INTERNAL;
1297 _media_svc_destroy_content_info(&content_info);
1302 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)
1304 return _media_svc_publish_noti(update_item, update_type, path, media_type, uuid, mime_type);
1307 int media_svc_get_pinyin(const char *src_str, char **pinyin_str)
1309 media_svc_retvm_if(!STRING_VALID(src_str), MS_MEDIA_ERR_INVALID_PARAMETER, "String is NULL");
1311 return _media_svc_get_pinyin_str(src_str, pinyin_str);
1314 int media_svc_check_pinyin_support(bool *support)
1316 *support = _media_svc_check_pinyin_support();
1318 return MS_MEDIA_ERR_NONE;
1321 int media_svc_set_storage_validity(MediaSvcHandle *handle, const char *storage_id, int validity, uid_t uid)
1323 int ret = MS_MEDIA_ERR_NONE;
1324 sqlite3 * db_handle = (sqlite3 *)handle;
1326 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1328 ret = _media_svc_update_storage_validity(storage_id, validity, uid);
1329 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "update storage validity failed: %d", ret);
1331 ret = _media_svc_update_media_view(db_handle, uid);
1332 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "update media view failed : %d", ret);
1337 int media_svc_get_storage_id(MediaSvcHandle *handle, const char *path, char *storage_id, uid_t uid)
1339 int ret = MS_MEDIA_ERR_NONE;
1340 sqlite3 * db_handle = (sqlite3 *)handle;
1342 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1343 media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1345 ret = _media_svc_get_storage_uuid(db_handle, path, storage_id, uid);
1350 int media_svc_get_storage_path(MediaSvcHandle *handle, const char *storage_uuid, char **storage_path)
1352 int ret = MS_MEDIA_ERR_NONE;
1353 sqlite3 * db_handle = (sqlite3 *)handle;
1355 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1356 media_svc_retvm_if(storage_uuid == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_uuid is NULL");
1358 ret = _media_svc_get_storage_path(db_handle, storage_uuid, storage_path);
1363 int media_svc_get_storage_scan_status(MediaSvcHandle *handle, const char *storage_uuid, media_svc_scan_status_type_e *storage_status)
1365 int ret = MS_MEDIA_ERR_NONE;
1366 sqlite3 * db_handle = (sqlite3 *)handle;
1368 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1369 media_svc_retvm_if(storage_uuid == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_uuid is NULL");
1371 ret = _media_svc_get_storage_scan_status(db_handle, storage_uuid, storage_status);
1376 int media_svc_set_storage_scan_status(const char *storage_uuid, media_svc_scan_status_type_e storage_status, uid_t uid)
1378 int ret = MS_MEDIA_ERR_NONE;
1380 ret = _media_svc_set_storage_scan_status(storage_uuid, storage_status, uid);
1385 int media_svc_get_storage_list(MediaSvcHandle *handle, char ***storage_list, char ***storage_id_list, int **scan_status_list, int *count)
1387 sqlite3 * db_handle = (sqlite3 *)handle;
1389 media_svc_debug_fenter();
1391 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1392 media_svc_retvm_if(count == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "count is NULL");
1394 return _media_svc_get_all_storage(db_handle, storage_list, storage_id_list, scan_status_list, count);
1397 static int __media_svc_copy_para_to_content(media_svc_content_info_s *content_info, media_svc_content_info_s *new_content_info)
1399 media_svc_retvm_if(content_info == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1400 media_svc_retvm_if(new_content_info == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1402 if (content_info->added_time > 0)
1403 new_content_info->added_time = content_info->added_time;
1404 new_content_info->last_played_time = content_info->last_played_time;
1405 new_content_info->played_count = content_info->played_count;
1406 new_content_info->favourate = content_info->favourate;
1408 /* Can be NULL if user not to set display_name using media_info_set_displayname().. */
1409 if (STRING_VALID(content_info->file_name)) {
1410 /* Already filled in _media_svc_set_media_info() */
1411 SAFE_FREE(new_content_info->file_name);
1412 new_content_info->file_name = g_strdup(content_info->file_name);
1414 new_content_info->media_meta.title = g_strdup(content_info->media_meta.title);
1415 new_content_info->media_meta.album = g_strdup(content_info->media_meta.album);
1416 new_content_info->media_meta.artist = g_strdup(content_info->media_meta.artist);
1417 new_content_info->media_meta.genre = g_strdup(content_info->media_meta.genre);
1418 new_content_info->media_meta.composer = g_strdup(content_info->media_meta.composer);
1419 new_content_info->media_meta.year = g_strdup(content_info->media_meta.year);
1420 new_content_info->media_meta.recorded_date = g_strdup(content_info->media_meta.recorded_date);
1421 new_content_info->media_meta.copyright = g_strdup(content_info->media_meta.copyright);
1422 new_content_info->media_meta.track_num = g_strdup(content_info->media_meta.track_num);
1423 new_content_info->media_meta.description = g_strdup(content_info->media_meta.description);
1424 new_content_info->media_meta.weather = g_strdup(content_info->media_meta.weather);
1425 new_content_info->media_meta.category = g_strdup(content_info->media_meta.category);
1426 new_content_info->media_meta.keyword = g_strdup(content_info->media_meta.keyword);
1427 new_content_info->media_meta.location_tag = g_strdup(content_info->media_meta.location_tag);
1428 new_content_info->media_meta.content_name = g_strdup(content_info->media_meta.content_name);
1429 new_content_info->media_meta.age_rating = g_strdup(content_info->media_meta.age_rating);
1430 new_content_info->media_meta.author = g_strdup(content_info->media_meta.author);
1431 new_content_info->media_meta.provider = g_strdup(content_info->media_meta.provider);
1433 if (STRING_VALID(content_info->media_meta.datetaken)) {
1434 new_content_info->media_meta.datetaken = g_strdup(content_info->media_meta.datetaken);
1436 new_content_info->timeline = __media_svc_get_timeline_from_str(content_info->media_meta.datetaken);
1437 if (new_content_info->timeline == 0) {
1438 media_svc_error("Failed to get timeline : %s", new_content_info->media_meta.datetaken);
1439 new_content_info->timeline = new_content_info->modified_time;
1441 media_svc_debug("Timeline : %ld", new_content_info->timeline);
1445 new_content_info->media_meta.is_360 = content_info->media_meta.is_360;
1446 /* new_content_info->media_meta.bitrate = content_info->media_meta.bitrate; */
1447 /* new_content_info->media_meta.samplerate = content_info->media_meta.samplerate; */
1448 /* new_content_info->media_meta.channel = content_info->media_meta.channel; */
1449 /* new_content_info->media_meta.orientation = content_info->media_meta.orientation; */
1451 if (content_info->media_meta.longitude != MEDIA_SVC_DEFAULT_GPS_VALUE)
1452 new_content_info->media_meta.longitude = content_info->media_meta.longitude;
1453 if (content_info->media_meta.latitude != MEDIA_SVC_DEFAULT_GPS_VALUE)
1454 new_content_info->media_meta.latitude = content_info->media_meta.latitude;
1455 if (content_info->media_meta.altitude != MEDIA_SVC_DEFAULT_GPS_VALUE)
1456 new_content_info->media_meta.altitude = content_info->media_meta.altitude;
1458 new_content_info->media_meta.rating = content_info->media_meta.rating;
1460 return MS_MEDIA_ERR_NONE;
1463 int media_svc_insert_item_immediately_with_data(MediaSvcHandle *handle, media_svc_content_info_s *content_info, uid_t uid)
1465 int ret = MS_MEDIA_ERR_NONE;
1466 sqlite3 *db_handle = (sqlite3 *)handle;
1467 char folder_uuid[MEDIA_SVC_UUID_SIZE + 1] = {0, };
1468 bool append_album = FALSE;
1470 /* Checking parameters if they are valid */
1471 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1472 media_svc_retvm_if(content_info == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "content_info is NULL");
1473 media_svc_retvm_if(!STRING_VALID(content_info->path), MS_MEDIA_ERR_INVALID_PARAMETER, "file_path is NULL");
1475 media_svc_debug("storage[%d], path[%s], media_type[%d]", content_info->storage_type, content_info->path, content_info->media_type);
1477 media_svc_content_info_s _new_content_info;
1478 memset(&_new_content_info, 0, sizeof(media_svc_content_info_s));
1480 media_svc_media_type_e media_type;
1482 ret = _media_svc_set_media_info(&_new_content_info, content_info->storage_uuid, content_info->storage_type, content_info->path, &media_type, FALSE);
1483 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "fail _media_svc_set_media_info");
1485 if (media_type == MEDIA_SVC_MEDIA_TYPE_OTHER)
1486 media_svc_debug("Do nothing[%d]", media_type);
1487 else if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE)
1488 ret = _media_svc_extract_image_metadata(db_handle, &_new_content_info);
1490 ret = _media_svc_extract_media_metadata(db_handle, &_new_content_info, uid);
1492 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, content_info);
1494 /* Extracting thumbnail */
1495 if (_new_content_info.thumbnail_path == NULL) {
1496 if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE || media_type == MEDIA_SVC_MEDIA_TYPE_VIDEO) {
1497 char thumb_path[MEDIA_SVC_PATHNAME_SIZE + 1] = {0, };
1499 ret = _media_svc_request_thumbnail(_new_content_info.path, thumb_path, sizeof(thumb_path), uid);
1500 if (ret == MS_MEDIA_ERR_NONE)
1501 _new_content_info.thumbnail_path = g_strdup(thumb_path);
1505 /* set othere data to the structure, which is passed as parameters */
1506 __media_svc_copy_para_to_content(content_info, &_new_content_info);
1508 /* Set or Get folder id */
1509 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);
1510 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &_new_content_info);
1512 _new_content_info.folder_uuid = g_strdup(folder_uuid);
1513 media_svc_retv_del_if(_new_content_info.folder_uuid == NULL, MS_MEDIA_ERR_INTERNAL, &_new_content_info);
1515 /* register album table data */
1518 if (_new_content_info.media_type == MEDIA_SVC_MEDIA_TYPE_SOUND || _new_content_info.media_type == MEDIA_SVC_MEDIA_TYPE_MUSIC) {
1519 ret = _media_svc_get_album_id(handle, _new_content_info.media_meta.album, _new_content_info.media_meta.artist, &album_id);
1521 if (ret != MS_MEDIA_ERR_NONE) {
1522 if (ret == MS_MEDIA_ERR_DB_NO_RECORD) {
1523 media_svc_debug("album does not exist. So start to make album art");
1524 append_album = TRUE;
1526 media_svc_debug("other error");
1527 append_album = FALSE;
1530 _new_content_info.album_id = album_id;
1531 append_album = FALSE;
1533 if ((!g_strcmp0(_new_content_info.media_meta.album, MEDIA_SVC_TAG_UNKNOWN)) ||
1534 (!g_strcmp0(_new_content_info.media_meta.artist, MEDIA_SVC_TAG_UNKNOWN))) {
1535 media_svc_debug("Unknown album or artist already exists. Extract thumbnail for Unknown.");
1538 media_svc_debug("album already exists. don't need to make album art");
1539 ret = _media_svc_get_album_art_by_album_id(handle, album_id, &_new_content_info.thumbnail_path);
1540 media_svc_retv_del_if((ret != MS_MEDIA_ERR_NONE) && (ret != MS_MEDIA_ERR_DB_NO_RECORD), ret, &_new_content_info);
1545 if (append_album == TRUE) {
1546 if ((g_strcmp0(_new_content_info.media_meta.album, MEDIA_SVC_TAG_UNKNOWN)) &&
1547 (g_strcmp0(_new_content_info.media_meta.artist, MEDIA_SVC_TAG_UNKNOWN)))
1548 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);
1550 ret = _media_svc_append_album(handle, _new_content_info.media_meta.album, _new_content_info.media_meta.artist, NULL, &album_id, uid);
1552 _new_content_info.album_id = album_id;
1555 /* Insert to db - calling _media_svc_insert_item_with_data */
1556 ret = _media_svc_insert_item_with_data(db_handle, _new_content_info.storage_uuid, &_new_content_info, FALSE, FALSE, uid);
1558 if (ret == MS_MEDIA_ERR_NONE)
1559 media_svc_debug("Insertion is successful.");
1561 if (ret == MS_MEDIA_ERR_DB_CONSTRAINT_FAIL)
1562 media_svc_error("This item is already inserted. This may be normal operation because other process already did this");
1564 _media_svc_destroy_content_info(&_new_content_info);
1566 /* handling returned value - important */
1570 void media_svc_destroy_content_info(media_svc_content_info_s *content_info)
1572 _media_svc_destroy_content_info(content_info);
1575 int media_svc_generate_uuid(char **uuid)
1577 char *gen_uuid = NULL;
1578 gen_uuid = _media_info_generate_uuid();
1579 media_svc_retvm_if(gen_uuid == NULL, MS_MEDIA_ERR_INTERNAL, "Fail to generate uuid");
1581 *uuid = strdup(gen_uuid);
1583 return MS_MEDIA_ERR_NONE;
1586 int media_svc_get_mmc_info(MediaSvcHandle *handle, char **storage_name, char **storage_path, int *validity, bool *info_exist)
1588 sqlite3 * db_handle = (sqlite3 *)handle;
1590 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1592 return _media_svc_get_mmc_info(db_handle, storage_name, storage_path, validity, info_exist);
1595 int media_svc_check_storage(MediaSvcHandle *handle, const char *storage_id, char **storage_path, int *validity, uid_t uid)
1597 sqlite3 * db_handle = (sqlite3 *)handle;
1599 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1600 media_svc_retvm_if(storage_id == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1601 media_svc_retvm_if(storage_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_path is NULL");
1602 media_svc_retvm_if(validity == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "validity is NULL");
1604 return _media_svc_check_storage(db_handle, storage_id, storage_path, validity, uid);
1607 int media_svc_update_storage(MediaSvcHandle *handle, const char *storage_id, const char *storage_path, uid_t uid)
1609 sqlite3 * db_handle = (sqlite3 *)handle;
1611 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1612 media_svc_retvm_if(storage_id == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1613 media_svc_retvm_if(storage_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_path is NULL");
1615 return _media_svc_update_storage_path(db_handle, storage_id, storage_path, uid);
1618 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)
1620 int ret = MS_MEDIA_ERR_NONE;
1621 sqlite3 *db_handle = (sqlite3 *)handle;
1623 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1624 media_svc_retvm_if(storage_id == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1625 media_svc_retvm_if(storage_path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_path is NULL");
1626 media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
1628 ret = _media_svc_append_storage(storage_id, storage_name, storage_path, storage_type, uid);
1629 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "append storage failed : %d", ret);
1631 if (strcmp(storage_id, MEDIA_SVC_DB_TABLE_MEDIA)) {
1632 ret = _media_svc_create_media_table_with_id(storage_id, uid);
1633 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "create media table failed : %d", ret);
1635 ret = _media_svc_update_media_view(db_handle, uid);
1636 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "update media view failed : %d", ret);
1642 int media_svc_delete_storage(MediaSvcHandle *handle, const char *storage_id, uid_t uid)
1644 int ret = MS_MEDIA_ERR_NONE;
1645 sqlite3 *db_handle = (sqlite3 *)handle;
1646 media_svc_storage_type_e storage_type;
1648 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1649 media_svc_retvm_if(storage_id == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1651 ret = _media_svc_get_storage_type(db_handle, storage_id, &storage_type);
1652 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "_media_svc_get_storage_type failed : %d", ret);
1654 ret = _media_svc_delete_storage(storage_id, uid);
1655 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "remove storage failed : %d", ret);
1657 ret = _media_svc_delete_folder_by_storage_id(storage_id, storage_type, uid);
1658 if (ret != MS_MEDIA_ERR_NONE)
1659 media_svc_error("fail to _media_svc_delete_folder_by_storage_id. error : [%d]", ret);
1661 if (storage_type == MEDIA_SVC_STORAGE_EXTERNAL_USB) {
1662 ret = _media_svc_drop_media_table(storage_id, uid);
1663 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "drop table failed : %d", ret);
1665 ret = _media_svc_update_media_view(db_handle, uid);
1666 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "update media view failed : %d", ret);
1672 int media_svc_insert_folder_begin(int data_cnt)
1674 media_svc_debug("Transaction data count : [%d]", data_cnt);
1676 media_svc_retvm_if(data_cnt < 1, MS_MEDIA_ERR_INVALID_PARAMETER, "data_cnt shuld be bigger than 1");
1678 g_media_svc_insert_folder_data_cnt = data_cnt;
1679 g_media_svc_insert_folder_cur_data_cnt = 0;
1681 return MS_MEDIA_ERR_NONE;
1684 int media_svc_insert_folder_end(uid_t uid)
1686 int ret = MS_MEDIA_ERR_NONE;
1688 media_svc_debug_fenter();
1690 if (g_media_svc_insert_folder_cur_data_cnt > 0)
1691 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_INSERT_FOLDER, uid);
1693 g_media_svc_insert_folder_data_cnt = 1;
1694 g_media_svc_insert_folder_cur_data_cnt = 0;
1699 int media_svc_insert_folder(MediaSvcHandle *handle, const char *storage_id, media_svc_storage_type_e storage_type, const char *path, uid_t uid)
1701 int ret = MS_MEDIA_ERR_NONE;
1702 sqlite3 * db_handle = (sqlite3 *)handle;
1703 char folder_uuid[MEDIA_SVC_UUID_SIZE+1] = {0,};
1705 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1706 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1707 media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1708 media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
1710 if (g_media_svc_insert_folder_data_cnt == 1) {
1712 ret = _media_svc_get_and_append_folder_id_by_folder_path(handle, storage_id, path, storage_type, folder_uuid, FALSE, uid);
1714 } else if (g_media_svc_insert_folder_cur_data_cnt < (g_media_svc_insert_folder_data_cnt - 1)) {
1716 ret = _media_svc_get_and_append_folder_id_by_folder_path(handle, storage_id, path, storage_type, folder_uuid, TRUE, uid);
1717 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
1719 g_media_svc_insert_folder_cur_data_cnt++;
1721 } else if (g_media_svc_insert_folder_cur_data_cnt == (g_media_svc_insert_folder_data_cnt - 1)) {
1723 ret = _media_svc_get_and_append_folder_id_by_folder_path(handle, storage_id, path, storage_type, folder_uuid, TRUE, uid);
1724 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
1726 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_INSERT_FOLDER, uid);
1727 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
1729 g_media_svc_insert_folder_cur_data_cnt = 0;
1732 media_svc_error("Error in media_svc_set_insert_folder");
1733 return MS_MEDIA_ERR_INTERNAL;
1739 int media_svc_delete_invalid_folder(const char *storage_id, int storage_type, uid_t uid)
1741 int ret = MS_MEDIA_ERR_NONE;
1743 ret = _media_svc_delete_invalid_folder(storage_id, storage_type, uid);
1748 int media_svc_set_folder_validity(MediaSvcHandle *handle, const char *storage_id, const char *start_path, int validity, bool is_recursive, uid_t uid)
1750 int ret = MS_MEDIA_ERR_NONE;
1751 sqlite3 * db_handle = (sqlite3 *)handle;
1753 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1755 ret = _media_svc_set_folder_validity(db_handle, storage_id, start_path, validity, is_recursive, uid);
1760 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)
1762 int ret = MS_MEDIA_ERR_NONE;
1763 sqlite3 * db_handle = (sqlite3 *)handle;
1764 char folder_uuid[MEDIA_SVC_UUID_SIZE+1] = {0,};
1765 media_svc_media_type_e media_type;
1767 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1768 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1769 media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1770 media_svc_retvm_if(__media_svc_check_storage(storage_type) != TRUE, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid storage_type");
1772 media_svc_content_info_s content_info;
1773 memset(&content_info, 0, sizeof(media_svc_content_info_s));
1775 /*Set basic media info*/
1776 ret = _media_svc_set_media_info(&content_info, storage_id, storage_type, path, &media_type, FALSE);
1777 if (ret != MS_MEDIA_ERR_NONE) {
1778 media_svc_error("_media_svc_set_media_info fail %d", ret);
1782 /*Set or Get folder id*/
1783 ret = _media_svc_get_and_append_folder_id_by_path(db_handle, storage_id, path, storage_type, folder_uuid, uid);
1784 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1786 content_info.folder_uuid = g_strdup(folder_uuid);
1787 media_svc_retv_del_if(content_info.folder_uuid == NULL, MS_MEDIA_ERR_INTERNAL, &content_info);
1789 if (g_media_svc_insert_item_data_cnt == 1) {
1791 ret = _media_svc_insert_item_pass1(db_handle, storage_id, &content_info, is_burst, FALSE, uid);
1792 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1794 if (g_insert_with_noti)
1795 _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt++);
1796 } else if (g_media_svc_insert_item_cur_data_cnt < (g_media_svc_insert_item_data_cnt - 1)) {
1798 ret = _media_svc_insert_item_pass1(db_handle, storage_id, &content_info, is_burst, TRUE, uid);
1799 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1801 if (g_insert_with_noti)
1802 _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt);
1804 media_svc_debug("g_media_svc_insert_item_cur_data_cnt %d", g_media_svc_insert_item_cur_data_cnt);
1805 g_media_svc_insert_item_cur_data_cnt++;
1807 } else if (g_media_svc_insert_item_cur_data_cnt == (g_media_svc_insert_item_data_cnt - 1)) {
1809 ret = _media_svc_insert_item_pass1(db_handle, storage_id, &content_info, is_burst, TRUE, uid);
1810 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1812 if (g_insert_with_noti)
1813 _media_svc_insert_item_to_noti_list(&content_info, g_media_svc_insert_item_cur_data_cnt);
1815 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_INSERT_ITEM, uid);
1816 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1818 media_svc_debug("_media_svc_list_query_do over");
1820 if (g_insert_with_noti) {
1821 media_svc_debug("publish noti list %d", g_media_svc_insert_item_cur_data_cnt);
1822 _media_svc_publish_noti_list(g_media_svc_insert_item_cur_data_cnt + 1);
1823 _media_svc_destroy_noti_list(g_media_svc_insert_item_cur_data_cnt + 1);
1825 /* Recreate noti list */
1826 ret = _media_svc_create_noti_list(g_media_svc_insert_item_data_cnt);
1827 media_svc_retv_del_if(ret != MS_MEDIA_ERR_NONE, ret, &content_info);
1830 g_media_svc_insert_item_cur_data_cnt = 0;
1833 media_svc_error("Error in media_svc_insert_item_pass1");
1834 _media_svc_destroy_content_info(&content_info);
1835 return MS_MEDIA_ERR_INTERNAL;
1838 _media_svc_destroy_content_info(&content_info);
1840 return MS_MEDIA_ERR_NONE;
1843 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)
1845 int ret = MS_MEDIA_ERR_NONE;
1846 sqlite3 * db_handle = (sqlite3 *)handle;
1847 sqlite3_stmt *sql_stmt = NULL;
1848 media_svc_media_type_e media_type;
1849 media_svc_content_info_s content_info;
1850 GArray *db_data_array = NULL;
1851 media_svc_item_info_s *db_data = NULL;
1854 media_svc_debug_fenter();
1856 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1857 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
1859 if ((storage_type != MEDIA_SVC_STORAGE_INTERNAL) && (storage_type != MEDIA_SVC_STORAGE_EXTERNAL) && (storage_type != MEDIA_SVC_STORAGE_EXTERNAL_USB)) {
1860 media_svc_error("storage type is incorrect[%d]", storage_type);
1861 return MS_MEDIA_ERR_INVALID_PARAMETER;
1864 db_data_array = g_array_new(FALSE, FALSE, sizeof(media_svc_item_info_s*));
1865 if (db_data_array == NULL) {
1866 media_svc_error("db_data_array is NULL. Out of memory");
1867 return MS_MEDIA_ERR_OUT_OF_MEMORY;
1871 char folder_uuid[MEDIA_SVC_UUID_SIZE+1] = {0,};
1872 if (scan_type == MS_MSG_DIRECTORY_SCANNING_NON_RECURSIVE)
1873 ret = _media_svc_get_folder_id_by_foldername(handle, storage_id, extract_path, folder_uuid, uid);
1875 if (scan_type == MS_MSG_DIRECTORY_SCANNING_NON_RECURSIVE && ret == MS_MEDIA_ERR_NONE) {
1876 media_svc_error("folder no recursive extract");
1878 sql = sqlite3_mprintf("SELECT path, media_type FROM '%s' WHERE validity = 1 AND title IS NULL and folder_uuid = '%q' ", storage_id, folder_uuid);
1880 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);
1881 } else if (scan_type == MS_MSG_DIRECTORY_SCANNING) {
1882 media_svc_error("folder recursive extract");
1884 sql = sqlite3_mprintf("SELECT path, media_type FROM '%s' WHERE validity = 1 and title IS NULL and path LIKE '%q%%' ", storage_id, extract_path);
1886 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);
1889 sql = sqlite3_mprintf("SELECT path, media_type FROM '%s' WHERE validity = 1 and title IS NULL", storage_id);
1891 sql = sqlite3_mprintf("SELECT path, media_type FROM '%s' WHERE validity = 1 and title IS NULL LIMIT %d", storage_id, BATCH_REQUEST_MAX);
1894 ret = _media_svc_sql_prepare_to_step_simple(handle, sql, &sql_stmt);
1895 if (ret != MS_MEDIA_ERR_NONE) {
1896 media_svc_error("error when get list. err = [%d]", ret);
1897 g_array_free(db_data_array, FALSE);
1901 while (sqlite3_step(sql_stmt) == SQLITE_ROW) {
1903 db_data = malloc(sizeof(media_svc_item_info_s));
1904 if (db_data == NULL) {
1905 media_svc_error("Out of memory");
1909 db_data->path = g_strdup((const char *)sqlite3_column_text(sql_stmt, 0));
1910 db_data->media_type = (int)sqlite3_column_int(sql_stmt, 1);
1912 g_array_append_val(db_data_array, db_data);
1915 SQLITE3_FINALIZE(sql_stmt);
1916 media_svc_error("Insert Pass 2 get %d items!", db_data_array->len);
1918 while (db_data_array->len != 0) {
1920 db_data = g_array_index(db_data_array, media_svc_item_info_s*, 0);
1921 g_array_remove_index(db_data_array, 0);
1923 if ((db_data == NULL) || (db_data->path == NULL)) {
1924 media_svc_error("invalid db data");
1928 media_type = db_data->media_type;
1929 /* media_svc_debug("path is %s, media type %d", db_data->path, media_type); */
1930 memset(&content_info, 0, sizeof(media_svc_content_info_s));
1931 content_info.path = g_strdup(db_data->path);
1933 content_info.media_type = media_type;
1934 content_info.storage_type = storage_type;
1936 _media_svc_set_default_value(&content_info, FALSE);
1938 if (media_type == MEDIA_SVC_MEDIA_TYPE_OTHER
1939 || (media_type == MEDIA_SVC_MEDIA_TYPE_PVR)
1940 || (media_type == MEDIA_SVC_MEDIA_TYPE_UHD)
1941 || (media_type == MEDIA_SVC_MEDIA_TYPE_SCSA))
1942 media_svc_debug("Do nothing[%d]", media_type);
1943 else if (media_type == MEDIA_SVC_MEDIA_TYPE_IMAGE)
1944 ret = _media_svc_extract_image_metadata(db_handle, &content_info);
1946 ret = _media_svc_extract_media_metadata(db_handle, &content_info, uid);
1948 ret = _media_svc_insert_item_pass2(storage_id, &content_info, is_burst, TRUE, uid);
1950 _media_svc_destroy_content_info(&content_info);
1951 SAFE_FREE(db_data->path);
1957 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_UPDATE_ITEM, uid);
1959 _media_svc_publish_noti_list(idx);
1960 _media_svc_destroy_noti_list(idx);
1962 /* Recreate noti list */
1963 ret = _media_svc_create_noti_list(idx);
1967 while (db_data_array->len != 0) {
1969 db_data = g_array_index(db_data_array, media_svc_item_info_s*, 0);
1970 g_array_remove_index(db_data_array, 0);
1973 SAFE_FREE(db_data->path);
1979 g_array_free(db_data_array, FALSE);
1980 db_data_array = NULL;
1982 media_svc_debug_fleave();
1984 return MS_MEDIA_ERR_NONE;
1987 int media_svc_get_folder_scan_status(MediaSvcHandle *handle, const char *storage_id, const char *path, int *storage_status)
1989 int ret = MS_MEDIA_ERR_NONE;
1990 sqlite3 * db_handle = (sqlite3 *)handle;
1992 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
1993 media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
1995 ret = _media_svc_get_folder_scan_status(db_handle, storage_id, path, storage_status);
2000 int media_svc_set_folder_scan_status(const char *storage_id, const char *path, int storage_status, uid_t uid)
2002 int ret = MS_MEDIA_ERR_NONE;
2004 ret = _media_svc_set_folder_scan_status(storage_id, path, storage_status, uid);
2009 int media_svc_get_folder_modified_time(MediaSvcHandle *handle, const char *path, const char *storage_id, bool *modified)
2011 int ret = MS_MEDIA_ERR_NONE;
2012 sqlite3 * db_handle = (sqlite3 *)handle;
2013 time_t modified_time = 0;
2014 int system_time = 0;
2016 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
2018 ret = _media_svc_get_folder_modified_time_by_path(db_handle, path, storage_id, &modified_time);
2020 system_time = _media_svc_get_file_time(path);
2021 media_svc_error("modified_time = [%ld], system_time = [%d], path = [%s]", modified_time, system_time, path);
2023 if (system_time != modified_time && system_time != 0)
2031 int media_svc_get_null_scan_folder_list(MediaSvcHandle *handle, const char *storage_id, const char *folder_path, char ***folder_list, int *count)
2033 sqlite3 * db_handle = (sqlite3 *)handle;
2035 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
2036 media_svc_retvm_if(count == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "count is NULL");
2038 return _media_svc_get_null_scan_folder_list(db_handle, storage_id, folder_path, folder_list, count);
2041 int media_svc_change_validity_item_batch(const char *storage_id, const char *path, int des_validity, int src_validity, uid_t uid)
2043 media_svc_retvm_if(storage_id == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
2044 media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
2046 return _media_svc_change_validity_item_batch(storage_id, path, des_validity, src_validity, uid);
2049 int media_svc_delete_invalid_folder_by_path(MediaSvcHandle *handle, const char *storage_id, const char *folder_path, uid_t uid, int *delete_count)
2051 int ret = MS_MEDIA_ERR_NONE;
2052 sqlite3 * db_handle = (sqlite3 *)handle;
2054 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
2056 ret = _media_svc_delete_invalid_folder_by_path(db_handle, storage_id, folder_path, uid, delete_count);
2061 int media_svc_check_folder_exist_by_path(MediaSvcHandle *handle, const char *storage_id, const char *folder_path)
2063 int ret = MS_MEDIA_ERR_NONE;
2064 sqlite3 * db_handle = (sqlite3 *)handle;
2067 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
2068 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
2069 media_svc_retvm_if(!STRING_VALID(folder_path), MS_MEDIA_ERR_INVALID_PARAMETER, "Path is NULL");
2071 ret = _media_svc_count_folder_with_path(db_handle, storage_id, folder_path, &count);
2072 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
2075 media_svc_debug("item is exist in database");
2076 return MS_MEDIA_ERR_NONE;
2078 media_svc_debug("item is not exist in database");
2079 return MS_MEDIA_ERR_DB_NO_RECORD;
2082 return MS_MEDIA_ERR_NONE;
2085 int media_svc_check_subfolder_by_path(MediaSvcHandle *handle, const char *storage_id, const char *folder_path, int *count)
2087 int ret = MS_MEDIA_ERR_NONE;
2088 sqlite3 * db_handle = (sqlite3 *)handle;
2091 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
2092 media_svc_retvm_if(!STRING_VALID(storage_id), MS_MEDIA_ERR_INVALID_PARAMETER, "storage_id is NULL");
2093 media_svc_retvm_if(!STRING_VALID(folder_path), MS_MEDIA_ERR_INVALID_PARAMETER, "Path is NULL");
2096 ret = _media_svc_count_subfolder_with_path(db_handle, storage_id, folder_path, &cnt);
2097 media_svc_retv_if(ret != MS_MEDIA_ERR_NONE, ret);
2101 media_svc_debug("item is exist in database");
2102 return MS_MEDIA_ERR_NONE;
2104 media_svc_debug("item is not exist in database");
2105 return MS_MEDIA_ERR_DB_NO_RECORD;
2108 return MS_MEDIA_ERR_NONE;
2111 int media_svc_get_folder_id(MediaSvcHandle *handle, const char *storage_id, const char *path, char *folder_id)
2113 int ret = MS_MEDIA_ERR_NONE;
2114 sqlite3 * db_handle = (sqlite3 *)handle;
2116 media_svc_retvm_if(db_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Handle is NULL");
2117 media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
2119 ret = _media_svc_get_folder_uuid(db_handle, storage_id, path, folder_id);
2124 int media_svc_append_query(const char *query, uid_t uid)
2126 int ret = MS_MEDIA_ERR_NONE;
2128 media_svc_retvm_if(query == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "query is NULL");
2130 ret = _media_svc_append_query_list(query, uid);
2135 int media_svc_send_query(uid_t uid)
2137 int ret = MS_MEDIA_ERR_NONE;
2139 ret = _media_svc_list_query_do(MEDIA_SVC_QUERY_UPDATE_COMMON, uid);
2144 int media_svc_get_media_type(const char *path, int *mediatype)
2146 media_svc_retvm_if(path == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "path is NULL");
2148 return _media_svc_get_media_type(path, mediatype);