]> git.sesse.net Git - vlc/blob - include/vlc_plugin.h
Correct module descriptor indentation (no functional changes)
[vlc] / include / vlc_plugin.h
1 /*****************************************************************************
2  * vlc_plugin.h : Macros used from within a module.
3  *****************************************************************************
4  * Copyright (C) 2001-2006 the VideoLAN team
5  * Copyright © 2007-2009 Rémi Denis-Courmont
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 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 General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef LIBVLC_MODULES_MACROS_H
25 # define LIBVLC_MODULES_MACROS_H 1
26
27 /**
28  * \file
29  * This file implements plugin (module) macros used to define a vlc module.
30  */
31
32 VLC_API int vlc_plugin_set(module_t *, module_config_t *, int, ...);
33
34 #define vlc_module_set( mod, ... ) vlc_plugin_set ((mod), NULL, __VA_ARGS__)
35 #define vlc_config_set( cfg, ... ) vlc_plugin_set (NULL, (cfg), __VA_ARGS__)
36
37 enum vlc_module_properties
38 {
39     VLC_SUBMODULE_CREATE,
40     VLC_CONFIG_CREATE,
41
42     /* DO NOT EVER REMOVE, INSERT OR REPLACE ANY ITEM! It would break the ABI!
43      * Append new items at the end ONLY. */
44     VLC_MODULE_CPU_REQUIREMENT=0x100,
45     VLC_MODULE_SHORTCUT,
46     VLC_MODULE_CAPABILITY,
47     VLC_MODULE_SCORE,
48     VLC_MODULE_CB_OPEN,
49     VLC_MODULE_CB_CLOSE,
50     VLC_MODULE_NO_UNLOAD,
51     VLC_MODULE_NAME,
52     VLC_MODULE_SHORTNAME,
53     VLC_MODULE_DESCRIPTION,
54     VLC_MODULE_HELP,
55     VLC_MODULE_TEXTDOMAIN,
56     /* Insert new VLC_MODULE_* here */
57
58     /* DO NOT EVER REMOVE, INSERT OR REPLACE ANY ITEM! It would break the ABI!
59      * Append new items at the end ONLY. */
60     VLC_CONFIG_NAME=0x1000,
61     /* command line name (args=const char *) */
62
63     VLC_CONFIG_VALUE,
64     /* actual value (args=int/double/const char *) */
65
66     VLC_CONFIG_RANGE,
67     /* minimum value (args=int/double/const char * twice) */
68
69     VLC_CONFIG_ADVANCED,
70     /* enable advanced flag (args=none) */
71
72     VLC_CONFIG_VOLATILE,
73     /* don't write variable to storage (args=none) */
74
75     VLC_CONFIG_PERSISTENT_OBSOLETE,
76     /* unused (ignored) */
77
78     VLC_CONFIG_PRIVATE,
79     /* hide from user (args=none) */
80
81     VLC_CONFIG_REMOVED,
82     /* tag as no longer supported (args=none) */
83
84     VLC_CONFIG_CAPABILITY,
85     /* capability for a module or list thereof (args=const char*) */
86
87     VLC_CONFIG_SHORTCUT,
88     /* one-character (short) command line option name (args=char) */
89
90     VLC_CONFIG_OLDNAME,
91     /* former option name (args=const char *) */
92
93     VLC_CONFIG_SAFE,
94     /* tag as modifiable by untrusted input item "sources" (args=none) */
95
96     VLC_CONFIG_DESC,
97     /* description (args=const char *, const char *, const char *) */
98
99     VLC_CONFIG_LIST,
100     /* possible values list
101      * (args=const char *, size_t, const <type> *, const char *const *) */
102
103     VLC_CONFIG_ADD_ACTION,
104     /* add value change callback
105      * (args=const char *, vlc_callback_t, const char *) */
106
107     /* Insert new VLC_CONFIG_* here */
108 };
109
110 /**
111  * Current plugin ABI version
112  */
113 # define MODULE_SYMBOL 1_2_0h
114 # define MODULE_SUFFIX "__1_2_0h"
115
116 /*****************************************************************************
117  * Add a few defines. You do not want to read this section. Really.
118  *****************************************************************************/
119
120 /* Explanation:
121  *
122  * if linking a module statically, we will need:
123  * #define MODULE_FUNC( zog ) module_foo_zog
124  *
125  * this can't easily be done with the C preprocessor, thus a few ugly hacks.
126  */
127
128 /* I need to do _this_ to change « foo bar » to « module_foo_bar » ! */
129 #define CONCATENATE( y, z ) CRUDE_HACK( y, z )
130 #define CRUDE_HACK( y, z )  y##__##z
131
132 /* If the module is built-in, then we need to define foo_InitModule instead
133  * of InitModule. Same for Activate- and DeactivateModule. */
134 #ifdef __PLUGIN__
135 #   define __VLC_SYMBOL( symbol  ) CONCATENATE( symbol, MODULE_SYMBOL )
136 #else
137 #   define __VLC_SYMBOL( symbol )  CONCATENATE( symbol, MODULE_NAME )
138 #endif
139
140 #define CDECL_SYMBOL
141 #if defined (__PLUGIN__)
142 # if defined (WIN32)
143 #   define DLL_SYMBOL              __declspec(dllexport)
144 #   undef CDECL_SYMBOL
145 #   define CDECL_SYMBOL            __cdecl
146 # elif defined (__GNUC__) && (__GNUC__ >= 4)
147 #   define DLL_SYMBOL              __attribute__((visibility("default")))
148 # else
149 #  define DLL_SYMBOL
150 # endif
151 #else
152 # define DLL_SYMBOL
153 #endif
154
155 #if defined( __cplusplus )
156 #   define EXTERN_SYMBOL           extern "C"
157 #else
158 #   define EXTERN_SYMBOL
159 #endif
160
161 /*
162  * InitModule: this function is called once and only once, when the module
163  * is looked at for the first time. We get the useful data from it, for
164  * instance the module name, its shortcuts, its capabilities... we also create
165  * a copy of its config because the module can be unloaded at any time.
166  */
167 #define vlc_module_begin() \
168 EXTERN_SYMBOL DLL_SYMBOL \
169 int CDECL_SYMBOL __VLC_SYMBOL(vlc_entry) (module_t *); \
170 EXTERN_SYMBOL DLL_SYMBOL \
171 int CDECL_SYMBOL __VLC_SYMBOL(vlc_entry) (module_t *p_module) \
172 { \
173     module_t *p_submodule; \
174     module_config_t *p_config = NULL; \
175     if (vlc_module_set (p_module, VLC_MODULE_NAME, (MODULE_STRING))) \
176         goto error; \
177     p_submodule = p_module;
178
179 #define vlc_module_end() \
180     (void) p_config; \
181     return VLC_SUCCESS; \
182 error: \
183     return VLC_EGENERIC; \
184 } \
185 VLC_METADATA_EXPORTS
186
187 #define add_submodule( ) \
188     if (vlc_plugin_set (p_module, NULL, VLC_SUBMODULE_CREATE, &p_submodule)) \
189         goto error;
190
191 #define add_shortcut( ... ) \
192 { \
193     const char *shortcuts[] = { __VA_ARGS__ }; \
194     if (vlc_module_set (p_submodule, VLC_MODULE_SHORTCUT, \
195                         sizeof(shortcuts)/sizeof(shortcuts[0]), shortcuts)) \
196         goto error; \
197 }
198
199 #define set_shortname( shortname ) \
200     if (vlc_module_set (p_submodule, VLC_MODULE_SHORTNAME, \
201                         (const char *)(shortname))) \
202         goto error;
203
204 #define set_description( desc ) \
205     if (vlc_module_set (p_submodule, VLC_MODULE_DESCRIPTION, \
206                         (const char *)(desc))) \
207         goto error;
208
209 #define set_help( help ) \
210     if (vlc_module_set (p_submodule, VLC_MODULE_HELP, \
211                         (const char *)(help))) \
212         goto error;
213
214 #define set_capability( cap, score ) \
215     if (vlc_module_set (p_submodule, VLC_MODULE_CAPABILITY, \
216                         (const char *)(cap)) \
217      || vlc_module_set (p_submodule, VLC_MODULE_SCORE, (int)(score))) \
218         goto error;
219
220 #define set_callbacks( activate, deactivate ) \
221     if (vlc_module_set (p_submodule, VLC_MODULE_CB_OPEN, activate) \
222      || vlc_module_set (p_submodule, VLC_MODULE_CB_CLOSE, deactivate)) \
223         goto error;
224
225 #define cannot_unload_broken_library( ) \
226     if (vlc_module_set (p_submodule, VLC_MODULE_NO_UNLOAD)) \
227         goto error;
228
229 #define set_text_domain( dom ) \
230     if (vlc_module_set (p_module, VLC_MODULE_TEXTDOMAIN, (dom))) \
231         goto error;
232
233 /*****************************************************************************
234  * Macros used to build the configuration structure.
235  *
236  * Note that internally we support only 3 types of config data: int, float
237  *   and string.
238  *   The other types declared here just map to one of these 3 basic types but
239  *   have the advantage of also providing very good hints to a configuration
240  *   interface so as to make it more user friendly.
241  * The configuration structure also includes category hints. These hints can
242  *   provide a configuration interface with some very useful data and again
243  *   allow for a more user friendly interface.
244  *****************************************************************************/
245
246 #define add_type_inner( type ) \
247     vlc_plugin_set (p_module, NULL, VLC_CONFIG_CREATE, (type), &p_config);
248
249 #define add_typedesc_inner( type, text, longtext ) \
250     add_type_inner( type ) \
251     vlc_config_set (p_config, VLC_CONFIG_DESC, \
252                     (const char *)(text), (const char *)(longtext));
253
254 #define add_typeadv_inner( type, text, longtext, advc ) \
255     add_typedesc_inner( type, text, longtext ) \
256     if (advc) vlc_config_set (p_config, VLC_CONFIG_ADVANCED);
257
258 #define add_typename_inner( type, name, text, longtext, advc ) \
259     add_typeadv_inner( type, text, longtext, advc ) \
260     vlc_config_set (p_config, VLC_CONFIG_NAME, \
261                     (const char *)(name));
262
263 #define add_string_inner( type, name, text, longtext, advc, v ) \
264     add_typename_inner( type, name, text, longtext, advc ) \
265     vlc_config_set (p_config, VLC_CONFIG_VALUE, (const char *)(v));
266
267 #define add_int_inner( type, name, text, longtext, advc, v ) \
268     add_typename_inner( type, name, text, longtext, advc ) \
269     vlc_config_set (p_config, VLC_CONFIG_VALUE, (int64_t)(v));
270
271
272 #define set_category( i_id ) \
273     add_type_inner( CONFIG_CATEGORY ) \
274     vlc_config_set (p_config, VLC_CONFIG_VALUE, (int64_t)(i_id));
275
276 #define set_subcategory( i_id ) \
277     add_type_inner( CONFIG_SUBCATEGORY ) \
278     vlc_config_set (p_config, VLC_CONFIG_VALUE, (int64_t)(i_id));
279
280 #define set_section( text, longtext ) \
281     add_typedesc_inner( CONFIG_SECTION, text, longtext )
282
283 #define add_category_hint( text, longtext, advc ) \
284     add_typeadv_inner( CONFIG_HINT_CATEGORY, text, longtext, advc )
285
286 #define add_subcategory_hint( text, longtext ) \
287     add_typedesc_inner( CONFIG_HINT_SUBCATEGORY, text, longtext )
288
289 #define end_subcategory_hint \
290     add_type_inner( CONFIG_HINT_SUBCATEGORY_END )
291
292 #define add_usage_hint( text ) \
293     add_typedesc_inner( CONFIG_HINT_USAGE, text, NULL )
294
295 #define add_string( name, value, text, longtext, advc ) \
296     add_string_inner( CONFIG_ITEM_STRING, name, text, longtext, advc, \
297                       value )
298
299 #define add_password( name, value, text, longtext, advc ) \
300     add_string_inner( CONFIG_ITEM_PASSWORD, name, text, longtext, advc, \
301                       value )
302
303 #define add_loadfile( name, value, text, longtext, advc ) \
304     add_string_inner( CONFIG_ITEM_LOADFILE, name, text, longtext, advc, \
305                       value )
306
307 #define add_savefile( name, value, text, longtext, advc ) \
308     add_string_inner( CONFIG_ITEM_SAVEFILE, name, text, longtext, advc, \
309                       value )
310
311 #define add_directory( name, value, text, longtext, advc ) \
312     add_string_inner( CONFIG_ITEM_DIRECTORY, name, text, longtext, advc, \
313                       value )
314
315 #define add_font( name, value, text, longtext, advc )\
316     add_string_inner( CONFIG_ITEM_FONT, name, text, longtext, advc, \
317                       value )
318
319 #define add_module( name, psz_caps, value, text, longtext, advc ) \
320     add_string_inner( CONFIG_ITEM_MODULE, name, text, longtext, advc, \
321                       value ) \
322     vlc_config_set (p_config, VLC_CONFIG_CAPABILITY, (const char *)(psz_caps));
323
324 #define add_module_list( name, psz_caps, value, text, longtext, advc ) \
325     add_string_inner( CONFIG_ITEM_MODULE_LIST, name, text, longtext, advc, \
326                       value ) \
327     vlc_config_set (p_config, VLC_CONFIG_CAPABILITY, (const char *)(psz_caps));
328
329 #ifndef __PLUGIN__
330 #define add_module_cat( name, i_subcategory, value, text, longtext, advc ) \
331     add_string_inner( CONFIG_ITEM_MODULE_CAT, name, text, longtext, advc, \
332                       value ) \
333     change_integer_range (i_subcategory /* gruik */, 0);
334
335 #define add_module_list_cat( name, i_subcategory, value, text, longtext, advc ) \
336     add_string_inner( CONFIG_ITEM_MODULE_LIST_CAT, name, text, longtext, \
337                       advc, value ) \
338     change_integer_range (i_subcategory /* gruik */, 0);
339 #endif
340
341 #define add_integer( name, value, text, longtext, advc ) \
342     add_int_inner( CONFIG_ITEM_INTEGER, name, text, longtext, advc, value )
343
344 #define add_rgb( name, value, text, longtext, advc ) \
345     add_int_inner( CONFIG_ITEM_RGB, name, text, longtext, advc, value ) \
346     change_integer_range( 0, 0xFFFFFF )
347
348 #define add_key( name, value, text, longtext, advc ) \
349     add_string_inner( CONFIG_ITEM_KEY, "global-" name, text, longtext, advc, \
350                    KEY_UNSET ) \
351     add_string_inner( CONFIG_ITEM_KEY, name, text, longtext, advc, value )
352
353 #define add_integer_with_range( name, value, i_min, i_max, text, longtext, advc ) \
354     add_integer( name, value, text, longtext, advc ) \
355     change_integer_range( i_min, i_max )
356
357 #define add_float( name, v, text, longtext, advc ) \
358     add_typename_inner( CONFIG_ITEM_FLOAT, name, text, longtext, advc ) \
359     vlc_config_set (p_config, VLC_CONFIG_VALUE, (double)(v));
360
361 #define add_float_with_range( name, value, f_min, f_max, text, longtext, advc ) \
362     add_float( name, value, text, longtext, advc ) \
363     change_float_range( f_min, f_max )
364
365 #define add_bool( name, v, text, longtext, advc ) \
366     add_typename_inner( CONFIG_ITEM_BOOL, name, text, longtext, advc ) \
367     if (v) vlc_config_set (p_config, VLC_CONFIG_VALUE, (int64_t)true);
368
369 /* For removed option */
370 #define add_obsolete_inner( name, type ) \
371     add_type_inner( type ) \
372     vlc_config_set (p_config, VLC_CONFIG_NAME, \
373                     (const char *)(name)); \
374     vlc_config_set (p_config, VLC_CONFIG_REMOVED);
375
376 #define add_obsolete_bool( name ) \
377         add_obsolete_inner( name, CONFIG_ITEM_BOOL )
378
379 #define add_obsolete_integer( name ) \
380         add_obsolete_inner( name, CONFIG_ITEM_INTEGER )
381
382 #define add_obsolete_float( name ) \
383         add_obsolete_inner( name, CONFIG_ITEM_FLOAT )
384
385 #define add_obsolete_string( name ) \
386         add_obsolete_inner( name, CONFIG_ITEM_STRING )
387
388 /* Modifier macros for the config options (used for fine tuning) */
389
390 #define add_deprecated_alias( name ) \
391     vlc_config_set (p_config, VLC_CONFIG_OLDNAME, (const char *)(name));
392
393 #define change_short( ch ) \
394     vlc_config_set (p_config, VLC_CONFIG_SHORTCUT, (int)(ch));
395
396 #define change_string_list( list, list_text, list_update_func ) \
397     vlc_config_set (p_config, VLC_CONFIG_LIST, \
398                     (size_t)(sizeof (list) / sizeof (char *)), \
399                     (const char *const *)(list), \
400                     (const char *const *)(list_text), \
401                     (vlc_callback_t)(list_update_func));
402
403 #define change_integer_list( list, list_text ) \
404     vlc_config_set (p_config, VLC_CONFIG_LIST, \
405                     (size_t)(sizeof (list) / sizeof (int)), \
406                     (const int *)(list), \
407                     (const char *const *)(list_text), \
408                     (vlc_callback_t)(NULL));
409
410 #define change_integer_range( minv, maxv ) \
411     vlc_config_set (p_config, VLC_CONFIG_RANGE, \
412                     (int64_t)(minv), (int64_t)(maxv));
413
414 #define change_float_range( minv, maxv ) \
415     vlc_config_set (p_config, VLC_CONFIG_RANGE, \
416                     (double)(minv), (double)(maxv));
417
418 #define change_action_add( pf_action, text ) \
419     vlc_config_set (p_config, VLC_CONFIG_ADD_ACTION, \
420                     (vlc_callback_t)(pf_action), (const char *)(text));
421
422 /* For options that are saved but hidden from the preferences panel */
423 #define change_private() \
424     vlc_config_set (p_config, VLC_CONFIG_PRIVATE);
425
426 /* For options that cannot be saved in the configuration */
427 #define change_volatile() \
428     change_private() \
429     vlc_config_set (p_config, VLC_CONFIG_VOLATILE);
430
431 #define change_safe() \
432     vlc_config_set (p_config, VLC_CONFIG_SAFE);
433
434 /* Meta data plugin exports */
435 #define VLC_META_EXPORT( name, value ) \
436     EXTERN_SYMBOL DLL_SYMBOL const char * CDECL_SYMBOL \
437     __VLC_SYMBOL(vlc_entry_ ## name) (void); \
438     EXTERN_SYMBOL DLL_SYMBOL const char * CDECL_SYMBOL \
439     __VLC_SYMBOL(vlc_entry_ ## name) (void) \
440     { \
441          return value; \
442     }
443
444 #if defined (__LIBVLC__)
445 # define VLC_COPYRIGHT_EXPORT VLC_META_EXPORT (copyright, \
446     "\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x43\x29\x20\x74\x68" \
447     "\x65\x20\x56\x69\x64\x65\x6f\x4c\x41\x4e\x20\x56\x4c\x43\x20\x6d" \
448     "\x65\x64\x69\x61\x20\x70\x6c\x61\x79\x65\x72\x20\x64\x65\x76\x65" \
449     "\x6c\x6f\x70\x65\x72\x73" )
450 #elif !defined (VLC_COPYRIGHT_EXPORT)
451 # define VLC_COPYRIGHT_EXPORT
452 #endif
453 #define VLC_LICENSE_EXPORT VLC_META_EXPORT (license, \
454     "\x4c\x69\x63\x65\x6e\x73\x65\x64\x20\x75\x6e\x64\x65\x72\x20\x74" \
455     "\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x65\x20" \
456     "\x47\x4e\x55\x20\x47\x65\x6e\x65\x72\x61\x6c\x20\x50\x75\x62\x6c" \
457     "\x69\x63\x20\x4c\x69\x63\x65\x6e\x73\x65\x2c\x20\x76\x65\x72\x73" \
458     "\x69\x6f\x6e\x20\x32\x20\x6f\x72\x20\x6c\x61\x74\x65\x72\x2e" )
459
460 #define VLC_METADATA_EXPORTS \
461     VLC_COPYRIGHT_EXPORT \
462     VLC_LICENSE_EXPORT
463
464 #endif