vdr/config.h

265 lines
6.6 KiB
C
Raw Normal View History

2000-02-19 13:36:48 +01:00
/*
* config.h: Configuration file handling
*
2000-04-24 09:46:05 +02:00
* See the main source file 'vdr.c' for copyright information and
2000-02-19 13:36:48 +01:00
* how to reach the author.
*
* $Id: config.h 1.283 2007/01/07 14:09:31 kls Exp $
2000-02-19 13:36:48 +01:00
*/
#ifndef __CONFIG_H
#define __CONFIG_H
2002-02-02 17:20:54 +01:00
#include <arpa/inet.h>
2000-02-19 13:36:48 +01:00
#include <stdio.h>
#include <stdlib.h>
2000-02-19 13:36:48 +01:00
#include <string.h>
#include <time.h>
2000-12-28 12:57:16 +01:00
#include <unistd.h>
#include "i18n.h"
2000-02-19 13:36:48 +01:00
#include "tools.h"
// VDR's own version number:
#define VDRVERSION "1.5.0"
#define VDRVERSNUM 10500 // Version * 10000 + Major * 100 + Minor
2000-07-29 18:19:49 +02:00
// The plugin API's version number:
#define APIVERSION "1.5.0"
#define APIVERSNUM 10500 // Version * 10000 + Major * 100 + Minor
// When loading plugins, VDR searches them by their APIVERSION, which
// may be smaller than VDRVERSION in case there have been no changes to
// VDR header files since the last APIVERSION. This allows compiled
// plugins to work with newer versions of the core VDR as long as no
// VDR header files have changed.
#define MAXPRIORITY 99
#define MAXLIFETIME 99
2004-05-16 10:35:36 +02:00
#define MINOSDWIDTH 480
#define MAXOSDWIDTH 672
#define MINOSDHEIGHT 324
#define MAXOSDHEIGHT 567
2002-02-03 15:55:04 +01:00
#define MaxFileName 256
2004-05-16 10:35:36 +02:00
#define MaxSkinName 16
#define MaxThemeName 16
2002-02-03 15:55:04 +01:00
2000-11-11 16:38:41 +01:00
class cCommand : public cListObject {
private:
char *title;
char *command;
bool confirm;
2000-11-11 16:38:41 +01:00
static char *result;
public:
cCommand(void);
virtual ~cCommand();
bool Parse(const char *s);
const char *Title(void) { return title; }
bool Confirm(void) { return confirm; }
2002-10-13 12:14:49 +02:00
const char *Execute(const char *Parameters = NULL);
2000-11-11 16:38:41 +01:00
};
typedef uint32_t in_addr_t; //XXX from /usr/include/netinet/in.h (apparently this is not defined on systems with glibc < 2.2)
2002-02-02 17:20:54 +01:00
class cSVDRPhost : public cListObject {
private:
struct in_addr addr;
in_addr_t mask;
public:
cSVDRPhost(void);
bool Parse(const char *s);
bool Accepts(in_addr_t Address);
};
2000-02-19 13:36:48 +01:00
template<class T> class cConfig : public cList<T> {
private:
char *fileName;
2002-09-29 13:40:45 +02:00
bool allowComments;
2000-02-19 13:36:48 +01:00
void Clear(void)
{
free(fileName);
fileName = NULL;
2000-02-19 13:36:48 +01:00
cList<T>::Clear();
}
public:
2000-12-28 12:57:16 +01:00
cConfig(void) { fileName = NULL; }
virtual ~cConfig() { free(fileName); }
2002-05-09 16:26:56 +02:00
const char *FileName(void) { return fileName; }
bool Load(const char *FileName = NULL, bool AllowComments = false, bool MustExist = false)
2000-02-19 13:36:48 +01:00
{
cConfig<T>::Clear();
2002-09-29 13:40:45 +02:00
if (FileName) {
free(fileName);
fileName = strdup(FileName);
allowComments = AllowComments;
}
bool result = !MustExist;
2002-09-29 13:40:45 +02:00
if (fileName && access(fileName, F_OK) == 0) {
isyslog("loading %s", fileName);
2000-12-28 12:57:16 +01:00
FILE *f = fopen(fileName, "r");
if (f) {
char *s;
2000-12-28 12:57:16 +01:00
int line = 0;
cReadLine ReadLine;
2000-12-28 12:57:16 +01:00
result = true;
while ((s = ReadLine.Read(f)) != NULL) {
2000-12-28 12:57:16 +01:00
line++;
2002-09-29 13:40:45 +02:00
if (allowComments) {
char *p = strchr(s, '#');
if (p)
*p = 0;
}
stripspace(s);
if (!isempty(s)) {
T *l = new T;
if (l->Parse(s))
Add(l);
else {
esyslog("ERROR: error in %s, line %d", fileName, line);
delete l;
result = false;
break;
}
2000-12-28 12:57:16 +01:00
}
2000-02-19 13:36:48 +01:00
}
2000-12-28 12:57:16 +01:00
fclose(f);
}
else {
2000-12-28 12:57:16 +01:00
LOG_ERROR_STR(fileName);
result = false;
}
2000-02-19 13:36:48 +01:00
}
if (!result)
fprintf(stderr, "vdr: error while reading '%s'\n", fileName);
2000-02-19 13:36:48 +01:00
return result;
}
bool Save(void)
{
bool result = true;
2004-05-22 11:29:52 +02:00
T *l = (T *)this->First();
cSafeFile f(fileName);
if (f.Open()) {
2000-02-19 13:36:48 +01:00
while (l) {
if (!l->Save(f)) {
result = false;
break;
}
l = (T *)l->Next();
}
if (!f.Close())
result = false;
2000-02-19 13:36:48 +01:00
}
else
2000-02-19 13:36:48 +01:00
result = false;
return result;
}
};
2000-11-11 16:38:41 +01:00
class cCommands : public cConfig<cCommand> {};
2002-02-02 17:20:54 +01:00
class cSVDRPhosts : public cConfig<cSVDRPhost> {
public:
bool Acceptable(in_addr_t Address);
};
2000-11-11 16:38:41 +01:00
extern cCommands Commands;
2002-10-13 12:14:49 +02:00
extern cCommands RecordingCommands;
2002-02-02 17:20:54 +01:00
extern cSVDRPhosts SVDRPhosts;
2000-02-19 13:36:48 +01:00
2002-05-09 16:26:56 +02:00
class cSetupLine : public cListObject {
2000-09-10 10:51:58 +02:00
private:
2002-05-09 16:26:56 +02:00
char *plugin;
char *name;
char *value;
public:
cSetupLine(void);
cSetupLine(const char *Name, const char *Value, const char *Plugin = NULL);
virtual ~cSetupLine();
virtual int Compare(const cListObject &ListObject) const;
2002-05-09 16:26:56 +02:00
const char *Plugin(void) { return plugin; }
const char *Name(void) { return name; }
const char *Value(void) { return value; }
2000-09-10 10:51:58 +02:00
bool Parse(char *s);
2002-05-09 16:26:56 +02:00
bool Save(FILE *f);
};
class cSetup : public cConfig<cSetupLine> {
friend class cPlugin; // needs to be able to call Store()
private:
void StoreLanguages(const char *Name, int *Values);
bool ParseLanguages(const char *Value, int *Values);
2002-05-09 16:26:56 +02:00
bool Parse(const char *Name, const char *Value);
cSetupLine *Get(const char *Name, const char *Plugin = NULL);
void Store(const char *Name, const char *Value, const char *Plugin = NULL, bool AllowMultiple = false);
2002-05-09 16:26:56 +02:00
void Store(const char *Name, int Value, const char *Plugin = NULL);
2000-09-10 10:51:58 +02:00
public:
// Also adjust cMenuSetup (menu.c) when adding parameters here!
2002-05-09 16:26:56 +02:00
int __BeginData__;
2000-11-11 10:39:27 +01:00
int OSDLanguage;
2004-05-16 10:35:36 +02:00
char OSDSkin[MaxSkinName];
char OSDTheme[MaxThemeName];
2000-09-10 10:51:58 +02:00
int PrimaryDVB;
int ShowInfoOnChSwitch;
int TimeoutRequChInfo;
2000-09-10 10:51:58 +02:00
int MenuScrollPage;
int MenuScrollWrap;
int MenuButtonCloses;
int MarkInstantRecord;
2002-02-03 15:55:04 +01:00
char NameInstantRecord[MaxFileName];
int InstantRecordTime;
int LnbSLOF;
2000-10-08 16:18:23 +02:00
int LnbFrequLo;
int LnbFrequHi;
int DiSEqC;
2000-10-29 13:17:22 +01:00
int SetSystemTime;
int TimeSource;
int TimeTransponder;
2000-10-29 13:17:22 +01:00
int MarginStart, MarginStop;
2005-01-05 10:48:22 +01:00
int AudioLanguages[I18nNumLanguages + 1];
int EPGLanguages[I18nNumLanguages + 1];
int EPGScanTimeout;
2001-08-17 13:19:10 +02:00
int EPGBugfixLevel;
2004-02-21 15:30:35 +01:00
int EPGLinger;
int SVDRPTimeout;
int ZapTimeout;
int PrimaryLimit;
int DefaultPriority, DefaultLifetime;
int PausePriority, PauseLifetime;
int UseSubtitle;
2004-02-29 14:21:22 +01:00
int UseVps;
int VpsMargin;
int RecordingDirs;
int VideoDisplayFormat;
2001-06-16 14:31:14 +02:00
int VideoFormat;
int UpdateChannels;
int UseDolbyDigital;
int ChannelInfoPos;
int ChannelInfoTime;
2004-05-16 10:35:36 +02:00
int OSDLeft, OSDTop, OSDWidth, OSDHeight;
2001-09-01 15:23:27 +02:00
int OSDMessageTime;
2004-05-16 10:35:36 +02:00
int UseSmallFont;
2001-08-25 13:52:38 +02:00
int MaxVideoFileSize;
2001-09-30 11:31:43 +02:00
int SplitEditedFiles;
2001-09-01 09:04:37 +02:00
int MinEventTimeout, MinUserInactivity;
2001-09-09 12:52:41 +02:00
int MultiSpeedMode;
2001-09-14 14:06:43 +02:00
int ShowReplayMode;
int ResumeID;
int CurrentChannel;
2001-09-22 13:41:49 +02:00
int CurrentVolume;
2005-01-08 13:53:30 +01:00
int CurrentDolby;
int InitialChannel;
int InitialVolume;
2002-05-09 16:26:56 +02:00
int __EndData__;
2000-09-10 10:51:58 +02:00
cSetup(void);
2002-05-09 16:26:56 +02:00
cSetup& operator= (const cSetup &s);
2000-09-10 10:51:58 +02:00
bool Load(const char *FileName);
2002-05-09 16:26:56 +02:00
bool Save(void);
2000-09-10 10:51:58 +02:00
};
extern cSetup Setup;
2000-02-19 13:36:48 +01:00
#endif //__CONFIG_H