QVisu
Qt-based visualization for smart homes
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
vlc_services_discovery.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * vlc_services_discovery.h : Services Discover functions
3  *****************************************************************************
4  * Copyright (C) 1999-2004 VLC authors and VideoLAN
5  * $Id: d9c231b28f3ec075343e0f8016792b8fa33f60f5 $
6  *
7  * Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23 
24 #ifndef VLC_SERVICES_DISCOVERY_H_
25 #define VLC_SERVICES_DISCOVERY_H_
26 
27 #include <vlc_input.h>
28 #include <vlc_events.h>
29 #include <vlc_probe.h>
30 
36 # ifdef __cplusplus
37 extern "C" {
38 # endif
39 
48 {
49  VLC_COMMON_MEMBERS
50  module_t * p_module;
54  vlc_event_manager_t event_manager;
55 
56  char *psz_name;
62  int ( *pf_control ) ( services_discovery_t *, int, va_list );
63 
64  services_discovery_sys_t *p_sys;
65 };
66 
72 {
77 };
78 
83 {
86 };
87 
92 {
94 };
95 
100 typedef struct
101 {
103  char *psz_icon_url;
104  char *psz_url;
107 
108 
109 /***********************************************************************
110  * Service Discovery
111  ***********************************************************************/
112 
120 static inline int vlc_sd_control( services_discovery_t *p_sd, int i_control, va_list args )
121 {
122  if( p_sd->pf_control )
123  return p_sd->pf_control( p_sd, i_control, args );
124  else
125  return VLC_EGENERIC;
126 }
127 
128 /* Get the services discovery modules names to use in Create(), in a null
129  * terminated string array. Array and string must be freed after use. */
130 VLC_API char ** vlc_sd_GetNames( vlc_object_t *, char ***, int ** ) VLC_USED;
131 #define vlc_sd_GetNames(obj, pln, pcat ) \
132  vlc_sd_GetNames(VLC_OBJECT(obj), pln, pcat)
133 
134 /* Creation of a services_discovery object */
135 VLC_API services_discovery_t * vlc_sd_Create( vlc_object_t *, const char * ) VLC_USED;
136 VLC_API bool vlc_sd_Start( services_discovery_t * );
137 VLC_API void vlc_sd_Stop( services_discovery_t * );
138 VLC_API void vlc_sd_Destroy( services_discovery_t * );
139 
143 static inline void vlc_sd_StopAndDestroy( services_discovery_t * p_this )
144 {
145  vlc_sd_Stop( p_this );
146  vlc_sd_Destroy( p_this );
147 }
148 
149 /* Read info from discovery object */
150 VLC_API char * services_discovery_GetLocalizedName( services_discovery_t * p_this ) VLC_USED;
151 
152 /* Receive event notification (preferred way to get new items) */
153 VLC_API vlc_event_manager_t * services_discovery_EventManager( services_discovery_t * p_this ) VLC_USED;
154 
155 /* Used by services_discovery to post update about their items */
156  /* About the psz_category, it is a legacy way to add info to the item,
157  * for more options, directly set the (meta) data on the input item */
158 VLC_API void services_discovery_AddItem( services_discovery_t * p_this, input_item_t * p_item, const char * psz_category );
159 VLC_API void services_discovery_RemoveItem( services_discovery_t * p_this, input_item_t * p_item );
160 VLC_API void services_discovery_RemoveAll( services_discovery_t * p_sd );
161 
162 
163 /* SD probing */
164 
165 VLC_API int vlc_sd_probe_Add(vlc_probe_t *, const char *, const char *, int category);
166 
167 #define VLC_SD_PROBE_SUBMODULE \
168  add_submodule() \
169  set_capability( "services probe", 100 ) \
170  set_callbacks( vlc_sd_probe_Open, NULL )
171 
172 #define VLC_SD_PROBE_HELPER(name, longname, cat) \
173 static int vlc_sd_probe_Open (vlc_object_t *obj) \
174 { \
175  return vlc_sd_probe_Add ((struct vlc_probe_t *)obj, \
176  name "{longname=\"" longname "\"}", \
177  longname, cat); \
178 }
179 
181 # ifdef __cplusplus
182 }
183 # endif
184 
185 #endif
services_discovery_category_e
Definition: vlc_services_discovery.h:71
Definition: vlc_input_item.h:55
Definition: vlc_services_discovery.h:93
char * psz_icon_url
Definition: vlc_services_discovery.h:103
Definition: vlc_events.h:103
Definition: vlc_services_discovery.h:47
char * psz_url
Definition: vlc_services_discovery.h:104
Definition: vlc_configuration.h:156
Definition: vlc_services_discovery.h:85
char * psz_short_desc
Definition: vlc_services_discovery.h:102
services_discovery_sys_t * p_sys
Definition: vlc_services_discovery.h:64
Definition: vlc_services_discovery.h:74
int i_capabilities
Definition: vlc_services_discovery.h:105
Definition: vlc_services_discovery.h:100
Definition: vlc_services_discovery.h:75
services_discovery_capability_e
Definition: vlc_services_discovery.h:91
char * psz_name
Definition: vlc_services_discovery.h:56
#define VLC_EGENERIC
Definition: vlc_common.h:374
services_discovery_command_e
Definition: vlc_services_discovery.h:82
Definition: vlc_services_discovery.h:73
Definition: vlc_objects.h:42
Definition: vlc_services_discovery.h:84
Definition: vlc_services_discovery.h:76
Definition: vlc_probe.h:39
int(* pf_control)(services_discovery_t *, int, va_list)
Definition: vlc_services_discovery.h:62
config_chain_t * p_cfg
Definition: vlc_services_discovery.h:57
VLC_COMMON_MEMBERS module_t * p_module
Definition: vlc_services_discovery.h:50