2002-05-09 16:26:56 +02:00
|
|
|
/*
|
|
|
|
* plugin.c: The VDR plugin interface
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2020-12-16 11:54:06 +01:00
|
|
|
* $Id: plugin.c 4.4 2020/12/16 11:54:06 kls Exp $
|
2002-05-09 16:26:56 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "plugin.h"
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <dlfcn.h>
|
2002-08-11 10:47:11 +02:00
|
|
|
#include <stdlib.h>
|
2002-05-12 10:20:17 +02:00
|
|
|
#include <time.h>
|
2002-05-09 16:26:56 +02:00
|
|
|
#include "config.h"
|
2006-04-15 11:18:36 +02:00
|
|
|
#include "interface.h"
|
2006-08-13 08:58:50 +02:00
|
|
|
#include "thread.h"
|
2002-05-09 16:26:56 +02:00
|
|
|
|
|
|
|
#define LIBVDR_PREFIX "libvdr-"
|
|
|
|
#define SO_INDICATOR ".so."
|
|
|
|
|
|
|
|
#define MAXPLUGINARGS 1024
|
2002-05-12 10:20:17 +02:00
|
|
|
#define HOUSEKEEPINGDELTA 10 // seconds
|
2002-05-09 16:26:56 +02:00
|
|
|
|
|
|
|
// --- cPlugin ---------------------------------------------------------------
|
|
|
|
|
2012-09-01 14:03:45 +02:00
|
|
|
cString cPlugin::configDirectory;
|
|
|
|
cString cPlugin::cacheDirectory;
|
|
|
|
cString cPlugin::resourceDirectory;
|
2002-05-13 16:11:19 +02:00
|
|
|
|
2006-01-08 11:44:37 +01:00
|
|
|
cPlugin::cPlugin(void)
|
2002-05-09 16:26:56 +02:00
|
|
|
{
|
|
|
|
name = NULL;
|
2005-01-30 14:23:01 +01:00
|
|
|
started = false;
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cPlugin::~cPlugin()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void cPlugin::SetName(const char *s)
|
|
|
|
{
|
|
|
|
name = s;
|
2007-08-11 12:39:06 +02:00
|
|
|
I18nRegister(name);
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *cPlugin::CommandLineHelp(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cPlugin::ProcessArgs(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-05-09 15:27:46 +02:00
|
|
|
bool cPlugin::Initialize(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-05-12 09:24:45 +02:00
|
|
|
bool cPlugin::Start(void)
|
2002-05-09 16:26:56 +02:00
|
|
|
{
|
2002-05-12 09:24:45 +02:00
|
|
|
return true;
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|
|
|
|
|
2005-01-30 14:23:01 +01:00
|
|
|
void cPlugin::Stop(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-05-12 10:20:17 +02:00
|
|
|
void cPlugin::Housekeeping(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-04-17 10:02:18 +02:00
|
|
|
void cPlugin::MainThreadHook(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-04-15 11:18:36 +02:00
|
|
|
cString cPlugin::Active(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-02-25 10:56:29 +01:00
|
|
|
time_t cPlugin::WakeupTime(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-05-09 16:26:56 +02:00
|
|
|
const char *cPlugin::MainMenuEntry(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-11-24 10:45:39 +01:00
|
|
|
cOsdObject *cPlugin::MainMenuAction(void)
|
2002-05-09 16:26:56 +02:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cMenuSetupPage *cPlugin::SetupMenu(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cPlugin::SetupParse(const char *Name, const char *Value)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cPlugin::SetupStore(const char *Name, const char *Value)
|
|
|
|
{
|
|
|
|
Setup.Store(Name, Value, this->Name());
|
|
|
|
}
|
|
|
|
|
|
|
|
void cPlugin::SetupStore(const char *Name, int Value)
|
|
|
|
{
|
|
|
|
Setup.Store(Name, Value, this->Name());
|
|
|
|
}
|
|
|
|
|
2005-08-21 10:44:29 +02:00
|
|
|
bool cPlugin::Service(const char *Id, void *Data)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-08-27 16:42:28 +02:00
|
|
|
const char **cPlugin::SVDRPHelpPages(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cString cPlugin::SVDRPCommand(const char *Command, const char *Option, int &ReplyCode)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-05-13 16:11:19 +02:00
|
|
|
void cPlugin::SetConfigDirectory(const char *Dir)
|
|
|
|
{
|
2012-09-01 14:03:45 +02:00
|
|
|
configDirectory = Dir;
|
2002-05-13 16:11:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *cPlugin::ConfigDirectory(const char *PluginName)
|
|
|
|
{
|
2008-02-15 14:57:48 +01:00
|
|
|
static cString buffer;
|
2006-08-13 08:58:50 +02:00
|
|
|
if (!cThread::IsMainThread())
|
|
|
|
esyslog("ERROR: plugin '%s' called cPlugin::ConfigDirectory(), which is not thread safe!", PluginName ? PluginName : "<no name given>");
|
2012-09-01 14:03:45 +02:00
|
|
|
buffer = cString::sprintf("%s/plugins%s%s", *configDirectory, PluginName ? "/" : "", PluginName ? PluginName : "");
|
|
|
|
return MakeDirs(buffer, true) ? *buffer : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cPlugin::SetCacheDirectory(const char *Dir)
|
|
|
|
{
|
|
|
|
cacheDirectory = Dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *cPlugin::CacheDirectory(const char *PluginName)
|
|
|
|
{
|
|
|
|
static cString buffer;
|
|
|
|
if (!cThread::IsMainThread())
|
|
|
|
esyslog("ERROR: plugin '%s' called cPlugin::CacheDirectory(), which is not thread safe!", PluginName ? PluginName : "<no name given>");
|
|
|
|
buffer = cString::sprintf("%s/plugins%s%s", *cacheDirectory, PluginName ? "/" : "", PluginName ? PluginName : "");
|
|
|
|
return MakeDirs(buffer, true) ? *buffer : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cPlugin::SetResourceDirectory(const char *Dir)
|
|
|
|
{
|
|
|
|
resourceDirectory = Dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *cPlugin::ResourceDirectory(const char *PluginName)
|
|
|
|
{
|
|
|
|
static cString buffer;
|
|
|
|
if (!cThread::IsMainThread())
|
|
|
|
esyslog("ERROR: plugin '%s' called cPlugin::ResourceDirectory(), which is not thread safe!", PluginName ? PluginName : "<no name given>");
|
|
|
|
buffer = cString::sprintf("%s/plugins%s%s", *resourceDirectory, PluginName ? "/" : "", PluginName ? PluginName : "");
|
2008-02-17 13:47:12 +01:00
|
|
|
return MakeDirs(buffer, true) ? *buffer : NULL;
|
2002-05-13 16:11:19 +02:00
|
|
|
}
|
|
|
|
|
2002-05-09 16:26:56 +02:00
|
|
|
// --- cDll ------------------------------------------------------------------
|
|
|
|
|
|
|
|
cDll::cDll(const char *FileName, const char *Args)
|
|
|
|
{
|
|
|
|
fileName = strdup(FileName);
|
|
|
|
args = Args ? strdup(Args) : NULL;
|
|
|
|
handle = NULL;
|
|
|
|
plugin = NULL;
|
2020-06-29 09:29:06 +02:00
|
|
|
destroy = NULL;
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cDll::~cDll()
|
|
|
|
{
|
2020-06-29 09:29:06 +02:00
|
|
|
if (destroy)
|
|
|
|
destroy(plugin);
|
|
|
|
else
|
|
|
|
delete plugin; // silently fall back for plugins compiled with VDR version <= 2.4.3
|
2002-05-09 16:26:56 +02:00
|
|
|
if (handle)
|
|
|
|
dlclose(handle);
|
2002-08-11 13:32:23 +02:00
|
|
|
free(args);
|
|
|
|
free(fileName);
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *SkipQuote(char *s)
|
|
|
|
{
|
|
|
|
char c = *s;
|
2010-01-06 11:41:14 +01:00
|
|
|
memmove(s, s + 1, strlen(s));
|
2002-05-09 16:26:56 +02:00
|
|
|
while (*s && *s != c) {
|
|
|
|
if (*s == '\\')
|
2010-01-06 11:41:14 +01:00
|
|
|
memmove(s, s + 1, strlen(s));
|
2002-05-09 16:26:56 +02:00
|
|
|
if (*s)
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
if (*s) {
|
2010-01-06 11:41:14 +01:00
|
|
|
memmove(s, s + 1, strlen(s));
|
2002-05-09 16:26:56 +02:00
|
|
|
return s;
|
|
|
|
}
|
2002-05-13 16:35:49 +02:00
|
|
|
esyslog("ERROR: missing closing %c", c);
|
2002-05-09 16:26:56 +02:00
|
|
|
fprintf(stderr, "vdr: missing closing %c\n", c);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cDll::Load(bool Log)
|
|
|
|
{
|
|
|
|
if (Log)
|
2002-05-13 16:35:49 +02:00
|
|
|
isyslog("loading plugin: %s", fileName);
|
2002-05-09 16:26:56 +02:00
|
|
|
if (handle) {
|
2002-05-13 16:35:49 +02:00
|
|
|
esyslog("attempt to load plugin '%s' twice!", fileName);
|
2002-05-09 16:26:56 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
handle = dlopen(fileName, RTLD_NOW);
|
|
|
|
const char *error = dlerror();
|
|
|
|
if (!error) {
|
2020-06-29 09:29:06 +02:00
|
|
|
typedef cPlugin *create_t(void);
|
|
|
|
create_t *create = (create_t *)dlsym(handle, "VDRPluginCreator");
|
2020-12-13 10:56:36 +01:00
|
|
|
error = dlerror();
|
|
|
|
if (!error && create) {
|
2020-06-29 09:29:06 +02:00
|
|
|
plugin = create();
|
2020-12-13 10:56:36 +01:00
|
|
|
destroy = (destroy_t *)dlsym(handle, "VDRPluginDestroyer");
|
|
|
|
error = dlerror();
|
2020-12-16 11:54:06 +01:00
|
|
|
if (error) {
|
|
|
|
error = NULL;
|
|
|
|
isyslog("plugin %s: missing symbol VDRPluginDestroyer(), please rebuild", fileName);
|
|
|
|
}
|
2020-12-13 10:56:36 +01:00
|
|
|
}
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|
|
|
|
if (!error) {
|
|
|
|
if (plugin && args) {
|
|
|
|
int argc = 0;
|
|
|
|
char *argv[MAXPLUGINARGS];
|
2003-08-30 14:52:58 +02:00
|
|
|
char *p = skipspace(stripspace(args));
|
2002-05-09 16:26:56 +02:00
|
|
|
char *q = NULL;
|
|
|
|
bool done = false;
|
|
|
|
while (!done) {
|
|
|
|
if (!q)
|
|
|
|
q = p;
|
|
|
|
switch (*p) {
|
2010-01-06 11:41:14 +01:00
|
|
|
case '\\': memmove(p, p + 1, strlen(p));
|
2002-05-09 16:26:56 +02:00
|
|
|
if (*p)
|
|
|
|
p++;
|
|
|
|
else {
|
2002-05-13 16:35:49 +02:00
|
|
|
esyslog("ERROR: missing character after \\");
|
2002-05-09 16:26:56 +02:00
|
|
|
fprintf(stderr, "vdr: missing character after \\\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '"':
|
|
|
|
case '\'': if ((p = SkipQuote(p)) == NULL)
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
default: if (!*p || isspace(*p)) {
|
|
|
|
done = !*p;
|
|
|
|
*p = 0;
|
|
|
|
if (q) {
|
|
|
|
if (argc < MAXPLUGINARGS - 1)
|
|
|
|
argv[argc++] = q;
|
|
|
|
else {
|
2002-05-13 16:35:49 +02:00
|
|
|
esyslog("ERROR: plugin argument list too long");
|
2002-05-09 16:26:56 +02:00
|
|
|
fprintf(stderr, "vdr: plugin argument list too long\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
q = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!done)
|
2003-08-30 14:52:58 +02:00
|
|
|
p = *p ? p + 1 : skipspace(p + 1);
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
argv[argc] = NULL;
|
|
|
|
if (argc)
|
|
|
|
plugin->SetName(argv[0]);
|
|
|
|
optind = 0; // to reset the getopt() data
|
2006-04-09 14:21:30 +02:00
|
|
|
return !Log || !argc || plugin->ProcessArgs(argc, argv);
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2002-05-13 16:35:49 +02:00
|
|
|
esyslog("ERROR: %s", error);
|
2002-05-09 16:26:56 +02:00
|
|
|
fprintf(stderr, "vdr: %s\n", error);
|
|
|
|
}
|
|
|
|
return !error && plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cPluginManager --------------------------------------------------------
|
|
|
|
|
|
|
|
cPluginManager *cPluginManager::pluginManager = NULL;
|
|
|
|
|
|
|
|
cPluginManager::cPluginManager(const char *Directory)
|
|
|
|
{
|
|
|
|
directory = NULL;
|
2002-05-12 10:20:17 +02:00
|
|
|
lastHousekeeping = time(NULL);
|
|
|
|
nextHousekeeping = -1;
|
2002-05-09 16:26:56 +02:00
|
|
|
if (pluginManager) {
|
|
|
|
fprintf(stderr, "vdr: attempt to create more than one plugin manager - exiting!\n");
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
SetDirectory(Directory);
|
|
|
|
pluginManager = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
cPluginManager::~cPluginManager()
|
|
|
|
{
|
|
|
|
Shutdown();
|
2002-08-11 13:32:23 +02:00
|
|
|
free(directory);
|
2002-05-09 16:26:56 +02:00
|
|
|
if (pluginManager == this)
|
|
|
|
pluginManager = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cPluginManager::SetDirectory(const char *Directory)
|
|
|
|
{
|
2002-08-11 13:32:23 +02:00
|
|
|
free(directory);
|
2002-05-09 16:26:56 +02:00
|
|
|
directory = Directory ? strdup(Directory) : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cPluginManager::AddPlugin(const char *Args)
|
|
|
|
{
|
|
|
|
if (strcmp(Args, "*") == 0) {
|
2015-04-18 14:55:16 +02:00
|
|
|
cFileNameList Files(directory);
|
|
|
|
for (int i = 0; i < Files.Size(); i++) {
|
|
|
|
char *FileName = Files.At(i);
|
|
|
|
if (strstr(FileName, LIBVDR_PREFIX) == FileName) {
|
|
|
|
char *p = strstr(FileName, SO_INDICATOR);
|
|
|
|
if (p) {
|
|
|
|
*p = 0;
|
|
|
|
p += strlen(SO_INDICATOR);
|
|
|
|
if (strcmp(p, APIVERSION) == 0) {
|
|
|
|
char *name = FileName + strlen(LIBVDR_PREFIX);
|
|
|
|
if (strcmp(name, "*") != 0) { // let's not get into a loop!
|
|
|
|
AddPlugin(FileName + strlen(LIBVDR_PREFIX));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-05-09 16:26:56 +02:00
|
|
|
return;
|
|
|
|
}
|
2003-08-30 14:52:58 +02:00
|
|
|
char *s = strdup(skipspace(Args));
|
2002-05-09 16:26:56 +02:00
|
|
|
char *p = strchr(s, ' ');
|
|
|
|
if (p)
|
|
|
|
*p = 0;
|
2008-02-15 14:57:48 +01:00
|
|
|
dlls.Add(new cDll(cString::sprintf("%s/%s%s%s%s", directory, LIBVDR_PREFIX, s, SO_INDICATOR, APIVERSION), Args));
|
2002-08-11 13:32:23 +02:00
|
|
|
free(s);
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cPluginManager::LoadPlugins(bool Log)
|
|
|
|
{
|
|
|
|
for (cDll *dll = dlls.First(); dll; dll = dlls.Next(dll)) {
|
|
|
|
if (!dll->Load(Log))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-05-09 15:27:46 +02:00
|
|
|
bool cPluginManager::InitializePlugins(void)
|
|
|
|
{
|
|
|
|
for (cDll *dll = dlls.First(); dll; dll = dlls.Next(dll)) {
|
|
|
|
cPlugin *p = dll->Plugin();
|
|
|
|
if (p) {
|
|
|
|
isyslog("initializing plugin: %s (%s): %s", p->Name(), p->Version(), p->Description());
|
|
|
|
if (!p->Initialize())
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-05-12 09:24:45 +02:00
|
|
|
bool cPluginManager::StartPlugins(void)
|
2002-05-09 16:26:56 +02:00
|
|
|
{
|
|
|
|
for (cDll *dll = dlls.First(); dll; dll = dlls.Next(dll)) {
|
|
|
|
cPlugin *p = dll->Plugin();
|
|
|
|
if (p) {
|
2003-05-09 15:27:46 +02:00
|
|
|
isyslog("starting plugin: %s", p->Name());
|
2002-05-12 10:20:17 +02:00
|
|
|
if (!p->Start())
|
2002-05-12 09:24:45 +02:00
|
|
|
return false;
|
2005-01-30 14:23:01 +01:00
|
|
|
p->started = true;
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|
|
|
|
}
|
2002-05-12 09:24:45 +02:00
|
|
|
return true;
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|
|
|
|
|
2002-05-12 10:20:17 +02:00
|
|
|
void cPluginManager::Housekeeping(void)
|
|
|
|
{
|
|
|
|
if (time(NULL) - lastHousekeeping > HOUSEKEEPINGDELTA) {
|
|
|
|
if (++nextHousekeeping >= dlls.Count())
|
|
|
|
nextHousekeeping = 0;
|
|
|
|
cDll *dll = dlls.Get(nextHousekeeping);
|
|
|
|
if (dll) {
|
|
|
|
cPlugin *p = dll->Plugin();
|
|
|
|
if (p) {
|
|
|
|
p->Housekeeping();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lastHousekeeping = time(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-17 10:02:18 +02:00
|
|
|
void cPluginManager::MainThreadHook(void)
|
|
|
|
{
|
|
|
|
for (cDll *dll = pluginManager->dlls.First(); dll; dll = pluginManager->dlls.Next(dll)) {
|
|
|
|
cPlugin *p = dll->Plugin();
|
|
|
|
if (p)
|
|
|
|
p->MainThreadHook();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-15 11:18:36 +02:00
|
|
|
bool cPluginManager::Active(const char *Prompt)
|
|
|
|
{
|
|
|
|
if (pluginManager) {
|
|
|
|
for (cDll *dll = pluginManager->dlls.First(); dll; dll = pluginManager->dlls.Next(dll)) {
|
|
|
|
cPlugin *p = dll->Plugin();
|
|
|
|
if (p) {
|
|
|
|
cString s = p->Active();
|
|
|
|
if (!isempty(*s)) {
|
|
|
|
if (!Prompt || !Interface->Confirm(cString::sprintf("%s - %s", *s, Prompt)))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-02-25 10:56:29 +01:00
|
|
|
cPlugin *cPluginManager::GetNextWakeupPlugin(void)
|
|
|
|
{
|
|
|
|
cPlugin *NextPlugin = NULL;
|
|
|
|
if (pluginManager) {
|
|
|
|
time_t Now = time(NULL);
|
|
|
|
time_t Next = 0;
|
|
|
|
for (cDll *dll = pluginManager->dlls.First(); dll; dll = pluginManager->dlls.Next(dll)) {
|
|
|
|
cPlugin *p = dll->Plugin();
|
|
|
|
if (p) {
|
|
|
|
time_t t = p->WakeupTime();
|
|
|
|
if (t > Now && (!Next || t < Next)) {
|
|
|
|
Next = t;
|
|
|
|
NextPlugin = p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NextPlugin;
|
|
|
|
}
|
|
|
|
|
2002-05-09 16:26:56 +02:00
|
|
|
bool cPluginManager::HasPlugins(void)
|
|
|
|
{
|
|
|
|
return pluginManager && pluginManager->dlls.Count();
|
|
|
|
}
|
|
|
|
|
|
|
|
cPlugin *cPluginManager::GetPlugin(int Index)
|
|
|
|
{
|
|
|
|
cDll *dll = pluginManager ? pluginManager->dlls.Get(Index) : NULL;
|
|
|
|
return dll ? dll->Plugin() : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cPlugin *cPluginManager::GetPlugin(const char *Name)
|
|
|
|
{
|
2006-10-14 09:57:09 +02:00
|
|
|
if (pluginManager && Name) {
|
2002-05-09 16:26:56 +02:00
|
|
|
for (cDll *dll = pluginManager->dlls.First(); dll; dll = pluginManager->dlls.Next(dll)) {
|
|
|
|
cPlugin *p = dll->Plugin();
|
|
|
|
if (p && strcmp(p->Name(), Name) == 0)
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-08-21 10:44:29 +02:00
|
|
|
cPlugin *cPluginManager::CallFirstService(const char *Id, void *Data)
|
|
|
|
{
|
|
|
|
if (pluginManager) {
|
|
|
|
for (cDll *dll = pluginManager->dlls.First(); dll; dll = pluginManager->dlls.Next(dll)) {
|
|
|
|
cPlugin *p = dll->Plugin();
|
|
|
|
if (p && p->Service(Id, Data))
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cPluginManager::CallAllServices(const char *Id, void *Data)
|
|
|
|
{
|
|
|
|
bool found=false;
|
|
|
|
if (pluginManager) {
|
|
|
|
for (cDll *dll = pluginManager->dlls.First(); dll; dll = pluginManager->dlls.Next(dll)) {
|
|
|
|
cPlugin *p = dll->Plugin();
|
|
|
|
if (p && p->Service(Id, Data))
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
2005-01-30 14:23:01 +01:00
|
|
|
void cPluginManager::StopPlugins(void)
|
|
|
|
{
|
|
|
|
for (cDll *dll = dlls.Last(); dll; dll = dlls.Prev(dll)) {
|
|
|
|
cPlugin *p = dll->Plugin();
|
|
|
|
if (p && p->started) {
|
|
|
|
isyslog("stopping plugin: %s", p->Name());
|
|
|
|
p->Stop();
|
|
|
|
p->started = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-14 11:51:13 +02:00
|
|
|
void cPluginManager::Shutdown(bool Log)
|
2002-05-09 16:26:56 +02:00
|
|
|
{
|
|
|
|
cDll *dll;
|
2006-04-14 11:51:13 +02:00
|
|
|
while ((dll = dlls.Last()) != NULL) {
|
|
|
|
cPlugin *p = dll->Plugin();
|
|
|
|
if (p && Log)
|
|
|
|
isyslog("deleting plugin: %s", p->Name());
|
2002-05-09 16:26:56 +02:00
|
|
|
dlls.Del(dll);
|
2006-04-14 11:51:13 +02:00
|
|
|
}
|
2002-05-09 16:26:56 +02:00
|
|
|
}
|