]> git.sesse.net Git - vlc/blob - src/modules/entry.c
Modules: use a dynamic array for the shortcuts (this save 40K of memory on a 64bit...
[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             const char *psz_new = va_arg (ap, char*);
185             module->pp_shortcuts = realloc (module->pp_shortcuts, sizeof( char ** ) * (module->i_shortcuts + 1));
186             module->pp_shortcuts[module->i_shortcuts++] = psz_new;
187             break;
188         }
189
190         case VLC_MODULE_CAPABILITY:
191             module->psz_capability = va_arg (ap, char *);
192             break;
193
194         case VLC_MODULE_SCORE:
195             module->i_score = va_arg (ap, int);
196             break;
197
198         case VLC_MODULE_CB_OPEN:
199             module->pf_activate = va_arg (ap, int_fp_vlcobjectt);
200             break;
201
202         case VLC_MODULE_CB_CLOSE:
203             module->pf_deactivate = va_arg (ap, void_fp_vlcobjectt);
204             break;
205
206         case VLC_MODULE_NO_UNLOAD:
207             module->b_unloadable = false;
208             break;
209
210         case VLC_MODULE_NAME:
211         {
212             const char *value = va_arg (ap, const char *);
213             free( module->psz_object_name );
214             module->psz_object_name = strdup( value );
215             module->pp_shortcuts = malloc( sizeof( char ** ) );
216             module->pp_shortcuts[0] = (char*)value; /* dooh! */
217             module->i_shortcuts = 1;
218
219             if (module->psz_longname == default_name)
220                 module->psz_longname = (char*)value; /* dooh! */
221             break;
222         }
223
224         case VLC_MODULE_SHORTNAME:
225             module->psz_shortname = va_arg (ap, char *);
226             break;
227
228         case VLC_MODULE_DESCRIPTION:
229             module->psz_longname = va_arg (ap, char *);
230             break;
231
232         case VLC_MODULE_HELP:
233             module->psz_help = va_arg (ap, char *);
234             break;
235
236         case VLC_MODULE_TEXTDOMAIN:
237             module->domain = va_arg (ap, char *);
238             break;
239
240         case VLC_CONFIG_NAME:
241         {
242             const char *name = va_arg (ap, const char *);
243             vlc_callback_t cb = va_arg (ap, vlc_callback_t);
244
245             assert (name != NULL);
246             item->psz_name = strdup (name);
247             item->pf_callback = cb;
248             break;
249         }
250
251         case VLC_CONFIG_VALUE:
252         {
253             if (IsConfigIntegerType (item->i_type))
254             {
255                 item->orig.i = item->saved.i =
256                 item->value.i = va_arg (ap, int);
257             }
258             else
259             if (IsConfigFloatType (item->i_type))
260             {
261                 item->orig.f = item->saved.f =
262                 item->value.f = va_arg (ap, double);
263             }
264             else
265             if (IsConfigStringType (item->i_type))
266             {
267                 const char *value = va_arg (ap, const char *);
268                 item->value.psz = value ? strdup (value) : NULL;
269                 item->orig.psz = value ? strdup (value) : NULL;
270                 item->saved.psz = value ? strdup (value) : NULL;
271             }
272             break;
273         }
274
275         case VLC_CONFIG_RANGE:
276         {
277             if (IsConfigIntegerType (item->i_type)
278              || item->i_type == CONFIG_ITEM_MODULE_LIST_CAT
279              || item->i_type == CONFIG_ITEM_MODULE_CAT)
280             {
281                 item->min.i = va_arg (ap, int);
282                 item->max.i = va_arg (ap, int);
283             }
284             else
285             if (IsConfigFloatType (item->i_type))
286             {
287                 item->min.f = va_arg (ap, double);
288                 item->max.f = va_arg (ap, double);
289             }
290             break;
291         }
292
293         case VLC_CONFIG_ADVANCED:
294             item->b_advanced = true;
295             break;
296
297         case VLC_CONFIG_VOLATILE:
298             item->b_unsaveable = true;
299             break;
300
301         case VLC_CONFIG_PERSISTENT:
302             item->b_autosave = true;
303             break;
304
305         case VLC_CONFIG_RESTART:
306             item->b_restart = true;
307             break;
308
309         case VLC_CONFIG_PRIVATE:
310             item->b_internal = true;
311             break;
312
313         case VLC_CONFIG_REMOVED:
314             item->b_removed = true;
315             break;
316
317         case VLC_CONFIG_CAPABILITY:
318         {
319             const char *cap = va_arg (ap, const char *);
320             item->psz_type = cap ? strdup (cap) : NULL;
321             break;
322         }
323
324         case VLC_CONFIG_SHORTCUT:
325             item->i_short = va_arg (ap, int);
326             break;
327
328         case VLC_CONFIG_OLDNAME:
329         {
330             const char *oldname = va_arg (ap, const char *);
331             item->psz_oldname = oldname ? strdup (oldname) : NULL;
332             break;
333         }
334
335         case VLC_CONFIG_SAFE:
336             item->b_safe = true;
337             break;
338
339         case VLC_CONFIG_DESC:
340         {
341             const char *text = va_arg (ap, const char *);
342             const char *longtext = va_arg (ap, const char *);
343
344             item->psz_text = text ? strdup (text) : NULL;
345             item->psz_longtext = longtext ? strdup (longtext) : NULL;
346             break;
347         }
348
349         case VLC_CONFIG_LIST:
350         {
351             size_t len = va_arg (ap, size_t);
352
353             /* Copy values */
354             if (IsConfigIntegerType (item->i_type))
355             {
356                 const int *src = va_arg (ap, const int *);
357                 int *dst = malloc (sizeof (int) * (len + 1));
358
359                 if (dst != NULL)
360                 {
361                     memcpy (dst, src, sizeof (int) * len);
362                     dst[len] = 0;
363                 }
364                 item->pi_list = dst;
365             }
366             else
367             if (IsConfigStringType (item->i_type))
368             {
369                 const char *const *src = va_arg (ap, const char *const *);
370                 char **dst = malloc (sizeof (char *) * (len + 1));
371
372                 if (dst != NULL)
373                 {
374                     for (size_t i = 0; i < len; i++)
375                         dst[i] = src[i] ? strdup (src[i]) : NULL;
376                     dst[len] = NULL;
377                 }
378                 item->ppsz_list = dst;
379             }
380             else
381                 break;
382
383             /* Copy textual descriptions */
384             const char *const *text = va_arg (ap, const char *const *);
385             if (text != NULL)
386             {
387                 char **dtext = malloc (sizeof (char *) * (len + 1));
388                 if( dtext != NULL )
389                 {
390                     for (size_t i = 0; i < len; i++)
391                         dtext[i] = text[i] ? strdup (text[i]) : NULL;
392                     dtext[len] = NULL;
393                 }
394                 item->ppsz_list_text = dtext;
395             }
396             else
397                 item->ppsz_list_text = NULL;
398
399             item->i_list = len;
400             item->pf_update_list = va_arg (ap, vlc_callback_t);
401             break;
402         }
403
404         case VLC_CONFIG_ADD_ACTION:
405         {
406             vlc_callback_t cb = va_arg (ap, vlc_callback_t), *tabcb;
407             const char *name = va_arg (ap, const char *);
408             char **tabtext;
409
410             tabcb = realloc (item->ppf_action,
411                              (item->i_action + 2) * sizeof (cb));
412             if (tabcb == NULL)
413                 break;
414             item->ppf_action = tabcb;
415             tabcb[item->i_action] = cb;
416             tabcb[item->i_action + 1] = NULL;
417
418             tabtext = realloc (item->ppsz_action_text,
419                                (item->i_action + 2) * sizeof (name));
420             if (tabtext == NULL)
421                 break;
422             item->ppsz_action_text = tabtext;
423
424             if (name)
425                 tabtext[item->i_action] = strdup (name);
426             else
427                 tabtext[item->i_action] = NULL;
428             tabtext[item->i_action + 1] = NULL;
429
430             item->i_action++;
431             break;
432         }
433
434         default:
435             fprintf (stderr, "LibVLC: unknown module property %d\n", propid);
436             fprintf (stderr, "LibVLC: too old to use this module?\n");
437             ret = -1;
438             break;
439     }
440
441     va_end (ap);
442     return ret;
443 }