forked from Sneeds-Feed-and-Seed/sneedacity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModuleManager.cpp
executable file
·586 lines (490 loc) · 16.4 KB
/
ModuleManager.cpp
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
/**********************************************************************
Sneedacity: A Digital Audio Editor
ModuleManager.cpp
Dominic Mazzoni
James Crook
*******************************************************************//*!
\file ModuleManager.cpp
\brief Based on LoadLadspa, this code loads pluggable Sneedacity
extension modules. It also has the code to
invoke a function returning a replacement window,
i.e. an alternative to the usual interface, for Sneedacity.
*//*******************************************************************/
#include "ModuleManager.h"
#include "sneedacity/ModuleInterface.h"
#include <wx/dynlib.h>
#include <wx/log.h>
#include <wx/string.h>
#include <wx/filename.h>
#include "FileNames.h"
#include "MemoryX.h"
#include "PluginManager.h"
#include "sneedacity/PluginInterface.h"
#ifdef EXPERIMENTAL_MODULE_PREFS
#include "Prefs.h"
#include "ModuleSettings.h"
#endif
#include "widgets/MultiDialog.h"
#include "widgets/SneedacityMessageBox.h"
#define initFnName "ExtensionModuleInit"
#define versionFnName "GetVersionString"
//typedef wxString (*tVersionFn)();
typedef wxChar * (*tVersionFn)();
Module::Module(const FilePath & name)
: mName{ name }
{
mLib = std::make_unique<wxDynamicLibrary>();
mDispatch = NULL;
}
Module::~Module()
{
}
void Module::ShowLoadFailureError(const wxString &Error)
{
auto ShortName = wxFileName(mName).GetName();
SneedacityMessageBox(XO("Unable to load the \"%s\" module.\n\nError: %s").Format(ShortName, Error),
XO("Module Unsuitable"));
wxLogMessage(wxT("Unable to load the module \"%s\". Error: %s"), mName, Error);
}
bool Module::Load(wxString &deferredErrorMessage)
{
deferredErrorMessage.clear();
// Will this ever happen???
if (mLib->IsLoaded()) {
if (mDispatch) {
return true;
}
// Any messages should have already been generated the first time it was loaded.
return false;
}
auto ShortName = wxFileName(mName).GetName();
if (!mLib->Load(mName, wxDL_NOW | wxDL_QUIET | wxDL_GLOBAL)) {
// For this failure path, only, there is a possiblity of retrial
// after some other dependency of this module is loaded. So the
// error is not immediately reported.
deferredErrorMessage = wxString(wxSysErrorMsg());
return false;
}
// Check version string matches. (For now, they must match exactly)
tVersionFn versionFn = (tVersionFn)(mLib->GetSymbol(wxT(versionFnName)));
if (versionFn == NULL){
SneedacityMessageBox(
XO("The module \"%s\" does not provide a version string.\n\nIt will not be loaded.")
.Format( ShortName),
XO("Module Unsuitable"));
wxLogMessage(wxT("The module \"%s\" does not provide a version string. It will not be loaded."), mName);
mLib->Unload();
return false;
}
wxString moduleVersion = versionFn();
if( moduleVersion != SNEEDACITY_VERSION_STRING) {
SneedacityMessageBox(
XO("The module \"%s\" is matched with Sneedacity version \"%s\".\n\nIt will not be loaded.")
.Format(ShortName, moduleVersion),
XO("Module Unsuitable"));
wxLogMessage(wxT("The module \"%s\" is matched with Sneedacity version \"%s\". It will not be loaded."), mName, moduleVersion);
mLib->Unload();
return false;
}
mDispatch = (fnModuleDispatch) mLib->GetSymbol(wxT(ModuleDispatchName));
if (!mDispatch) {
// Module does not provide a dispatch function.
return true;
}
// However if we do have it and it does not work,
// then the module is bad.
bool res = ((mDispatch(ModuleInitialize))!=0);
if (res) {
return true;
}
mDispatch = NULL;
SneedacityMessageBox(
XO("The module \"%s\" failed to initialize.\n\nIt will not be loaded.").Format(ShortName),
XO("Module Unsuitable"));
wxLogMessage(wxT("The module \"%s\" failed to initialize.\nIt will not be loaded."), mName);
mLib->Unload();
return false;
}
// This isn't yet used?
void Module::Unload()
{
if (mLib->IsLoaded()) {
if (mDispatch)
mDispatch(ModuleTerminate);
}
mLib->Unload();
}
int Module::Dispatch(ModuleDispatchTypes type)
{
if (mLib->IsLoaded())
if( mDispatch != NULL )
return mDispatch(type);
return 0;
}
void * Module::GetSymbol(const wxString &name)
{
return mLib->GetSymbol(name);
}
// ============================================================================
//
// ModuleManager
//
// ============================================================================
// The one and only ModuleManager
std::unique_ptr<ModuleManager> ModuleManager::mInstance{};
// Provide builtin modules a means to identify themselves
using BuiltinModuleList = std::vector<ModuleMain>;
namespace {
BuiltinModuleList &builtinModuleList()
{
static BuiltinModuleList theList;
return theList;
}
}
void RegisterProvider(ModuleMain moduleMain)
{
auto &list = builtinModuleList();
if ( moduleMain )
list.push_back(moduleMain);
return;
}
void UnregisterProvider(ModuleMain moduleMain)
{
auto &list = builtinModuleList();
auto end = list.end(), iter = std::find(list.begin(), end, moduleMain);
if (iter != end)
list.erase(iter);
}
// ----------------------------------------------------------------------------
// Creation/Destruction
// ----------------------------------------------------------------------------
ModuleManager::ModuleManager()
{
}
ModuleManager::~ModuleManager()
{
mDynModules.clear();
builtinModuleList().clear();
}
// static
void ModuleManager::FindModules(FilePaths &files)
{
const auto &sneedacityPathList = FileNames::SneedacityPathList();
FilePaths pathList;
wxString pathVar;
// Code from LoadLadspa that might be useful in load modules.
pathVar = wxGetenv(wxT("SNEEDACITY_MODULES_PATH"));
if (!pathVar.empty())
FileNames::AddMultiPathsToPathList(pathVar, pathList);
for (const auto &path : sneedacityPathList) {
wxString prefix = path + wxFILE_SEP_PATH;
FileNames::AddUniquePathToPathList(prefix + wxT("modules"),
pathList);
if (files.size()) {
break;
}
}
#if defined(__WXMSW__)
FileNames::FindFilesInPathList(wxT("*.dll"), pathList, files);
#else
FileNames::FindFilesInPathList(wxT("*.so"), pathList, files);
#endif
}
void ModuleManager::TryLoadModules(
const FilePaths &files, FilePaths &decided, DelayedErrors &errors)
{
FilePaths checked;
wxString saveOldCWD = ::wxGetCwd();
auto cleanup = finally([&]{ ::wxSetWorkingDirectory(saveOldCWD); });
for (const auto &file : files) {
// As a courtesy to some modules that might be bridges to
// open other modules, we set the current working
// directory to be the module's directory.
auto prefix = ::wxPathOnly(file);
::wxSetWorkingDirectory(prefix);
// Only process the first module encountered in the
// defined search sequence.
wxString ShortName = wxFileName( file ).GetName();
if( checked.Index( ShortName, false ) != wxNOT_FOUND )
continue;
checked.Add( ShortName );
// Skip if a previous pass through this function decided it already
if( decided.Index( ShortName, false ) != wxNOT_FOUND )
continue;
#ifdef EXPERIMENTAL_MODULE_PREFS
int iModuleStatus = ModuleSettings::GetModuleStatus( file );
if( iModuleStatus == kModuleDisabled )
continue;
if( iModuleStatus == kModuleFailed )
continue;
// New module? You have to go and explicitly enable it.
if( iModuleStatus == kModuleNew ){
// To ensure it is noted in config file and so
// appears on modules page.
ModuleSettings::SetModuleStatus( file, kModuleNew);
continue;
}
if( iModuleStatus == kModuleAsk )
#endif
// JKC: I don't like prompting for the plug-ins individually
// I think it would be better to show the module prefs page,
// and let the user decide for each one.
{
auto msg = XO("Module \"%s\" found.").Format( ShortName );
msg += XO("\n\nOnly use modules from trusted sources");
const TranslatableStrings buttons{
XO("Yes"), XO("No"),
}; // could add a button here for 'yes and remember that', and put it into the cfg file. Needs more thought.
int action;
action = ShowMultiDialog(msg, XO("Sneedacity Module Loader"),
buttons,
"",
XO("Try and load this module?"),
false);
#ifdef EXPERIMENTAL_MODULE_PREFS
// If we're not prompting always, accept the answer permanently
if( iModuleStatus == kModuleNew ){
iModuleStatus = (action==1)?kModuleDisabled : kModuleEnabled;
ModuleSettings::SetModuleStatus( file, iModuleStatus );
}
#endif
if(action == 1){ // "No"
decided.Add( ShortName );
continue;
}
}
#ifdef EXPERIMENTAL_MODULE_PREFS
// Before attempting to load, we set the state to bad.
// That way, if we crash, we won't try again.
ModuleSettings::SetModuleStatus( file, kModuleFailed );
#endif
wxString Error;
auto umodule = std::make_unique<Module>(file);
if (umodule->Load(Error)) // it will get rejected if there are version problems
{
decided.Add( ShortName );
auto module = umodule.get();
if (!module->HasDispatch())
{
auto ShortName = wxFileName(file).GetName();
SneedacityMessageBox(
XO("The module \"%s\" does not provide any of the required functions.\n\nIt will not be loaded.").Format(ShortName),
XO("Module Unsuitable"));
wxLogMessage(wxT("The module \"%s\" does not provide any of the required functions. It will not be loaded."), file);
module->Unload();
}
else
{
Get().mModules.push_back(std::move(umodule));
#ifdef EXPERIMENTAL_MODULE_PREFS
// Loaded successfully, restore the status.
ModuleSettings::SetModuleStatus(file, iModuleStatus);
#endif
}
}
else if (!Error.empty()) {
// Module is not yet decided in this pass.
// Maybe it depends on another which has not yet been loaded.
// But don't take the kModuleAsk path again in a later pass.
ModuleSettings::SetModuleStatus( file, kModuleEnabled );
errors.emplace_back( std::move( umodule ), Error );
}
}
}
// static
void ModuleManager::Initialize()
{
FilePaths files;
FindModules(files);
FilePaths decided;
DelayedErrors errors;
size_t numDecided = 0;
// Multiple passes give modules multiple chances to load in case they
// depend on some other module not yet loaded
do {
numDecided = decided.size();
errors.clear();
TryLoadModules(files, decided, errors);
}
while ( errors.size() && numDecided < decided.size() );
// Only now show accumulated errors of modules that failed to load
for ( const auto &pair : errors ) {
auto &pModule = pair.first;
pModule->ShowLoadFailureError(pair.second);
ModuleSettings::SetModuleStatus( pModule->GetName(), kModuleFailed );
}
}
// static
int ModuleManager::Dispatch(ModuleDispatchTypes type)
{
for (const auto &module: mModules) {
module->Dispatch(type);
}
return 0;
}
// ============================================================================
//
// Return reference to singleton
//
// (Thread-safe...no active threading during construction or after destruction)
// ============================================================================
ModuleManager & ModuleManager::Get()
{
if (!mInstance)
{
mInstance.reset(safenew ModuleManager);
}
return *mInstance;
}
wxString ModuleManager::GetPluginTypeString()
{
return L"Module";
}
PluginID ModuleManager::GetID(ModuleInterface *module)
{
return wxString::Format(wxT("%s_%s_%s_%s_%s"),
GetPluginTypeString(),
wxEmptyString,
module->GetVendor().Internal(),
module->GetSymbol().Internal(),
module->GetPath());
}
bool ModuleManager::DiscoverProviders()
{
InitializeBuiltins();
// The commented out code loads modules whether or not they are enabled.
// none of our modules is a 'provider' of effects, so this code commented out.
#if 0
FilePaths provList;
FilePaths pathList;
// Code from LoadLadspa that might be useful in load modules.
wxString pathVar = wxString::FromUTF8(getenv("SNEEDACITY_MODULES_PATH"));
if (!pathVar.empty())
{
FileNames::AddMultiPathsToPathList(pathVar, pathList);
}
else
{
FileNames::AddUniquePathToPathList(FileNames::ModulesDir(), pathList);
}
#if defined(__WXMSW__)
FileNames::FindFilesInPathList(wxT("*.dll"), pathList, provList);
#elif defined(__WXMAC__)
FileNames::FindFilesInPathList(wxT("*.dylib"), pathList, provList);
#else
FileNames::FindFilesInPathList(wxT("*.so"), pathList, provList);
#endif
PluginManager & pm = PluginManager::Get();
for (int i = 0, cnt = provList.size(); i < cnt; i++)
{
ModuleInterface *module = LoadModule(provList[i]);
if (module)
{
// Register the provider
pm.RegisterPlugin(module);
// Now, allow the module to auto-register children
module->AutoRegisterPlugins(pm);
}
}
#endif
return true;
}
void ModuleManager::InitializeBuiltins()
{
PluginManager & pm = PluginManager::Get();
for (auto moduleMain : builtinModuleList())
{
ModuleInterfaceHandle module {
moduleMain(), ModuleInterfaceDeleter{}
};
if (module && module->Initialize())
{
// Register the provider
ModuleInterface *pInterface = module.get();
const PluginID & id = pm.RegisterPlugin(pInterface);
// Need to remember it
mDynModules[id] = std::move(module);
// Allow the module to auto-register children
pInterface->AutoRegisterPlugins(pm);
}
else
{
// Don't leak! Destructor of module does that.
}
}
}
void ModuleInterfaceDeleter::operator() (ModuleInterface *pInterface) const
{
if (pInterface)
{
pInterface->Terminate();
std::unique_ptr < ModuleInterface > { pInterface }; // DELETE it
}
}
PluginPaths ModuleManager::FindPluginsForProvider(const PluginID & providerID,
const PluginPath & path)
{
// Instantiate if it hasn't already been done
if (mDynModules.find(providerID) == mDynModules.end())
{
// If it couldn't be created, just give up and return an empty list
if (!CreateProviderInstance(providerID, path))
{
return {};
}
}
return mDynModules[providerID]->FindPluginPaths(PluginManager::Get());
}
bool ModuleManager::RegisterEffectPlugin(const PluginID & providerID, const PluginPath & path, TranslatableString &errMsg)
{
errMsg = {};
if (mDynModules.find(providerID) == mDynModules.end())
{
return false;
}
auto nFound = mDynModules[providerID]->DiscoverPluginsAtPath(path, errMsg, PluginManagerInterface::DefaultRegistrationCallback);
return nFound > 0;
}
ModuleInterface *ModuleManager::CreateProviderInstance(const PluginID & providerID,
const PluginPath & path)
{
if (path.empty() && mDynModules.find(providerID) != mDynModules.end())
{
return mDynModules[providerID].get();
}
return nullptr;
}
std::unique_ptr<ComponentInterface> ModuleManager::CreateInstance(
const PluginID & providerID, const PluginPath & path)
{
if (auto iter = mDynModules.find(providerID);
iter == mDynModules.end())
return nullptr;
else
return iter->second->CreateInstance(path);
}
bool ModuleManager::IsProviderValid(const PluginID & WXUNUSED(providerID),
const PluginPath & path)
{
// Builtin modules do not have a path
if (path.empty())
{
return true;
}
wxFileName lib(path);
if (lib.FileExists() || lib.DirExists())
{
return true;
}
return false;
}
bool ModuleManager::IsPluginValid(const PluginID & providerID,
const PluginPath & path,
bool bFast)
{
if (mDynModules.find(providerID) == mDynModules.end())
{
return false;
}
return mDynModules[providerID]->IsPluginValid(path, bFast);
}