Remove profile tag
[platform/core/api/media-content.git] / include_product / media_filter.h
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
19 #ifndef __TIZEN_CONTENT_MEDIA_FILTER_H__
20 #define __TIZEN_CONTENT_MEDIA_FILTER_H__
21
22 #include <media_content_type.h>
23
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif /* __cplusplus */
28
29 /**
30  * @file media_filter.h
31  * @brief This file contains the media filter API and related operation with filters. \n
32  *        The functions include: creating and destroying media filter handles that are used to get the filtered information,  \n
33  *        making free all resources related to the filter handle, limiting number of items returned, setting conditions for the filter,  \n
34  *        setting and getting media filter's content order and ordering keyword either descending or ascending.
35  */
36
37 /**
38  * @addtogroup CAPI_CONTENT_MEDIA_FILTER_MODULE
39  * @{
40  */
41
42 /**
43  * @brief Creates a media filter handle.
44  * @details This function creates a media filter handle. The handle can be
45  *          used to get the filtered information based on filter properties i.e. offset, count, condition for searching and order.
46  *
47  * @since_tizen 2.3
48  *
49  * @remarks The @a filter should be released using media_info_filter_destroy().
50  *
51  * @param[out] filter The handle to the media filter
52  *
53  * @return @c 0 on success,
54  *         otherwise a negative error value
55  *
56  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
57  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
58  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
59  *
60  * @see media_filter_destroy()
61  */
62 int media_filter_create(filter_h *filter);
63
64 /**
65  * @brief Destroys a media filter handle.
66  * @details The function frees all resources related to the media filter handle. The filter
67  *          handle no longer can be used to perform any operations. A new filter handle
68  *          has to be created before the next usage.
69  *
70  * @since_tizen 2.3
71  *
72  * @param[in] filter The handle to the media filter
73  *
74  * @return @c 0 on success,
75  *         otherwise a negative error value
76  *
77  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
78  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
79  *
80  * @see media_filter_create()
81  */
82 int media_filter_destroy(filter_h filter);
83
84 /**
85  * @brief Sets the media filter offset and count.
86  * @details This function sets the @a offset and @a count for the given filter used to limit number of items returned.
87  *          For example, if you set the @a offset as @c 10 and @a count as @c 5, then only searched data from @c 10 to @c 14 will be returned when the filter is used with foreach functions.
88  *
89  * @since_tizen 2.3
90  *
91  * @param[in] filter The handle to the media filter
92  * @param[in] offset The start position of the given media filter (Starting from zero)
93  * @param[in] count The number of items to be searched with respect to the offset
94  *
95  * @return @c 0 on success,
96  *         otherwise a negative error value
97  *
98  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
99  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
100  *
101  * @see media_filter_create()
102  * @see media_filter_destroy()
103  */
104 int media_filter_set_offset(filter_h filter, int offset, int count);
105
106 /**
107  * @brief Sets the @a condition for the given @a filter.
108  * @since_tizen 2.3
109  *
110  * @param[in] filter The handle to the media filter
111  * @param[in] condition The condition which is used WHERE clause on a query
112  * @param[in] collate_type The collate type for comparing two strings
113  *
114  * @return @c 0 on success,
115  *         otherwise a negative error value
116  *
117  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
118  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
119  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
120  *
121  * @see media_filter_create()
122  * @see media_filter_destroy()
123  */
124 int media_filter_set_condition(filter_h filter, const char *condition, media_content_collation_e collate_type);
125
126 /**
127  * @brief Sets the media filter content @a order_type and @a order_keyword i.e. either descending or ascending.
128  * @since_tizen 2.3
129  *
130  * @remarks If @a order_type set to #MEDIA_CONTENT_ORDER_OTHER, media_filter sorts by referring only to the value of @a order_keyword. \n
131  *          Therefore, @a order_keyword must include collation type and order type. \n
132  *          e.g. MEDIA_DISPLAY_NAME COLLATE NOCASE DESC, MEDIA_MODIFIED_TIME DESC
133  *
134  * @param[in] filter The handle to the media filter
135  * @param[in] order_type The search order type
136  * @param[in] order_keyword The search order keyword
137  * @param[in] collate_type The collate type for comparing two strings
138  *
139  * @return @c 0 on success,
140  *         otherwise a negative error value
141  *
142  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
143  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
144  *
145  * @see media_filter_create()
146  * @see media_filter_destroy()
147  */
148 int media_filter_set_order(filter_h filter, media_content_order_e order_type, const char *order_keyword, media_content_collation_e collate_type);
149
150 /**
151  * @brief Sets the @a storage_id for the given @a filter.
152  * @details You can use this function when you want to search items only in the specific storage
153  *
154  * @since_tizen 2.4
155  *
156  * @param[in] filter The handle to the media filter
157  * @param[in] storage_id The ID of the media storage
158  *
159  * @return @c 0 on success,
160  *         otherwise a negative error value
161  *
162  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
163  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
164  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
165  *
166  * @see media_filter_create()
167  * @see media_filter_destroy()
168  */
169 int media_filter_set_storage(filter_h filter, const char *storage_id);
170
171 /**
172  * @brief Gets the @a offset and @a count for the given @a filter used to limit the number of items returned.
173  * @since_tizen 2.3
174  *
175  * @param[in] filter The handle to the media filter
176  * @param[out] offset The start position of the given media filter (Starting from zero)
177  * @param[out] count The number of items to be searched with respect to the offset
178  *
179  * @return @c 0 on success,
180  *         otherwise a negative error value
181  *
182  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
183  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
184  *
185  * @see media_filter_create()
186  * @see media_filter_destroy()
187  */
188 int media_filter_get_offset(filter_h filter, int *offset, int *count);
189
190 /**
191  * @brief Gets the @a condition for the given @a filter.
192  * @since_tizen 2.3
193  *
194  * @remarks The @a condition should be released using free().
195  *
196  * @param[in] filter The handle to the media filter
197  * @param[out] condition The condition which is used WHERE clause on a query
198  * @param[out] collate_type The collate type for comparing two strings
199  *
200  * @return @c 0 on success,
201  *         otherwise a negative error value
202  *
203  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
204  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
205  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
206  *
207  * @see media_filter_create()
208  * @see media_filter_destroy()
209  */
210 int media_filter_get_condition(filter_h filter, char **condition, media_content_collation_e *collate_type);
211
212 /**
213  * @brief Gets the media filter's content @a order_type and @a order_keyword i.e. either descending or ascending.
214  * @since_tizen 2.3
215  *
216  * @remarks The @a order_keyword should be released using free().
217  *
218  * @param[in] filter The handle to the media filter
219  * @param[out] order_type The search order type
220  * @param[out] order_keyword The search order keyword
221  * @param[out] collate_type The collate type for comparing two strings
222  *
223  * @return @c 0 on success,
224  *         otherwise a negative error value
225  *
226  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
227  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
228  *
229  * @see media_filter_create()
230  * @see media_filter_destroy()
231  */
232 int media_filter_get_order(filter_h filter, media_content_order_e *order_type, char **order_keyword, media_content_collation_e *collate_type);
233
234 /**
235  * @}
236  */
237
238 #ifdef __cplusplus
239 }
240 #endif /* __cplusplus */
241
242 #endif /* __TIZEN_CONTENT_MEDIA_FILTER_H__ */