Update TV feature define
[platform/core/api/media-content.git] / src / media_storage.c
1  /*
2  * Copyright (c) 2011 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
18 #include <media_info_private.h>
19
20 int media_storage_get_storage_info_from_db(const char *storage_id, media_storage_h *storage)
21 {
22         int ret = MEDIA_CONTENT_ERROR_NONE;
23         char select_query[DEFAULT_QUERY_SIZE] = {0, };
24         sqlite3_stmt *stmt = NULL;
25
26         if (!STRING_VALID(storage_id) || (storage == NULL)) {
27                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
28                 return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
29         }
30
31         memset(select_query, 0x00, sizeof(select_query));
32         snprintf(select_query, sizeof(select_query), SELECT_STORAGE_INFO_FROM_STORAGE, storage_id);
33
34         ret = _content_query_prepare(&stmt, select_query, NULL, NULL);
35         media_content_retv_if(ret != MEDIA_CONTENT_ERROR_NONE, ret);
36
37         while (sqlite3_step(stmt) == SQLITE_ROW) {
38                 media_storage_s *_storage = (media_storage_s*)calloc(1, sizeof(media_storage_s));
39
40                 if (_storage == NULL) {
41                         media_content_error("OUT_OF_MEMORY(0x%08x)", MEDIA_CONTENT_ERROR_OUT_OF_MEMORY);
42                         SQLITE3_FINALIZE(stmt);
43                         return MEDIA_CONTENT_ERROR_OUT_OF_MEMORY;
44                 }
45
46                 _storage->storage_id = g_strdup((const char *)sqlite3_column_text(stmt, 0));
47                 _storage->storage_path = g_strdup((const char *)sqlite3_column_text(stmt, 1));
48                 _storage->storage_type = (int)sqlite3_column_int(stmt, 2);
49
50                 *storage = (media_storage_h)_storage;
51         }
52
53         SQLITE3_FINALIZE(stmt);
54
55         return ret;
56 }
57
58 int media_storage_get_storage_count_from_db(filter_h filter, int *storage_count)
59 {
60         int ret = MEDIA_CONTENT_ERROR_NONE;
61
62         if (storage_count) {
63                 ret = _media_db_get_group_count(filter, MEDIA_GROUP_STORAGE, storage_count);
64         } else {
65                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
66                 return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
67         }
68
69         return ret;
70 }
71
72 int media_storage_foreach_storage_from_db(filter_h filter, media_storage_cb callback, void *user_data)
73 {
74         int ret = MEDIA_CONTENT_ERROR_NONE;
75
76         if (callback != NULL) {
77                 ret = _media_db_get_storage(filter, callback, user_data);
78         } else {
79                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
80                 return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
81         }
82
83         return ret;
84 }
85
86 int media_storage_get_media_count_from_db(const char *storage_id, filter_h filter, int *media_count)
87 {
88         int ret = MEDIA_CONTENT_ERROR_NONE;
89
90         if (STRING_VALID(storage_id) && media_count) {
91                 ret = _media_db_get_group_item_count(storage_id, filter, MEDIA_GROUP_STORAGE, media_count);
92         } else {
93                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
94                 return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
95         }
96
97         return ret;
98 }
99
100 int media_storage_foreach_media_from_db(const char *storage_id, filter_h filter, media_info_cb callback, void *user_data)
101 {
102         int ret = MEDIA_CONTENT_ERROR_NONE;
103
104         if ((callback != NULL) && STRING_VALID(storage_id)) {
105                 ret = _media_db_get_group_item(storage_id, filter, callback, user_data, MEDIA_GROUP_STORAGE);
106         } else {
107                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
108                 return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
109         }
110
111         return ret;
112 }
113
114 int media_storage_destroy(media_storage_h storage)
115 {
116         int ret = MEDIA_CONTENT_ERROR_NONE;
117         media_storage_s *_storage = (media_storage_s*)storage;
118         if (_storage) {
119                 SAFE_FREE(_storage->storage_id);
120                 SAFE_FREE(_storage->storage_path);
121                 SAFE_FREE(_storage);
122
123                 ret = MEDIA_CONTENT_ERROR_NONE;
124         } else {
125                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
126                 ret = MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
127         }
128
129         return ret;
130 }
131
132 int media_storage_clone(media_storage_h *dst, media_storage_h src)
133 {
134         int ret = MEDIA_CONTENT_ERROR_NONE;
135         media_storage_s *_src = (media_storage_s*)src;
136
137         if (_src != NULL) {
138                 media_storage_s *_dst = (media_storage_s*)calloc(1, sizeof(media_storage_s));
139                 media_content_retvm_if(_dst == NULL, MEDIA_CONTENT_ERROR_OUT_OF_MEMORY, "OUT_OF_MEMORY");
140
141                 if (STRING_VALID(_src->storage_id)) {
142                         _dst->storage_id = strdup(_src->storage_id);
143                         if (_dst->storage_id == NULL) {
144                                 media_storage_destroy((media_storage_h)_dst);
145                                 media_content_error("OUT_OF_MEMORY(0x%08x)", MEDIA_CONTENT_ERROR_OUT_OF_MEMORY);
146                                 return MEDIA_CONTENT_ERROR_OUT_OF_MEMORY;
147                         }
148                 }
149
150                 if (STRING_VALID(_src->storage_path)) {
151                         _dst->storage_path = strdup(_src->storage_path);
152                         if (_dst->storage_path == NULL) {
153                                 media_content_error("OUT_OF_MEMORY(0x%08x)", MEDIA_CONTENT_ERROR_OUT_OF_MEMORY);
154                                 media_storage_destroy((media_storage_h)_dst);
155                                 return MEDIA_CONTENT_ERROR_OUT_OF_MEMORY;
156                         }
157                 }
158
159                 _dst->storage_type = _src->storage_type;
160
161                 *dst = (media_storage_h)_dst;
162
163                 ret = MEDIA_CONTENT_ERROR_NONE;
164         } else {
165                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
166                 ret = MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
167         }
168
169         return ret;
170 }
171
172 int media_storage_get_id(media_storage_h storage, char **storage_id)
173 {
174         int ret = MEDIA_CONTENT_ERROR_NONE;
175         media_storage_s *_storage = (media_storage_s*)storage;
176
177         if (_storage && storage_id) {
178                 if (STRING_VALID(_storage->storage_id)) {
179                         *storage_id = strdup(_storage->storage_id);
180                         media_content_retvm_if(*storage_id == NULL, MEDIA_CONTENT_ERROR_OUT_OF_MEMORY, "OUT_OF_MEMORY");
181                 } else {
182                         *storage_id = NULL;
183                 }
184
185                 ret = MEDIA_CONTENT_ERROR_NONE;
186         } else {
187                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
188                 ret = MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
189         }
190
191         return ret;
192 }
193
194 int media_storage_get_name(media_storage_h storage, char **storage_name)
195 {
196         int ret = MEDIA_CONTENT_ERROR_NONE;
197         media_content_warn("DEPRECATION WARNING: media_storage_get_name() is deprecated and will be removed from next release.");
198         media_storage_s *_storage = (media_storage_s*)storage;
199
200         if (_storage && storage_name) {
201                 *storage_name = NULL;
202         } else {
203                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
204                 ret = MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
205         }
206
207         return ret;
208 }
209
210 int media_storage_get_path(media_storage_h storage, char **storage_path)
211 {
212         int ret = MEDIA_CONTENT_ERROR_NONE;
213         media_storage_s *_storage = (media_storage_s*)storage;
214
215         if (_storage && storage_path) {
216                 if (STRING_VALID(_storage->storage_path)) {
217                         *storage_path = strdup(_storage->storage_path);
218                         media_content_retvm_if(*storage_path == NULL, MEDIA_CONTENT_ERROR_OUT_OF_MEMORY, "OUT_OF_MEMORY");
219                 } else {
220                         *storage_path = NULL;
221                 }
222
223                 ret = MEDIA_CONTENT_ERROR_NONE;
224         } else {
225                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
226                 ret = MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
227         }
228
229         return ret;
230 }
231
232 int media_storage_get_type(media_storage_h storage, media_content_storage_e *storage_type)
233 {
234         int ret = MEDIA_CONTENT_ERROR_NONE;
235         media_storage_s *_storage = (media_storage_s*)storage;
236
237         if (_storage && storage_type) {
238                 *storage_type = _storage->storage_type;
239                 ret = MEDIA_CONTENT_ERROR_NONE;
240         } else {
241                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
242                 ret = MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
243         }
244
245         return ret;
246 }
247
248 #ifdef _USE_TVPD_MODE
249 int media_storage_get_scan_status(const char *storage_uuid, media_storage_scan_status_e *scan_status)
250 {
251         int ret = MEDIA_CONTENT_ERROR_NONE;
252         media_svc_scan_status_type_e status = MEDIA_STORAGE_SCAN_NONE;
253
254         if (STRING_VALID(storage_uuid)) {
255                 ret = media_svc_get_storage_scan_status(_content_get_db_handle(), storage_uuid, &status);
256                 if (ret != MS_MEDIA_ERR_NONE) {
257                         media_content_error("media_svc_get_storage_scan_status failed");
258                         ret = _content_error_capi(MEDIA_CONTENT_TYPE, ret);
259                 } else {
260                         *scan_status = status;
261                 }
262         } else {
263                 media_content_error("INVALID_PARAMETER(0x%08x)", MEDIA_CONTENT_ERROR_INVALID_PARAMETER);
264                 ret = MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
265         }
266
267         return ret;
268 }
269 #endif