2 * @defgroup Store Elementary Store
5 * Store is an abstracting API that is intended to farm off fetching of data
6 * to threads running asynchronously from the mainloop that actually fetch
7 * data needed for a genlist (or possibly future other widgets) so scrolling
8 * never blocks waiting on IO (though normally this should be the users
9 * job - if using genlist, to ensure all data genlist needs is in memory at
10 * the time it needs it, and if it isn't to queue and defer a fetch and let
11 * genlist know later when its ready. Store actually does this and implements
12 * the infrastructure of this, leaving the actual fetch and convert up to
13 * functions provided by the user).
15 * It is possible for store to run inline without a thread, but this is
16 * highly inadvisable. you can disable this with:
18 * elm_store_fetch_thread_set(store, EINA_FALSE);
20 * Store works first by creating a store, setting up functions to list items
21 * and fetch items. Currently the only store type supported is the
22 * filesystem store, which will list the files inside a directory (not
23 * recursively) and then hand each file it finds (the file path) to the
24 * list function for evaluation.
26 * The list function may look at filename, may open the file or do
27 * anything it likes to determine something about the file. Either it
28 * filters it out (returns EINA_FALSE) and it is discarded or it
29 * returns EINA_TRUE and also provides a "sort id" which is a string
30 * store uses to figure out sorting. This string could be the filename, or
31 * some data based on its contents. The strings are sorted alphabetically
32 * like any normal ASCII strings, with case being important. As this listing
33 * function runs in a thread, it can do blocking IO and parsing without
34 * hurting the fluidity of the main loop and GUI. The list function also
35 * returns information on how to map fields in the source file to elements
36 * of the genlist item. For example, how the fetcher reads the private
37 * data struct of the user (what memory offset in the struct the data is at)
38 * and what type is there (it's a label of some sort, an icon, or with a
39 * custom mapping function that figures it out itself and creates the
40 * content needed for the genlist item).
42 * Store then uses this sort id to build (over time) a sorted list of items
43 * that then map 1:1 to genlist items. When these items are visible and
44 * need content, Store calls the fetch function per item, which is responsible
45 * for fetching the data from the given item and returning data to store
46 * so it can map this to some item content. This function also runs in a
47 * thread, and thus can do blocking IO work to later return the data. Sorting
48 * is optional and can be enabled or disabled too.
50 * When items are no longer needed, store will cal the unfetch function to
51 * free data in memory about that item that is no longer needed. This function
52 * is called in the mainloop and is expected to take minimal or almost no time
53 * to simply free up memory resources.
58 typedef struct _Elm_Store Elm_Store; /**< A store object */
59 typedef struct _Elm_Store_Item Elm_Store_Item; /**< A handle of a store item passed to store fetch/unfetch functions */
60 typedef struct _Elm_Store_Item_Info Elm_Store_Item_Info; /**< Basic information about a store item - always cast into a specific type like Elm_Store_Item_Info_Filesystem */
61 typedef struct _Elm_Store_Item_Info_Filesystem Elm_Store_Item_Info_Filesystem; /**< Filesystem specific information about a store item */
62 typedef struct _Elm_Store_Item_Mapping Elm_Store_Item_Mapping; /**< A basic way of telling Store how to take your return data (string, or something else from your struct) and convert it into something genlist can use */
63 typedef struct _Elm_Store_Item_Mapping_Empty Elm_Store_Item_Mapping_Empty; /**< An empty piece of mapping information. Useful for String labels as they get used directly */
64 typedef struct _Elm_Store_Item_Mapping_Icon Elm_Store_Item_Mapping_Icon; /***< The data being mapped at the given address is an icon, so use these properties for finding it */
65 typedef struct _Elm_Store_Item_Mapping_Photo Elm_Store_Item_Mapping_Photo; /**< The data is a photo, so use these parameters to find it */
66 typedef struct _Elm_Store_Item_Mapping_Custom Elm_Store_Item_Mapping_Custom; /**> The item needs a custom mapping which means calling a function and returning a string from it, as opposed to a static lookup. It should not be allocated, and should live in a buffer in memory that survives the return of this function if its a label, or an allocated icon object if its an icon needed etc. */
68 typedef Eina_Bool (*Elm_Store_Item_List_Cb)(void *data, Elm_Store_Item_Info *info); /**< Function to call for listing an item */
69 typedef void (*Elm_Store_Item_Fetch_Cb)(void *data, Elm_Store_Item *sti); /**< Function to call to fetch item data */
70 typedef void (*Elm_Store_Item_Unfetch_Cb)(void *data, Elm_Store_Item *sti); /**< Function to cal lto un-fetch (free) an item */
71 typedef void *(*Elm_Store_Item_Mapping_Cb)(void *data, Elm_Store_Item *sti, const char *part); /**< Custom mapping function to call */
75 ELM_STORE_ITEM_MAPPING_NONE = 0,
76 ELM_STORE_ITEM_MAPPING_LABEL, /**< const char * -> label */
77 ELM_STORE_ITEM_MAPPING_STATE, /**< Eina_Bool -> state */
78 ELM_STORE_ITEM_MAPPING_ICON, /**< char * -> icon path */
79 ELM_STORE_ITEM_MAPPING_PHOTO, /**< char * -> photo path */
80 ELM_STORE_ITEM_MAPPING_CUSTOM, /**< item->custom(it->data, it, part) -> void * (-> any) */
81 ELM_STORE_ITEM_MAPPING_LAST
82 } Elm_Store_Item_Mapping_Type;
84 struct _Elm_Store_Item_Mapping_Icon
86 int w, h; /**< The desired icon size in addition to the file path returned from the mapping */
87 Elm_Icon_Lookup_Order lookup_order; /**< The order in which to find the icon */
88 Eina_Bool standard_name : 1; /**< Use a standard name to find it (EINA_TRUE) or not */
89 Eina_Bool no_scale : 1; /**< EINA_TRUE is you don't want the icon scaled */
90 Eina_Bool smooth : 1; /**< EINA_TRUE if icon is to be smooth scaled */
91 Eina_Bool scale_up : 1; /**< EINA_TRUE if scaling up is allowed */
92 Eina_Bool scale_down : 1; /**< EINA_TRUE if scaling down is allowed */
95 struct _Elm_Store_Item_Mapping_Empty
97 Eina_Bool dummy; /**< dummy entry - set to anything you like */
100 struct _Elm_Store_Item_Mapping_Photo
102 int size; /**< Photo size to use (see elm_photo_add()) with the given photo path */
105 struct _Elm_Store_Item_Mapping_Custom
107 Elm_Store_Item_Mapping_Cb func; /**< The function called to do the custom mapping and return it */
110 struct _Elm_Store_Item_Mapping
112 Elm_Store_Item_Mapping_Type type; /**< what kind of mapping is this */
113 const char *part; /**< what part name in the genlist item is this filling in */
114 int offset; /**< offset in memory (in bytes) relative to base of structure for item data where the data for the mapping lives */
117 Elm_Store_Item_Mapping_Empty empty;
118 Elm_Store_Item_Mapping_Icon icon;
119 Elm_Store_Item_Mapping_Photo photo;
120 Elm_Store_Item_Mapping_Custom custom;
121 // add more types here
122 } details; /**< Allowed to be one of these possible mapping types */
125 struct _Elm_Store_Item_Info
127 Elm_Genlist_Item_Class *item_class; /**< The genlist item class that should be used for the item that has been listed */
128 const Elm_Store_Item_Mapping *mapping; /**< What kind of mappings do we use for the fields of this item to fill in the genlist item. Terminate array pointed to here with ELM_STORE_ITEM_MAPPING_END */
129 void *data; /**< Pointer to pass to struct data in memory if its already there, of not, NULL */
130 char *sort_id; /**< Sort ID string (strduped()) to know how to wort items, or NULL, if you don't care */
133 struct _Elm_Store_Item_Info_Filesystem
135 Elm_Store_Item_Info base; /**< Base information about an item */
136 char *path; /**< Extra information specific to the filesystem store */
139 #define ELM_STORE_ITEM_MAPPING_END { ELM_STORE_ITEM_MAPPING_NONE, NULL, 0, { .empty = { EINA_TRUE } } } /**< Use this to end a list of mappings */
140 #define ELM_STORE_ITEM_MAPPING_OFFSET(st, it) offsetof(st, it) /**< Use this to get the offset in bytes in memory for where the data for the mapping lives relative to the item data (a private struct pointed to owned by the user */
143 * Create a new store object
145 * This creates a new store object to then configure so it works.
147 * @return A new store object, or NULL if creation fails
151 EAPI Elm_Store *elm_store_filesystem_new(void);
153 * Free the store object and all items it manages
155 * This frees the given @p st store and all the items it manages. It will
156 * clear the List that it populated, but otherwise leave it alone. It will
157 * cancel background threads (and may have to wait for them to complete a
158 * pending operation to do this).
160 * @param st The store to free
164 EAPI void elm_store_free(Elm_Store *st);
167 * Set the path to the directory to scan for a filesystem store
169 * This sets the directory (@p dir) to scan and begins scanning in the
170 * the background in threads (or not if threading is disabled with
171 * elm_store_fetch_thread_set()). Note that Listing is always done in a thread
172 * but fetching may not be if disabled here. This should be the last thing
173 * called after fetch, list and unfetch functions are set, as well as target
174 * genlist etc. You also should not change the directory once set. If you
175 * need a new directory scanned, create a new store.
177 * @param st The store to modify
178 * @param dir A string giving the path to the directory to scan
182 EAPI void elm_store_filesystem_directory_set(Elm_Store *st, const char *dir);
185 * Get the directory set on a filesystem store
187 * This gets the directory set by elm_store_filesystem_directory_set(). This
188 * string returned will be valid until elm_store_filesystem_directory_set()
189 * changes it or until the store is freed with elm_store_free().
191 * @return A string with the path set, or NULL if none set.
195 EAPI const char *elm_store_filesystem_directory_get(const Elm_Store *st);
198 * Get the path of a specific store item
200 * This returns the full path of a store item. This string is valid only
201 * during the list function set by elm_store_list_func_set() or during the
202 * fetch function set by elm_store_fetch_func_set() or during the unfetch
203 * function set by elm_store_unfetch_func_set().
205 * @param sti The store item to get the path from
206 * @return A full path in a string or NULL if none available
210 EAPI const char *elm_store_item_filesystem_path_get(const Elm_Store_Item *sti);
213 * Set the target genlist to fill in from the store
215 * This tells the store the target genlist to use to fill in content from
216 * the store. Once a store starts "going" via elm_store_filesystem_directory_set()
217 * The target should never be changed again.
219 * @param st The store to do the filling.
220 * @param obj The genlist object to fill in and control the content of from the store.
224 EAPI void elm_store_target_genlist_set(Elm_Store *st, Evas_Object *obj);
227 * Set the maximum number of items that are not visible to keep cached
229 * Store may keep some items around for caching purposes that cannot be seen,
230 * so this controls the maximum number. The default is 128, but may change
231 * at any point in time in the future.
233 * @param st The store to modify
234 * @param max The number of items to keep (should be greater than or equal to 0)
238 EAPI void elm_store_cache_set(Elm_Store *st, int max);
241 * Get the maximum number if items to cache
243 * This returns the number of items at most to cache.
245 * @param st The store to query
246 * @return The maximum number of items to cache (>= 0)
247 * @see elm_store_cache_set()
251 EAPI int elm_store_cache_get(const Elm_Store *st);
254 * Set the function used to deal with listing of items
256 * This function is called per item that is found so it can examine the item
257 * and discard it (return EINA_FALSE to discard, or EINA_TRUE to accept), and
258 * work out some sorting ID (that may be filename or anything else based on
259 * content). This function is always called from a thread.
261 * @param st The store to set the function of
262 * @param func The function to be called
263 * @param data the data pointer to be passed to the @p func function when called
267 EAPI void elm_store_list_func_set(Elm_Store *st, Elm_Store_Item_List_Cb func, const void *data);
270 * Set the function used to deal with fetching of items
272 * This function is called per item that needs data to be fetched when it
273 * becomes visible and such data is needed. This function is normally run
274 * from a thread (unless elm_store_fetch_thread_set() disables this). The
275 * fetch function is to read data from the source and fill a structure
276 * allocated for this item with fields and then rely on the mapping setup
277 * to tell Store how to take a field in the structure and apply it to a
280 * @param st The store to set the function of
281 * @param func The function to be called
282 * @param data the data pointer to be passed to the @p func function when called
286 EAPI void elm_store_fetch_func_set(Elm_Store *st, Elm_Store_Item_Fetch_Cb func, const void *data);
289 * Set the function used to free the structure allocated for the item
291 * This function is called per item when it is not needed in memory anymore
292 * and should free the structure allocated in and filled in the function set
293 * by elm_store_fetch_func_set().
295 * @param st The store to set the function of
296 * @param func The function to be called
297 * @param data the data pointer to be passed to the @p func function when called
301 EAPI void elm_store_unfetch_func_set(Elm_Store *st, Elm_Store_Item_Unfetch_Cb func, const void *data);
304 * Enable or disable fetching in a thread for Store
306 * @param st The store to modify
307 * @param use_thread EINA_TRUE to use a thread to fetch, EINA_FALSE don't use a thread.
311 EAPI void elm_store_fetch_thread_set(Elm_Store *st, Eina_Bool use_thread);
314 * Get the thread enabled fetching option for Store
316 * @return The state set currently for the store.
317 * @see elm_store_fetch_thread_set()
321 EAPI Eina_Bool elm_store_fetch_thread_get(const Elm_Store *st);
324 * Set if items are to be sorted or not.
326 * By default items are not sorted, but read "in order" as they are found. If
327 * you want to sort, your list function set by elm_store_list_func_set() must
328 * provide a sort ID to sort by, and then Store will take care of sorting when
329 * it inserts items. You should set this up before you begin listing items
330 * in the store and then never change it again.
332 * @param st The store to modify
333 * @param sorted EINA_TRUE if we are to sort, EINA_FALSE if not.
337 EAPI void elm_store_sorted_set(Elm_Store *st, Eina_Bool sorted);
340 * Get the sorting flag
342 * Get the sorted flag as set by elm_store_sorted_set().
344 * @param st The store to query
345 * @return EINA_TRUE if sorted, EINA_FALSE if not.
349 EAPI Eina_Bool elm_store_sorted_get(const Elm_Store *st);
352 * Set the item data holding item fields to map to item values in genlist
354 * Once you decode an item, allocate a structure for it and fill the structure,
355 * you should set the item data with this function (eg in the fetch function).
356 * This item pointer is the base offset to use when mapping fields to item
357 * values. Once you unfetch, store will handle NULLing the data pointer for you.
359 * @param sti The store item to set the data pointer of
360 * @param data The data pointer to set.
364 EAPI void elm_store_item_data_set(Elm_Store_Item *sti, void *data);
369 * This gets the data pointer set by elm_store_item_data_set().
371 * @param sti The store item to query
372 * @return The data pointer set on the item
376 EAPI void *elm_store_item_data_get(Elm_Store_Item *sti);
379 * Fetch the store than a store item belongs to
381 * This fetches the store object that owns the store item.
383 * @param sti The store item to query
384 * @return The store the item belongs to
388 EAPI const Elm_Store *elm_store_item_store_get(const Elm_Store_Item *sti);
391 * Fetch the genlist item that this store item controls
393 * @param sti The store item to query
394 * @return The genlist object item handle controlled by this store item
398 EAPI const Elm_Object_Item *elm_store_item_genlist_item_get(const Elm_Store_Item *sti);