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