Merge commit 'origin/bug_449_fix_wlan_usbstick_recognition'
[enigma2.git] / lib / dvb / esection.h
index 88c652a0ef0f525e8ff101a916312f52ea22cffe..2bb17a98e5a70fb9321788bc608be7f254351687 100644 (file)
@@ -4,25 +4,28 @@
 #include <lib/dvb/idemux.h>
 #include <set>
 
+#define TABLE_eDebug(x...) do { if (m_debug) eDebug(x); } while(0)
+#define TABLE_eDebugNoNewLine(x...) do { if (m_debug) eDebugNoNewLine(x); } while(0)
+
 class eGTable: public iObject, public Object
 {
-DECLARE_REF(eGTable);
-private:
+       DECLARE_REF(eGTable);
        ePtr<iDVBSectionReader> m_reader;
        eDVBTableSpec m_table;
        
        unsigned int m_tries;
        
-       eTimer *m_timeout;
+       ePtr<eTimer> m_timeout;
 
        void sectionRead(const __u8 *data);
        void timeout();
        ePtr<eConnection> m_sectionRead_conn;
 protected:
-       virtual int createTable(int nr, const __u8 *data, unsigned int max)=0;
+       bool m_debug;
+       virtual int createTable(unsigned int nr, const __u8 *data, unsigned int max)=0;
 public:
        Signal1<void, int> tableReady;
-       eGTable();
+       eGTable(bool debug=true);
        RESULT start(iDVBSectionReader *reader, const eDVBTableSpec &table);
        RESULT start(iDVBDemux *reader, const eDVBTableSpec &table);
        RESULT getSpec(eDVBTableSpec &spec) { spec = m_table; return 0; }
@@ -38,12 +41,12 @@ private:
        std::vector<Section*> sections;
        std::set<int> avail;
 protected:
-       int createTable(int nr, const __u8 *data, unsigned int max)
+       int createTable(unsigned int nr, const __u8 *data, unsigned int max)
        {
-               int ssize = sections.size();
+               unsigned int ssize = sections.size();
                if (max < ssize || nr >= max)
                {
-                       eDebug("kaputt max(%d) < ssize(%d) || nr(%d) >= max(%d)",
+                       TABLE_eDebug("kaputt max(%d) < ssize(%d) || nr(%d) >= max(%d)",
                                max, ssize, nr, max);
                        return 0;
                }
@@ -56,22 +59,22 @@ protected:
 
                for (unsigned int i = 0; i < max; ++i)
                        if (avail.find(i) != avail.end())
-                               eDebugNoNewLine("+");
+                               TABLE_eDebugNoNewLine("+");
                        else
-                               eDebugNoNewLine("-");
+                               TABLE_eDebugNoNewLine("-");
                                
-               eDebug(" %d/%d TID %02x", avail.size(), max, data[0]);
+               TABLE_eDebug(" %d/%d TID %02x", avail.size(), max, data[0]);
 
                if (avail.size() == max)
                {
-                       eDebug("done!");
+                       TABLE_eDebug("done!");
                        return 1;
                } else
                        return 0;
        }
 public:
        std::vector<Section*> &getSections() { return sections; }
-       eTable(): eGTable()
+       eTable(bool debug=true): eGTable(debug)
        {
        }
        ~eTable()
@@ -186,7 +189,7 @@ public:
                next=0;
                first=0;
                
-               assert(current->ready);
+               ASSERT(current->ready);
                        
                /*emit*/ tableReady(0);