mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Updated the Italian OSD texts (thanks to Diego Pierotto). - Changed the position of Sirius 4 to S4.8E in sources.conf (thanks to Alexander Gross). - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). - Moved the declaration of cMenuCommands to menu.h, so that plugins can use it. - Added a note to the MANUAL, saying that adding new transponders only works if the "EPG scan" is active (suggested by Halim Sahim). - Improved handling frames at the beginning and end of a recording in cDvbPlayer for devices with large buffers (thanks to Reinhard Nissl). - Implemented cDeviceHook to allow plugins more control over which device can provide which transponder (thanks to Reinhard Nissl). - Implemented cDevice::GetCurrentlyTunedTransponder() (thanks to Reinhard Nissl). - Moved strictly necessary Makefile options into Make.global, which is included by all plugins (thanks to Paul Menzel). The Makefiles of existing plugins should be modified like this: ------------------------------------------------------------ --- PLUGINS/src/hello/Makefile 2009/10/18 14:00:07 2.1 +++ PLUGINS/src/hello/Makefile 2010/02/06 14:50:03 2.2 @@ -18,7 +18,7 @@ ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses +CXXFLAGS ?= -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses ### The directory environment: @@ -26,6 +26,10 @@ LIBDIR = ../../lib TMPDIR = /tmp +### Make sure that necessary options are included: + +include $(VDRDIR)/Make.global + ### Allow user defined options to overwrite defaults: -include $(VDRDIR)/Make.config ------------------------------------------------------------ - Added device definitions to the diseqc.conf file format, so that certain satellite positions can be limited to a given list of devices. This obsoletes the SOURCECAPS patch. - Keeping subtitles visible when pausing replay (thanks to Rolf Ahrenberg). - Fixed adding new transponders in case there is only a single channel in the channel list (reported by Halim Sahin). - The file name in the "Timers" menu now shows only the base name of the recording without the folder path (if any). Otherwise with long folder paths the actual recording name was not visible at all. - Updated the Romanian OSD texts (thanks to Lucian Muresan). - Exported some libsi functions (thanks to Lucian Muresan). - Improved scalability of the default skins. - Fixed the German translation of "Folder name must not contain '%c'!" (thanks to Frank Schmirler). - Updated the Estonian OSD texts (thanks to Arthur Konovalov). - Plugins can now define new sources. In order to implement this, the following changes were made: + The transponder parameter string is no longer interpreted by cChannel, but rather stored as is and used only by the respective device. That way plugins can use a channel's parameter string to store arbitrary data (see vdr.5). + The new class cSourceParam can be used by plugins to define new sources, and to implement OSD items that will be used in the channel editor for editing the source specific parameters of a channel (see dvbdevice.c for an example of how this is done for the default DVB devices). + Purely numerical values are no longer accepted in the 'source' parameter of a channel. This obsoletes the PLUGINPARAM patch. - Updated the Lithuanian OSD texts (thanks to Valdemaras Pipiras). - cSafeFile::Close() now flushes the file (suggested by Stephan Austermühle). - The option "Setup/DVB/Use Dolby Digital" now only controls whether Dolby Digital tracks appear in the "Audio" menu. Dolby Digital is always recorded. This obsoletes the DOLBYINREC patch.
189 lines
6.1 KiB
C
189 lines
6.1 KiB
C
/*
|
|
* eitscan.c: EIT scanner
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: eitscan.c 2.1 2010/02/07 12:12:05 kls Exp $
|
|
*/
|
|
|
|
#include "eitscan.h"
|
|
#include <stdlib.h>
|
|
#include "channels.h"
|
|
#include "dvbdevice.h"
|
|
#include "skins.h"
|
|
#include "transfer.h"
|
|
|
|
// --- cScanData -------------------------------------------------------------
|
|
|
|
class cScanData : public cListObject {
|
|
private:
|
|
cChannel channel;
|
|
public:
|
|
cScanData(const cChannel *Channel);
|
|
virtual int Compare(const cListObject &ListObject) const;
|
|
int Source(void) const { return channel.Source(); }
|
|
int Transponder(void) const { return channel.Transponder(); }
|
|
const cChannel *GetChannel(void) const { return &channel; }
|
|
};
|
|
|
|
cScanData::cScanData(const cChannel *Channel)
|
|
{
|
|
channel = *Channel;
|
|
}
|
|
|
|
int cScanData::Compare(const cListObject &ListObject) const
|
|
{
|
|
const cScanData *sd = (const cScanData *)&ListObject;
|
|
int r = Source() - sd->Source();
|
|
if (r == 0)
|
|
r = Transponder() - sd->Transponder();
|
|
return r;
|
|
}
|
|
|
|
// --- cScanList -------------------------------------------------------------
|
|
|
|
class cScanList : public cList<cScanData> {
|
|
public:
|
|
void AddTransponders(cList<cChannel> *Channels);
|
|
void AddTransponder(const cChannel *Channel);
|
|
};
|
|
|
|
void cScanList::AddTransponders(cList<cChannel> *Channels)
|
|
{
|
|
for (cChannel *ch = Channels->First(); ch; ch = Channels->Next(ch))
|
|
AddTransponder(ch);
|
|
Sort();
|
|
}
|
|
|
|
void cScanList::AddTransponder(const cChannel *Channel)
|
|
{
|
|
if (Channel->Source() && Channel->Transponder()) {
|
|
for (cScanData *sd = First(); sd; sd = Next(sd)) {
|
|
if (sd->Source() == Channel->Source() && ISTRANSPONDER(sd->Transponder(), Channel->Transponder()))
|
|
return;
|
|
}
|
|
Add(new cScanData(Channel));
|
|
}
|
|
}
|
|
|
|
// --- cTransponderList ------------------------------------------------------
|
|
|
|
class cTransponderList : public cList<cChannel> {
|
|
public:
|
|
void AddTransponder(cChannel *Channel);
|
|
};
|
|
|
|
void cTransponderList::AddTransponder(cChannel *Channel)
|
|
{
|
|
for (cChannel *ch = First(); ch; ch = Next(ch)) {
|
|
if (ch->Source() == Channel->Source() && ch->Transponder() == Channel->Transponder()) {
|
|
delete Channel;
|
|
return;
|
|
}
|
|
}
|
|
Add(Channel);
|
|
}
|
|
|
|
// --- cEITScanner -----------------------------------------------------------
|
|
|
|
cEITScanner EITScanner;
|
|
|
|
cEITScanner::cEITScanner(void)
|
|
{
|
|
lastScan = lastActivity = time(NULL);
|
|
currentDevice = NULL;
|
|
currentChannel = 0;
|
|
scanList = NULL;
|
|
transponderList = NULL;
|
|
}
|
|
|
|
cEITScanner::~cEITScanner()
|
|
{
|
|
delete scanList;
|
|
delete transponderList;
|
|
}
|
|
|
|
void cEITScanner::AddTransponder(cChannel *Channel)
|
|
{
|
|
if (!transponderList)
|
|
transponderList = new cTransponderList;
|
|
transponderList->AddTransponder(Channel);
|
|
}
|
|
|
|
void cEITScanner::ForceScan(void)
|
|
{
|
|
lastActivity = 0;
|
|
}
|
|
|
|
void cEITScanner::Activity(void)
|
|
{
|
|
if (currentChannel) {
|
|
Channels.SwitchTo(currentChannel);
|
|
currentChannel = 0;
|
|
}
|
|
lastActivity = time(NULL);
|
|
}
|
|
|
|
void cEITScanner::Process(void)
|
|
{
|
|
if (Setup.EPGScanTimeout || !lastActivity) { // !lastActivity means a scan was forced
|
|
time_t now = time(NULL);
|
|
if (now - lastScan > ScanTimeout && now - lastActivity > ActivityTimeout) {
|
|
if (Channels.Lock(false, 10)) {
|
|
if (!scanList) {
|
|
scanList = new cScanList;
|
|
scanList->AddTransponders(&Channels);
|
|
if (transponderList) {
|
|
scanList->AddTransponders(transponderList);
|
|
delete transponderList;
|
|
transponderList = NULL;
|
|
}
|
|
}
|
|
bool AnyDeviceSwitched = false;
|
|
for (int i = 0; i < cDevice::NumDevices(); i++) {
|
|
cDevice *Device = cDevice::GetDevice(i);
|
|
if (Device) {
|
|
for (cScanData *ScanData = scanList->First(); ScanData; ScanData = scanList->Next(ScanData)) {
|
|
const cChannel *Channel = ScanData->GetChannel();
|
|
if (Channel) {
|
|
if (!Channel->Ca() || Channel->Ca() == Device->DeviceNumber() + 1 || Channel->Ca() >= CA_ENCRYPTED_MIN) {
|
|
if (Device->ProvidesTransponder(Channel)) {
|
|
if (!Device->Receiving()) {
|
|
bool MaySwitchTransponder = Device->MaySwitchTransponder();
|
|
if (MaySwitchTransponder || Device->ProvidesTransponderExclusively(Channel) && now - lastActivity > Setup.EPGScanTimeout * 3600) {
|
|
if (!MaySwitchTransponder) {
|
|
if (Device == cDevice::ActualDevice() && !currentChannel) {
|
|
cDevice::PrimaryDevice()->StopReplay(); // stop transfer mode
|
|
currentChannel = Device->CurrentChannel();
|
|
Skins.Message(mtInfo, tr("Starting EPG scan"));
|
|
}
|
|
}
|
|
currentDevice = Device;//XXX see also dvbdevice.c!!!
|
|
//dsyslog("EIT scan: device %d source %-8s tp %5d", Device->DeviceNumber() + 1, *cSource::ToString(Channel->Source()), Channel->Transponder());
|
|
Device->SwitchChannel(Channel, false);
|
|
currentDevice = NULL;
|
|
scanList->Del(ScanData);
|
|
AnyDeviceSwitched = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (!scanList->Count() || !AnyDeviceSwitched) {
|
|
delete scanList;
|
|
scanList = NULL;
|
|
if (lastActivity == 0) // this was a triggered scan
|
|
Activity();
|
|
}
|
|
Channels.Unlock();
|
|
}
|
|
lastScan = time(NULL);
|
|
}
|
|
}
|
|
}
|