/* * receiver.c: The basic receiver interface * * See the main source file 'vdr.c' for copyright information and * how to reach the author. * * $Id: receiver.c 2.4 2010/12/12 23:16:25 kls Exp $ */ #include "receiver.h" #include #include "tools.h" #ifdef LEGACY_CRECEIVER cReceiver::cReceiver(tChannelID ChannelID, int Priority, int Pid, const int *Pids1, const int *Pids2, const int *Pids3) { device = NULL; channelID = ChannelID; priority = Priority; numPids = 0; AddPid(Pid); AddPids(Pids1); AddPids(Pids2); AddPids(Pids3); } #endif cReceiver::cReceiver(const cChannel *Channel, int Priority) { device = NULL; priority = Priority; numPids = 0; SetPids(Channel); } cReceiver::~cReceiver() { if (device) { const char *msg = "ERROR: cReceiver has not been detached yet! This is a design fault and VDR will segfault now!"; esyslog("%s", msg); fprintf(stderr, "%s\n", msg); *(char *)0 = 0; // cause a segfault } } bool cReceiver::AddPid(int Pid) { if (Pid) { if (numPids < MAXRECEIVEPIDS) pids[numPids++] = Pid; else { dsyslog("too many PIDs in cReceiver (Pid = %d)", Pid); return false; } } return true; } bool cReceiver::AddPids(const int *Pids) { if (Pids) { while (*Pids) { if (!AddPid(*Pids++)) return false; } } return true; } bool cReceiver::AddPids(int Pid1, int Pid2, int Pid3, int Pid4, int Pid5, int Pid6, int Pid7, int Pid8, int Pid9) { return AddPid(Pid1) && AddPid(Pid2) && AddPid(Pid3) && AddPid(Pid4) && AddPid(Pid5) && AddPid(Pid6) && AddPid(Pid7) && AddPid(Pid8) && AddPid(Pid9); } bool cReceiver::SetPids(const cChannel *Channel) { numPids = 0; if (Channel) { channelID = Channel->GetChannelID(); return AddPid(Channel->Vpid()) && (Channel->Ppid() == Channel->Vpid() || AddPid(Channel->Ppid())) && AddPids(Channel->Apids()) && AddPids(Channel->Dpids()) && AddPids(Channel->Spids()); } return true; } bool cReceiver::WantsPid(int Pid) { if (Pid) { for (int i = 0; i < numPids; i++) { if (pids[i] == Pid) return true; } } return false; } void cReceiver::Detach(void) { if (device) device->Detach(this); }