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.
|
|
|
|
*
|
2000-07-24 16:43:04 +02:00
|
|
|
* $Id: config.h 1.11 2000/07/23 17:17:10 kls Exp $
|
2000-02-19 13:36:48 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
#define _GNU_SOURCE
|
2000-02-19 13:36:48 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2000-03-11 11:22:37 +01:00
|
|
|
#include <time.h>
|
2000-05-01 16:29:46 +02:00
|
|
|
#include "dvbapi.h"
|
2000-02-19 13:36:48 +01:00
|
|
|
#include "tools.h"
|
|
|
|
|
2000-07-24 16:43:04 +02:00
|
|
|
#define MaxBuffer 10000
|
2000-02-19 13:36:48 +01:00
|
|
|
|
|
|
|
enum eKeys { // "Up" and "Down" must be the first two keys!
|
|
|
|
kUp,
|
|
|
|
kDown,
|
|
|
|
kMenu,
|
|
|
|
kOk,
|
|
|
|
kBack,
|
|
|
|
kLeft,
|
|
|
|
kRight,
|
2000-03-11 11:22:37 +01:00
|
|
|
kRed,
|
|
|
|
kGreen,
|
|
|
|
kYellow,
|
|
|
|
kBlue,
|
2000-05-27 16:10:47 +02:00
|
|
|
k0, k1, k2, k3, k4, k5, k6, k7, k8, k9,
|
2000-02-19 13:36:48 +01:00
|
|
|
kNone
|
|
|
|
};
|
|
|
|
|
|
|
|
struct tKey {
|
|
|
|
eKeys type;
|
|
|
|
char *name;
|
|
|
|
unsigned int code;
|
|
|
|
};
|
|
|
|
|
|
|
|
class cKeys {
|
|
|
|
private:
|
|
|
|
char *fileName;
|
|
|
|
public:
|
|
|
|
unsigned char code;
|
|
|
|
unsigned short address;
|
|
|
|
tKey *keys;
|
|
|
|
cKeys(void);
|
|
|
|
void Clear(void);
|
2000-07-15 16:35:18 +02:00
|
|
|
void SetDummyValues(void);
|
2000-07-23 15:01:31 +02:00
|
|
|
bool Load(const char *FileName = NULL);
|
2000-02-19 13:36:48 +01:00
|
|
|
bool Save(void);
|
2000-07-15 12:39:20 +02:00
|
|
|
unsigned int Encode(const char *Command);
|
2000-02-19 13:36:48 +01:00
|
|
|
eKeys Get(unsigned int Code);
|
|
|
|
void Set(eKeys Key, unsigned int Code);
|
|
|
|
};
|
|
|
|
|
|
|
|
class cChannel : public cListObject {
|
2000-07-23 15:01:31 +02:00
|
|
|
private:
|
|
|
|
static char *buffer;
|
|
|
|
static const char *ToText(cChannel *Channel);
|
2000-02-19 13:36:48 +01:00
|
|
|
public:
|
|
|
|
enum { MaxChannelName = 32 }; // 31 chars + terminating 0!
|
|
|
|
char name[MaxChannelName];
|
|
|
|
int frequency; // MHz
|
|
|
|
char polarization;
|
|
|
|
int diseqc;
|
|
|
|
int srate;
|
|
|
|
int vpid;
|
|
|
|
int apid;
|
2000-04-15 17:38:11 +02:00
|
|
|
int ca;
|
|
|
|
int pnr;
|
2000-02-19 13:36:48 +01:00
|
|
|
cChannel(void);
|
2000-03-11 11:22:37 +01:00
|
|
|
cChannel(const cChannel *Channel);
|
2000-07-23 15:01:31 +02:00
|
|
|
const char *ToText(void);
|
|
|
|
bool Parse(const char *s);
|
2000-02-19 13:36:48 +01:00
|
|
|
bool Save(FILE *f);
|
2000-05-01 16:29:46 +02:00
|
|
|
bool Switch(cDvbApi *DvbApi = NULL);
|
|
|
|
static bool SwitchTo(int i, cDvbApi *DvbApi = NULL);
|
|
|
|
static const char *GetChannelName(int i);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class cTimer : public cListObject {
|
2000-03-11 11:22:37 +01:00
|
|
|
private:
|
|
|
|
time_t startTime, stopTime;
|
2000-07-23 15:01:31 +02:00
|
|
|
static char *buffer;
|
|
|
|
static const char *ToText(cTimer *Timer);
|
2000-02-19 13:36:48 +01:00
|
|
|
public:
|
|
|
|
enum { MaxFileName = 256 };
|
2000-03-11 11:22:37 +01:00
|
|
|
bool recording;
|
2000-02-19 13:36:48 +01:00
|
|
|
int active;
|
|
|
|
int channel;
|
|
|
|
int day;
|
|
|
|
int start;
|
|
|
|
int stop;
|
|
|
|
//TODO VPS???
|
|
|
|
int priority;
|
|
|
|
int lifetime;
|
|
|
|
char file[MaxFileName];
|
2000-07-24 16:43:04 +02:00
|
|
|
char *summary;
|
2000-04-15 17:38:11 +02:00
|
|
|
cTimer(bool Instant = false);
|
2000-07-24 16:43:04 +02:00
|
|
|
~cTimer();
|
|
|
|
cTimer& operator= (const cTimer &Timer);
|
2000-07-23 15:01:31 +02:00
|
|
|
const char *ToText(void);
|
|
|
|
bool Parse(const char *s);
|
2000-02-19 13:36:48 +01:00
|
|
|
bool Save(FILE *f);
|
2000-03-11 11:22:37 +01:00
|
|
|
bool IsSingleEvent(void);
|
2000-07-16 13:37:30 +02:00
|
|
|
bool Matches(time_t t = 0);
|
2000-03-11 11:22:37 +01:00
|
|
|
time_t StartTime(void);
|
|
|
|
time_t StopTime(void);
|
|
|
|
void SetRecording(bool Recording);
|
2000-02-19 13:36:48 +01:00
|
|
|
static cTimer *GetMatch(void);
|
|
|
|
static int TimeToInt(int t);
|
2000-03-11 11:22:37 +01:00
|
|
|
static time_t Day(time_t t);
|
2000-07-23 15:01:31 +02:00
|
|
|
static int ParseDay(const char *s);
|
|
|
|
static const char *PrintDay(int d);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
template<class T> class cConfig : public cList<T> {
|
|
|
|
private:
|
|
|
|
char *fileName;
|
|
|
|
void Clear(void)
|
|
|
|
{
|
|
|
|
delete fileName;
|
|
|
|
cList<T>::Clear();
|
|
|
|
}
|
|
|
|
public:
|
2000-07-23 15:01:31 +02:00
|
|
|
bool Load(const char *FileName)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
|
|
|
isyslog(LOG_INFO, "loading %s", FileName);
|
|
|
|
bool result = true;
|
|
|
|
Clear();
|
|
|
|
fileName = strdup(FileName);
|
|
|
|
FILE *f = fopen(fileName, "r");
|
|
|
|
if (f) {
|
|
|
|
int line = 0;
|
|
|
|
char buffer[MaxBuffer];
|
|
|
|
while (fgets(buffer, sizeof(buffer), f) > 0) {
|
|
|
|
line++;
|
|
|
|
T *l = new T;
|
|
|
|
if (l->Parse(buffer))
|
|
|
|
Add(l);
|
|
|
|
else {
|
2000-04-15 17:38:11 +02:00
|
|
|
esyslog(LOG_ERR, "error in %s, line %d\n", fileName, line);
|
2000-02-19 13:36:48 +01:00
|
|
|
delete l;
|
|
|
|
result = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
else {
|
2000-04-15 17:38:11 +02:00
|
|
|
esyslog(LOG_ERR, "can't open '%s'\n", fileName);
|
2000-02-19 13:36:48 +01:00
|
|
|
result = false;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
bool Save(void)
|
|
|
|
{
|
|
|
|
//TODO make backup copies???
|
|
|
|
bool result = true;
|
|
|
|
T *l = (T *)First();
|
|
|
|
FILE *f = fopen(fileName, "w");
|
|
|
|
if (f) {
|
|
|
|
while (l) {
|
|
|
|
if (!l->Save(f)) {
|
|
|
|
result = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
l = (T *)l->Next();
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result = false;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class cChannels : public cConfig<cChannel> {};
|
|
|
|
class cTimers : public cConfig<cTimer> {};
|
|
|
|
|
|
|
|
extern int CurrentChannel;
|
|
|
|
|
|
|
|
extern cChannels Channels;
|
|
|
|
extern cTimers Timers;
|
|
|
|
extern cKeys Keys;
|
|
|
|
|
|
|
|
#endif //__CONFIG_H
|