1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Functions to keep a listing of all modules in the system. Has its
* own file mostly for abstraction reasons, but is pretty simple
* otherwise.
*
* Authors:
* Ted Gould <ted@gould.cx>
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 2002-2004 Authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "db.h"
#include "effect.h"
#include "implementation/script.h"
#include "input.h"
#include "output.h"
#include "template.h"
/* Globals */
/* Namespaces */
namespace Inkscape {
namespace Extension {
/** This is the actual database object. There is only one of these */
DB db;
/* Types */
DB::DB (void) = default;
struct ModuleGenericCmp
{
bool operator()(Extension *module1, Extension *module2) const
{
int n1 = module1->get_sort_priority();
int n2 = module2->get_sort_priority();
if (n1 != n2)
return (n1 < n2);
return (strcmp(module1->get_name(), module2->get_name()) <= 0);
}
};
struct ModuleInputCmp {
bool operator()(Input* module1, Input* module2) const {
int n1 = module1->get_sort_priority();
int n2 = module2->get_sort_priority();
// Treat zero as not-defined for purpose of comparison.
if (n1 || n2)
return n1 && n2 ? (n1 < n2) : !n2;
return (strcmp(module1->get_filetypename(), module2->get_filetypename()) <= 0);
}
};
struct ModuleOutputCmp {
bool operator()(Output* module1, Output* module2) const {
int n1 = module1->get_sort_priority();
int n2 = module2->get_sort_priority();
// Treat zero as not-defined for purpose of comparison.
if (n1 || n2)
return n1 && n2 ? (n1 < n2) : !n2;
// special case: two extensions for the same file type. I only one of them is a script, prefer the other one
if (Glib::ustring(module1->get_extension()).lowercase() == Glib::ustring(module2->get_extension()).lowercase()) {
bool module1_is_script = dynamic_cast<Inkscape::Extension::Implementation::Script *>(module1->get_imp());
bool module2_is_script = dynamic_cast<Inkscape::Extension::Implementation::Script *>(module2->get_imp());
if (module1_is_script != module2_is_script) {
return module1_is_script ? false : true;
}
}
return (strcmp(module1->get_filetypename(), module2->get_filetypename()) <= 0);
}
};
/**
\brief Add a module to the module database
\param module The module to be registered.
*/
void
DB::register_ext (Extension *module)
{
g_return_if_fail(module != nullptr);
g_return_if_fail(module->get_id() != nullptr);
//printf("Registering: '%s' '%s' add:%d\n", module->get_id(), module->get_name(), add_to_list);
// only add to list if it's a never-before-seen module
auto iter = moduledict.find(module->get_id());
if (iter != moduledict.end()) {
Extension *previous = iter->second;
unregister_ext(previous);
delete previous;
}
moduledict[module->get_id()] = module;
modulelist.push_back( module );
}
/**
\brief This function removes a module from the database
\param module The module to be removed.
*/
void
DB::unregister_ext (Extension * module)
{
g_return_if_fail(module != nullptr);
g_return_if_fail(module->get_id() != nullptr);
// printf("Extension DB: removing %s\n", module->get_id());
// only remove if it's not there any more
auto iter = moduledict.find(module->get_id());
if (iter != moduledict.end() && module == iter->second) {
moduledict.erase(iter);
modulelist.remove(module);
}
}
/**
\return A reference to the Inkscape::Extension::Extension specified by the input key.
\brief This function looks up a Inkscape::Extension::Extension by using its unique
id. It then returns a reference to that module.
\param key The unique ID of the module
Retrieves a module by name; if non-NULL, it refs the returned
module; the caller is responsible for releasing that reference
when it is no longer needed.
*/
Extension *
DB::get (const gchar *key) const
{
if (key == nullptr) return nullptr;
auto it = moduledict.find(key);
if (it == moduledict.end())
return nullptr;
Extension *mod = it->second;
assert(mod);
if ( !mod || mod->deactivated() )
return nullptr;
return mod;
}
/**
\return none
\brief A function to execute another function with every entry
in the database as a parameter.
\param in_func The function to execute for every module
\param in_data A data pointer that is also passed to in_func
Enumerates the modules currently in the database, calling a given
callback for each one.
*/
void
DB::foreach (void (*in_func)(Extension * in_plug, gpointer in_data), gpointer in_data)
{
std::list <Extension *>::iterator cur;
for (cur = modulelist.begin(); cur != modulelist.end(); ++cur) {
// printf("foreach: %s\n", (*cur)->get_id());
in_func((*cur), in_data);
}
}
/**
* @return none
* @brief The function to look at each module and see if it is
a template module, then add it to the list.
* @param in_plug - Module to be examined
* @param data - The list to be attached to
*/
void DB::template_internal(Extension *in_plug, gpointer data)
{
if (auto tmod = dynamic_cast<Template *>(in_plug)) {
auto tlist = reinterpret_cast<TemplateList *>(data);
tlist->push_back(tmod);
}
}
/**
\return none
\brief The function to look at each module and see if it is
an input module, then add it to the list.
\param in_plug Module to be examined
\param data The list to be attached to
The first thing that is checked is if this module is an input
module. If it is, then it is added to the list which is passed
in through \c data.
*/
void
DB::input_internal (Extension * in_plug, gpointer data)
{
if (auto imod = dynamic_cast<Input *>(in_plug)) {
auto ilist = reinterpret_cast<InputList *>(data);
ilist->push_back(imod);
}
}
/**
\return none
\brief The function to look at each module and see if it is
an output module, then add it to the list.
\param in_plug Module to be examined
\param data The list to be attached to
The first thing that is checked is if this module is an output
module. If it is, then it is added to the list which is passed
in through \c data.
*/
void
DB::output_internal (Extension * in_plug, gpointer data)
{
if (dynamic_cast<Output *>(in_plug)) {
OutputList * olist;
Output * omod;
omod = dynamic_cast<Output *>(in_plug);
olist = reinterpret_cast<OutputList *>(data);
olist->push_back(omod);
// printf("Added to output list: %s\n", omod->get_id());
}
return;
}
/**
\return none
\brief The function to look at each module and see if it is
an effect module, then add it to the list.
\param in_plug Module to be examined
\param data The list to be attached to
The first thing that is checked is if this module is an effect
module. If it is, then it is added to the list which is passed
in through \c data.
*/
void
DB::effect_internal (Extension * in_plug, gpointer data)
{
if (dynamic_cast<Effect *>(in_plug)) {
EffectList * elist;
Effect * emod;
emod = dynamic_cast<Effect *>(in_plug);
elist = reinterpret_cast<EffectList *>(data);
elist->push_back(emod);
// printf("Added to effect list: %s\n", emod->get_id());
}
return;
}
/**
* Create a list of all the Template extensions
* @param ou_list - The list that is used to put all the extensions in
*
* Calls the database \c foreach function with \c template_internal.
*/
DB::TemplateList &DB::get_template_list(DB::TemplateList &ou_list)
{
foreach (template_internal, (gpointer)&ou_list);
ou_list.sort(ModuleGenericCmp());
return ou_list;
}
/**
\brief Creates a list of all the Input extensions
\param ou_list The list that is used to put all the extensions in
Calls the database \c foreach function with \c input_internal.
*/
DB::InputList &
DB::get_input_list (DB::InputList &ou_list)
{
foreach(input_internal, (gpointer)&ou_list);
ou_list.sort( ModuleInputCmp() );
return ou_list;
}
/**
\brief Creates a list of all the Output extensions
\param ou_list The list that is used to put all the extensions in
Calls the database \c foreach function with \c output_internal.
*/
DB::OutputList &
DB::get_output_list (DB::OutputList &ou_list)
{
foreach(output_internal, (gpointer)&ou_list);
ou_list.sort( ModuleOutputCmp() );
return ou_list;
}
/**
\brief Creates a list of all the Effect extensions
\param ou_list The list that is used to put all the extensions in
Calls the database \c foreach function with \c effect_internal.
*/
DB::EffectList &
DB::get_effect_list (DB::EffectList &ou_list)
{
foreach(effect_internal, (gpointer)&ou_list);
return ou_list;
}
} } /* namespace Extension, Inkscape */
|