]> git.sesse.net Git - vlc/blob - include/modules_inner.h
4319d2d2ebfe14afbd17ef6d51c772801b21b5dd
[vlc] / include / modules_inner.h
1 /*****************************************************************************
2  * modules_inner.h : Macros used from within a module.
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: modules_inner.h,v 1.22 2002/05/30 08:17:04 gbazin Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Check that we are within a module.
26  *****************************************************************************/
27 #if !( defined( MODULE_NAME ) || defined( MAKE_DEP ) )
28 #  error "You must define MODULE_NAME before using modules_inner.h !"
29 #endif
30
31 /*****************************************************************************
32  * Add a few defines. You do not want to read this section. Really.
33  *****************************************************************************/
34
35 /* Explanation:
36  *
37  * if user has #defined MODULE_NAME foo, then we will need:
38  * #define MODULE_STRING "foo"
39  * #define MODULE_VAR(blah) "VLC_MODULE_foo_blah"
40  *
41  * and, if __BUILTIN__ is set, we will also need:
42  * #define MODULE_FUNC( zog ) module_foo_zog
43  *
44  * this can't easily be done with the C preprocessor, thus a few ugly hacks.
45  */
46
47 /* I can't believe I need to do this to change « foo » to « "foo" » */
48 #define STRINGIFY( z )   UGLY_KLUDGE( z )
49 #define UGLY_KLUDGE( z ) #z
50 /* And I need to do _this_ to change « foo bar » to « module_foo_bar » ! */
51 #define CONCATENATE( y, z ) CRUDE_HACK( y, z )
52 #define CRUDE_HACK( y, z )  y##__MODULE_##z
53
54 #define MODULE_VAR( z ) "VLC_MODULE_" #z
55
56 /* If the module is built-in, then we need to define foo_InitModule instead
57  * of InitModule. Same for Activate- and DeactivateModule. */
58 #ifdef __BUILTIN__
59 #   define _M( function )          CONCATENATE( function, MODULE_NAME )
60 #   define __VLC_SYMBOL( symbol )  CONCATENATE( symbol, MODULE_NAME )
61 #   define DECLARE_SYMBOLS         ;
62 #   define STORE_SYMBOLS           ;
63 #else
64 #   define _M( function )          function
65 #   define __VLC_SYMBOL( symbol  ) CONCATENATE( symbol, MODULE_SYMBOL )
66 #   define DECLARE_SYMBOLS         module_symbols_t* p_symbols;
67 #   define STORE_SYMBOLS           p_symbols = p_module->p_symbols;
68 #endif
69
70 #define MODULE_STRING STRINGIFY( MODULE_NAME )
71
72 /*
73  * InitModule: this function is called once and only once, when the module
74  * is looked at for the first time. We get the useful data from it, for
75  * instance the module name, its shortcuts, its capabilities... we also create
76  * a copy of its config because the module can be unloaded at any time.
77  */
78 #define MODULE_INIT_START                                                     \
79     DECLARE_SYMBOLS;                                                          \
80     int __VLC_SYMBOL( InitModule ) ( module_t *p_module )                     \
81     {                                                                         \
82         int i_shortcut = 1;                                                   \
83         struct module_config_s* p_item;                                       \
84         STORE_SYMBOLS;                                                        \
85         p_module->psz_name = MODULE_STRING;                                   \
86         p_module->psz_longname = MODULE_STRING;                               \
87         p_module->psz_program = NULL;                                         \
88         p_module->pp_shortcuts[ 0 ] = MODULE_STRING;                          \
89         p_module->i_capabilities = 0;                                         \
90         p_module->i_cpu_capabilities = 0;                                     \
91         do {
92
93 #define MODULE_INIT_STOP                                                      \
94         } while( 0 );                                                         \
95         p_module->pp_shortcuts[ i_shortcut ] = NULL;                          \
96         p_module->i_config_items = p_module->i_bool_items = 0;                \
97         for( p_item = p_config;                                               \
98              p_item->i_type != MODULE_CONFIG_HINT_END;                        \
99              p_item++ )                                                       \
100         {                                                                     \
101             if( p_item->i_type & MODULE_CONFIG_ITEM )                         \
102                 p_module->i_config_items++;                                   \
103             if( p_item->i_type == MODULE_CONFIG_ITEM_BOOL )                   \
104                 p_module->i_bool_items++;                                     \
105         }                                                                     \
106         vlc_mutex_init( &p_module->config_lock );                             \
107         p_module->p_config = config_Duplicate( p_config );                    \
108         if( p_module->p_config == NULL )                                      \
109         {                                                                     \
110             intf_ErrMsg( MODULE_STRING                                        \
111                          " InitModule error: can't duplicate p_config" );     \
112             return( -1 );                                                     \
113         }                                                                     \
114         for( p_item = p_module->p_config;                                     \
115              p_item->i_type != MODULE_CONFIG_HINT_END;                        \
116              p_item++ )                                                       \
117         {                                                                     \
118             p_item->p_lock = &p_module->config_lock;                          \
119         }                                                                     \
120         return( 0 );                                                          \
121     }
122
123 #define ADD_CAPABILITY( cap, score )                                          \
124     p_module->i_capabilities |= 1 << MODULE_CAPABILITY_##cap;                 \
125     p_module->pi_score[ MODULE_CAPABILITY_##cap ] = score;
126
127 #define ADD_REQUIREMENT( cap )                                                \
128     p_module->i_cpu_capabilities |= CPU_CAPABILITY_##cap;
129
130 #define ADD_PROGRAM( program )                                                \
131     p_module->psz_program = program;
132
133 #define ADD_SHORTCUT( shortcut )                                              \
134     p_module->pp_shortcuts[ i_shortcut ] = shortcut;                          \
135     i_shortcut++;
136
137 #define SET_DESCRIPTION( desc )                                               \
138     p_module->psz_longname = desc;
139
140 /*
141  * ActivateModule: this function is called before functions can be accessed,
142  * we do allocation tasks here, and maybe additional stuff such as large
143  * table allocation. Once ActivateModule is called we are almost sure the
144  * module will be used.
145  */
146 #define MODULE_ACTIVATE_START                                                 \
147     int __VLC_SYMBOL( ActivateModule ) ( module_t *p_module )                 \
148     {                                                                         \
149         STORE_SYMBOLS;                                                        \
150         p_module->p_functions =                                               \
151           ( module_functions_t * )malloc( sizeof( module_functions_t ) );     \
152         if( p_module->p_functions == NULL )                                   \
153         {                                                                     \
154             return( -1 );                                                     \
155         }                                                                     \
156         config_SetCallbacks( p_module->p_config, p_config );                  \
157         do {
158
159 #define MODULE_ACTIVATE_STOP                                                  \
160         } while( 0 );                                                         \
161         return( 0 );                                                          \
162     }
163
164 /*
165  * DeactivateModule: this function is called after we are finished with the
166  * module. Everything that has been done in ActivateModule needs to be undone
167  * here.
168  */
169 #define MODULE_DEACTIVATE_START                                               \
170     int __VLC_SYMBOL( DeactivateModule )( module_t *p_module )                \
171     {                                                                         \
172         free( p_module->p_functions );                                        \
173         do {
174
175 #define MODULE_DEACTIVATE_STOP                                                \
176         } while( 0 );                                                         \
177         config_UnsetCallbacks( p_module->p_config );                          \
178         return( 0 );                                                          \
179     }