X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/7427772dbd7bd10ad6d59801f4628552f5eac6ab..0b3f18c91718d63aa418d95a81d8464914cd4031:/lib/dvb/frontend.h diff --git a/lib/dvb/frontend.h b/lib/dvb/frontend.h index 764d6b3f..0bef95d1 100644 --- a/lib/dvb/frontend.h +++ b/lib/dvb/frontend.h @@ -1,12 +1,7 @@ #ifndef __dvb_frontend_h #define __dvb_frontend_h -#include #include -#include - -class eSecCommandList; - class eDVBFrontendParameters: public iDVBFrontendParameters { DECLARE_REF(eDVBFrontendParameters); @@ -19,30 +14,42 @@ class eDVBFrontendParameters: public iDVBFrontendParameters int m_type; public: eDVBFrontendParameters(); + ~eDVBFrontendParameters() {} RESULT getSystem(int &type) const; - RESULT getDVBS(eDVBFrontendParametersSatellite &p) const; - RESULT getDVBC(eDVBFrontendParametersCable &p) const; - RESULT getDVBT(eDVBFrontendParametersTerrestrial &p) const; + RESULT getDVBS(eDVBFrontendParametersSatellite &SWIG_OUTPUT) const; + RESULT getDVBC(eDVBFrontendParametersCable &SWIG_OUTPUT) const; + RESULT getDVBT(eDVBFrontendParametersTerrestrial &SWIG_OUTPUT) const; - RESULT setDVBS(const eDVBFrontendParametersSatellite &p); + RESULT setDVBS(const eDVBFrontendParametersSatellite &p, bool no_rotor_command_on_tune=false); RESULT setDVBC(const eDVBFrontendParametersCable &p); RESULT setDVBT(const eDVBFrontendParametersTerrestrial &p); - RESULT calculateDifference(const iDVBFrontendParameters *parm, int &diff) const; + RESULT calculateDifference(const iDVBFrontendParameters *parm, int &SWIG_OUTPUT, bool exact) const; - RESULT getHash(unsigned long &hash) const; + RESULT getHash(unsigned long &SWIG_OUTPUT) const; }; +#ifndef SWIG + +#include +class eSecCommandList; + class eDVBFrontend: public iDVBFrontend, public Object { DECLARE_REF(eDVBFrontend); int m_type; - int m_fe; + int m_dvbid; + int m_slotid; int m_fd; + bool m_need_rotor_workaround; + char m_filename[128]; + char m_description[128]; #if HAVE_DVB_API_VERSION < 3 int m_secfd; + char m_sec_filename[128]; #endif + FRONTENDPARAMETERS parm; int m_state; Signal1 m_stateChanged; @@ -54,19 +61,30 @@ class eDVBFrontend: public iDVBFrontend, public Object eSecCommandList m_sec_sequence; - int m_data[7]; /* when satellite frontend then - data[0] = lastcsw -> state of the committed switch - data[1] = lastucsw -> state of the uncommitted switch - data[2] = lastToneburst -> current state of toneburst switch - data[3] = newRotorCmd -> last sent rotor cmd - data[4] = newRotorPos -> current Rotor Position - data[5] = curRotorCmd - data[6] = curRotorPos */ + enum { + CSW, // state of the committed switch + UCSW, // state of the uncommitted switch + TONEBURST, // current state of toneburst switch + NEW_ROTOR_CMD, // prev sent rotor cmd + NEW_ROTOR_POS, // new rotor position (not validated) + ROTOR_CMD, // completed rotor cmd (finalized) + ROTOR_POS, // current rotor position + LINKED_PREV_PTR, // prev double linked list (for linked FEs) + LINKED_NEXT_PTR, // next double linked list (for linked FEs) + SATPOS_DEPENDS_PTR, // pointer to FE with configured rotor (with twin/quattro lnb) + FREQ_OFFSET, // current frequency offset + CUR_VOLTAGE, // current voltage + CUR_TONE, // current continuous tone + NUM_DATA_ENTRIES + }; + + int m_data[NUM_DATA_ENTRIES]; int m_idleInputpower[2]; // 13V .. 18V int m_runningInputpower; + int m_timeoutCount; // needed for timeout - int m_curVoltage; + int m_retryCount; // diseqc retry for rotor void feEvent(int); void timeout(); @@ -74,12 +92,16 @@ class eDVBFrontend: public iDVBFrontend, public Object void setFrontend(); int readInputpower(); bool setSecSequencePos(int steps); + void setRotorData(int pos, int cmd); public: eDVBFrontend(int adap, int fe, int &ok); virtual ~eDVBFrontend(); RESULT getFrontendType(int &type); RESULT tune(const iDVBFrontendParameters &where); + RESULT prepare_sat(const eDVBFrontendParametersSatellite &); + RESULT prepare_cable(const eDVBFrontendParametersCable &); + RESULT prepare_terrestrial(const eDVBFrontendParametersTerrestrial &); RESULT connectStateChange(const Slot1 &stateChange, ePtr &connection); RESULT getState(int &state); RESULT setTone(int tone); @@ -90,10 +112,20 @@ public: RESULT setSecSequence(const eSecCommandList &list); RESULT getData(int num, int &data); RESULT setData(int num, int val); - - int isCompatibleWith(const eDVBChannelID &chid); - - int getID() { return m_fe; } + + int readFrontendData(int type); // bitErrorRate, signalPower, signalPowerdB, signalQuality, locked, synced + void getFrontendStatus(ePyObject dest); + void getTransponderData(ePyObject dest, bool original); + void getFrontendData(ePyObject dest); + + int isCompatibleWith(ePtr &feparm); + int getDVBID() { return m_dvbid; } + int getSlotID() { return m_slotid; } + void setSlotInfo(ePyObject obj); // get a tuple (slotid, slotdescr) + + int openFrontend(); + int closeFrontend(); }; +#endif // SWIG #endif