1 /*****************************************************************************
3 *****************************************************************************
4 * Copyright (C) 2018 VLC authors and VideoLAN
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 #ifndef VLC_MEDIA_SOURCE_H
22 #define VLC_MEDIA_SOURCE_H
24 #include <vlc_common.h>
25 #include <vlc_input_item.h>
26 #include <vlc_services_discovery.h>
33 * \defgroup media_source Media source
39 * Media source API aims to manage "services discovery" easily from UI clients.
41 * A "media source provider", associated to the libvlc instance, allows to
42 * retrieve media sources (each associated to a services discovery module).
44 * Requesting a services discovery that is not open will automatically open it.
45 * If several "clients" request the same media source (i.e. by requesting the
46 * same name), they will receive the same (refcounted) media source instance.
47 * As soon as a media source is released by all its clients, the associated
48 * services discovery is closed.
50 * Each media source holds a media tree, used to store both the media
51 * detected by the services discovery and the media detected by preparsing.
52 * Clients may listen to the tree to be notified of changes.
54 * To preparse a media belonging to a media tree, use vlc_media_tree_Preparse().
55 * If subitems are detected during the preparsing, the media tree is updated
62 * Nodes must be traversed with locked held (vlc_media_tree_Lock()).
64 typedef struct vlc_media_tree
{
65 input_item_node_t root
;
69 * Callbacks to receive media tree events.
71 struct vlc_media_tree_callbacks
74 * Called when the whole content of a subtree has changed.
76 * \param playlist the playlist
77 * \param node the node having its children reset (may be root)
78 * \param userdata userdata provided to AddListener()
81 (*on_children_reset
)(vlc_media_tree_t
*tree
, input_item_node_t
*node
,
85 * Called when children has been added to a node.
87 * The children may themselves contain children, which will not be notified
90 * \param playlist the playlist
91 * \param node the node having children added
92 * \param children the children added
93 * \param count the number of children added
94 * \param userdata userdata provided to AddListener()
97 (*on_children_added
)(vlc_media_tree_t
*tree
, input_item_node_t
*node
,
98 input_item_node_t
*const children
[], size_t count
,
102 * Called when children has been removed from a node.
104 * \param playlist the playlist
105 * \param node the node having children removed
106 * \param children the children removed
107 * \param count the number of children removed
108 * \param userdata userdata provided to AddListener()
111 (*on_children_removed
)(vlc_media_tree_t
*tree
, input_item_node_t
*node
,
112 input_item_node_t
*const children
[], size_t count
,
116 * Called when the preparsing of a node is complete
118 * \param tree the media tree
119 * \param node the node being parsed
120 * \param status the reason for the preparsing termination
121 * \param userdata userdata provided to AddListener()
124 (*on_preparse_end
)(vlc_media_tree_t
*tree
, input_item_node_t
* node
,
125 enum input_item_preparse_status status
,
130 * Listener for media tree events.
132 typedef struct vlc_media_tree_listener_id vlc_media_tree_listener_id
;
135 * Add a listener. The lock must NOT be held.
137 * \param tree the media tree, unlocked
138 * \param cbs the callbacks (must be valid until the listener
140 * \param userdata userdata provided as a parameter in callbacks
141 * \param notify_current_state true to notify the current state immediately via
144 VLC_API vlc_media_tree_listener_id
*
145 vlc_media_tree_AddListener(vlc_media_tree_t
*tree
,
146 const struct vlc_media_tree_callbacks
*cbs
,
147 void *userdata
, bool notify_current_state
);
150 * Remove a listener. The lock must NOT be held.
152 * \param tree the media tree, unlocked
153 * \param listener the listener identifier returned by
154 * vlc_media_tree_AddListener()
157 vlc_media_tree_RemoveListener(vlc_media_tree_t
*tree
,
158 vlc_media_tree_listener_id
*listener
);
161 * Lock the media tree (non-recursive).
164 vlc_media_tree_Lock(vlc_media_tree_t
*);
167 * Unlock the media tree.
170 vlc_media_tree_Unlock(vlc_media_tree_t
*);
173 * Find the node containing the requested input item (and its parent).
175 * \param tree the media tree, locked
176 * \param result point to the matching node if the function returns true [OUT]
177 * \param result_parent if not NULL, point to the matching node parent
178 * if the function returns true [OUT]
180 * \retval true if item was found
181 * \retval false if item was not found
184 vlc_media_tree_Find(vlc_media_tree_t
*tree
, const input_item_t
*media
,
185 input_item_node_t
**result
,
186 input_item_node_t
**result_parent
);
189 * Preparse a media, and expand it in the media tree on subitems added.
191 * \param tree the media tree (not necessarily locked)
192 * \param libvlc the libvlc instance
193 * \param media the media to preparse
194 * \param id a task identifier
197 vlc_media_tree_Preparse(vlc_media_tree_t
*tree
, libvlc_int_t
*libvlc
,
198 input_item_t
*media
, void *id
);
202 * Cancel a media tree preparse request
204 * \param libvlc the libvlc instance
205 * \param id the preparse task id
208 vlc_media_tree_PreparseCancel(libvlc_int_t
*libvlc
, void* id
);
213 * A media source is associated to a "service discovery". It stores the
214 * detected media in a media tree.
216 typedef struct vlc_media_source_t
218 vlc_media_tree_t
*tree
;
219 const char *description
;
220 } vlc_media_source_t
;
223 * Increase the media source reference count.
226 vlc_media_source_Hold(vlc_media_source_t
*);
229 * Decrease the media source reference count.
231 * Destroy the media source and close the associated "service discovery" if it
235 vlc_media_source_Release(vlc_media_source_t
*);
238 * Media source provider (opaque pointer), used to get media sources.
240 typedef struct vlc_media_source_provider_t vlc_media_source_provider_t
;
243 * Return the media source provider associated to the libvlc instance.
245 VLC_API vlc_media_source_provider_t
*
246 vlc_media_source_provider_Get(libvlc_int_t
*);
249 * Return the media source identified by psz_name.
251 * The resulting media source must be released by vlc_media_source_Release().
253 VLC_API vlc_media_source_t
*
254 vlc_media_source_provider_GetMediaSource(vlc_media_source_provider_t
*,
258 * Structure containing the description of a media source.
260 struct vlc_media_source_meta
264 enum services_discovery_category_e category
;
267 /** List of media source metadata (opaque). */
268 typedef struct vlc_media_source_meta_list vlc_media_source_meta_list_t
;
271 * Return the list of metadata of available media sources.
273 * If category is not 0, then only media sources for the requested category are
276 * The result must be deleted by vlc_media_source_meta_list_Delete() (if not
279 * Return NULL either on error or on empty list (this is due to the behavior
280 * of the underlying vlc_sd_GetNames()).
282 * \param provider the media source provider
283 * \param category the category to list (0 for all)
285 VLC_API vlc_media_source_meta_list_t
*
286 vlc_media_source_provider_List(vlc_media_source_provider_t
*,
287 enum services_discovery_category_e category
);
290 * Return the number of items in the list.
293 vlc_media_source_meta_list_Count(vlc_media_source_meta_list_t
*);
296 * Return the item at index.
298 VLC_API
struct vlc_media_source_meta
*
299 vlc_media_source_meta_list_Get(vlc_media_source_meta_list_t
*, size_t index
);
304 * Any struct vlc_media_source_meta retrieved from this list become invalid
308 vlc_media_source_meta_list_Delete(vlc_media_source_meta_list_t
*);