X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fdvb_ci%2Fdvbci.h;h=8fa313e2709c8cfaa4d2e153a8b603e60c12fd62;hp=1576b4fd63421893895d1b23ca20f3f4fdbbb39b;hb=2e0270746af934180499931f95ed91c444c8233e;hpb=cb0260fc843d3d7386dd79ae977081d0ad082e04 diff --git a/lib/dvb_ci/dvbci.h b/lib/dvb_ci/dvbci.h index 1576b4f..8fa313e 100644 --- a/lib/dvb_ci/dvbci.h +++ b/lib/dvb_ci/dvbci.h @@ -1,9 +1,13 @@ #ifndef __dvbci_dvbci_h #define __dvbci_dvbci_h -#include +#ifndef SWIG +#include +#include +#include #include +#include class eDVBCISession; class eDVBCIApplicationManagerSession; @@ -11,34 +15,68 @@ class eDVBCICAManagerSession; class eDVBCIMMISession; class eDVBServicePMTHandler; class eDVBCISlot; +class eDVBCIInterfaces; + +struct queueData +{ + __u8 prio; + unsigned char *data; + unsigned int len; + queueData( unsigned char *data, unsigned int len, __u8 prio = 0 ) + :prio(prio), data(data), len(len) + { + + } + bool operator < ( const struct queueData &a ) const + { + return prio < a.prio; + } +}; + +enum data_source +{ + TUNER_A, TUNER_B, TUNER_C, TUNER_D, CI_A, CI_B, CI_C, CI_D +}; class eDVBCISlot: public iObject, public Object { -DECLARE_REF(eDVBCISlot); -private: + friend class eDVBCIInterfaces; + DECLARE_REF(eDVBCISlot); int slotid; int fd; - void data(int); eSocketNotifier *notifier; - int state; - enum {stateRemoved, stateInserted}; - uint8_t prev_sent_capmt_version; -public: + std::map running_services; + eDVBCIApplicationManagerSession *application_manager; + eDVBCICAManagerSession *ca_manager; + eDVBCIMMISession *mmi_session; + std::priority_queue sendqueue; + std::set possible_caids; + std::set possible_services; + std::set possible_providers; int use_count; - + eDVBCISlot *linked_next; // needed for linked CI handling + data_source current_source; + int current_tuner; + void data(int); +public: + enum {stateRemoved, stateInserted, stateInvalid, stateResetted}; eDVBCISlot(eMainloop *context, int nr); ~eDVBCISlot(); int send(const unsigned char *data, size_t len); - - eDVBCIApplicationManagerSession *application_manager; - eDVBCICAManagerSession *ca_manager; - eDVBCIMMISession *mmi_session; - + + void setAppManager( eDVBCIApplicationManagerSession *session ); + void setMMIManager( eDVBCIMMISession *session ); + void setCAManager( eDVBCICAManagerSession *session ); + + eDVBCIApplicationManagerSession *getAppManager() { return application_manager; } + eDVBCIMMISession *getMMIManager() { return mmi_session; } + eDVBCICAManagerSession *getCAManager() { return ca_manager; } + + int getState() { return state; } int getSlotID(); int reset(); - int initialize(); int startMMI(); int stopMMI(); int answerText(int answer); @@ -46,11 +84,9 @@ public: int cancelEnq(); int getMMIState(); int sendCAPMT(eDVBServicePMTHandler *ptr, const std::vector &caids=std::vector()); - uint8_t getPrevSentCAPMTVersion() const { return prev_sent_capmt_version; } - void resetPrevSentCAPMTVersion() { prev_sent_capmt_version = 0xFF; } - - enableTS(int enable); - + void removeService(uint16_t program_number=0xFFFF); + int getNumOfServices() { return running_services.size(); } + int setSource(data_source source); }; struct CIPmtHandler @@ -71,25 +107,28 @@ struct CIPmtHandler typedef std::list PMTHandlerList; +#endif // SWIG + class eDVBCIInterfaces { -DECLARE_REF(eDVBCIInterfaces); + DECLARE_REF(eDVBCIInterfaces); static eDVBCIInterfaces *instance; -private: - eSmartPtrList m_slots; + eSmartPtrList m_slots; eDVBCISlot *getSlot(int slotid); - PMTHandlerList m_pmt_handlers; +#ifndef SWIG public: +#endif eDVBCIInterfaces(); ~eDVBCIInterfaces(); void addPMTHandler(eDVBServicePMTHandler *pmthandler); void removePMTHandler(eDVBServicePMTHandler *pmthandler); + void recheckPMTHandlers(); void gotPMT(eDVBServicePMTHandler *pmthandler); + void ciRemoved(eDVBCISlot *slot); + int getSlotState(int slot); - static eDVBCIInterfaces *getInstance(); - int reset(int slot); int initialize(int slot); int startMMI(int slot); @@ -98,7 +137,15 @@ public: int answerEnq(int slot, char *value); int cancelEnq(int slot); int getMMIState(int slot); - int enableTS(int slot, int enable); + int sendCAPMT(int slot); + int setInputSource(int tunerno, data_source source); +#ifdef SWIG +public: +#endif + static eDVBCIInterfaces *getInstance(); + int getNumOfSlots() { return m_slots.size(); } + PyObject *getDescrambleRules(int slotid); + RESULT setDescrambleRules(int slotid, SWIG_PYOBJECT(ePyObject) ); }; #endif