Modify media db creation
[platform/core/multimedia/libmedia-service.git] / plugin / media-content-plugin.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 <sys/stat.h>
24 #include <mm_file.h>
25 #include <media-thumbnail.h>
26 #include "media-svc.h"
27 #include "media-svc-util.h"
28
29 #define MEDIA_SVC_PLUGIN_ERROR_NONE             0
30 #define MEDIA_SVC_PLUGIN_ERROR                  -1
31
32 #define STRING_VALID(str)       \
33         ((str != NULL && strlen(str) > 0) ? TRUE : FALSE)
34 #define STORAGE_VALID(storage)\
35         (((storage == MEDIA_SVC_STORAGE_INTERNAL) || (storage == MEDIA_SVC_STORAGE_EXTERNAL) || (storage == MEDIA_SVC_STORAGE_EXTERNAL_USB)) ? TRUE : FALSE)
36
37
38 typedef enum {
39         ERR_HANDLE = 1,
40         ERR_FILE_PATH,
41         ERR_FOLDER_PATH,
42         ERR_MIME_TYPE,
43         ERR_NOT_MEDIAFILE,
44         ERR_STORAGE_TYPE,
45         ERR_CHECK_ITEM,
46         ERR_MAX,
47 } media_svc_error_type_e;
48
49 static void __set_error_message(int err_type, char **err_msg);
50
51 static void __set_error_message(int err_type, char **err_msg)
52 {
53         if (err_msg)
54                 *err_msg = NULL;
55         else
56                 return;
57
58         if (err_type == ERR_HANDLE)
59                 *err_msg = strdup("invalid handle");
60         else if (err_type == ERR_FILE_PATH)
61                 *err_msg = strdup("invalid file path");
62         else if (err_type == ERR_FOLDER_PATH)
63                 *err_msg = strdup("invalid folder path");
64         else if (err_type == ERR_MIME_TYPE)
65                 *err_msg = strdup("invalid mime type");
66         else if (err_type == ERR_NOT_MEDIAFILE)
67                 *err_msg = strdup("not media content");
68         else if (err_type == ERR_STORAGE_TYPE)
69                 *err_msg = strdup("invalid storage type");
70         else if (err_type == ERR_CHECK_ITEM)
71                 *err_msg = strdup("item does not exist");
72         else if (err_type == MS_MEDIA_ERR_DB_CONNECT_FAIL)
73                 *err_msg = strdup("DB connect error");
74         else if (err_type == MS_MEDIA_ERR_DB_DISCONNECT_FAIL)
75                 *err_msg = strdup("DB disconnect error");
76         else if (err_type == MS_MEDIA_ERR_INVALID_PARAMETER)
77                 *err_msg = strdup("invalid parameter");
78         else if (err_type == MS_MEDIA_ERR_DB_INTERNAL)
79                 *err_msg = strdup("DB internal error");
80         else if (err_type == MS_MEDIA_ERR_DB_NO_RECORD)
81                 *err_msg = strdup("not found in DB");
82         else if (err_type == MS_MEDIA_ERR_INTERNAL)
83                 *err_msg = strdup("media service internal error");
84         else if (err_type == MS_MEDIA_ERR_DB_CORRUPT)
85                 *err_msg = strdup("DB corrupt error");
86         else
87                 *err_msg = strdup("error unknown");
88
89         return;
90 }
91
92 int connect_db(void **handle, uid_t uid, char **err_msg)
93 {
94         int ret = media_svc_connect(handle, uid, true);
95
96         if (ret < 0) {
97                 __set_error_message(ret, err_msg);
98                 return MEDIA_SVC_PLUGIN_ERROR;
99         }
100
101         return MEDIA_SVC_PLUGIN_ERROR_NONE;
102 }
103
104 int disconnect_db(void *handle, char **err_msg)
105 {
106         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
107
108         if (handle == NULL) {
109                 __set_error_message(ERR_HANDLE, err_msg);
110                 return MEDIA_SVC_PLUGIN_ERROR;
111         }
112
113         ret = media_svc_disconnect(handle);
114         if (ret < 0) {
115                 __set_error_message(ret, err_msg);
116                 return MEDIA_SVC_PLUGIN_ERROR;
117         }
118
119         return MEDIA_SVC_PLUGIN_ERROR_NONE;
120 }
121
122 int check_item_exist(void *handle, const char *storage_id, const char *file_path, bool *modified, char **err_msg)
123 {
124         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
125         *modified = TRUE;
126
127         if (handle == NULL) {
128                 __set_error_message(ERR_HANDLE, err_msg);
129                 return MEDIA_SVC_PLUGIN_ERROR;
130         }
131
132         if (!STRING_VALID(file_path)) {
133                 __set_error_message(ERR_FILE_PATH, err_msg);
134                 return MEDIA_SVC_PLUGIN_ERROR;
135         }
136
137         time_t modified_time = 0;
138         unsigned long long file_size = 0;
139         struct stat st;
140
141         ret = media_svc_get_file_info(handle, storage_id, file_path, &modified_time, &file_size);
142         if (ret == MS_MEDIA_ERR_NONE) {
143                 memset(&st, 0, sizeof(struct stat));
144                 if (stat(file_path, &st) == 0) {
145                         if ((st.st_mtime != modified_time) || (st.st_size != file_size))
146                                 *modified = TRUE;
147                         else
148                                 *modified = FALSE;
149                 }
150
151                 return MEDIA_SVC_PLUGIN_ERROR_NONE;     /*exist */
152         }
153
154         __set_error_message(ERR_CHECK_ITEM, err_msg);
155
156         return MEDIA_SVC_PLUGIN_ERROR;          /*not exist */
157 }
158
159 int insert_item_begin(void *handle, int item_cnt, int with_noti, int from_pid, char **err_msg)
160 {
161         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
162
163         if (handle == NULL) {
164                 __set_error_message(ERR_HANDLE, err_msg);
165                 return MEDIA_SVC_PLUGIN_ERROR;
166         }
167
168         ret = media_svc_insert_item_begin(handle, item_cnt, with_noti, from_pid);
169         if (ret < 0) {
170                 __set_error_message(ret, err_msg);
171                 return MEDIA_SVC_PLUGIN_ERROR;
172         }
173
174         return MEDIA_SVC_PLUGIN_ERROR_NONE;
175 }
176
177 int insert_item_end(void *handle, uid_t uid, char **err_msg)
178 {
179         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
180
181         if (handle == NULL) {
182                 __set_error_message(ERR_HANDLE, err_msg);
183                 return MEDIA_SVC_PLUGIN_ERROR;
184         }
185
186         ret = media_svc_insert_item_end(handle, uid);
187         if (ret < 0) {
188                 __set_error_message(ret, err_msg);
189                 return MEDIA_SVC_PLUGIN_ERROR;
190         }
191
192         return MEDIA_SVC_PLUGIN_ERROR_NONE;
193 }
194
195 int insert_item(void *handle, const char *storage_id, const char *file_path, int storage_type, uid_t uid, char **err_msg)
196 {
197         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
198
199         if (handle == NULL) {
200                 __set_error_message(ERR_HANDLE, err_msg);
201                 return MEDIA_SVC_PLUGIN_ERROR;
202         }
203
204         if (!STRING_VALID(file_path)) {
205                 __set_error_message(ERR_FILE_PATH, err_msg);
206                 return MEDIA_SVC_PLUGIN_ERROR;
207         }
208
209         if (!STORAGE_VALID(storage_type)) {
210                 __set_error_message(ERR_STORAGE_TYPE, err_msg);
211                 return MEDIA_SVC_PLUGIN_ERROR;
212         }
213
214         ret = media_svc_insert_item_bulk(handle, storage_id, storage_type, file_path, FALSE, uid);
215         if (ret < 0) {
216                 __set_error_message(ret, err_msg);
217                 return MEDIA_SVC_PLUGIN_ERROR;
218         }
219
220         return MEDIA_SVC_PLUGIN_ERROR_NONE;
221 }
222
223 int insert_item_immediately(void *handle, const char *storage_id, const char *file_path, int storage_type, uid_t uid, char **err_msg)
224 {
225         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
226
227         if (handle == NULL) {
228                 __set_error_message(ERR_HANDLE, err_msg);
229                 return MEDIA_SVC_PLUGIN_ERROR;
230         }
231
232         if (!STRING_VALID(file_path)) {
233                 __set_error_message(ERR_FILE_PATH, err_msg);
234                 return MEDIA_SVC_PLUGIN_ERROR;
235         }
236
237         if (!STORAGE_VALID(storage_type)) {
238                 __set_error_message(ERR_STORAGE_TYPE, err_msg);
239                 return MEDIA_SVC_PLUGIN_ERROR;
240         }
241
242         ret = media_svc_insert_item_immediately(handle, storage_id, storage_type, file_path, uid);
243         if (ret < 0) {
244                 __set_error_message(ret, err_msg);
245                 return MEDIA_SVC_PLUGIN_ERROR;
246         }
247
248         return MEDIA_SVC_PLUGIN_ERROR_NONE;
249 }
250
251 int insert_burst_item(void *handle, const char *storage_id, const char *file_path, int storage_type, uid_t uid, char **err_msg)
252 {
253         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
254
255         if (handle == NULL) {
256                 __set_error_message(ERR_HANDLE, err_msg);
257                 return MEDIA_SVC_PLUGIN_ERROR;
258         }
259
260         if (!STRING_VALID(file_path)) {
261                 __set_error_message(ERR_FILE_PATH, err_msg);
262                 return MEDIA_SVC_PLUGIN_ERROR;
263         }
264
265         if (!STORAGE_VALID(storage_type)) {
266                 __set_error_message(ERR_STORAGE_TYPE, err_msg);
267                 return MEDIA_SVC_PLUGIN_ERROR;
268         }
269
270         ret = media_svc_insert_item_bulk(handle, storage_id, storage_type, file_path, TRUE, uid);
271         if (ret < 0) {
272                 __set_error_message(ret, err_msg);
273                 return MEDIA_SVC_PLUGIN_ERROR;
274         }
275
276         return MEDIA_SVC_PLUGIN_ERROR_NONE;
277 }
278
279 int set_all_storage_items_validity(void *handle, const char *storage_id, int storage_type, int validity, uid_t uid, char **err_msg)
280 {
281         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
282
283         if (handle == NULL) {
284                 __set_error_message(ERR_HANDLE, err_msg);
285                 return MEDIA_SVC_PLUGIN_ERROR;
286         }
287
288         if (!STORAGE_VALID(storage_type)) {
289                 __set_error_message(ERR_STORAGE_TYPE, err_msg);
290                 return MEDIA_SVC_PLUGIN_ERROR;
291         }
292
293         ret = media_svc_set_all_storage_items_validity(handle, storage_id, storage_type, validity, uid);
294         if (ret < 0) {
295                 __set_error_message(ret, err_msg);
296                 return MEDIA_SVC_PLUGIN_ERROR;
297         }
298
299         return MEDIA_SVC_PLUGIN_ERROR_NONE;
300 }
301
302 int set_folder_item_validity(void *handle, const char *storage_id, const char *folder_path, int validity, int recursive, uid_t uid, char **err_msg)
303 {
304         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
305
306         if (handle == NULL) {
307                 __set_error_message(ERR_HANDLE, err_msg);
308                 return MEDIA_SVC_PLUGIN_ERROR;
309         }
310
311         if (!STRING_VALID(folder_path)) {
312                 __set_error_message(ERR_FOLDER_PATH, err_msg);
313                 return MEDIA_SVC_PLUGIN_ERROR;
314         }
315
316         ret = media_svc_set_folder_items_validity(handle, storage_id, folder_path, validity, recursive, uid);
317         if (ret < 0) {
318                 __set_error_message(ret, err_msg);
319                 return MEDIA_SVC_PLUGIN_ERROR;
320         }
321
322         return MEDIA_SVC_PLUGIN_ERROR_NONE;
323 }
324
325 int set_item_validity_begin(void *handle, int item_cnt, char **err_msg)
326 {
327         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
328
329         if (handle == NULL) {
330                 __set_error_message(ERR_HANDLE, err_msg);
331                 return MEDIA_SVC_PLUGIN_ERROR;
332         }
333
334         ret = media_svc_set_item_validity_begin(handle, item_cnt);
335         if (ret < 0) {
336                 __set_error_message(ret, err_msg);
337                 return MEDIA_SVC_PLUGIN_ERROR;
338         }
339
340         return MEDIA_SVC_PLUGIN_ERROR_NONE;
341 }
342
343 int set_item_validity_end(void *handle, uid_t uid, char **err_msg)
344 {
345         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
346
347         if (handle == NULL) {
348                 __set_error_message(ERR_HANDLE, err_msg);
349                 return MEDIA_SVC_PLUGIN_ERROR;
350         }
351
352         ret = media_svc_set_item_validity_end(handle, uid);
353         if (ret < 0) {
354                 __set_error_message(ret, err_msg);
355                 return MEDIA_SVC_PLUGIN_ERROR;
356         }
357
358         return MEDIA_SVC_PLUGIN_ERROR_NONE;
359 }
360
361 int set_item_validity(void *handle, const char *storage_id, const char *file_path, int storage_type, int validity, uid_t uid, char **err_msg)
362 {
363         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
364
365         if (handle == NULL) {
366                 __set_error_message(ERR_HANDLE, err_msg);
367                 return MEDIA_SVC_PLUGIN_ERROR;
368         }
369
370         if (!STRING_VALID(file_path)) {
371                 __set_error_message(ERR_FILE_PATH, err_msg);
372                 return MEDIA_SVC_PLUGIN_ERROR;
373         }
374
375         ret = media_svc_set_item_validity(handle, storage_id, file_path, validity, uid);
376
377         if (ret < 0) {
378                 __set_error_message(ret, err_msg);
379                 return MEDIA_SVC_PLUGIN_ERROR;
380         }
381
382         return MEDIA_SVC_PLUGIN_ERROR_NONE;
383 }
384
385 int delete_item(void *handle, const char *storage_id, const char *file_path, uid_t uid, char **err_msg)
386 {
387         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
388
389         if (handle == NULL) {
390                 __set_error_message(ERR_HANDLE, err_msg);
391                 return MEDIA_SVC_PLUGIN_ERROR;
392         }
393
394         if (!STRING_VALID(file_path)) {
395                 __set_error_message(ERR_FILE_PATH, err_msg);
396                 return MEDIA_SVC_PLUGIN_ERROR;
397         }
398
399         ret = media_svc_check_item_exist_by_path(handle, storage_id, file_path);
400         if (ret == 0) {
401                 ret = media_svc_delete_item_by_path(handle, storage_id, file_path, uid);
402
403                 if (ret < 0) {
404                         __set_error_message(ret, err_msg);
405                         return MEDIA_SVC_PLUGIN_ERROR;
406                 } else
407                         return MEDIA_SVC_PLUGIN_ERROR_NONE;
408         }
409
410         __set_error_message(ERR_CHECK_ITEM, err_msg);   /*not exist in DB so can't delete item. */
411         return MEDIA_SVC_PLUGIN_ERROR;
412 }
413
414 int delete_all_items_in_storage(void *handle, const char *storage_id, int storage_type, uid_t uid, char **err_msg)
415 {
416         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
417
418         if (handle == NULL) {
419                 __set_error_message(ERR_HANDLE, err_msg);
420                 return MEDIA_SVC_PLUGIN_ERROR;
421         }
422
423         if (!STORAGE_VALID(storage_type)) {
424                 __set_error_message(ERR_STORAGE_TYPE, err_msg);
425                 return MEDIA_SVC_PLUGIN_ERROR;
426         }
427
428         ret = media_svc_delete_all_items_in_storage(handle, storage_id, storage_type, uid);
429         if (ret < 0) {
430                 __set_error_message(ret, err_msg);
431                 return MEDIA_SVC_PLUGIN_ERROR;
432         }
433
434         return MEDIA_SVC_PLUGIN_ERROR_NONE;
435 }
436
437 int delete_all_invalid_items_in_storage(void *handle, const char *storage_id, int storage_type, uid_t uid, char **err_msg)
438 {
439         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
440
441         if (handle == NULL) {
442                 __set_error_message(ERR_HANDLE, err_msg);
443                 return MEDIA_SVC_PLUGIN_ERROR;
444         }
445
446         if (!STORAGE_VALID(storage_type)) {
447                 __set_error_message(ERR_STORAGE_TYPE, err_msg);
448                 return MEDIA_SVC_PLUGIN_ERROR;
449         }
450
451         ret = media_svc_delete_invalid_items_in_storage(handle, storage_id, storage_type, uid);
452         if (ret < 0) {
453                 __set_error_message(ret, err_msg);
454                 return MEDIA_SVC_PLUGIN_ERROR;
455         }
456
457         return MEDIA_SVC_PLUGIN_ERROR_NONE;
458 }
459
460 int delete_all_invalid_items_in_folder(void *handle, const char *storage_id, const char *folder_path, bool is_recursve, uid_t uid, char **err_msg)
461 {
462         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
463
464         if (handle == NULL) {
465                 __set_error_message(ERR_HANDLE, err_msg);
466                 return MEDIA_SVC_PLUGIN_ERROR;
467         }
468
469         if (!STRING_VALID(folder_path)) {
470                 __set_error_message(ERR_FOLDER_PATH, err_msg);
471                 return MEDIA_SVC_PLUGIN_ERROR;
472         }
473
474         ret = media_svc_delete_invalid_items_in_folder(handle, storage_id, folder_path, is_recursve, uid);
475         if (ret < 0) {
476                 __set_error_message(ret, err_msg);
477                 return MEDIA_SVC_PLUGIN_ERROR;
478         }
479
480         return MEDIA_SVC_PLUGIN_ERROR_NONE;
481 }
482
483
484 int update_begin(void)
485 {
486         return MEDIA_SVC_PLUGIN_ERROR_NONE;
487 }
488
489 int update_end(const char *start_path, uid_t uid)
490 {
491         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
492
493         ret = thumbnail_request_extract_all_thumbs(uid);
494         if (ret < 0) {
495                 return MEDIA_SVC_PLUGIN_ERROR;
496         }
497
498         return MEDIA_SVC_PLUGIN_ERROR_NONE;
499 }
500
501 int send_dir_update_noti(void *handle, const char *storage_id, const char *dir_path, const char *folder_id, int update_type, int pid, char **err_msg)
502 {
503         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
504
505         if (!STRING_VALID(dir_path)) {
506                 __set_error_message(ERR_FOLDER_PATH, err_msg);
507                 return MEDIA_SVC_PLUGIN_ERROR;
508         }
509
510         ret = media_svc_send_dir_update_noti(handle, storage_id, dir_path, folder_id, (media_item_update_type_e)update_type, pid);
511         if (ret < 0) {
512                 __set_error_message(ret, err_msg);
513                 return MEDIA_SVC_PLUGIN_ERROR;
514         }
515
516         return MEDIA_SVC_PLUGIN_ERROR_NONE;
517 }
518
519 int count_delete_items_in_folder(void *handle, const char *storage_id, const char *folder_path, int *count, char **err_msg)
520 {
521         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
522
523         if (handle == NULL) {
524                 __set_error_message(ERR_HANDLE, err_msg);
525                 return MEDIA_SVC_PLUGIN_ERROR;
526         }
527
528         if (count == NULL) {
529                 __set_error_message(ERR_HANDLE, err_msg);
530                 return MEDIA_SVC_PLUGIN_ERROR;
531         }
532
533         if (!STRING_VALID(folder_path)) {
534                 __set_error_message(ERR_FOLDER_PATH, err_msg);
535                 return MEDIA_SVC_PLUGIN_ERROR;
536         }
537
538         ret = media_svc_count_invalid_items_in_folder(handle, storage_id, folder_path, count);
539         if (ret < 0) {
540                 __set_error_message(ret, err_msg);
541                 return MEDIA_SVC_PLUGIN_ERROR;
542         }
543
544         return MEDIA_SVC_PLUGIN_ERROR_NONE;
545 }
546
547 int check_db(void *handle, bool *need_full_scan, uid_t uid, char **err_msg)
548 {
549         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
550         int user_version = -1;
551
552         ret = media_svc_get_user_version(handle, &user_version);
553         if (ret < 0) {
554                 __set_error_message(ret, err_msg);
555                 return MEDIA_SVC_PLUGIN_ERROR;
556         }
557
558         if (user_version == 0) {
559                 /*check db schema*/
560                 ret = media_svc_create_table(handle, uid);
561                 if (ret < 0) {
562                         __set_error_message(ret, err_msg);
563                         return MEDIA_SVC_PLUGIN_ERROR;
564                 }
565         } else {
566                 /*check db version*/
567                 ret = media_svc_check_db_upgrade(handle, need_full_scan, user_version, uid);
568                 if (ret < 0) {
569                         __set_error_message(ret, err_msg);
570                         return MEDIA_SVC_PLUGIN_ERROR;
571                 }
572         }
573
574         return MEDIA_SVC_PLUGIN_ERROR_NONE;
575 }
576
577 int check_db_corrupt(void *handle, char **err_msg)
578 {
579         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
580
581         /*check db version*/
582         ret = media_svc_check_db_corrupt(handle);
583         if (ret < 0) {
584                 __set_error_message(ret, err_msg);
585                 return MEDIA_SVC_PLUGIN_ERROR;
586         }
587
588         return MEDIA_SVC_PLUGIN_ERROR_NONE;
589 }
590
591 int get_folder_list(void *handle, const char *storage_id, char *start_path, char ***folder_list, int **modified_time_list, int **item_num_list, int *count, char **err_msg)
592 {
593         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
594
595         if (handle == NULL) {
596                 __set_error_message(ERR_HANDLE, err_msg);
597                 return MEDIA_SVC_PLUGIN_ERROR;
598         }
599
600         if (count == NULL) {
601                 __set_error_message(ERR_HANDLE, err_msg);
602                 return MEDIA_SVC_PLUGIN_ERROR;
603         }
604
605         ret = media_svc_get_folder_list(handle, start_path, folder_list, (time_t **)modified_time_list, item_num_list, count);
606         if (ret < 0) {
607                 __set_error_message(ret, err_msg);
608                 return MEDIA_SVC_PLUGIN_ERROR;
609         }
610
611         return MEDIA_SVC_PLUGIN_ERROR_NONE;
612 }
613
614 int update_folder_time(void *handle, const char *storage_id, char *folder_path, uid_t uid, char **err_msg)
615 {
616         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
617
618         if (handle == NULL) {
619                 __set_error_message(ERR_HANDLE, err_msg);
620                 return MEDIA_SVC_PLUGIN_ERROR;
621         }
622
623         if (folder_path == NULL) {
624                 __set_error_message(ERR_HANDLE, err_msg);
625                 return MEDIA_SVC_PLUGIN_ERROR;
626         }
627
628         ret = media_svc_update_folder_time(handle, storage_id, folder_path, uid);
629         if (ret < 0) {
630                 __set_error_message(ret, err_msg);
631                 return MEDIA_SVC_PLUGIN_ERROR;
632         }
633
634         return MEDIA_SVC_PLUGIN_ERROR_NONE;
635 }
636
637 int get_uuid(void * handle, char **uuid, char **err_msg)
638 {
639         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
640
641         if (handle == NULL) {
642                 __set_error_message(ERR_HANDLE, err_msg);
643                 return MEDIA_SVC_PLUGIN_ERROR;
644         }
645
646         ret = media_svc_generate_uuid(uuid);
647         if (ret < 0) {
648                 __set_error_message(ret, err_msg);
649                 return MEDIA_SVC_PLUGIN_ERROR;
650         }
651
652         return MEDIA_SVC_PLUGIN_ERROR_NONE;
653 }
654
655 int get_mmc_info(void * handle, char **storage_name, char **storage_path, int *validity, bool *info_exist, char **err_msg)
656 {
657         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
658
659         if (handle == NULL) {
660                 __set_error_message(ERR_HANDLE, err_msg);
661                 return MEDIA_SVC_PLUGIN_ERROR;
662         }
663
664         ret = media_svc_get_mmc_info(handle, storage_name, storage_path, validity, info_exist);
665         if (ret < 0) {
666                 __set_error_message(MS_MEDIA_ERR_DB_NO_RECORD, err_msg);
667                 return MEDIA_SVC_PLUGIN_ERROR;
668         }
669
670         return MEDIA_SVC_PLUGIN_ERROR_NONE;
671 }
672
673 int check_storage(void * handle, const char *storage_id, const char *storage_name, char **storage_path, int *validity, char **err_msg)
674 {
675         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
676
677         if (handle == NULL) {
678                 __set_error_message(ERR_HANDLE, err_msg);
679                 return MEDIA_SVC_PLUGIN_ERROR;
680         }
681
682         ret = media_svc_check_storage(handle, storage_id, storage_name, storage_path, validity);
683         if (ret < 0) {
684                 __set_error_message(ret, err_msg);
685                 return MEDIA_SVC_PLUGIN_ERROR;
686         }
687
688         return MEDIA_SVC_PLUGIN_ERROR_NONE;
689 }
690
691 int insert_storage(void *handle, const char *storage_id, int storage_type, const char *storage_name, const char *storage_path, uid_t uid, char **err_msg)
692 {
693         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
694
695         if (handle == NULL) {
696                 __set_error_message(ERR_HANDLE, err_msg);
697                 return MEDIA_SVC_PLUGIN_ERROR;
698         }
699
700         ret = media_svc_insert_storage(handle, storage_id, storage_name, storage_path, NULL, storage_type, uid);
701         if (ret < 0) {
702                 __set_error_message(ret, err_msg);
703                 return MEDIA_SVC_PLUGIN_ERROR;
704         }
705
706         return MEDIA_SVC_PLUGIN_ERROR_NONE;
707 }
708
709 int update_storage(void *handle, const char *storage_id, const char *storage_path, uid_t uid, char **err_msg)
710 {
711         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
712
713         if (handle == NULL) {
714                 __set_error_message(ERR_HANDLE, err_msg);
715                 return MEDIA_SVC_PLUGIN_ERROR;
716         }
717
718         ret = media_svc_update_storage(handle, storage_id, storage_path, uid);
719         if (ret < 0) {
720                 __set_error_message(ret, err_msg);
721                 return MEDIA_SVC_PLUGIN_ERROR;
722         }
723
724         return MEDIA_SVC_PLUGIN_ERROR_NONE;
725 }
726
727 int delete_storage(void * handle, const char *storage_id, const char *storage_name, uid_t uid, char **err_msg)
728 {
729         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
730
731         if (handle == NULL) {
732                 __set_error_message(ERR_HANDLE, err_msg);
733                 return MEDIA_SVC_PLUGIN_ERROR;
734         }
735
736         ret = media_svc_delete_storage(handle, storage_id, storage_name, uid);
737         if (ret < 0) {
738                 __set_error_message(ret, err_msg);
739                 return MEDIA_SVC_PLUGIN_ERROR;
740         }
741
742         return MEDIA_SVC_PLUGIN_ERROR_NONE;
743 }
744
745 int set_storage_validity(void * handle, const char *storage_id, int validity, uid_t uid, char **err_msg)
746 {
747         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
748
749         if (handle == NULL) {
750                 __set_error_message(ERR_HANDLE, err_msg);
751                 return MEDIA_SVC_PLUGIN_ERROR;
752         }
753
754         ret = media_svc_set_storage_validity(handle, storage_id, validity, uid);
755         if (ret < 0) {
756                 __set_error_message(ret, err_msg);
757                 return MEDIA_SVC_PLUGIN_ERROR;
758         }
759
760         return MEDIA_SVC_PLUGIN_ERROR_NONE;
761 }
762
763 int set_all_storage_validity(void * handle, int validity, char **err_msg, uid_t uid)
764 {
765         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
766
767         if (handle == NULL) {
768                 __set_error_message(ERR_HANDLE, err_msg);
769                 return MEDIA_SVC_PLUGIN_ERROR;
770         }
771
772         ret = media_svc_set_storage_validity(handle, NULL, validity, uid);
773         if (ret < 0) {
774                 __set_error_message(ret, err_msg);
775                 return MEDIA_SVC_PLUGIN_ERROR;
776         }
777
778         return MEDIA_SVC_PLUGIN_ERROR_NONE;
779 }
780
781 int get_storage_id(void * handle, const char *path, char *storage_id, char **err_msg)
782 {
783         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
784
785         if (handle == NULL) {
786                 __set_error_message(ERR_HANDLE, err_msg);
787                 return MEDIA_SVC_PLUGIN_ERROR;
788         }
789
790         ret = media_svc_get_storage_id(handle, path, storage_id);
791         if (ret < 0) {
792                 __set_error_message(ret, err_msg);
793                 return MEDIA_SVC_PLUGIN_ERROR;
794         }
795
796         return MEDIA_SVC_PLUGIN_ERROR_NONE;
797 }
798
799 int get_storage_scan_status(void * handle, const char *storage_id, int *status, char **err_msg)
800 {
801         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
802         media_svc_scan_status_type_e storage_status = 0;
803
804         if (handle == NULL) {
805                 __set_error_message(ERR_HANDLE, err_msg);
806                 return MEDIA_SVC_PLUGIN_ERROR;
807         }
808
809         ret = media_svc_get_storage_scan_status(handle, storage_id, &storage_status);
810         if (ret < 0) {
811                 __set_error_message(ret, err_msg);
812                 return MEDIA_SVC_PLUGIN_ERROR;
813         }
814
815         *status = storage_status;
816
817         return MEDIA_SVC_PLUGIN_ERROR_NONE;
818 }
819
820 int set_storage_scan_status(void *handle, const char *storage_id, int status, uid_t uid, char **err_msg)
821 {
822         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
823         media_svc_scan_status_type_e storage_status = status;
824
825         if (handle == NULL) {
826                 __set_error_message(ERR_HANDLE, err_msg);
827                 return MEDIA_SVC_PLUGIN_ERROR;
828         }
829
830         ret = media_svc_set_storage_scan_status(handle, storage_id, storage_status, uid);
831         if (ret < 0) {
832                 __set_error_message(ret, err_msg);
833                 return MEDIA_SVC_PLUGIN_ERROR;
834         }
835
836         return MEDIA_SVC_PLUGIN_ERROR_NONE;
837 }
838
839 int get_storage_list(void *handle, char ***storage_list, char ***storage_id_list, int **scan_status_list, int *count, char **err_msg)
840 {
841         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
842
843         if (handle == NULL) {
844                 __set_error_message(ERR_HANDLE, err_msg);
845                 return MEDIA_SVC_PLUGIN_ERROR;
846         }
847
848         if (count == NULL) {
849                 __set_error_message(ERR_HANDLE, err_msg);
850                 return MEDIA_SVC_PLUGIN_ERROR;
851         }
852
853         ret = media_svc_get_storage_list(handle, storage_list, storage_id_list, scan_status_list, count);
854         if (ret < 0) {
855                 __set_error_message(ret, err_msg);
856                 return MEDIA_SVC_PLUGIN_ERROR;
857         }
858
859         return MEDIA_SVC_PLUGIN_ERROR_NONE;
860 }
861
862 int update_item_begin(void *handle, int item_cnt, char **err_msg)
863 {
864         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
865
866         if (handle == NULL) {
867                 __set_error_message(ERR_HANDLE, err_msg);
868                 return MEDIA_SVC_PLUGIN_ERROR;
869         }
870
871         ret = media_svc_update_item_begin(handle, item_cnt);
872         if (ret < 0) {
873                 __set_error_message(ret, err_msg);
874                 return MEDIA_SVC_PLUGIN_ERROR;
875         }
876
877         return MEDIA_SVC_PLUGIN_ERROR_NONE;
878 }
879
880 int update_item_end(void *handle, uid_t uid, char **err_msg)
881 {
882         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
883
884         if (handle == NULL) {
885                 __set_error_message(ERR_HANDLE, err_msg);
886                 return MEDIA_SVC_PLUGIN_ERROR;
887         }
888
889         ret = media_svc_update_item_end(handle, uid);
890         if (ret < 0) {
891                 __set_error_message(ret, err_msg);
892                 return MEDIA_SVC_PLUGIN_ERROR;
893         }
894
895         return MEDIA_SVC_PLUGIN_ERROR_NONE;
896 }
897
898 int update_item_meta(void *handle, const char *file_path, int storage_type, uid_t uid, char **err_msg)
899 {
900         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
901
902         if (handle == NULL) {
903                 __set_error_message(ERR_HANDLE, err_msg);
904                 return MEDIA_SVC_PLUGIN_ERROR;
905         }
906
907         if (file_path == NULL) {
908                 __set_error_message(ERR_HANDLE, err_msg);
909                 return MEDIA_SVC_PLUGIN_ERROR;
910         }
911
912         ret = media_svc_update_item_meta(handle, file_path, storage_type, uid);
913         if (ret < 0) {
914                 __set_error_message(ret, err_msg);
915                 return MEDIA_SVC_PLUGIN_ERROR;
916         }
917
918         return MEDIA_SVC_PLUGIN_ERROR_NONE;
919 }
920
921 int insert_item_scan(void * handle, const char *storage_id, const char *file_path, int storage_type, uid_t uid, char **err_msg)
922 {
923         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
924
925         if (handle == NULL) {
926                 __set_error_message(ERR_HANDLE, err_msg);
927                 return MEDIA_SVC_PLUGIN_ERROR;
928         }
929
930         if (!STRING_VALID(file_path)) {
931                 __set_error_message(ERR_FILE_PATH, err_msg);
932                 return MEDIA_SVC_PLUGIN_ERROR;
933         }
934
935         if (!STORAGE_VALID(storage_type)) {
936                 __set_error_message(ERR_STORAGE_TYPE, err_msg);
937                 return MEDIA_SVC_PLUGIN_ERROR;
938         }
939
940         ret = media_svc_insert_item_pass1(handle, storage_id, storage_type, file_path, FALSE, uid);
941         if (ret < 0) {
942                 __set_error_message(ret, err_msg);
943                 return MEDIA_SVC_PLUGIN_ERROR;
944         }
945
946         return MEDIA_SVC_PLUGIN_ERROR_NONE;
947 }
948
949 int update_item_extract(void * handle, const char *storage_id, int storage_type, int scan_type, uid_t uid, const char *path, char **err_msg)
950 {
951         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
952
953         if (handle == NULL) {
954                 __set_error_message(ERR_HANDLE, err_msg);
955                 return MEDIA_SVC_PLUGIN_ERROR;
956         }
957
958         if (!STORAGE_VALID(storage_type)) {
959                 __set_error_message(ERR_STORAGE_TYPE, err_msg);
960                 return MEDIA_SVC_PLUGIN_ERROR;
961         }
962
963         ret = media_svc_insert_item_pass2(handle, storage_id, storage_type, scan_type, path, FALSE, uid);
964         if (ret < 0) {
965                 __set_error_message(ret, err_msg);
966                 return MEDIA_SVC_PLUGIN_ERROR;
967         }
968
969         return MEDIA_SVC_PLUGIN_ERROR_NONE;
970 }
971
972 int insert_folder_begin(void * handle, int item_cnt, char **err_msg)
973 {
974         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
975
976         if (handle == NULL) {
977                 __set_error_message(ERR_HANDLE, err_msg);
978                 return MEDIA_SVC_PLUGIN_ERROR;
979         }
980
981         ret = media_svc_insert_folder_begin(handle, item_cnt);
982         if (ret < 0) {
983                 __set_error_message(ret, err_msg);
984                 return MEDIA_SVC_PLUGIN_ERROR;
985         }
986
987         return MEDIA_SVC_PLUGIN_ERROR_NONE;
988 }
989
990 int insert_folder_end(void *handle, uid_t uid, char **err_msg)
991 {
992         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
993
994         if (handle == NULL) {
995                 __set_error_message(ERR_HANDLE, err_msg);
996                 return MEDIA_SVC_PLUGIN_ERROR;
997         }
998
999         ret = media_svc_insert_folder_end(handle, uid);
1000         if (ret < 0) {
1001                 __set_error_message(ret, err_msg);
1002                 return MEDIA_SVC_PLUGIN_ERROR;
1003         }
1004
1005         return MEDIA_SVC_PLUGIN_ERROR_NONE;
1006 }
1007
1008 int insert_folder(void * handle, const char *storage_id, const char *file_path, int storage_type, uid_t uid, char **err_msg)
1009 {
1010         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
1011
1012         if (handle == NULL) {
1013                 __set_error_message(ERR_HANDLE, err_msg);
1014                 return MEDIA_SVC_PLUGIN_ERROR;
1015         }
1016
1017         if (!STRING_VALID(file_path)) {
1018                 __set_error_message(ERR_FILE_PATH, err_msg);
1019                 return MEDIA_SVC_PLUGIN_ERROR;
1020         }
1021
1022         if (!STORAGE_VALID(storage_type)) {
1023                 __set_error_message(ERR_STORAGE_TYPE, err_msg);
1024                 return MEDIA_SVC_PLUGIN_ERROR;
1025         }
1026
1027         ret = media_svc_insert_folder(handle, storage_id, storage_type, file_path, uid);
1028         if (ret < 0) {
1029                 __set_error_message(ret, err_msg);
1030                 return MEDIA_SVC_PLUGIN_ERROR;
1031         }
1032
1033         return MEDIA_SVC_PLUGIN_ERROR_NONE;
1034 }
1035
1036 int delete_invalid_folder(void * handle, const char *storage_id, uid_t uid, char **err_msg)
1037 {
1038         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
1039
1040         if (handle == NULL) {
1041                 __set_error_message(ERR_HANDLE, err_msg);
1042                 return MEDIA_SVC_PLUGIN_ERROR;
1043         }
1044
1045         ret = media_svc_delete_invalid_folder(handle, storage_id, uid);
1046         if (ret < 0) {
1047                 __set_error_message(ret, err_msg);
1048                 return MEDIA_SVC_PLUGIN_ERROR;
1049         }
1050
1051         return MEDIA_SVC_PLUGIN_ERROR_NONE;
1052 }
1053
1054 int set_folder_validity(void * handle, const char *storage_id, const char* start_path, int validity, bool is_recursive, uid_t uid, char **err_msg)
1055 {
1056         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
1057
1058         if (handle == NULL) {
1059                 __set_error_message(ERR_HANDLE, err_msg);
1060                 return MEDIA_SVC_PLUGIN_ERROR;
1061         }
1062
1063         ret = media_svc_set_folder_validity(handle, storage_id, start_path, validity, is_recursive, uid);
1064         if (ret < 0) {
1065                 __set_error_message(ret, err_msg);
1066                 return MEDIA_SVC_PLUGIN_ERROR;
1067         }
1068
1069         return MEDIA_SVC_PLUGIN_ERROR_NONE;
1070 }
1071
1072 int delete_invalid_folder_by_path(void * handle, const char *storage_id, const char *folder_path, uid_t uid, int *delete_count, char **err_msg)
1073 {
1074         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
1075
1076         if (handle == NULL) {
1077                 __set_error_message(ERR_HANDLE, err_msg);
1078                 return MEDIA_SVC_PLUGIN_ERROR;
1079         }
1080
1081         ret = media_svc_delete_invalid_folder_by_path(handle, storage_id, folder_path, uid, delete_count);
1082         if (ret < 0) {
1083                 __set_error_message(ret, err_msg);
1084                 return MEDIA_SVC_PLUGIN_ERROR;
1085         }
1086
1087         return MEDIA_SVC_PLUGIN_ERROR_NONE;
1088 }
1089
1090 int check_folder_exist(void * handle, const char *storage_id, const char *folder_path, char **err_msg)
1091 {
1092         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
1093
1094         if (handle == NULL) {
1095                 __set_error_message(ERR_HANDLE, err_msg);
1096                 return MEDIA_SVC_PLUGIN_ERROR;
1097         }
1098
1099         ret = media_svc_check_folder_exist_by_path(handle, storage_id, folder_path);
1100         if (ret < 0) {
1101                 __set_error_message(ret, err_msg);
1102                 return MEDIA_SVC_PLUGIN_ERROR;
1103         }
1104
1105         return MEDIA_SVC_PLUGIN_ERROR_NONE;
1106 }
1107
1108 int count_subfolder(void * handle, const char *storage_id, const char *folder_path, int *count, char **err_msg)
1109 {
1110         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
1111         int cnt = 0;
1112
1113         if (handle == NULL) {
1114                 __set_error_message(ERR_HANDLE, err_msg);
1115                 return MEDIA_SVC_PLUGIN_ERROR;
1116         }
1117
1118         ret = media_svc_check_subfolder_by_path(handle, storage_id, folder_path, &cnt);
1119         if (ret < 0) {
1120                 __set_error_message(ret, err_msg);
1121                 return MEDIA_SVC_PLUGIN_ERROR;
1122         }
1123
1124         *count = cnt;
1125
1126         return MEDIA_SVC_PLUGIN_ERROR_NONE;
1127 }
1128
1129 int get_folder_id(void * handle, const char *storage_id, const char *path, char *folder_id, char **err_msg)
1130 {
1131         int ret = MEDIA_SVC_PLUGIN_ERROR_NONE;
1132
1133         if (handle == NULL) {
1134                 __set_error_message(ERR_HANDLE, err_msg);
1135                 return MEDIA_SVC_PLUGIN_ERROR;
1136         }
1137
1138         ret = media_svc_get_folder_id(handle, storage_id, path, folder_id);
1139         if (ret < 0) {
1140                 __set_error_message(ret, err_msg);
1141                 return MEDIA_SVC_PLUGIN_ERROR;
1142         }
1143
1144         return MEDIA_SVC_PLUGIN_ERROR_NONE;
1145 }
1146
1147
1148