MythTV  master
dvbchannel.h
Go to the documentation of this file.
1 // -*- Mode: c++ -*-
2 /*
3  * Copyright (C) Kenneth Aafloy 2003
4  *
5  * Copyright notice is in dvbchannel.cpp of the MythTV project.
6  */
7 
8 #ifndef DVBCHANNEL_H
9 #define DVBCHANNEL_H
10 
11 #include <QMap>
12 #include <QObject>
13 #include <QString>
14 
15 #include "libmythbase/mythdate.h"
16 #include "libmythbase/mythdbcon.h"
17 
18 #include "diseqc.h"
19 #include "dtvchannel.h"
20 #include "dtvconfparserhelpers.h" // for DTVTunerType
21 #include "mpeg/streamlisteners.h"
22 
23 class TVRec;
24 class DVBCam;
25 class DVBRecorder;
26 class DVBChannel;
27 
28 using IsOpenMap = QMap<const DVBChannel*,bool>;
29 
30 class DVBChannel : public DTVChannel
31 {
32  public:
33  explicit DVBChannel(QString device, TVRec *parent = nullptr);
34  ~DVBChannel() override;
35 
36  bool Open(void) override // ChannelBase
37  { return Open(this); }
38  void Close(void) override // ChannelBase
39  { Close(this); }
40 
41  bool Init(QString &startchannel, bool setchan) override; // ChannelBase
42 
43  // Sets
44  void SetPMT(const ProgramMapTable *pmt);
45  void SetTimeOffset(double offset);
46  void SetSlowTuning(std::chrono::milliseconds how_slow)
47  { m_tuningDelay = how_slow; }
48 
49  // Gets
50  bool IsOpen(void) const override; // ChannelBase
51  int GetFd(void) const override // ChannelBase
52  { return m_fdFrontend; }
53  bool IsTuningParamsProbeSupported(void) const;
54 
55  QString GetDevice(void) const override // ChannelBase
56  { return m_device; }
58  QString GetCardNum(void) const { return m_device; };
60  QString GetFrontendName(void) const { return m_frontendName; }
61  bool IsMaster(void) const override; // DTVChannel
63  bool HasCRCBug(void) const { return m_hasCrcBug; }
64  std::chrono::milliseconds GetMinSignalMonitorDelay(void) const { return m_sigMonDelay; }
66  const DiSEqCDevRotor *GetRotor(void) const;
67 
69  bool HasLock(bool *ok = nullptr) const;
71  double GetSignalStrength(bool *ok = nullptr) const;
79  double GetSNR(bool *ok = nullptr) const;
81  double GetBitErrorRate(bool *ok = nullptr) const;
83  double GetUncorrectedBlockCount(bool *ok = nullptr) const;
84  uint64_t GetCapabilities(void) const { return m_capabilities; }
85  bool CanDo(uint64_t capability) const { return (m_capabilities & capability) != 0; }
86 
87  // Commands
88  bool SwitchToInput(int newcapchannel, bool setstarting);
89  using DTVChannel::Tune;
90  bool Tune(const DTVMultiplex &tuning) override; // DTVChannel
91  bool Tune(const DTVMultiplex &tuning,
92  bool force_reset = false, bool same_input = false);
93  bool Retune(void) override; // ChannelBase
94 
95  bool ProbeTuningParams(DTVMultiplex &tuning) const;
96 
97  private:
98  bool Open(DVBChannel *who);
99  void Close(DVBChannel *who);
100 
101  int GetChanID(void) const override; // ChannelBase
102 
103  void CheckOptions(DTVMultiplex &t) const override; // DTVChannel
104  void CheckFrequency(uint64_t frequency) const;
105  bool CheckModulation(DTVModulation modulation) const;
106  bool CheckCodeRate(DTVCodeRate rate) const;
107 
108  DVBChannel *GetMasterLock(void) const;
109  static void ReturnMasterLock(DVBChannel* &dvbm);
110 
115  double GetSignalStrengthDVBv5(bool *ok) const;
120  double GetSNRDVBv5(bool *ok) const;
124  double GetBitErrorRateDVBv5(bool *ok) const;
128  double GetUncorrectedBlockCountDVBv5(bool *ok) const;
129 
130  void DrainDVBEvents(void);
131  bool WaitForBackend(std::chrono::milliseconds timeout_ms);
132 
133  private:
135 
136  // Data
139  DVBCam *m_dvbCam {nullptr}; // Used to decrypt encrypted streams
140 
141  // Device info
142  QString m_frontendName;
143  uint64_t m_capabilities {0};
144  uint64_t m_extModulations {0};
145  uint64_t m_frequencyMinimum {0};
146  uint64_t m_frequencyMaximum {0};
149 
150  uint m_version {0}; // DVB API version
151  bool m_legacyFe {false}; // Use legacy DVBv3 API
152  bool m_hasV5Stats {false}; // Use DVBv5 API for statistics
153  DTVModulationSystem m_currentSys; // Currently configured modulation system
154  QList<DTVModulationSystem> m_sysList; // List of supported modulation systems
155 
156  // Tuning State
157  mutable QMutex m_tuneLock;
158  mutable QRecursiveMutex m_hwLock;
159 
160  DTVMultiplex m_desiredTuning; // Last tuning options Tune() attempted to send to hardware
161  DTVMultiplex m_prevTuning; // Last tuning options Tune() succesfully sent to hardware
162 
164 
165  std::chrono::milliseconds m_tuningDelay { 0ms}; // Extra delay to add for broken drivers
166  std::chrono::milliseconds m_sigMonDelay {25ms}; // Minimum delay between FE_LOCK checks
167  bool m_firstTune {true}; // Used to force hardware reset
168 
169  // Other State
170  int m_fdFrontend {-1}; // File descriptor for tuning hardware
171  QString m_device; // DVB Device
172  QString m_key; // master lock key
173  bool m_hasCrcBug {false}; // true iff our driver munges PMT
174 
175  static std::chrono::milliseconds s_lastTuning; // Time of last tuning
177 };
178 
179 #endif
DVBChannel::GetFd
int GetFd(void) const override
Returns file descriptor, -1 if it does not exist.
Definition: dvbchannel.h:51
DVBChannel::CheckModulation
bool CheckModulation(DTVModulation modulation) const
Return true iff modulation is supported modulation on the frontend.
Definition: dvbchannel.cpp:704
DTVMultiplex
Definition: dtvmultiplex.h:24
dtvchannel.h
DVBChannel::GetUncorrectedBlockCount
double GetUncorrectedBlockCount(bool *ok=nullptr) const
Returns # of uncorrected blocks since last call. First call undefined.
Definition: dvbchannel.cpp:1495
DVBChannel::Init
bool Init(QString &startchannel, bool setchan) override
Definition: dvbchannel.cpp:555
DVBChannel::m_extModulations
uint64_t m_extModulations
Definition: dvbchannel.h:144
DVBChannel::ReturnMasterLock
static void ReturnMasterLock(DVBChannel *&dvbm)
Definition: dvbchannel.cpp:1526
DVBChannel::m_currentSys
DTVModulationSystem m_currentSys
Definition: dvbchannel.h:153
DVBChannel::m_tuneLock
QMutex m_tuneLock
Definition: dvbchannel.h:157
DVBChannel::IsTuningParamsProbeSupported
bool IsTuningParamsProbeSupported(void) const
Returns true iff tuning info probing is working.
Definition: dvbchannel.cpp:991
DVBChannel::m_frontendName
QString m_frontendName
Definition: dvbchannel.h:142
DVBChannel::GetRotor
const DiSEqCDevRotor * GetRotor(void) const
Returns rotor object if it exists, nullptr otherwise.
Definition: dvbchannel.cpp:1161
DiSEqCDevRotor
Rotor class.
Definition: diseqc.h:302
DVBChannel::m_frequencyMinimum
uint64_t m_frequencyMinimum
Definition: dvbchannel.h:145
DVBChannel::DVBChannel
DVBChannel(QString device, TVRec *parent=nullptr)
Definition: dvbchannel.cpp:83
DVBChannel::GetBitErrorRateDVBv5
double GetBitErrorRateDVBv5(bool *ok) const
Get Bit Error Rate from the DVBv5 interface.
Definition: dvbchannel.cpp:1377
DVBChannel::CheckCodeRate
bool CheckCodeRate(DTVCodeRate rate) const
Return true iff rate is supported rate on the frontend.
Definition: dvbchannel.cpp:685
DVBChannel::CanDo
bool CanDo(uint64_t capability) const
Definition: dvbchannel.h:85
diseqc.h
DVBChannel::GetCapabilities
uint64_t GetCapabilities(void) const
Definition: dvbchannel.h:84
ProgramMapTable
A PMT table maps a program described in the ProgramAssociationTable to various PID's which describe t...
Definition: mpegtables.h:675
DVBChannel::CheckOptions
void CheckOptions(DTVMultiplex &t) const override
Checks tuning for problems, and tries to fix them.
Definition: dvbchannel.cpp:578
mythdbcon.h
DVBChannel::m_symbolRateMaximum
uint m_symbolRateMaximum
Definition: dvbchannel.h:148
x0
static int x0
Definition: mythsocket.cpp:49
streamlisteners.h
DTVChannel::Tune
virtual bool Tune(const DTVMultiplex &tuning)=0
This performs the actual frequency tuning and in some cases input switching.
DVBChannel::m_key
QString m_key
Definition: dvbchannel.h:172
DVBChannel::GetSignalStrength
double GetSignalStrength(bool *ok=nullptr) const
Returns signal strength in the range [0.0..1.0] (non-calibrated).
Definition: dvbchannel.cpp:1259
DVBChannel::SetPMT
void SetPMT(const ProgramMapTable *pmt)
Tells the Conditional Access Module which streams we wish to decode.
Definition: dvbchannel.cpp:729
DVBChannel::m_isOpen
IsOpenMap m_isOpen
Definition: dvbchannel.h:134
DVBChannel::m_frequencyMaximum
uint64_t m_frequencyMaximum
Definition: dvbchannel.h:146
DVBChannel::SwitchToInput
bool SwitchToInput(int newcapchannel, bool setstarting)
DVBChannel::IsMaster
bool IsMaster(void) const override
Returns true if this is the first of a number of multi-rec devs.
Definition: dvbchannel.cpp:1542
DTVCodeRate
Definition: dtvconfparserhelpers.h:280
DVBChannel::m_capabilities
uint64_t m_capabilities
Definition: dvbchannel.h:143
DiSEqCDevSettings
DVB-S device settings class.
Definition: diseqc.h:36
DVBCam
Definition: dvbcam.h:22
DVBChannel::m_prevTuning
DTVMultiplex m_prevTuning
Definition: dvbchannel.h:161
mythdate.h
DVBChannel::m_dvbCam
DVBCam * m_dvbCam
Definition: dvbchannel.h:139
DVBChannel::SetSlowTuning
void SetSlowTuning(std::chrono::milliseconds how_slow)
Definition: dvbchannel.h:46
DVBChannel::GetDevice
QString GetDevice(void) const override
Returns String representing device, useful for debugging.
Definition: dvbchannel.h:55
DVBChannel::m_hasV5Stats
bool m_hasV5Stats
Definition: dvbchannel.h:152
hardwareprofile.i18n.t
t
Definition: i18n.py:36
DVBChannel::WaitForBackend
bool WaitForBackend(std::chrono::milliseconds timeout_ms)
Waits for backend to get tune message.
Definition: dvbchannel.cpp:1589
DVBChannel::Tune
bool Tune(const DTVMultiplex &tuning) override
This performs the actual frequency tuning and in some cases input switching.
Definition: dvbchannel.cpp:747
DVBChannel::Close
void Close(void) override
Closes the channel changing hardware to use.
Definition: dvbchannel.h:38
DVBChannel::~DVBChannel
~DVBChannel() override
Definition: dvbchannel.cpp:109
DVBChannel::GetSNR
double GetSNR(bool *ok=nullptr) const
Returns signal/noise in the range [0..1.0].
Definition: dvbchannel.cpp:1344
DVBChannel::m_symbolRateMinimum
uint m_symbolRateMinimum
Definition: dvbchannel.h:147
DVBChannel::m_sysList
QList< DTVModulationSystem > m_sysList
Definition: dvbchannel.h:154
DVBChannel::m_fdFrontend
int m_fdFrontend
Definition: dvbchannel.h:170
DVBChannel::m_version
uint m_version
Definition: dvbchannel.h:150
DVBChannel::m_diseqcSettings
DiSEqCDevSettings m_diseqcSettings
Definition: dvbchannel.h:137
DVBChannel::m_sigMonDelay
std::chrono::milliseconds m_sigMonDelay
Definition: dvbchannel.h:166
DVBChannel::m_legacyFe
bool m_legacyFe
Definition: dvbchannel.h:151
DVBChannel::m_lastLnbDevId
uint m_lastLnbDevId
Definition: dvbchannel.h:163
DVBChannel::m_desiredTuning
DTVMultiplex m_desiredTuning
Definition: dvbchannel.h:160
DVBChannel::GetUncorrectedBlockCountDVBv5
double GetUncorrectedBlockCountDVBv5(bool *ok) const
Get Uncorrected Block Count from the DVBv5 interface.
Definition: dvbchannel.cpp:1458
DVBRecorder
This is a specialization of DTVRecorder used to handle streams from DVB drivers.
Definition: dvbrecorder.h:21
DVBChannel::Retune
bool Retune(void) override
Definition: dvbchannel.cpp:983
DVBChannel::GetMinSignalMonitorDelay
std::chrono::milliseconds GetMinSignalMonitorDelay(void) const
Definition: dvbchannel.h:64
DVBChannel::GetBitErrorRate
double GetBitErrorRate(bool *ok=nullptr) const
Returns # of corrected bits since last call. First call undefined.
Definition: dvbchannel.cpp:1427
DVBChannel
Provides interface to the tuning hardware when using DVB drivers.
Definition: dvbchannel.h:30
DVBChannel::Open
bool Open(void) override
Opens the channel changing hardware for use.
Definition: dvbchannel.h:36
DVBChannel::GetSNRDVBv5
double GetSNRDVBv5(bool *ok) const
Get SNR from the DVBv5 interface [0-1.0] It is transformed to a linear relative scale if provided in ...
Definition: dvbchannel.cpp:1292
DVBChannel::m_hwLock
QRecursiveMutex m_hwLock
Definition: dvbchannel.h:158
DVBChannel::HasCRCBug
bool HasCRCBug(void) const
Returns true iff we have a faulty DVB driver that munges PMT.
Definition: dvbchannel.h:63
DTVModulationSystem
Definition: dtvconfparserhelpers.h:644
IsOpenMap
QMap< const DVBChannel *, bool > IsOpenMap
Definition: dvbchannel.h:28
DVBChannel::GetFrontendName
QString GetFrontendName(void) const
Returns frontend name as reported by driver.
Definition: dvbchannel.h:60
DVBChannel::m_firstTune
bool m_firstTune
Definition: dvbchannel.h:167
DVBChannel::SetTimeOffset
void SetTimeOffset(double offset)
Tells the Conditional Access Module the offset from the computers utc time to dvb time.
Definition: dvbchannel.cpp:741
DVBChannel::m_tuningDelay
std::chrono::milliseconds m_tuningDelay
Definition: dvbchannel.h:165
DVBChannel::CheckFrequency
void CheckFrequency(uint64_t frequency) const
Checks tuning frequency.
Definition: dvbchannel.cpp:566
DVBChannel::m_diseqcTree
DiSEqCDevTree * m_diseqcTree
Definition: dvbchannel.h:138
TVRec
This is the coordinating class of the Recorder Subsystem.
Definition: tv_rec.h:142
DVBChannel::ProbeTuningParams
bool ProbeTuningParams(DTVMultiplex &tuning) const
Fetches DTVMultiplex params from driver.
Definition: dvbchannel.cpp:1037
DVBChannel::HasLock
bool HasLock(bool *ok=nullptr) const
Returns true iff we have a signal carrier lock.
Definition: dvbchannel.cpp:1169
DVBChannel::m_hasCrcBug
bool m_hasCrcBug
Definition: dvbchannel.h:173
DVBChannel::m_device
QString m_device
Definition: dvbchannel.h:171
DiSEqCDevTree
DVB-S device tree class. Represents a tree of DVB-S devices.
Definition: diseqc.h:74
DVBChannel::GetMasterLock
DVBChannel * GetMasterLock(void) const
Definition: dvbchannel.cpp:1533
DVBChannel::IsOpen
bool IsOpen(void) const override
Reports whether channel is already open.
Definition: dvbchannel.cpp:547
DVBChannel::GetChanID
int GetChanID(void) const override
Returns Channel ID.
Definition: dvbchannel.cpp:1097
DTVChannel
Class providing a generic interface to digital tuning hardware.
Definition: dtvchannel.h:33
DVBChannel::DrainDVBEvents
void DrainDVBEvents(void)
Definition: dvbchannel.cpp:1554
DVBChannel::GetSignalStrengthDVBv5
double GetSignalStrengthDVBv5(bool *ok) const
Get Signal strength from the DVBv5 interface [0-1.0] It is transformed to a linear relative scale if ...
Definition: dvbchannel.cpp:1203
DVBChannel::m_tuneDelayLock
QMutex m_tuneDelayLock
Definition: dvbchannel.h:176
DVBChannel::s_lastTuning
static std::chrono::milliseconds s_lastTuning
Definition: dvbchannel.h:175
dtvconfparserhelpers.h
DVBChannel::GetCardNum
QString GetCardNum(void) const
Returns DVB device number, used to construct filenames for DVB devices.
Definition: dvbchannel.h:58
DTVModulation
Definition: dtvconfparserhelpers.h:347
uint
unsigned int uint
Definition: freesurround.h:24