2634a639d53026969df3ca323604586acecb1ab2
[profile/tv/apps/native/filebrowser.git] / src / data / Mediadata.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <Eina.h>
20 #include <media_content.h>
21 //#include <usb-device.h>
22 #include "dbg.h"
23 #include "common.h"
24 #include "i18n.h"
25
26 #include "AppCommon.h"
27 #include "FileList.h"
28 #include "ExtNameInfo.h"
29 #include "Mediadata.h"
30 #include "MediadataImpl.h"
31
32 #define M ((CMediadataImpl*)m)
33
34 bool CMediadata::Create(void)
35 {
36         if (m)
37                 return false;
38
39         _CREATE_BEGIN{
40                 _CHECK(m = (SMediadata*)(new CMediadataImpl))
41                 _CHECK(M->Create())
42                 _WHEN_SUCCESS{
43
44                 }
45                 _CHECK_FAIL{ M->Destroy(); }
46                 _CHECK_FAIL{ delete M; m = NULL; }
47         } _CREATE_END_AND_CATCH{ return false; }
48
49         return true;
50 }
51
52 void CMediadata::Destroy(void)
53 {
54         if (!m)
55                 return;
56
57         M->Destroy();
58         delete M;
59         m = NULL;
60 }
61
62 bool CMediadata::GetMediaList(const char* folderid, int media_type, int source_type, Eina_List **list)
63 {
64         if (!m)
65                 return false;
66
67         return ((CMediadataImpl*)m)->GetMediaList(folderid, media_type, source_type, list);
68 }
69
70 bool CMediadata::GetFolderList(int media_type, int source_type, Eina_List **list)
71 {
72         if (!m)
73                 return false;
74
75         return ((CMediadataImpl*)m)->GetFolderList(media_type, source_type, list);
76 }