1 #include <lib/dvb/esection.h>
2 #include <lib/base/eerror.h>
4 void eGTable::sectionRead(const __u8 *d)
6 unsigned int last_section_number = d[7];
7 m_table.flags &= ~eDVBTableSpec::tfAnyVersion;
8 m_table.flags |= eDVBTableSpec::tfThisVersion;
9 m_table.version = (d[5]>>1)&0x1F;
11 /* if a section is missing, we retry reading the
12 whole data up to 5 times. if after that the
13 section is still missing, we timeout. */
14 if (m_tries > 5 * (last_section_number+1))
22 if (createTable(d[6], d, last_section_number + 1))
29 } else if ((m_table.flags & eDVBTableSpec::tfHaveTimeout) && m_timeout)
30 m_timeout->start(m_table.timeout, 1); // reset timeout
33 void eGTable::timeout()
43 m_timeout(0), error(0)
49 RESULT eGTable::start(iDVBSectionReader *reader, const eDVBTableSpec &table)
55 m_reader->connectRead(slot(*this, &eGTable::sectionRead), m_sectionRead_conn);
59 // setup filter struct
60 eDVBSectionFilterMask mask;
62 memset(&mask, 0, sizeof(mask));
63 mask.pid = m_table.pid;
66 if (m_table.flags & eDVBTableSpec::tfCheckCRC)
67 mask.flags |= eDVBSectionFilterMask::rfCRC;
69 if (m_table.flags & eDVBTableSpec::tfHaveTID)
71 mask.data[0] = m_table.tid;
72 if (m_table.flags & eDVBTableSpec::tfHaveTIDMask)
73 mask.mask[0] = m_table.tid_mask;
78 if (m_table.flags & eDVBTableSpec::tfHaveTIDExt)
80 mask.data[1] = m_table.tidext >> 8;
81 mask.data[2] = m_table.tidext;
82 if (m_table.flags & eDVBTableSpec::tfHaveTIDExtMask)
84 mask.mask[1] = m_table.tidext_mask >> 8;
85 mask.mask[2] = m_table.tidext_mask;
94 if (!(m_table.flags & eDVBTableSpec::tfAnyVersion))
96 eDebug("doing version filtering");
97 mask.data[3] |= (m_table.version << 1)|1;
99 if (!(m_table.flags & eDVBTableSpec::tfThisVersion))
100 mask.mode[3] |= 0x3e; // negative filtering
102 eDebug("no version filtering");
104 eDebug("%04x: %02x %02x %02x %02x %02x %02x",
106 mask.data[0], mask.data[1], mask.data[2],
107 mask.data[3], mask.data[4], mask.data[5]);
108 eDebug("mask: %02x %02x %02x %02x %02x %02x",
109 mask.mask[0], mask.mask[1], mask.mask[2],
110 mask.mask[3], mask.mask[4], mask.mask[5]);
111 eDebug("mode: %02x %02x %02x %02x %02x %02x",
112 mask.mode[0], mask.mode[1], mask.mode[2],
113 mask.mode[3], mask.mode[4], mask.mode[5]);
115 if ((res = m_reader->start(mask)))
117 eDebug("reader failed to start.");
121 if (m_table.flags & eDVBTableSpec::tfHaveTimeout)
125 m_timeout = new eTimer(eApp);
126 m_timeout->start(m_table.timeout, 1); // begin timeout
127 CONNECT(m_timeout->timeout, eGTable::timeout);
133 RESULT eGTable::start(iDVBDemux *demux, const eDVBTableSpec &table)
136 ePtr<iDVBSectionReader> reader;
137 res = demux->createSectionReader(eApp, reader);
140 return start(reader, table);
149 void eAUGTable::slotTableReady(int error)