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.
|
|
|
|
*
|
2006-01-15 16:04:05 +01:00
|
|
|
* $Id: config.h 1.241 2006/01/15 16:01:48 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>
|
2002-08-11 13:32:23 +02:00
|
|
|
#include <stdlib.h>
|
2000-02-19 13:36:48 +01:00
|
|
|
#include <string.h>
|
2000-03-11 11:22:37 +01:00
|
|
|
#include <time.h>
|
2000-12-28 12:57:16 +01:00
|
|
|
#include <unistd.h>
|
2004-01-09 15:53:59 +01:00
|
|
|
#include "i18n.h"
|
2000-02-19 13:36:48 +01:00
|
|
|
#include "tools.h"
|
|
|
|
|
2006-01-15 16:04:05 +01:00
|
|
|
#define VDRVERSION "1.3.40"
|
|
|
|
#define VDRVERSNUM 10340 // Version * 10000 + Major * 100 + Minor
|
2000-07-29 18:19:49 +02:00
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
#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
|
2001-07-27 11:51:42 +02:00
|
|
|
|
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;
|
2002-10-13 09:03:53 +02:00
|
|
|
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; }
|
2002-10-13 09:03:53 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2002-02-09 16:03:22 +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)
|
|
|
|
{
|
2002-08-11 13:32:23 +02:00
|
|
|
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; }
|
2002-08-11 13:32:23 +02:00
|
|
|
virtual ~cConfig() { free(fileName); }
|
2002-05-09 16:26:56 +02:00
|
|
|
const char *FileName(void) { return fileName; }
|
2004-01-05 10:15:19 +01:00
|
|
|
bool Load(const char *FileName = NULL, bool AllowComments = false, bool MustExist = false)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2005-10-01 10:43:01 +02:00
|
|
|
cConfig<T>::Clear();
|
2002-09-29 13:40:45 +02:00
|
|
|
if (FileName) {
|
|
|
|
free(fileName);
|
|
|
|
fileName = strdup(FileName);
|
|
|
|
allowComments = AllowComments;
|
|
|
|
}
|
2003-08-16 09:18:52 +02:00
|
|
|
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) {
|
2005-11-04 17:18:33 +01:00
|
|
|
char *s;
|
2000-12-28 12:57:16 +01:00
|
|
|
int line = 0;
|
2005-11-04 17:18:33 +01:00
|
|
|
cReadLine ReadLine;
|
2000-12-28 12:57:16 +01:00
|
|
|
result = true;
|
2005-11-04 17:18:33 +01:00
|
|
|
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) {
|
2005-11-04 17:18:33 +01:00
|
|
|
char *p = strchr(s, '#');
|
2002-02-02 15:57:48 +01:00
|
|
|
if (p)
|
|
|
|
*p = 0;
|
|
|
|
}
|
2005-11-04 17:18:33 +01:00
|
|
|
stripspace(s);
|
|
|
|
if (!isempty(s)) {
|
2001-04-01 14:44:40 +02:00
|
|
|
T *l = new T;
|
2005-11-04 17:18:33 +01:00
|
|
|
if (l->Parse(s))
|
2001-04-01 14:44:40 +02:00
|
|
|
Add(l);
|
|
|
|
else {
|
2005-11-04 14:22:04 +01:00
|
|
|
esyslog("ERROR: error in %s, line %d", fileName, line);
|
2001-04-01 14:44:40 +02:00
|
|
|
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);
|
|
|
|
}
|
2003-08-16 09:18:52 +02:00
|
|
|
else {
|
2000-12-28 12:57:16 +01:00
|
|
|
LOG_ERROR_STR(fileName);
|
2003-08-16 09:18:52 +02:00
|
|
|
result = false;
|
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
2003-08-16 09:18:52 +02: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();
|
2001-01-13 15:36:31 +01:00
|
|
|
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();
|
|
|
|
}
|
2001-09-16 08:57:58 +02:00
|
|
|
if (!f.Close())
|
|
|
|
result = false;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
2001-01-13 15:36:31 +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();
|
2004-11-01 10:40:38 +01:00
|
|
|
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:
|
2004-01-09 15:53:59 +01:00
|
|
|
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);
|
2002-10-19 11:34:48 +02:00
|
|
|
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;
|
2006-01-04 14:45:23 +01:00
|
|
|
int TimeoutRequChInfo;
|
2000-09-10 10:51:58 +02:00
|
|
|
int MenuScrollPage;
|
2005-06-18 10:44:30 +02:00
|
|
|
int MenuScrollWrap;
|
2006-01-13 15:45:02 +01:00
|
|
|
int MenuButtonCloses;
|
2000-10-08 13:08:13 +02:00
|
|
|
int MarkInstantRecord;
|
2002-02-03 15:55:04 +01:00
|
|
|
char NameInstantRecord[MaxFileName];
|
2002-04-26 13:43:46 +02:00
|
|
|
int InstantRecordTime;
|
2001-06-02 10:47:40 +02:00
|
|
|
int LnbSLOF;
|
2000-10-08 16:18:23 +02:00
|
|
|
int LnbFrequLo;
|
|
|
|
int LnbFrequHi;
|
2001-07-27 13:45:55 +02:00
|
|
|
int DiSEqC;
|
2000-10-29 13:17:22 +01:00
|
|
|
int SetSystemTime;
|
2004-05-16 12:58:04 +02:00
|
|
|
int TimeSource;
|
2002-03-17 14:24:11 +01:00
|
|
|
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];
|
2004-01-09 15:53:59 +01:00
|
|
|
int EPGLanguages[I18nNumLanguages + 1];
|
2000-11-18 13:57:32 +01:00
|
|
|
int EPGScanTimeout;
|
2001-08-17 13:19:10 +02:00
|
|
|
int EPGBugfixLevel;
|
2004-02-21 15:30:35 +01:00
|
|
|
int EPGLinger;
|
2001-02-18 14:18:13 +01:00
|
|
|
int SVDRPTimeout;
|
2003-08-17 08:58:02 +02:00
|
|
|
int ZapTimeout;
|
2001-08-26 14:17:20 +02:00
|
|
|
int SortTimers;
|
2001-02-24 14:03:39 +01:00
|
|
|
int PrimaryLimit;
|
2001-06-02 10:47:40 +02:00
|
|
|
int DefaultPriority, DefaultLifetime;
|
2003-05-11 14:10:00 +02:00
|
|
|
int PausePriority, PauseLifetime;
|
2001-09-02 15:21:54 +02:00
|
|
|
int UseSubtitle;
|
2004-02-29 14:21:22 +01:00
|
|
|
int UseVps;
|
|
|
|
int VpsMargin;
|
2002-01-20 14:05:28 +01:00
|
|
|
int RecordingDirs;
|
2005-02-20 13:39:49 +01:00
|
|
|
int VideoDisplayFormat;
|
2001-06-16 14:31:14 +02:00
|
|
|
int VideoFormat;
|
2004-01-05 12:08:09 +01:00
|
|
|
int UpdateChannels;
|
2005-01-09 12:36:48 +01:00
|
|
|
int UseDolbyDigital;
|
2001-07-27 10:59:50 +02:00
|
|
|
int ChannelInfoPos;
|
2005-02-05 11:40:04 +01:00
|
|
|
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;
|
2003-04-12 10:06:21 +02:00
|
|
|
int ResumeID;
|
2001-01-14 15:29:51 +01:00
|
|
|
int CurrentChannel;
|
2001-09-22 13:41:49 +02:00
|
|
|
int CurrentVolume;
|
2005-01-08 13:53:30 +01:00
|
|
|
int CurrentDolby;
|
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
|