vlc_plugin.h

Go to the documentation of this file.
00001 /*****************************************************************************
00002  * vlc_plugin.h : Macros used from within a module.
00003  *****************************************************************************
00004  * Copyright (C) 2001-2006 the VideoLAN team
00005  * Copyright © 2007-2008 Rémi Denis-Courmont
00006  *
00007  * Authors: Samuel Hocevar <sam@zoy.org>
00008  *
00009  * This program is free software; you can redistribute it and/or modify
00010  * it under the terms of the GNU General Public License as published by
00011  * the Free Software Foundation; either version 2 of the License, or
00012  * (at your option) any later version.
00013  *
00014  * This program is distributed in the hope that it will be useful,
00015  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017  * GNU General Public License for more details.
00018  *
00019  * You should have received a copy of the GNU General Public License
00020  * along with this program; if not, write to the Free Software
00021  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
00022  *****************************************************************************/
00023 
00024 #ifndef LIBVLC_MODULES_MACROS_H
00025 # define LIBVLC_MODULES_MACROS_H 1
00026 
00027 /*****************************************************************************
00028  * If we are not within a module, assume we're in the vlc core.
00029  *****************************************************************************/
00030 #if !defined( __PLUGIN__ ) && !defined( __BUILTIN__ )
00031 #   define MODULE_NAME main
00032 #endif
00033 
00034 /**
00035  * Current plugin ABI version
00036  */
00037 # define MODULE_SYMBOL 0_9_0m
00038 # define MODULE_SUFFIX "__0_9_0m"
00039 
00040 /*****************************************************************************
00041  * Add a few defines. You do not want to read this section. Really.
00042  *****************************************************************************/
00043 
00044 /* Explanation:
00045  *
00046  * if linking a module statically, we will need:
00047  * #define MODULE_FUNC( zog ) module_foo_zog
00048  *
00049  * this can't easily be done with the C preprocessor, thus a few ugly hacks.
00050  */
00051 
00052 /* I need to do _this_ to change « foo bar » to « module_foo_bar » ! */
00053 #define CONCATENATE( y, z ) CRUDE_HACK( y, z )
00054 #define CRUDE_HACK( y, z )  y##__##z
00055 
00056 /* If the module is built-in, then we need to define foo_InitModule instead
00057  * of InitModule. Same for Activate- and DeactivateModule. */
00058 #ifdef __PLUGIN__
00059 #   define E_( function )          CONCATENATE( function, MODULE_SYMBOL )
00060 #   define __VLC_SYMBOL( symbol  ) CONCATENATE( symbol, MODULE_SYMBOL )
00061 #else
00062 #   define E_( function )          CONCATENATE( function, MODULE_NAME )
00063 #   define __VLC_SYMBOL( symbol )  CONCATENATE( symbol, MODULE_NAME )
00064 #endif
00065 
00066 #if defined( __PLUGIN__ ) && ( defined( WIN32 ) || defined( UNDER_CE ) )
00067 #   define DLL_SYMBOL              __declspec(dllexport)
00068 #   define CDECL_SYMBOL            __cdecl
00069 #else
00070 #   define DLL_SYMBOL
00071 #   define CDECL_SYMBOL
00072 #endif
00073 
00074 #if defined( __cplusplus )
00075 #   define EXTERN_SYMBOL           extern "C"
00076 #else
00077 #   define EXTERN_SYMBOL
00078 #endif
00079 
00080 /*
00081  * InitModule: this function is called once and only once, when the module
00082  * is looked at for the first time. We get the useful data from it, for
00083  * instance the module name, its shortcuts, its capabilities... we also create
00084  * a copy of its config because the module can be unloaded at any time.
00085  */
00086 #define vlc_module_begin( )                                                   \
00087     EXTERN_SYMBOL DLL_SYMBOL int CDECL_SYMBOL                                 \
00088     E_(vlc_entry) ( module_t *p_module );                                     \
00089                                                                               \
00090     EXTERN_SYMBOL DLL_SYMBOL int CDECL_SYMBOL                                 \
00091     __VLC_SYMBOL(vlc_entry) ( module_t *p_module )                            \
00092     {                                                                         \
00093         module_config_t *p_config = NULL;                                     \
00094         const char *domain = NULL;                                            \
00095         if (vlc_module_set (p_module, VLC_MODULE_NAME,                        \
00096                             (const char *)(MODULE_STRING)))                   \
00097             goto error;                                                       \
00098         {                                                                     \
00099             module_t *p_submodule = p_module;
00100 
00101 #define vlc_module_end( )                                                     \
00102         }                                                                     \
00103         (void)p_config;                                                       \
00104         return VLC_SUCCESS;                                                   \
00105                                                                               \
00106     error:                                                                    \
00107         return VLC_EGENERIC;                                                  \
00108     }                                                                         \
00109     VLC_METADATA_EXPORTS
00110 
00111 #define add_submodule( ) \
00112     p_submodule = vlc_submodule_create( p_module );
00113 
00114 #define add_requirement( cap ) \
00115     if (vlc_module_set (p_module, VLC_MODULE_CPU_REQUIREMENT, \
00116                         (int)(CPU_CAPABILITY_##cap))) \
00117         goto error;
00118 
00119 #define add_shortcut( shortcut ) \
00120     if (vlc_module_set (p_submodule, VLC_MODULE_SHORTCUT, \
00121         (const char *)(shortcut))) \
00122         goto error;
00123 
00124 #define set_shortname( shortname ) \
00125     if (vlc_module_set (p_submodule, VLC_MODULE_SHORTNAME, domain, \
00126                         (const char *)(shortname))) \
00127         goto error;
00128 
00129 #define set_description( desc ) \
00130     if (vlc_module_set (p_submodule, VLC_MODULE_DESCRIPTION, domain, \
00131                         (const char *)(desc))) \
00132         goto error;
00133 
00134 #define set_help( help ) \
00135     if (vlc_module_set (p_submodule, VLC_MODULE_HELP, domain, \
00136                         (const char *)(help))) \
00137         goto error;
00138 
00139 #define set_capability( cap, score ) \
00140     if (vlc_module_set (p_submodule, VLC_MODULE_CAPABILITY, \
00141                         (const char *)(cap)) \
00142      || vlc_module_set (p_submodule, VLC_MODULE_SCORE, (int)(score))) \
00143         goto error;
00144 
00145 #define set_callbacks( activate, deactivate ) \
00146     if (vlc_module_set (p_submodule, VLC_MODULE_CB_OPEN, activate) \
00147      || vlc_module_set (p_submodule, VLC_MODULE_CB_CLOSE, deactivate)) \
00148         goto error;
00149 
00150 #define linked_with_a_crap_library_which_uses_atexit( ) \
00151     if (vlc_module_set (p_submodule, VLC_MODULE_NO_UNLOAD)) \
00152         goto error;
00153 
00154 #define set_text_domain( dom ) domain = (dom);
00155 
00156 VLC_EXPORT( module_t *, vlc_module_create, ( vlc_object_t * ) );
00157 VLC_EXPORT( module_t *, vlc_submodule_create, ( module_t * ) );
00158 VLC_EXPORT( int, vlc_module_set, (module_t *module, int propid, ...) );
00159 VLC_EXPORT( module_config_t *, vlc_config_create, (module_t *, int type) );
00160 VLC_EXPORT( int, vlc_config_set, (module_config_t *, int, ...) );
00161 
00162 enum vlc_module_properties
00163 {
00164     /* DO NOT EVER REMOVE, INSERT OR REPLACE ANY ITEM! It would break the ABI!
00165      * Append new items at the end ONLY. */
00166     VLC_MODULE_CPU_REQUIREMENT,
00167     VLC_MODULE_SHORTCUT,
00168     VLC_MODULE_SHORTNAME_NODOMAIN,
00169     VLC_MODULE_DESCRIPTION_NODOMAIN,
00170     VLC_MODULE_HELP_NODOMAIN,
00171     VLC_MODULE_CAPABILITY,
00172     VLC_MODULE_SCORE,
00173     VLC_MODULE_PROGRAM, /* obsoleted */
00174     VLC_MODULE_CB_OPEN,
00175     VLC_MODULE_CB_CLOSE,
00176     VLC_MODULE_NO_UNLOAD,
00177     VLC_MODULE_NAME,
00178     VLC_MODULE_SHORTNAME,
00179     VLC_MODULE_DESCRIPTION,
00180     VLC_MODULE_HELP,
00181 };
00182 
00183 enum vlc_config_properties
00184 {
00185     /* DO NOT EVER REMOVE, INSERT OR REPLACE ANY ITEM! It would break the ABI!
00186      * Append new items at the end ONLY. */
00187 
00188     VLC_CONFIG_NAME,
00189     /* command line name (args=const char *, vlc_callback_t) */
00190 
00191     VLC_CONFIG_DESC_NODOMAIN,
00192     /* description (args=const char *, const char *) */
00193 
00194     VLC_CONFIG_VALUE,
00195     /* actual value (args=int/double/const char *) */
00196 
00197     VLC_CONFIG_RANGE,
00198     /* minimum value (args=int/double/const char * twice) */
00199 
00200     VLC_CONFIG_ADVANCED,
00201     /* enable advanced flag (args=none) */
00202 
00203     VLC_CONFIG_VOLATILE,
00204     /* don't write variable to storage (args=none) */
00205 
00206     VLC_CONFIG_PERSISTENT,
00207     /* always write variable to storage (args=none) */
00208 
00209     VLC_CONFIG_RESTART,
00210     /* restart required to apply value change (args=none) */
00211 
00212     VLC_CONFIG_PRIVATE,
00213     /* hide from user (args=none) */
00214 
00215     VLC_CONFIG_REMOVED,
00216     /* tag as no longer supported (args=none) */
00217 
00218     VLC_CONFIG_CAPABILITY,
00219     /* capability for a module or list thereof (args=const char*) */
00220 
00221     VLC_CONFIG_SHORTCUT,
00222     /* one-character (short) command line option name (args=char) */
00223 
00224     VLC_CONFIG_LIST_NODOMAIN,
00225     /* possible values list
00226      * (args=size_t, const <type> *, const char *const *) */
00227 
00228     VLC_CONFIG_ADD_ACTION_NODOMAIN,
00229     /* add value change callback (args=vlc_callback_t, const char *) */
00230 
00231     VLC_CONFIG_OLDNAME,
00232     /* former option name (args=const char *) */
00233 
00234     VLC_CONFIG_SAFE,
00235     /* tag as modifiable by untrusted input item "sources" (args=none) */
00236 
00237     VLC_CONFIG_DESC,
00238     /* description (args=const char *, const char *, const char *) */
00239 
00240     VLC_CONFIG_LIST,
00241     /* possible values list
00242      * (args=const char *, size_t, const <type> *, const char *const *) */
00243 
00244     VLC_CONFIG_ADD_ACTION,
00245     /* add value change callback
00246      * (args=const char *, vlc_callback_t, const char *) */
00247 };
00248 
00249 /*****************************************************************************
00250  * Macros used to build the configuration structure.
00251  *
00252  * Note that internally we support only 3 types of config data: int, float
00253  *   and string.
00254  *   The other types declared here just map to one of these 3 basic types but
00255  *   have the advantage of also providing very good hints to a configuration
00256  *   interface so as to make it more user friendly.
00257  * The configuration structure also includes category hints. These hints can
00258  *   provide a configuration interface with some very useful data and again
00259  *   allow for a more user friendly interface.
00260  *****************************************************************************/
00261 
00262 #define add_type_inner( type ) \
00263     p_config = vlc_config_create (p_module, type);
00264 
00265 #define add_typedesc_inner( type, text, longtext ) \
00266     add_type_inner( type ) \
00267     vlc_config_set (p_config, VLC_CONFIG_DESC, domain, \
00268                     (const char *)(text), (const char *)(longtext));
00269 
00270 #define add_typeadv_inner( type, text, longtext, advc ) \
00271     add_typedesc_inner( type, text, longtext ) \
00272     if (advc) vlc_config_set (p_config, VLC_CONFIG_ADVANCED);
00273 
00274 #define add_typename_inner( type, name, text, longtext, advc, cb ) \
00275     add_typeadv_inner( type, text, longtext, advc ) \
00276     vlc_config_set (p_config, VLC_CONFIG_NAME, \
00277                     (const char *)(name), (vlc_callback_t)(cb));
00278 
00279 #define add_string_inner( type, name, text, longtext, advc, cb, v ) \
00280     add_typename_inner( type, name, text, longtext, advc, cb ) \
00281     vlc_config_set (p_config, VLC_CONFIG_VALUE, (const char *)(v));
00282 
00283 #define add_int_inner( type, name, text, longtext, advc, cb, v ) \
00284     add_typename_inner( type, name, text, longtext, advc, cb ) \
00285     vlc_config_set (p_config, VLC_CONFIG_VALUE, (int)(v));
00286 
00287 
00288 #define set_category( i_id ) \
00289     add_type_inner( CONFIG_CATEGORY ) \
00290     vlc_config_set (p_config, VLC_CONFIG_VALUE, (int)(i_id));
00291 
00292 #define set_subcategory( i_id ) \
00293     add_type_inner( CONFIG_SUBCATEGORY ) \
00294     vlc_config_set (p_config, VLC_CONFIG_VALUE, (int)(i_id));
00295 
00296 #define set_section( text, longtext ) \
00297     add_typedesc_inner( CONFIG_SECTION, text, longtext )
00298 
00299 #define add_category_hint( text, longtext, advc ) \
00300     add_typeadv_inner( CONFIG_HINT_CATEGORY, text, longtext, advc )
00301 
00302 #define add_subcategory_hint( text, longtext ) \
00303     add_typedesc_inner( CONFIG_HINT_SUBCATEGORY, text, longtext )
00304 
00305 #define end_subcategory_hint \
00306     add_type_inner( CONFIG_HINT_SUBCATEGORY_END )
00307 
00308 #define add_usage_hint( text ) \
00309     add_typedesc_inner( CONFIG_HINT_USAGE, text, NULL )
00310 
00311 #define add_string( name, value, p_callback, text, longtext, advc ) \
00312     add_string_inner( CONFIG_ITEM_STRING, name, text, longtext, advc, \
00313                       p_callback, value )
00314 
00315 #define add_password( name, value, p_callback, text, longtext, advc ) \
00316     add_string_inner( CONFIG_ITEM_PASSWORD, name, text, longtext, advc, \
00317                       p_callback, value )
00318 
00319 #define add_file( name, value, p_callback, text, longtext, advc ) \
00320     add_string_inner( CONFIG_ITEM_FILE, name, text, longtext, advc, \
00321                       p_callback, value )
00322 
00323 #define add_directory( name, value, p_callback, text, longtext, advc ) \
00324     add_string_inner( CONFIG_ITEM_DIRECTORY, name, text, longtext, advc, \
00325                       p_callback, value )
00326 
00327 #define add_module( name, psz_caps, value, p_callback, text, longtext, advc ) \
00328     add_string_inner( CONFIG_ITEM_MODULE, name, text, longtext, advc, \
00329                       p_callback, value ) \
00330     vlc_config_set (p_config, VLC_CONFIG_CAPABILITY, (const char *)(psz_caps));
00331 
00332 #define add_module_list( name, psz_caps, value, p_callback, text, longtext, advc ) \
00333     add_string_inner( CONFIG_ITEM_MODULE_LIST, name, text, longtext, advc, \
00334                       p_callback, value ) \
00335     vlc_config_set (p_config, VLC_CONFIG_CAPABILITY, (const char *)(psz_caps));
00336 
00337 #ifndef __PLUGIN__
00338 #define add_module_cat( name, i_subcategory, value, p_callback, text, longtext, advc ) \
00339     add_string_inner( CONFIG_ITEM_MODULE_CAT, name, text, longtext, advc, \
00340                       p_callback, value ) \
00341     p_config->min.i = i_subcategory /* gruik */;
00342 
00343 #define add_module_list_cat( name, i_subcategory, value, p_callback, text, longtext, advc ) \
00344     add_string_inner( CONFIG_ITEM_MODULE_LIST_CAT, name, text, longtext, \
00345                       advc, p_callback, value ) \
00346     p_config->min.i = i_subcategory /* gruik */;
00347 #endif
00348 
00349 #define add_integer( name, value, p_callback, text, longtext, advc ) \
00350     add_int_inner( CONFIG_ITEM_INTEGER, name, text, longtext, advc, \
00351                    p_callback, value )
00352 
00353 #define add_key( name, value, p_callback, text, longtext, advc ) \
00354     add_int_inner( CONFIG_ITEM_KEY, name, text, longtext, advc, p_callback, \
00355                    value )
00356 
00357 #define add_integer_with_range( name, value, i_min, i_max, p_callback, text, longtext, advc ) \
00358     add_integer( name, value, p_callback, text, longtext, advc ) \
00359     change_integer_range( i_min, i_max )
00360 
00361 #define add_float( name, v, p_callback, text, longtext, advc ) \
00362     add_typename_inner( CONFIG_ITEM_FLOAT, name, text, longtext, advc, p_callback ) \
00363     vlc_config_set (p_config, VLC_CONFIG_VALUE, (double)(v));
00364 
00365 #define add_float_with_range( name, value, f_min, f_max, p_callback, text, longtext, advc ) \
00366     add_float( name, value, p_callback, text, longtext, advc ) \
00367     change_float_range( f_min, f_max )
00368 
00369 #define add_bool( name, v, p_callback, text, longtext, advc ) \
00370     add_typename_inner( CONFIG_ITEM_BOOL, name, text, longtext, advc, \
00371                         p_callback ) \
00372     if (v) vlc_config_set (p_config, VLC_CONFIG_VALUE, (int)true);
00373 
00374 /* For removed option */
00375 #define add_obsolete_inner( name, type ) \
00376     add_type_inner( type ) \
00377     vlc_config_set (p_config, VLC_CONFIG_NAME, \
00378                     (const char *)(name), (vlc_callback_t)NULL); \
00379     vlc_config_set (p_config, VLC_CONFIG_REMOVED);
00380 
00381 #define add_obsolete_bool( name ) \
00382         add_obsolete_inner( name, CONFIG_ITEM_BOOL )
00383 
00384 #define add_obsolete_integer( name ) \
00385         add_obsolete_inner( name, CONFIG_ITEM_INTEGER )
00386 
00387 #define add_obsolete_float( name ) \
00388         add_obsolete_inner( name, CONFIG_ITEM_FLOAT )
00389 
00390 #define add_obsolete_string( name ) \
00391         add_obsolete_inner( name, CONFIG_ITEM_STRING )
00392 
00393 /* Modifier macros for the config options (used for fine tuning) */
00394 
00395 #define add_deprecated_alias( name ) \
00396     vlc_config_set (p_config, VLC_CONFIG_OLDNAME, (const char *)(name))
00397 
00398 #define change_short( ch ) \
00399     vlc_config_set (p_config, VLC_CONFIG_SHORTCUT, (int)(ch));
00400 
00401 #define change_string_list( list, list_text, list_update_func ) \
00402     vlc_config_set (p_config, VLC_CONFIG_LIST, domain, \
00403                     (size_t)(sizeof (list) / sizeof (char *)), \
00404                     (const char *const *)(list), \
00405                     (const char *const *)(list_text), \
00406                     list_update_func);
00407 
00408 #define change_integer_list( list, list_text, list_update_func ) \
00409     vlc_config_set (p_config, VLC_CONFIG_LIST, domain, \
00410                     (size_t)(sizeof (list) / sizeof (int)), \
00411                     (const int *)(list), \
00412                     (const char *const *)(list_text), \
00413                     list_update_func);
00414 
00415 #define change_float_list( list, list_text, list_update_func ) \
00416     vlc_config_set (p_config, VLC_CONFIG_LIST, domain, \
00417                     (size_t)(sizeof (list) / sizeof (float)), \
00418                     (const float *)(list), \
00419                     (const char *const *)(list_text), \
00420                     list_update_func);
00421 
00422 #define change_integer_range( minv, maxv ) \
00423     vlc_config_set (p_config, VLC_CONFIG_RANGE, (int)(minv), (int)(maxv));
00424 
00425 #define change_float_range( minv, maxv ) \
00426     vlc_config_set (p_config, VLC_CONFIG_RANGE, \
00427                     (double)(minv), (double)(maxv));
00428 
00429 #define change_action_add( pf_action, text ) \
00430     vlc_config_set (p_config, VLC_CONFIG_ADD_ACTION, domain, \
00431                     (vlc_callback_t)(pf_action), (const char *)(text));
00432 
00433 #define change_internal() \
00434     vlc_config_set (p_config, VLC_CONFIG_PRIVATE);
00435 
00436 #define change_need_restart() \
00437     vlc_config_set (p_config, VLC_CONFIG_RESTART);
00438 
00439 #define change_autosave() \
00440     vlc_config_set (p_config, VLC_CONFIG_PERSISTENT);
00441 
00442 #define change_unsaveable() \
00443     vlc_config_set (p_config, VLC_CONFIG_VOLATILE);
00444 
00445 #define change_unsafe() (void)0; /* no-op */
00446 
00447 #define change_safe() \
00448     vlc_config_set (p_config, VLC_CONFIG_SAFE);
00449 
00450 /* Meta data plugin exports */
00451 #define VLC_META_EXPORT( name, value ) \
00452     EXTERN_SYMBOL DLL_SYMBOL const char * CDECL_SYMBOL \
00453     E_(vlc_entry_ ## name) (void); \
00454     EXTERN_SYMBOL DLL_SYMBOL const char * CDECL_SYMBOL \
00455     __VLC_SYMBOL(vlc_entry_ ## name) (void) \
00456     { \
00457          return value; \
00458     }
00459 
00460 #if defined (__LIBVLC__)
00461 # define VLC_COPYRIGHT_EXPORT VLC_META_EXPORT (copyright, \
00462     "\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x43\x29\x20\x74\x68" \
00463     "\x65\x20\x56\x69\x64\x65\x6f\x4c\x41\x4e\x20\x56\x4c\x43\x20\x6d" \
00464     "\x65\x64\x69\x61\x20\x70\x6c\x61\x79\x65\x72\x20\x64\x65\x76\x65" \
00465     "\x6c\x6f\x70\x70\x65\x72\x73" )
00466 #elif !defined (VLC_COPYRIGHT_EXPORT)
00467 # define VLC_COPYRIGHT_EXPORT
00468 #endif
00469 #define VLC_LICENSE_EXPORT VLC_META_EXPORT (license, \
00470     "\x4c\x69\x63\x65\x6e\x73\x65\x64\x20\x75\x6e\x64\x65\x72\x20\x74" \
00471     "\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x65\x20" \
00472     "\x47\x4e\x55\x20\x47\x65\x6e\x65\x72\x61\x6c\x20\x50\x75\x62\x6c" \
00473     "\x69\x63\x20\x4c\x69\x63\x65\x6e\x73\x65\x2c\x20\x76\x65\x72\x73" \
00474     "\x69\x6f\x6e\x20\x32\x20\x6f\x72\x20\x6c\x61\x74\x65\x72\x2e" )
00475 
00476 #define VLC_METADATA_EXPORTS \
00477     VLC_COPYRIGHT_EXPORT \
00478     VLC_LICENSE_EXPORT
00479 
00480 #endif

Generated on Wed Aug 13 08:02:37 2008 for VLC by  doxygen 1.5.1