mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
VDR developer version 2.1.1 is now available at ftp://ftp.tvdr.de/vdr/Developer/vdr-2.1.1.tar.bz2 A 'diff' against the previous version is available at ftp://ftp.tvdr.de/vdr/Developer/vdr-2.0.0-2.1.1.diff MD5 checksums: b17f9838bb8ddee9620f838fea7a171d vdr-2.1.1.tar.bz2 8b8ca593885c380cd370e6d19a5b16a1 vdr-2.0.0-2.1.1.diff WARNING: ======== This is a *developer* version. Even though *I* use it in my productive environment, I strongly recommend that you only use it under controlled conditions and for testing and debugging. The main focus of this version is on adding basic support for positioners to control steerable satellite dishes. Manually controlling the dish position and storing individual positions will follow later. The fixes contained in this version will be released in a stable version 2.0.3 later, if there are no problems. From the HISTORY file: - Fixed initializing cDevice::keepTracks. - Fixed an endless loop in cTextWrapper::Set() in case the given Width is smaller than one character (reported by Stefan Braun). - Removed all "modified since version 1.6" markers from PLUGINS.html. - Added definitions for older DVB API versions, back until 5.0 (based on a patch from Udo Richter). - Changed cThread::SetIOPriority() from "best effort class" to "idle class" in order to improve overall performance when an editing process is running (thanks to Jochen Dolze). - Fixed handling '/' and '~' in recording file names in case DirectoryEncoding is used (thanks to Lars Hanisch). - Changed the sign of the satellite position value in cSource to reflect the standard of western values being negative. The new member function cSource::Position() can be used to retrieve the orbital position of a satellite. - Fixed multiple occurrences of the same directory in the recordings list in case there are directories that only differ in non-alphanumeric characters (was broken by "Fixed selecting the last replayed recording in the Recordings menu in case there are folders and plain recordings with names that differ only in non-alphanumeric characters" in version 1.7.36). - Fixed displaying the frame number when setting an editing mark (thanks to Thomas Günther). - Fixed no longer generating any editing marks if the edited recording results in just one single sequence (reported by Halim Sahin). - Fixed an error message when parsing SCR values in diseqc.conf. - Fixed an unexpected RCS version tag in the newplugin script. - Fixed an endless loop in the DrawEllipse() functions for very small ellipses (reported by Stefan Braun). - Fixed a crash in the LCARS skin's main menu in case there is no current channel (reported by Dominique Dumont). - Added basic support for positioners to control steerable satellite dishes (based on a patch from Seppo Ingalsuo and Ales Jurik). + Supports GotoN (aka "DiSEqC 1.2") and GotoX (aka "USALS"). + The new DiSEqC command code 'P' can be used to instruct a positioner to move the dish to the required satellite position. When a 'P' code is processed, further execution of the remaining DiSEqC sequence (if any) is postponed until the positioner has reached the new satellite position. + The new special source value of "S360E" can be used in diseqc.conf to indicate that an entry using a positioner can move the dish to any requested position within its range. Think of it as "full circle". + The devices a particular cDiseqc or cScr applies to are now stored directly in each cDiseqc or cScr, respectively. + A plugin can implement a custom positioner control (see PLUGINS.html, section "Positioners"). + The new function cSkinDisplayChannel::SetPositioner() can be implemented by skins to show the user a progress display when the dish is being moved. The default implementation calls SetMessage() with a string indicating the new position the dish is being moved to. The LCARS skin shows a progress bar indicating the movement of the dish. + The new parameters "Site latitude", "Site longitude", "Positioner speed", and "Positioner swing" in the "Setup/LNB" menu can be used to configure the necessary values for a steerable dish. + The cDvbTuner now has a new status tsPositioning, in which it waits until a steerable dish has reached its target position. Parsing SI data is paused until the target position has been reached. - The LCARS skin now shows the source value of the current channel in its channel display. - Fixed asserting free disk space in the cutter. - No longer trying to delete old recordings in AssertFreeDiskSpace() if the given Priority is less than 1. - Fixed handling LIRC events in case repeated events are lost. - Fixed a possible crash when shutting down VDR while subtitles are being displayed (reported by Ville Skyttä). - cDevice::IsPrimaryDevice() now also checks whether the primary device actually has a decoder and returns false otherwise. This should improve device allocation on systems that are only used as a receiver and don't actually display anything. - Increased the value of MAXRETRIES to 20 to reduce the probability of disturbances in transfer mode. - All bonded devices (except for the master) now turn off their LNB power completely to avoid problems when receiving vertically polarized transponders (suggested by Manfred Völkel and Oliver Endriss). - Reverted the change from version 1.5.7 that made all logging go to LOG_ERR (thanks to Christopher Reimer). - Added Begin/EndSegmentTransfer() to the EPG handler interface (thanks to Jörg Wendel). - The code for distributing recordings over several video directories is now deprecated and disabled by default. You can re-enable this feature by removing the comment sign ('//') from the beginning of the line //#define DEPRECATED_DISTRIBUTED_VIDEODIR // Code enclosed with this macro is ... in the file videodir.c. Note, though, that this can only be a temporary workaround. This feature will be completely removed in one of the next developer versions. Distributing the video directory over several disks was a useful feature in times when disks were still relatively small, but it also caused serious problems in case one of the disks failed. Nowadays hard disks come in sizes measured in terabytes, and tools like "mhddfs" can be used to combine several disks to form one large volume. A recommended method for a relatively safe disk setup in a VDR system is to use two 1TB (or larger) disks and use them as a RAID-1 (mirrored). That way, if one disk fails, you can replace it without data loss.
439 lines
12 KiB
C
439 lines
12 KiB
C
/*
|
|
* diseqc.c: DiSEqC handling
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: diseqc.c 3.2 2013/08/21 09:26:11 kls Exp $
|
|
*/
|
|
|
|
#include "diseqc.h"
|
|
#include <ctype.h>
|
|
#include <linux/dvb/frontend.h>
|
|
#include <sys/ioctl.h>
|
|
#include "sources.h"
|
|
#include "thread.h"
|
|
|
|
#define ALL_DEVICES (~0) // all bits set to '1'
|
|
#define MAX_DEVICES 32 // each bit in a 32-bit integer represents one device
|
|
|
|
static int CurrentDevices = 0;
|
|
|
|
static bool IsDeviceNumbers(const char *s)
|
|
{
|
|
return *s && s[strlen(s) - 1] == ':';
|
|
}
|
|
|
|
static bool ParseDeviceNumbers(const char *s)
|
|
{
|
|
if (IsDeviceNumbers(s)) {
|
|
CurrentDevices = 0;
|
|
const char *p = s;
|
|
while (*p && *p != ':') {
|
|
char *t = NULL;
|
|
int d = strtol(p, &t, 10);
|
|
p = t;
|
|
if (0 < d && d <= MAX_DEVICES)
|
|
CurrentDevices |= (1 << d - 1);
|
|
else {
|
|
esyslog("ERROR: invalid device number %d in '%s'", d, s);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// --- cDiseqcPositioner -----------------------------------------------------
|
|
|
|
// See http://www.eutelsat.com/files/live/sites/eutelsatv2/files/contributed/satellites/pdf/Diseqc/associated%20docs/positioner_appli_notice.pdf
|
|
|
|
cDiseqcPositioner::cDiseqcPositioner(void)
|
|
{
|
|
SetCapabilities(pcCanDrive |
|
|
pcCanStep |
|
|
pcCanHalt |
|
|
pcCanSetLimits |
|
|
pcCanDisableLimits |
|
|
pcCanEnableLimits |
|
|
pcCanStorePosition |
|
|
pcCanRecalcPositions |
|
|
pcCanGotoPosition |
|
|
pcCanGotoAngle
|
|
);
|
|
}
|
|
|
|
void cDiseqcPositioner::SendDiseqc(uint8_t *Codes, int NumCodes)
|
|
{
|
|
struct dvb_diseqc_master_cmd cmd;
|
|
NumCodes = min(NumCodes, int(sizeof(cmd.msg) - 2));
|
|
cmd.msg_len = 0;
|
|
cmd.msg[cmd.msg_len++] = 0xE0;
|
|
cmd.msg[cmd.msg_len++] = 0x31;
|
|
for (int i = 0; i < NumCodes; i++)
|
|
cmd.msg[cmd.msg_len++] = Codes[i];
|
|
CHECK(ioctl(Frontend(), FE_DISEQC_SEND_MASTER_CMD, &cmd));
|
|
}
|
|
|
|
void cDiseqcPositioner::Drive(ePositionerDirection Direction)
|
|
{
|
|
uint8_t Code[] = { uint8_t(Direction == pdLeft ? 0x68 : 0x69), 0x00 };
|
|
SendDiseqc(Code, 2);
|
|
}
|
|
|
|
void cDiseqcPositioner::Step(ePositionerDirection Direction, uint Steps)
|
|
{
|
|
if (Steps == 0)
|
|
return;
|
|
uint8_t Code[] = { uint8_t(Direction == pdLeft ? 0x68 : 0x69), 0xFF };
|
|
Code[1] -= min(Steps, uint(0x7F)) - 1;
|
|
SendDiseqc(Code, 2);
|
|
}
|
|
|
|
void cDiseqcPositioner::Halt(void)
|
|
{
|
|
uint8_t Code[] = { 0x60 };
|
|
SendDiseqc(Code, 1);
|
|
}
|
|
|
|
void cDiseqcPositioner::SetLimit(ePositionerDirection Direction)
|
|
{
|
|
uint8_t Code[] = { uint8_t(Direction == pdLeft ? 0x66 : 0x67) };
|
|
SendDiseqc(Code, 1);
|
|
}
|
|
|
|
void cDiseqcPositioner::DisableLimits(void)
|
|
{
|
|
uint8_t Code[] = { 0x63 };
|
|
SendDiseqc(Code, 1);
|
|
}
|
|
|
|
void cDiseqcPositioner::EnableLimits(void)
|
|
{
|
|
uint8_t Code[] = { 0x6A, 0x00 };
|
|
SendDiseqc(Code, 2);
|
|
}
|
|
|
|
void cDiseqcPositioner::StorePosition(uint Number)
|
|
{
|
|
uint8_t Code[] = { 0x6A, uint8_t(Number) };
|
|
SendDiseqc(Code, 2);
|
|
}
|
|
|
|
void cDiseqcPositioner::RecalcPositions(uint Number)
|
|
{
|
|
uint8_t Code[] = { 0x6F, uint8_t(Number), 0x00, 0x00 };
|
|
SendDiseqc(Code, 4);
|
|
}
|
|
|
|
void cDiseqcPositioner::GotoPosition(uint Number, int Longitude)
|
|
{
|
|
uint8_t Code[] = { 0x6B, uint8_t(Number) };
|
|
SendDiseqc(Code, 2);
|
|
cPositioner::GotoPosition(Number, Longitude);
|
|
}
|
|
|
|
void cDiseqcPositioner::GotoAngle(int Longitude)
|
|
{
|
|
uint8_t Code[] = { 0x6E, 0x00, 0x00 };
|
|
int Angle = CalcHourAngle(Longitude);
|
|
int a = abs(Angle);
|
|
Code[1] = a / 10 / 16;
|
|
Code[2] = a / 10 % 16 * 16 + a % 10 * 16 / 10;
|
|
Code[1] |= (Angle < 0) ? 0xE0 : 0xD0;
|
|
SendDiseqc(Code, 3);
|
|
cPositioner::GotoAngle(Longitude);
|
|
}
|
|
|
|
// --- cScr ------------------------------------------------------------------
|
|
|
|
cScr::cScr(void)
|
|
{
|
|
devices = 0;
|
|
channel = -1;
|
|
userBand = 0;
|
|
pin = -1;
|
|
used = false;
|
|
}
|
|
|
|
bool cScr::Parse(const char *s)
|
|
{
|
|
if (IsDeviceNumbers(s))
|
|
return ParseDeviceNumbers(s);
|
|
devices = CurrentDevices;
|
|
bool result = false;
|
|
int fields = sscanf(s, "%d %u %d", &channel, &userBand, &pin);
|
|
if (fields == 2 || fields == 3) {
|
|
if (channel >= 0 && channel < 8) {
|
|
result = true;
|
|
if (fields == 3 && (pin < 0 || pin > 255)) {
|
|
esyslog("Error: invalid SCR pin '%d'", pin);
|
|
result = false;
|
|
}
|
|
}
|
|
else
|
|
esyslog("Error: invalid SCR channel '%d'", channel);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
// --- cScrs -----------------------------------------------------------------
|
|
|
|
cScrs Scrs;
|
|
|
|
bool cScrs::Load(const char *FileName, bool AllowComments, bool MustExist)
|
|
{
|
|
CurrentDevices = ALL_DEVICES;
|
|
return cConfig<cScr>::Load(FileName, AllowComments, MustExist);
|
|
}
|
|
|
|
cScr *cScrs::GetUnused(int Device)
|
|
{
|
|
cMutexLock MutexLock(&mutex);
|
|
for (cScr *p = First(); p; p = Next(p)) {
|
|
if (!IsBitSet(p->Devices(), Device - 1))
|
|
continue;
|
|
if (!p->Used()) {
|
|
p->SetUsed(true);
|
|
return p;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
// --- cDiseqc ---------------------------------------------------------------
|
|
|
|
cDiseqc::cDiseqc(void)
|
|
{
|
|
devices = 0;
|
|
source = 0;
|
|
slof = 0;
|
|
polarization = 0;
|
|
lof = 0;
|
|
position = -1;
|
|
scrBank = -1;
|
|
commands = NULL;
|
|
parsing = false;
|
|
}
|
|
|
|
cDiseqc::~cDiseqc()
|
|
{
|
|
free(commands);
|
|
}
|
|
|
|
bool cDiseqc::Parse(const char *s)
|
|
{
|
|
if (IsDeviceNumbers(s))
|
|
return ParseDeviceNumbers(s);
|
|
devices = CurrentDevices;
|
|
bool result = false;
|
|
char *sourcebuf = NULL;
|
|
int fields = sscanf(s, "%a[^ ] %d %c %d %a[^\n]", &sourcebuf, &slof, &polarization, &lof, &commands);
|
|
if (fields == 4)
|
|
commands = NULL; //XXX Apparently sscanf() doesn't work correctly if the last %a argument results in an empty string
|
|
if (4 <= fields && fields <= 5) {
|
|
source = cSource::FromString(sourcebuf);
|
|
if (Sources.Get(source)) {
|
|
polarization = char(toupper(polarization));
|
|
if (polarization == 'V' || polarization == 'H' || polarization == 'L' || polarization == 'R') {
|
|
parsing = true;
|
|
const char *CurrentAction = NULL;
|
|
while (Execute(&CurrentAction, NULL, NULL, NULL, NULL) != daNone)
|
|
;
|
|
parsing = false;
|
|
result = !commands || !*CurrentAction;
|
|
}
|
|
else
|
|
esyslog("ERROR: unknown polarization '%c'", polarization);
|
|
}
|
|
else
|
|
esyslog("ERROR: unknown source '%s'", sourcebuf);
|
|
}
|
|
free(sourcebuf);
|
|
return result;
|
|
}
|
|
|
|
uint cDiseqc::SetScrFrequency(uint SatFrequency, const cScr *Scr, uint8_t *Codes) const
|
|
{
|
|
uint t = SatFrequency == 0 ? 0 : (SatFrequency + Scr->UserBand() + 2) / 4 - 350; // '+ 2' together with '/ 4' results in rounding!
|
|
if (t < 1024 && Scr->Channel() >= 0 && Scr->Channel() < 8) {
|
|
Codes[3] = t >> 8 | (t == 0 ? 0 : scrBank << 2) | Scr->Channel() << 5;
|
|
Codes[4] = t;
|
|
if (t)
|
|
return (t + 350) * 4 - SatFrequency;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int cDiseqc::SetScrPin(const cScr *Scr, uint8_t *Codes) const
|
|
{
|
|
if (Scr->Pin() >= 0 && Scr->Pin() <= 255) {
|
|
Codes[2] = 0x5C;
|
|
Codes[5] = Scr->Pin();
|
|
return 6;
|
|
}
|
|
else {
|
|
Codes[2] = 0x5A;
|
|
return 5;
|
|
}
|
|
}
|
|
|
|
const char *cDiseqc::Wait(const char *s) const
|
|
{
|
|
char *p = NULL;
|
|
errno = 0;
|
|
int n = strtol(s, &p, 10);
|
|
if (!errno && p != s && n >= 0) {
|
|
if (!parsing)
|
|
cCondWait::SleepMs(n);
|
|
return p;
|
|
}
|
|
esyslog("ERROR: invalid value for wait time in '%s'", s - 1);
|
|
return NULL;
|
|
}
|
|
|
|
const char *cDiseqc::GetPosition(const char *s) const
|
|
{
|
|
if (!*s || !isdigit(*s)) {
|
|
position = 0;
|
|
return s;
|
|
}
|
|
char *p = NULL;
|
|
errno = 0;
|
|
int n = strtol(s, &p, 10);
|
|
if (!errno && p != s && n >= 0 && n < 0xFF) {
|
|
if (parsing) {
|
|
if (position < 0)
|
|
position = n;
|
|
else
|
|
esyslog("ERROR: more than one position in '%s'", s - 1);
|
|
}
|
|
return p;
|
|
}
|
|
esyslog("ERROR: invalid satellite position in '%s'", s - 1);
|
|
return NULL;
|
|
}
|
|
|
|
const char *cDiseqc::GetScrBank(const char *s) const
|
|
{
|
|
char *p = NULL;
|
|
errno = 0;
|
|
int n = strtol(s, &p, 10);
|
|
if (!errno && p != s && n >= 0 && n < 8) {
|
|
if (parsing) {
|
|
if (scrBank < 0)
|
|
scrBank = n;
|
|
else
|
|
esyslog("ERROR: more than one scr bank in '%s'", s - 1);
|
|
}
|
|
return p;
|
|
}
|
|
esyslog("ERROR: invalid value for scr bank in '%s'", s - 1);
|
|
return NULL;
|
|
}
|
|
|
|
const char *cDiseqc::GetCodes(const char *s, uchar *Codes, uint8_t *MaxCodes) const
|
|
{
|
|
const char *e = strchr(s, ']');
|
|
if (e) {
|
|
int NumCodes = 0;
|
|
const char *t = s;
|
|
while (t < e) {
|
|
if (NumCodes < MaxDiseqcCodes) {
|
|
errno = 0;
|
|
char *p;
|
|
int n = strtol(t, &p, 16);
|
|
if (!errno && p != t && 0 <= n && n <= 255) {
|
|
if (Codes) {
|
|
if (NumCodes < *MaxCodes)
|
|
Codes[NumCodes++] = uchar(n);
|
|
else {
|
|
esyslog("ERROR: too many codes in code sequence '%s'", s - 1);
|
|
return NULL;
|
|
}
|
|
}
|
|
t = skipspace(p);
|
|
}
|
|
else {
|
|
esyslog("ERROR: invalid code at '%s'", t);
|
|
return NULL;
|
|
}
|
|
}
|
|
else {
|
|
esyslog("ERROR: too many codes in code sequence '%s'", s - 1);
|
|
return NULL;
|
|
}
|
|
}
|
|
if (MaxCodes)
|
|
*MaxCodes = NumCodes;
|
|
return e + 1;
|
|
}
|
|
else
|
|
esyslog("ERROR: missing closing ']' in code sequence '%s'", s - 1);
|
|
return NULL;
|
|
}
|
|
|
|
cDiseqc::eDiseqcActions cDiseqc::Execute(const char **CurrentAction, uchar *Codes, uint8_t *MaxCodes, const cScr *Scr, uint *Frequency) const
|
|
{
|
|
if (!*CurrentAction)
|
|
*CurrentAction = commands;
|
|
while (*CurrentAction && **CurrentAction) {
|
|
switch (*(*CurrentAction)++) {
|
|
case ' ': break;
|
|
case 't': return daToneOff;
|
|
case 'T': return daToneOn;
|
|
case 'v': return daVoltage13;
|
|
case 'V': return daVoltage18;
|
|
case 'A': return daMiniA;
|
|
case 'B': return daMiniB;
|
|
case 'W': *CurrentAction = Wait(*CurrentAction); return daWait;
|
|
case 'P': *CurrentAction = GetPosition(*CurrentAction);
|
|
if (Setup.UsePositioner)
|
|
return position ? daPositionN : daPositionA;
|
|
break;
|
|
case 'S': *CurrentAction = GetScrBank(*CurrentAction); return daScr;
|
|
case '[': *CurrentAction = GetCodes(*CurrentAction, Codes, MaxCodes);
|
|
if (*CurrentAction) {
|
|
if (Scr && Frequency) {
|
|
*Frequency = SetScrFrequency(*Frequency, Scr, Codes);
|
|
*MaxCodes = SetScrPin(Scr, Codes);
|
|
}
|
|
return daCodes;
|
|
}
|
|
break;
|
|
default: esyslog("ERROR: unknown diseqc code '%c'", *(*CurrentAction - 1));
|
|
return daNone;
|
|
}
|
|
}
|
|
return daNone;
|
|
}
|
|
|
|
// --- cDiseqcs --------------------------------------------------------------
|
|
|
|
cDiseqcs Diseqcs;
|
|
|
|
bool cDiseqcs::Load(const char *FileName, bool AllowComments, bool MustExist)
|
|
{
|
|
CurrentDevices = ALL_DEVICES;
|
|
return cConfig<cDiseqc>::Load(FileName, AllowComments, MustExist);
|
|
}
|
|
|
|
const cDiseqc *cDiseqcs::Get(int Device, int Source, int Frequency, char Polarization, const cScr **Scr) const
|
|
{
|
|
for (const cDiseqc *p = First(); p; p = Next(p)) {
|
|
if (!IsBitSet(p->Devices(), Device - 1))
|
|
continue;
|
|
if (cSource::Matches(p->Source(), Source) && p->Slof() > Frequency && p->Polarization() == toupper(Polarization)) {
|
|
if (p->IsScr() && Scr && !*Scr) {
|
|
*Scr = Scrs.GetUnused(Device);
|
|
if (*Scr)
|
|
dsyslog("SCR %d assigned to device %d", (*Scr)->Channel(), Device);
|
|
else
|
|
esyslog("ERROR: no free SCR entry available for device %d", Device);
|
|
}
|
|
return p;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|