2002-10-06 10:25:42 +02:00
|
|
|
/*
|
|
|
|
* channels.h: Channel handling
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2004-02-13 15:50:26 +01:00
|
|
|
* $Id: channels.h 1.16 2004/02/13 15:16:36 kls Exp $
|
2002-10-06 10:25:42 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CHANNELS_H
|
|
|
|
#define __CHANNELS_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "sources.h"
|
2004-01-04 12:30:00 +01:00
|
|
|
#include "thread.h"
|
2002-10-06 10:25:42 +02:00
|
|
|
#include "tools.h"
|
|
|
|
|
|
|
|
#define ISTRANSPONDER(f1, f2) (abs((f1) - (f2)) < 4) //XXX
|
|
|
|
|
2004-01-04 12:30:00 +01:00
|
|
|
#define CHANNELMOD_NONE 0x00
|
|
|
|
#define CHANNELMOD_ALL 0xFF
|
|
|
|
#define CHANNELMOD_NAME 0x01
|
|
|
|
#define CHANNELMOD_PIDS 0x02
|
|
|
|
#define CHANNELMOD_ID 0x04
|
|
|
|
#define CHANNELMOD_CA 0x10
|
2004-01-11 15:54:37 +01:00
|
|
|
#define CHANNELMOD_TRANSP 0x20
|
|
|
|
#define CHANNELMOD_RETUNE (CHANNELMOD_PIDS | CHANNELMOD_CA | CHANNELMOD_TRANSP)
|
2004-01-04 12:30:00 +01:00
|
|
|
|
2004-01-25 15:32:08 +01:00
|
|
|
#define MAXAPIDS 32
|
2004-01-04 12:30:00 +01:00
|
|
|
#define MAXCAIDS 8
|
|
|
|
|
2002-10-06 10:25:42 +02:00
|
|
|
struct tChannelParameterMap {
|
|
|
|
int userValue;
|
|
|
|
int driverValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
//XXX into cChannel???
|
|
|
|
int MapToUser(int Value, const tChannelParameterMap *Map);
|
|
|
|
int MapToDriver(int Value, const tChannelParameterMap *Map);
|
|
|
|
int UserIndex(int Value, const tChannelParameterMap *Map);
|
|
|
|
int DriverIndex(int Value, const tChannelParameterMap *Map);
|
|
|
|
|
|
|
|
extern const tChannelParameterMap InversionValues[];
|
|
|
|
extern const tChannelParameterMap BandwidthValues[];
|
|
|
|
extern const tChannelParameterMap CoderateValues[];
|
|
|
|
extern const tChannelParameterMap ModulationValues[];
|
|
|
|
extern const tChannelParameterMap TransmissionValues[];
|
|
|
|
extern const tChannelParameterMap GuardValues[];
|
|
|
|
extern const tChannelParameterMap HierarchyValues[];
|
|
|
|
|
2002-11-24 14:48:38 +01:00
|
|
|
struct tChannelID {
|
|
|
|
private:
|
|
|
|
int source;
|
|
|
|
int nid;
|
|
|
|
int tid;
|
|
|
|
int sid;
|
|
|
|
int rid;
|
|
|
|
public:
|
|
|
|
tChannelID(void) { source = nid = tid = sid = rid = 0; }
|
|
|
|
tChannelID(int Source, int Nid, int Tid, int Sid, int Rid = 0) { source = Source; nid = Nid; tid = Tid; sid = Sid; rid = Rid; }
|
|
|
|
bool operator== (const tChannelID &arg) const;
|
2004-02-08 12:22:24 +01:00
|
|
|
bool Valid(void) { return (nid || tid) && sid; } // rid is optional and source may be 0//XXX source may not be 0???
|
2002-11-24 14:48:38 +01:00
|
|
|
tChannelID &ClrRid(void) { rid = 0; return *this; }
|
2004-02-13 15:50:26 +01:00
|
|
|
tChannelID &ClrPolarization(void);
|
2002-11-24 14:48:38 +01:00
|
|
|
static tChannelID FromString(const char *s);
|
|
|
|
const char *ToString(void);
|
|
|
|
static const tChannelID InvalidID;
|
|
|
|
};
|
|
|
|
|
2004-02-08 11:05:22 +01:00
|
|
|
class cChannel;
|
|
|
|
|
|
|
|
class cLinkChannel : public cListObject {
|
|
|
|
private:
|
|
|
|
cChannel *channel;
|
|
|
|
public:
|
|
|
|
cLinkChannel(cChannel *Channel) { channel = Channel; }
|
|
|
|
cChannel *Channel(void) { return channel; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class cLinkChannels : public cList<cLinkChannel> {
|
|
|
|
};
|
|
|
|
|
2002-10-06 10:25:42 +02:00
|
|
|
class cChannel : public cListObject {
|
|
|
|
friend class cMenuEditChannel;
|
|
|
|
private:
|
|
|
|
static char *buffer;
|
|
|
|
static const char *ToText(cChannel *Channel);
|
2004-01-04 12:30:00 +01:00
|
|
|
enum { MaxChannelName = 64 }; // 63 chars + terminating 0!
|
2002-11-10 15:50:21 +01:00
|
|
|
int __BeginData__;
|
2002-10-06 10:25:42 +02:00
|
|
|
char name[MaxChannelName];
|
|
|
|
int frequency; // MHz
|
|
|
|
int source;
|
|
|
|
int srate;
|
|
|
|
int vpid;
|
2003-04-26 11:58:54 +02:00
|
|
|
int ppid;
|
2004-01-25 15:32:08 +01:00
|
|
|
int apids[MAXAPIDS + 1]; // list is zero-terminated
|
|
|
|
char alangs[MAXAPIDS][4];
|
|
|
|
int dpids[MAXAPIDS + 1]; // list is zero-terminated
|
|
|
|
char dlangs[MAXAPIDS][4];
|
2002-10-06 10:25:42 +02:00
|
|
|
int tpid;
|
2004-01-04 12:30:00 +01:00
|
|
|
int caids[MAXCAIDS + 1]; // list is zero-terminated
|
2002-11-24 14:48:38 +01:00
|
|
|
int nid;
|
|
|
|
int tid;
|
2002-10-06 10:25:42 +02:00
|
|
|
int sid;
|
2002-11-24 14:48:38 +01:00
|
|
|
int rid;
|
2002-10-06 10:25:42 +02:00
|
|
|
int number; // Sequence number assigned on load
|
|
|
|
bool groupSep;
|
|
|
|
char polarization;
|
|
|
|
int inversion;
|
|
|
|
int bandwidth;
|
|
|
|
int coderateH;
|
|
|
|
int coderateL;
|
|
|
|
int modulation;
|
|
|
|
int transmission;
|
|
|
|
int guard;
|
|
|
|
int hierarchy;
|
2002-11-10 15:50:21 +01:00
|
|
|
int __EndData__;
|
2004-01-04 12:30:00 +01:00
|
|
|
int modification;
|
2004-02-08 11:05:22 +01:00
|
|
|
cLinkChannels *linkChannels;
|
|
|
|
cChannel *refChannel;
|
2002-10-06 10:25:42 +02:00
|
|
|
const char *ParametersToString(void);
|
|
|
|
bool StringToParameters(const char *s);
|
|
|
|
public:
|
|
|
|
cChannel(void);
|
2004-02-08 11:05:22 +01:00
|
|
|
cChannel(const cChannel &Channel);
|
|
|
|
~cChannel();
|
2002-11-10 15:50:21 +01:00
|
|
|
cChannel& operator= (const cChannel &Channel);
|
2002-10-06 10:25:42 +02:00
|
|
|
const char *ToText(void);
|
2002-11-10 15:50:21 +01:00
|
|
|
bool Parse(const char *s, bool AllowNonUniqueID = false);
|
2002-10-06 10:25:42 +02:00
|
|
|
bool Save(FILE *f);
|
|
|
|
const char *Name(void) const { return name; }
|
2004-01-04 12:30:00 +01:00
|
|
|
int Frequency(void) const { return frequency; } ///< Returns the actual frequency, as given in 'channels.conf'
|
2004-02-13 15:50:26 +01:00
|
|
|
int Transponder(void) const; ///< Returns the transponder frequency in MHz, plus the polarization in case of sat
|
|
|
|
static int Transponder(int Frequency, char Polarization); ///< builds the transponder from the given Frequency and Polarization
|
2002-10-06 10:25:42 +02:00
|
|
|
int Source(void) const { return source; }
|
|
|
|
int Srate(void) const { return srate; }
|
|
|
|
int Vpid(void) const { return vpid; }
|
2003-04-26 11:58:54 +02:00
|
|
|
int Ppid(void) const { return ppid; }
|
2004-01-25 15:32:08 +01:00
|
|
|
int Apid1(void) const { return apids[0]; }
|
|
|
|
int Apid2(void) const { return apids[1]; }
|
|
|
|
int Dpid1(void) const { return dpids[0]; }
|
|
|
|
int Dpid2(void) const { return dpids[1]; }
|
2002-10-06 10:25:42 +02:00
|
|
|
int Tpid(void) const { return tpid; }
|
2004-01-04 12:30:00 +01:00
|
|
|
int Ca(int Index = 0) const { return Index < MAXCAIDS ? caids[Index] : 0; }
|
|
|
|
int Nid(void) const { return nid; }
|
|
|
|
int Tid(void) const { return tid; }
|
2002-10-06 10:25:42 +02:00
|
|
|
int Sid(void) const { return sid; }
|
2004-01-04 12:30:00 +01:00
|
|
|
int Rid(void) const { return rid; }
|
2002-10-06 10:25:42 +02:00
|
|
|
int Number(void) const { return number; }
|
|
|
|
void SetNumber(int Number) { number = Number; }
|
|
|
|
bool GroupSep(void) const { return groupSep; }
|
|
|
|
char Polarization(void) const { return polarization; }
|
|
|
|
int Inversion(void) const { return inversion; }
|
|
|
|
int Bandwidth(void) const { return bandwidth; }
|
|
|
|
int CoderateH(void) const { return coderateH; }
|
|
|
|
int CoderateL(void) const { return coderateL; }
|
|
|
|
int Modulation(void) const { return modulation; }
|
|
|
|
int Transmission(void) const { return transmission; }
|
|
|
|
int Guard(void) const { return guard; }
|
|
|
|
int Hierarchy(void) const { return hierarchy; }
|
2003-10-26 13:32:24 +01:00
|
|
|
bool IsCable(void) const { return (source & cSource::st_Mask) == cSource::stCable; }
|
|
|
|
bool IsSat(void) const { return (source & cSource::st_Mask) == cSource::stSat; }
|
|
|
|
bool IsTerr(void) const { return (source & cSource::st_Mask) == cSource::stTerr; }
|
2002-11-24 14:48:38 +01:00
|
|
|
tChannelID GetChannelID(void) const;
|
2004-01-04 12:30:00 +01:00
|
|
|
int Modification(int Mask = CHANNELMOD_ALL);
|
2004-01-11 15:54:37 +01:00
|
|
|
bool SetSatTransponderData(int Source, int Frequency, char Polarization, int Srate, int CoderateH, bool Log = true);
|
|
|
|
bool SetCableTransponderData(int Source, int Frequency, int Modulation, int Srate, int CoderateH, bool Log = true);
|
|
|
|
bool SetTerrTransponderData(int Source, int Frequency, int Bandwidth, int Modulation, int Hierarchy, int CodeRateH, int CodeRateL, int Guard, int Transmission, bool Log = true);
|
2004-01-04 12:30:00 +01:00
|
|
|
void SetId(int Nid, int Tid, int Sid, int Rid = 0, bool Log = true);
|
|
|
|
void SetName(const char *Name, bool Log = true);
|
2004-01-25 15:32:08 +01:00
|
|
|
void SetPids(int Vpid, int Ppid, int *Apids, char ALangs[][4], int *Dpids, char DLangs[][4], int Tpid);
|
2004-01-04 12:30:00 +01:00
|
|
|
void SetCaIds(const int *CaIds); // list must be zero-terminated
|
|
|
|
void SetCaDescriptors(int Level);
|
2004-02-08 11:05:22 +01:00
|
|
|
void SetLinkChannels(cLinkChannels *LinkChannels);
|
|
|
|
void SetRefChannel(cChannel *RefChannel);
|
2002-10-06 10:25:42 +02:00
|
|
|
};
|
|
|
|
|
2004-01-04 12:30:00 +01:00
|
|
|
class cChannels : public cRwLock, public cConfig<cChannel> {
|
|
|
|
private:
|
2002-10-06 10:25:42 +02:00
|
|
|
int maxNumber;
|
2004-01-04 12:30:00 +01:00
|
|
|
bool modified;
|
|
|
|
int beingEdited;
|
2002-10-06 10:25:42 +02:00
|
|
|
public:
|
2004-01-04 12:30:00 +01:00
|
|
|
cChannels(void);
|
2004-01-05 10:15:19 +01:00
|
|
|
bool Load(const char *FileName, bool AllowComments = false, bool MustExist = false);
|
2002-10-06 10:25:42 +02:00
|
|
|
int GetNextGroup(int Idx); // Get next channel group
|
|
|
|
int GetPrevGroup(int Idx); // Get previous channel group
|
|
|
|
int GetNextNormal(int Idx); // Get next normal channel (not group)
|
|
|
|
void ReNumber(void); // Recalculate 'number' based on channel type
|
2002-10-19 15:33:37 +02:00
|
|
|
cChannel *GetByNumber(int Number, int SkipGap = 0);
|
2004-01-04 12:30:00 +01:00
|
|
|
cChannel *GetByServiceID(int Source, int Transponder, unsigned short ServiceID);
|
2004-02-13 15:50:26 +01:00
|
|
|
cChannel *GetByChannelID(tChannelID ChannelID, bool TryWithoutRid = false, bool TryWithoutPolarization = false);
|
2004-01-04 12:30:00 +01:00
|
|
|
int BeingEdited(void) { return beingEdited; }
|
|
|
|
void IncBeingEdited(void) { beingEdited++; }
|
|
|
|
void DecBeingEdited(void) { beingEdited--; }
|
2002-11-10 15:50:21 +01:00
|
|
|
bool HasUniqueChannelID(cChannel *NewChannel, cChannel *OldChannel = NULL);
|
2002-10-06 10:25:42 +02:00
|
|
|
bool SwitchTo(int Number);
|
|
|
|
int MaxNumber(void) { return maxNumber; }
|
2004-01-04 12:30:00 +01:00
|
|
|
void SetModified(void);
|
|
|
|
bool Modified(void);
|
2004-01-11 15:54:37 +01:00
|
|
|
cChannel *NewChannel(const cChannel *Transponder, const char *Name, int Nid, int Tid, int Sid, int Rid = 0);
|
2002-10-06 10:25:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern cChannels Channels;
|
|
|
|
|
|
|
|
#endif //__CHANNELS_H
|