]> git.sesse.net Git - vlc/blob - src/modules/entry.c
2e8b3c2977d82b8509d9cea5ebbe97a07636a725
[vlc] / src / modules / entry.c
1 /*****************************************************************************
2  * entry.c : Callbacks for module entry point
3  *****************************************************************************
4  * Copyright (C) 2007 the VideoLAN team
5  * Copyright © 2007-2008 Rémi Denis-Courmont
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20  *****************************************************************************/
21
22 #ifdef HAVE_CONFIG_H
23 # include "config.h"
24 #endif
25
26 #include <vlc_common.h>
27 #include <vlc_plugin.h>
28 #include <vlc_memory.h>
29 #include <assert.h>
30 #include <stdarg.h>
31
32 #include "modules/modules.h"
33 #include "config/configuration.h"
34 #include "libvlc.h"
35
36 static void vlc_module_destruct (gc_object_t *obj)
37 {
38     module_t *module = vlc_priv (obj, module_t);
39
40     free (module->pp_shortcuts);
41     free (module->psz_object_name);
42     free (module);
43 }
44
45 static const char default_name[] = "unnamed";
46
47 module_t *vlc_module_create (vlc_object_t *obj)
48 {
49     module_t *module = malloc (sizeof (*module));
50     if (module == NULL)
51         return NULL;
52
53     module->psz_object_name = strdup( default_name );
54     module->next = NULL;
55     module->submodule = NULL;
56     module->parent = NULL;
57     module->submodule_count = 0;
58     vlc_gc_init (module, vlc_module_destruct);
59
60     module->psz_shortname = NULL;
61     module->psz_longname = (char*)default_name;
62     module->psz_help = NULL;
63     module->pp_shortcuts = NULL;
64     module->i_shortcuts = 0;
65     module->psz_capability = (char*)"";
66     module->i_score = 1;
67     module->b_unloadable = true;
68     module->b_submodule = false;
69     module->pf_activate = NULL;
70     module->pf_deactivate = NULL;
71     module->p_config = NULL;
72     module->confsize = 0;
73     module->i_config_items = 0;
74     module->i_bool_items = 0;
75     /*module->handle = garbage */
76     module->psz_filename = NULL;
77     module->domain = NULL;
78     module->b_builtin = false;
79     module->b_loaded = false;
80
81     (void)obj;
82     return module;
83 }
84
85
86 static void vlc_submodule_destruct (gc_object_t *obj)
87 {
88     module_t *module = vlc_priv (obj, module_t);
89     free (module->pp_shortcuts);
90     free (module->psz_object_name);
91     free (module);
92 }
93
94 module_t *vlc_submodule_create (module_t *module)
95 {
96     assert (module != NULL);
97
98     module_t *submodule = calloc( 1, sizeof(*submodule) );
99     if( !submodule )
100         return NULL;
101
102     vlc_gc_init (submodule, vlc_submodule_destruct);
103
104     submodule->next = module->submodule;
105     submodule->parent = module;
106     module->submodule = submodule;
107     module->submodule_count++;
108
109     /* Muahahaha! Heritage! Polymorphism! Ugliness!! */
110     submodule->pp_shortcuts = malloc( sizeof( char ** ) );
111     submodule->pp_shortcuts[0] = module->pp_shortcuts[0]; /* object name */
112     submodule->i_shortcuts = 1;
113
114     submodule->psz_object_name = strdup( module->psz_object_name );
115     submodule->psz_shortname = module->psz_shortname;
116     submodule->psz_longname = module->psz_longname;
117     submodule->psz_capability = module->psz_capability;
118     submodule->i_score = module->i_score;
119     submodule->b_submodule = true;
120     submodule->domain = module->domain;
121     return submodule;
122 }
123
124 static module_config_t *vlc_config_create (module_t *module, int type)
125 {
126     unsigned confsize = module->confsize;
127     module_config_t *tab = module->p_config;
128
129     if ((confsize & 0xf) == 0)
130     {
131         tab = realloc_or_free (tab, (confsize + 17) * sizeof (*tab));
132         if (tab == NULL)
133             return NULL;
134
135         module->p_config = tab;
136     }
137
138     memset (tab + confsize, 0, sizeof (tab[confsize]));
139     tab[confsize].i_type = type;
140
141     if (type & CONFIG_ITEM)
142     {
143         module->i_config_items++;
144         if (type == CONFIG_ITEM_BOOL)
145             module->i_bool_items++;
146     }
147
148     module->confsize++;
149     return tab + confsize;
150 }
151
152
153 int vlc_plugin_set (module_t *module, module_config_t *item, int propid, ...)
154 {
155     va_list ap;
156     int ret = 0;
157     typedef int(*int_fp_vlcobjectt)(vlc_object_t *) ;
158     typedef void(*void_fp_vlcobjectt)(vlc_object_t *);
159
160     va_start (ap, propid);
161     switch (propid)
162     {
163         case VLC_SUBMODULE_CREATE:
164         {
165             module_t **pp = va_arg (ap, module_t **);
166             *pp = vlc_submodule_create (module);
167             if (*pp == NULL)
168                 ret = -1;
169             break;
170         }
171
172         case VLC_CONFIG_CREATE:
173         {
174             int type = va_arg (ap, int);
175             module_config_t **pp = va_arg (ap, module_config_t **);
176             *pp = vlc_config_create (module, type);
177             if (*pp == NULL)
178                 ret = -1;
179             break;
180         }
181
182         case VLC_MODULE_SHORTCUT:
183         {
184             unsigned i_shortcuts = va_arg (ap, unsigned);
185             unsigned index = module->i_shortcuts;
186             module->i_shortcuts += i_shortcuts;
187
188             module->pp_shortcuts = realloc (module->pp_shortcuts, sizeof( char ** ) * module->i_shortcuts);
189             for (; index < module->i_shortcuts; index++)
190             {
191                 const char *psz_new = va_arg (ap, const char*);
192                 module->pp_shortcuts[index] = psz_new;
193             }
194             break;
195         }
196
197         case VLC_MODULE_CAPABILITY:
198             module->psz_capability = va_arg (ap, char *);
199             break;
200
201         case VLC_MODULE_SCORE:
202             module->i_score = va_arg (ap, int);
203             break;
204
205         case VLC_MODULE_CB_OPEN:
206             module->pf_activate = va_arg (ap, int_fp_vlcobjectt);
207             break;
208
209         case VLC_MODULE_CB_CLOSE:
210             module->pf_deactivate = va_arg (ap, void_fp_vlcobjectt);
211             break;
212
213         case VLC_MODULE_NO_UNLOAD:
214             module->b_unloadable = false;
215             break;
216
217         case VLC_MODULE_NAME:
218         {
219             const char *value = va_arg (ap, const char *);
220             free( module->psz_object_name );
221             module->psz_object_name = strdup( value );
222             module->pp_shortcuts = malloc( sizeof( char ** ) );
223             module->pp_shortcuts[0] = (char*)value; /* dooh! */
224             module->i_shortcuts = 1;
225
226             if (module->psz_longname == default_name)
227                 module->psz_longname = (char*)value; /* dooh! */
228             break;
229         }
230
231         case VLC_MODULE_SHORTNAME:
232             module->psz_shortname = va_arg (ap, char *);
233             break;
234
235         case VLC_MODULE_DESCRIPTION:
236             module->psz_longname = va_arg (ap, char *);
237             break;
238
239         case VLC_MODULE_HELP:
240             module->psz_help = va_arg (ap, char *);
241             break;
242
243         case VLC_MODULE_TEXTDOMAIN:
244             module->domain = va_arg (ap, char *);
245             break;
246
247         case VLC_CONFIG_NAME:
248         {
249             const char *name = va_arg (ap, const char *);
250             vlc_callback_t cb = va_arg (ap, vlc_callback_t);
251
252             assert (name != NULL);
253             item->psz_name = strdup (name);
254             item->pf_callback = cb;
255             break;
256         }
257
258         case VLC_CONFIG_VALUE:
259         {
260             if (IsConfigIntegerType (item->i_type))
261             {
262                 item->orig.i = item->saved.i =
263                 item->value.i = va_arg (ap, int);
264             }
265             else
266             if (IsConfigFloatType (item->i_type))
267             {
268                 item->orig.f = item->saved.f =
269                 item->value.f = va_arg (ap, double);
270             }
271             else
272             if (IsConfigStringType (item->i_type))
273             {
274                 const char *value = va_arg (ap, const char *);
275                 item->value.psz = value ? strdup (value) : NULL;
276                 item->orig.psz = value ? strdup (value) : NULL;
277                 item->saved.psz = value ? strdup (value) : NULL;
278             }
279             break;
280         }
281
282         case VLC_CONFIG_RANGE:
283         {
284             if (IsConfigIntegerType (item->i_type)
285              || item->i_type == CONFIG_ITEM_MODULE_LIST_CAT
286              || item->i_type == CONFIG_ITEM_MODULE_CAT)
287             {
288                 item->min.i = va_arg (ap, int);
289                 item->max.i = va_arg (ap, int);
290             }
291             else
292             if (IsConfigFloatType (item->i_type))
293             {
294                 item->min.f = va_arg (ap, double);
295                 item->max.f = va_arg (ap, double);
296             }
297             break;
298         }
299
300         case VLC_CONFIG_ADVANCED:
301             item->b_advanced = true;
302             break;
303
304         case VLC_CONFIG_VOLATILE:
305             item->b_unsaveable = true;
306             break;
307
308         case VLC_CONFIG_PERSISTENT:
309             item->b_autosave = true;
310             break;
311
312         case VLC_CONFIG_RESTART:
313             item->b_restart = true;
314             break;
315
316         case VLC_CONFIG_PRIVATE:
317             item->b_internal = true;
318             break;
319
320         case VLC_CONFIG_REMOVED:
321             item->b_removed = true;
322             break;
323
324         case VLC_CONFIG_CAPABILITY:
325         {
326             const char *cap = va_arg (ap, const char *);
327             item->psz_type = cap ? strdup (cap) : NULL;
328             break;
329         }
330
331         case VLC_CONFIG_SHORTCUT:
332             item->i_short = va_arg (ap, int);
333             break;
334
335         case VLC_CONFIG_OLDNAME:
336         {
337             const char *oldname = va_arg (ap, const char *);
338             item->psz_oldname = oldname ? strdup (oldname) : NULL;
339             break;
340         }
341
342         case VLC_CONFIG_SAFE:
343             item->b_safe = true;
344             break;
345
346         case VLC_CONFIG_DESC:
347         {
348             const char *text = va_arg (ap, const char *);
349             const char *longtext = va_arg (ap, const char *);
350
351             item->psz_text = text ? strdup (text) : NULL;
352             item->psz_longtext = longtext ? strdup (longtext) : NULL;
353             break;
354         }
355
356         case VLC_CONFIG_LIST:
357         {
358             size_t len = va_arg (ap, size_t);
359
360             /* Copy values */
361             if (IsConfigIntegerType (item->i_type))
362             {
363                 const int *src = va_arg (ap, const int *);
364                 int *dst = malloc (sizeof (int) * (len + 1));
365
366                 if (dst != NULL)
367                 {
368                     memcpy (dst, src, sizeof (int) * len);
369                     dst[len] = 0;
370                 }
371                 item->pi_list = dst;
372             }
373             else
374             if (IsConfigStringType (item->i_type))
375             {
376                 const char *const *src = va_arg (ap, const char *const *);
377                 char **dst = malloc (sizeof (char *) * (len + 1));
378
379                 if (dst != NULL)
380                 {
381                     for (size_t i = 0; i < len; i++)
382                         dst[i] = src[i] ? strdup (src[i]) : NULL;
383                     dst[len] = NULL;
384                 }
385                 item->ppsz_list = dst;
386             }
387             else
388                 break;
389
390             /* Copy textual descriptions */
391             const char *const *text = va_arg (ap, const char *const *);
392             if (text != NULL)
393             {
394                 char **dtext = malloc (sizeof (char *) * (len + 1));
395                 if( dtext != NULL )
396                 {
397                     for (size_t i = 0; i < len; i++)
398                         dtext[i] = text[i] ? strdup (text[i]) : NULL;
399                     dtext[len] = NULL;
400                 }
401                 item->ppsz_list_text = dtext;
402             }
403             else
404                 item->ppsz_list_text = NULL;
405
406             item->i_list = len;
407             item->pf_update_list = va_arg (ap, vlc_callback_t);
408             break;
409         }
410
411         case VLC_CONFIG_ADD_ACTION:
412         {
413             vlc_callback_t cb = va_arg (ap, vlc_callback_t), *tabcb;
414             const char *name = va_arg (ap, const char *);
415             char **tabtext;
416
417             tabcb = realloc (item->ppf_action,
418                              (item->i_action + 2) * sizeof (cb));
419             if (tabcb == NULL)
420                 break;
421             item->ppf_action = tabcb;
422             tabcb[item->i_action] = cb;
423             tabcb[item->i_action + 1] = NULL;
424
425             tabtext = realloc (item->ppsz_action_text,
426                                (item->i_action + 2) * sizeof (name));
427             if (tabtext == NULL)
428                 break;
429             item->ppsz_action_text = tabtext;
430
431             if (name)
432                 tabtext[item->i_action] = strdup (name);
433             else
434                 tabtext[item->i_action] = NULL;
435             tabtext[item->i_action + 1] = NULL;
436
437             item->i_action++;
438             break;
439         }
440
441         default:
442             fprintf (stderr, "LibVLC: unknown module property %d\n", propid);
443             fprintf (stderr, "LibVLC: too old to use this module?\n");
444             ret = -1;
445             break;
446     }
447
448     va_end (ap);
449     return ret;
450 }