mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- All logging now goes to LOG_ERR, because some systems split error, info and debug messages into separate files, which repeatedly caused extra efforts to find out when incomplete log excerpts were attached to problem reports in the past. - Updated the Estonian OSD texts (thanks to Arthur Konovalov). - Fixed a problem with characters >0x7F in the modified version of skipspace() (thanks to Marco Schlüßler). - Fixed a bug I introduced when simplifying the original patch for detecting Premiere NVOD channel links (crash reported by Malte Schröder). - Internationalization is now done with 'gettext' (following a suggestion by Lucian Muresan). Plugin authors may want to use the Perl script 'i18n-to-gettext.pl' to convert their internationalized texts to the gettext format (see the instructions inside that script file). The function cPlugin::RegisterI18n() is still present for compatibility, but doesn't have any more functionality. So plugins that don't convert their texts to the gettext format will only present English texts. See PLUGINS.html, section "Internationalization", for instructions on how to make strings in arrays translatable. See README.i18n for information on how to create new or maintain existing translations. - The three letter language codes and their aliases are stored in i18n.c, and each translation file only contains one of them to link that language name to the code. - The 'newplugin' script has been extended to generate the Makefile section for i18n support. - The parameter OSDLanguage in 'setup.conf' is now a string and holds the locale code of the selected OSD language (e.g. en_US). If Setup.OSDLanguage is not set to a particular locale that is found in VDR's locale directory, the locale as defined in the system environment is used by default. - The list of tracks given in cStatus::SetAudioTrack() is now NULL terminated, so that plugins can actually use all the strings in the list, not just the one pointed to by Index (thanks to Alexander Rieger). - Fixed handling kLeft in the calls to cStatus::MsgOsdTextItem() (thanks to Alexander Rieger). - Added the "...or (at your option) any later version" phrase to the license information of all plugins, and also the 'newplugin' script (suggested by Ville Skyttä). Plugin authors may want to consider doing the same. - Fixed the link to the GPL2 at http://www.gnu.org in vdr.c (thanks to Ville Skyttä). - cBitmap::SetXpm() now checks whether the given Xpm pointer is not NULL, to avoid a crash with files that only contain "/* XPM */" (suggested by Andreas Mair). - Added a debug error message to cReceiver::~cReceiver() in case it is still attached to a device (thanks to Reinhard Nissl).
108 lines
3.0 KiB
C++
108 lines
3.0 KiB
C++
/*
|
|
* plugin.h: The VDR plugin interface
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: plugin.h 1.15 2007/08/04 09:56:26 kls Exp $
|
|
*/
|
|
|
|
#ifndef __PLUGIN_H
|
|
#define __PLUGIN_H
|
|
|
|
#include "i18n.h"
|
|
#include "menuitems.h"
|
|
#include "osdbase.h"
|
|
#include "tools.h"
|
|
|
|
#define VDRPLUGINCREATOR(PluginClass) extern "C" void *VDRPluginCreator(void) { return new PluginClass; }
|
|
|
|
class cPlugin {
|
|
friend class cDll;
|
|
friend class cPluginManager;
|
|
private:
|
|
static char *configDirectory;
|
|
const char *name;
|
|
bool started;
|
|
void SetName(const char *s);
|
|
public:
|
|
cPlugin(void);
|
|
virtual ~cPlugin();
|
|
|
|
const char *Name(void) { return name; }
|
|
virtual const char *Version(void) = 0;
|
|
virtual const char *Description(void) = 0;
|
|
virtual const char *CommandLineHelp(void);
|
|
|
|
virtual bool ProcessArgs(int argc, char *argv[]);
|
|
virtual bool Initialize(void);
|
|
virtual bool Start(void);
|
|
virtual void Stop(void);
|
|
virtual void Housekeeping(void);
|
|
virtual void MainThreadHook(void);
|
|
virtual cString Active(void);
|
|
virtual time_t WakeupTime(void);
|
|
|
|
virtual const char *MainMenuEntry(void);
|
|
virtual cOsdObject *MainMenuAction(void);
|
|
|
|
virtual cMenuSetupPage *SetupMenu(void);
|
|
virtual bool SetupParse(const char *Name, const char *Value);
|
|
void SetupStore(const char *Name, const char *Value = NULL);
|
|
void SetupStore(const char *Name, int Value);
|
|
|
|
void RegisterI18n(const void *); ///< This function is obsolete and may be removed in future versions of VDR!
|
|
|
|
virtual bool Service(const char *Id, void *Data = NULL);
|
|
virtual const char **SVDRPHelpPages(void);
|
|
virtual cString SVDRPCommand(const char *Command, const char *Option, int &ReplyCode);
|
|
|
|
static void SetConfigDirectory(const char *Dir);
|
|
static const char *ConfigDirectory(const char *PluginName = NULL);
|
|
};
|
|
|
|
class cDll : public cListObject {
|
|
private:
|
|
char *fileName;
|
|
char *args;
|
|
void *handle;
|
|
cPlugin *plugin;
|
|
public:
|
|
cDll(const char *FileName, const char *Args);
|
|
virtual ~cDll();
|
|
bool Load(bool Log = false);
|
|
cPlugin *Plugin(void) { return plugin; }
|
|
};
|
|
|
|
class cDlls : public cList<cDll> {};
|
|
|
|
class cPluginManager {
|
|
private:
|
|
static cPluginManager *pluginManager;
|
|
char *directory;
|
|
time_t lastHousekeeping;
|
|
int nextHousekeeping;
|
|
cDlls dlls;
|
|
public:
|
|
cPluginManager(const char *Directory);
|
|
virtual ~cPluginManager();
|
|
void SetDirectory(const char *Directory);
|
|
void AddPlugin(const char *Args);
|
|
bool LoadPlugins(bool Log = false);
|
|
bool InitializePlugins(void);
|
|
bool StartPlugins(void);
|
|
void Housekeeping(void);
|
|
void MainThreadHook(void);
|
|
static bool Active(const char *Prompt = NULL);
|
|
static cPlugin *GetNextWakeupPlugin(void);
|
|
static bool HasPlugins(void);
|
|
static cPlugin *GetPlugin(int Index);
|
|
static cPlugin *GetPlugin(const char *Name);
|
|
static cPlugin *CallFirstService(const char *Id, void *Data = NULL);
|
|
static bool CallAllServices(const char *Id, void *Data = NULL);
|
|
void StopPlugins(void);
|
|
void Shutdown(bool Log = false);
|
|
};
|
|
|
|
#endif //__PLUGIN_H
|