]> git.sesse.net Git - vlc/blob - src/modules/entry.c
Fix pointer-int casts warnings
[vlc] / src / modules / entry.c
1 /*****************************************************************************
2  * entry.c : Callbacks for module entry point
3  *****************************************************************************
4  * Copyright (C) 2001-2007 the VideoLAN team
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20
21 #include <vlc/vlc.h>
22 #include <assert.h>
23
24 #include "modules/modules.h"
25 #include "libvlc.h"
26 #include "../libvlc.h"
27
28 static const char default_name[] = "unnamed";
29
30 module_t *vlc_module_create (vlc_object_t *obj)
31 {
32     module_t *module =
33         (module_t *)vlc_custom_create (obj, sizeof (module_t),
34                                        VLC_OBJECT_MODULE, "module");
35     if (module == NULL)
36         return NULL;
37
38     module->b_reentrant = module->b_unloadable = VLC_TRUE;
39     module->psz_object_name = module->psz_longname = default_name;
40     module->psz_capability = "";
41     module->i_score = 1;
42     return module;
43 }
44
45
46 module_t *vlc_submodule_create (module_t *module)
47 {
48     assert (module != NULL);
49     assert (!module->b_submodule); // subsubmodules are not supported
50
51     module_t *submodule =
52         (module_t *)vlc_custom_create (VLC_OBJECT (module), sizeof (module_t),
53                                        VLC_OBJECT_MODULE, "submodule");
54     if (submodule == NULL)
55         return NULL;
56
57     vlc_object_attach (submodule, module);
58     submodule->b_submodule = VLC_TRUE;
59
60     /* Muahahaha! Heritage! Polymorphism! Ugliness!! */
61     memcpy (submodule->pp_shortcuts, module->pp_shortcuts,
62             sizeof (submodule->pp_shortcuts));
63
64     submodule->psz_object_name = module->psz_object_name;
65     submodule->psz_shortname = module->psz_shortname;
66     submodule->psz_longname = module->psz_longname;
67     submodule->psz_program = module->psz_program;
68     submodule->psz_capability = module->psz_capability;
69     submodule->i_score = module->i_score;
70     submodule->i_cpu = module->i_cpu;
71     return submodule;
72 }
73
74
75 int vlc_module_set (module_t *module, int propid, void *value)
76 {
77     switch (propid)
78     {
79         case VLC_MODULE_CPU_REQUIREMENT:
80             assert (!module->b_submodule);
81             module->i_cpu |= (intptr_t)value;
82             break;
83
84         case VLC_MODULE_SHORTCUT:
85         {
86             unsigned i;
87             for (i = 0; module->pp_shortcuts[i] != NULL; i++);
88             if (i >= (MODULE_SHORTCUT_MAX - 1))
89                 return VLC_ENOMEM;
90
91             module->pp_shortcuts[i] = (char *)value;
92             break;
93         }
94
95         case VLC_MODULE_SHORTNAME:
96             module->psz_shortname = (char *)value;
97             break;
98
99         case VLC_MODULE_DESCRIPTION:
100             module->psz_longname = (char *)value;
101             break;
102
103         case VLC_MODULE_HELP:
104             module->psz_help = (char *)value;
105             break;
106
107         case VLC_MODULE_CAPABILITY:
108             module->psz_capability = (char *)value;
109             break;
110
111         case VLC_MODULE_SCORE:
112             module->i_score = (intptr_t)value;
113             break;
114
115         case VLC_MODULE_PROGRAM:
116             module->psz_program = (char *)value;
117             break;
118
119         case VLC_MODULE_CB_OPEN:
120             module->pf_activate = (int (*) (vlc_object_t *))value;
121             break;
122
123         case VLC_MODULE_CB_CLOSE:
124             module->pf_deactivate = (void (*) (vlc_object_t *))value;
125             break;
126
127         case VLC_MODULE_UNLOADABLE:
128             module->b_unloadable = (value != NULL);
129             break;
130
131         case VLC_MODULE_NAME:
132             module->pp_shortcuts[0] = module->psz_object_name = (char *)value;
133             if (module->psz_longname == default_name)
134                 module->psz_longname = (char *)value;
135             break;
136
137         default:
138             msg_Err (module, "unknown module property %d", propid);
139             msg_Err (module, "LibVLC might be too old to use this module.");
140             return VLC_EGENERIC;
141     }
142     return 0;
143 }