]> git.sesse.net Git - vlc/blob - include/vlc_modules_macros.h
612b4f9d7f11aa7fc71146d6073f93694c0fbf8e
[vlc] / include / vlc_modules_macros.h
1 /*****************************************************************************
2  * modules_macros.h : Macros used from within a module.
3  *****************************************************************************
4  * Copyright (C) 2001-2006 the VideoLAN team
5  * Copyright © 2007-2008 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  * If we are not within a module, assume we're in the vlc core.
29  *****************************************************************************/
30 #if !defined( __PLUGIN__ ) && !defined( __BUILTIN__ )
31 #   define MODULE_NAME main
32 #endif
33
34 /**
35  * Current plugin ABI version
36  */
37 # define MODULE_SYMBOL 0_9_0k
38 # define MODULE_SUFFIX "__0_9_0k"
39
40 /*****************************************************************************
41  * Add a few defines. You do not want to read this section. Really.
42  *****************************************************************************/
43
44 /* Explanation:
45  *
46  * if user has #defined MODULE_NAME foo, then we will need:
47  * #define MODULE_STRING "foo"
48  *
49  * and, if HAVE_DYNAMIC_PLUGINS is NOT set, we will also need:
50  * #define MODULE_FUNC( zog ) module_foo_zog
51  *
52  * this can't easily be done with the C preprocessor, thus a few ugly hacks.
53  */
54
55 /* I can't believe I need to do this to change « foo » to « "foo" » */
56 #define STRINGIFY( z )   UGLY_KLUDGE( z )
57 #define UGLY_KLUDGE( z ) #z
58 /* And I need to do _this_ to change « foo bar » to « module_foo_bar » ! */
59 #define CONCATENATE( y, z ) CRUDE_HACK( y, z )
60 #define CRUDE_HACK( y, z )  y##__##z
61
62 /* If the module is built-in, then we need to define foo_InitModule instead
63  * of InitModule. Same for Activate- and DeactivateModule. */
64 #ifdef __PLUGIN__
65 #   define E_( function )          CONCATENATE( function, MODULE_SYMBOL )
66 #   define __VLC_SYMBOL( symbol  ) CONCATENATE( symbol, MODULE_SYMBOL )
67 #else
68 #   define E_( function )          CONCATENATE( function, MODULE_NAME )
69 #   define __VLC_SYMBOL( symbol )  CONCATENATE( symbol, MODULE_NAME )
70 #endif
71
72 #if defined( __PLUGIN__ ) && ( defined( WIN32 ) || defined( UNDER_CE ) )
73 #   define DLL_SYMBOL              __declspec(dllexport)
74 #   define CDECL_SYMBOL            __cdecl
75 #elif defined (HAVE_ATTRIBUTE_VISIBILITY)
76 #   define DLL_SYMBOL __attribute__((visibility("default")))
77 #   define CDECL_SYMBOL
78 #else
79 #   define DLL_SYMBOL
80 #   define CDECL_SYMBOL
81 #endif
82
83 #if defined( __cplusplus )
84 #   define EXTERN_SYMBOL           extern "C"
85 #else
86 #   define EXTERN_SYMBOL
87 #endif
88
89 #define MODULE_STRING STRINGIFY( MODULE_NAME )
90
91 /*
92  * InitModule: this function is called once and only once, when the module
93  * is looked at for the first time. We get the useful data from it, for
94  * instance the module name, its shortcuts, its capabilities... we also create
95  * a copy of its config because the module can be unloaded at any time.
96  */
97 #if defined (__PLUGIN__) || defined (__BUILTIN__)
98 EXTERN_SYMBOL DLL_SYMBOL int CDECL_SYMBOL
99 E_(vlc_entry) ( module_t *p_module );
100 #endif
101
102 #define vlc_module_begin( )                                                   \
103     EXTERN_SYMBOL DLL_SYMBOL int CDECL_SYMBOL                                 \
104     __VLC_SYMBOL(vlc_entry) ( module_t *p_module )                            \
105     {                                                                         \
106         module_config_t *p_config = NULL;                                     \
107         if (vlc_module_set (p_module, VLC_MODULE_NAME,                        \
108                             (const char *)(MODULE_STRING)))                   \
109             goto error;                                                       \
110         {                                                                     \
111             module_t *p_submodule = p_module /* the ; gets added */
112
113 #define vlc_module_end( )                                                     \
114         }                                                                     \
115         (void)p_config;                                                       \
116         return VLC_SUCCESS;                                                   \
117                                                                               \
118     error:                                                                    \
119         return VLC_EGENERIC;                                                  \
120     }                                                                         \
121     struct _u_n_u_s_e_d_ /* the ; gets added */
122
123
124 #define add_submodule( ) \
125     p_submodule = vlc_submodule_create( p_module )
126
127 #define add_requirement( cap ) \
128     if (vlc_module_set (p_module, VLC_MODULE_CPU_REQUIREMENT, \
129                         (int)(CPU_CAPABILITY_##cap))) \
130         goto error
131
132 #define add_shortcut( shortcut ) \
133     if (vlc_module_set (p_submodule, VLC_MODULE_SHORTCUT, (int)(shortcut))) \
134         goto error
135
136 #define set_shortname( shortname ) \
137     if (vlc_module_set (p_submodule, VLC_MODULE_SHORTNAME, \
138         (const char *)(shortname))) \
139         goto error
140
141 #define set_description( desc ) \
142     if (vlc_module_set (p_submodule, VLC_MODULE_DESCRIPTION, \
143                         (const char *)(desc))) \
144         goto error
145
146 #define set_help( help ) \
147     if (vlc_module_set (p_submodule, VLC_MODULE_HELP, (const char *)(help))) \
148         goto error
149
150 #define set_capability( cap, score ) \
151     if (vlc_module_set (p_submodule, VLC_MODULE_CAPABILITY, (int)(cap)) \
152      || vlc_module_set (p_submodule, VLC_MODULE_SCORE, (int)(score))) \
153         goto error
154
155 #define set_callbacks( activate, deactivate ) \
156     if (vlc_module_set (p_submodule, VLC_MODULE_CB_OPEN, activate) \
157      || vlc_module_set (p_submodule, VLC_MODULE_CB_CLOSE, deactivate)) \
158         goto error
159
160 #define linked_with_a_crap_library_which_uses_atexit( ) \
161     if (vlc_module_set (p_submodule, VLC_MODULE_NO_UNLOAD)) \
162         goto error
163
164 VLC_EXPORT( module_t *, vlc_module_create, ( vlc_object_t * ) );
165 VLC_EXPORT( module_t *, vlc_submodule_create, ( module_t * ) );
166 VLC_EXPORT( int, vlc_module_set, (module_t *module, int propid, ...) );
167
168 enum vlc_module_properties
169 {
170     /* DO NOT EVER REMOVE, INSERT OR REPLACE ANY ITEM! It would break the ABI!
171      * Append new items at the end ONLY. */
172     VLC_MODULE_CPU_REQUIREMENT,
173     VLC_MODULE_SHORTCUT,
174     VLC_MODULE_SHORTNAME,
175     VLC_MODULE_DESCRIPTION,
176     VLC_MODULE_HELP,
177     VLC_MODULE_CAPABILITY,
178     VLC_MODULE_SCORE,
179     VLC_MODULE_PROGRAM,
180     VLC_MODULE_CB_OPEN,
181     VLC_MODULE_CB_CLOSE,
182     VLC_MODULE_NO_UNLOAD,
183     VLC_MODULE_NAME,
184 };
185 #endif