f3fe77e08f9647c4f9d867f91930fc9024106ef6
[senf.git] / Examples / DVBAdapter / MPEdec.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 // Definition of non-inline non-template functions
24
25 #include <string>
26 #include <iostream>
27 #include <iomanip>
28 #include <sys/ioctl.h>
29 #include <linux/sockios.h>
30 #include <linux/dvb/dmx.h> 
31
32 #include "Scheduler/Scheduler.hh"
33 #include "Packets/DefaultBundle/EthernetPacket.hh"
34 #include "Packets/MPEGDVBBundle/DatagramSection.hh"
35 #include "Utils/membind.hh"
36 #include "Utils/hexdump.hh"
37 #include "Socket/Protocols/DVB/DVBDemuxHandles.hh"
38 #include "Packets/ParseInt.hh"
39 #include "Packets/Packet.hh"
40 #include "Packets/PacketData.hh"
41
42 #define PID 500
43
44 #define prefix_
45 ///////////////////////////////cc.p////////////////////////////////////////
46
47 class MySniffer
48 {
49     senf::DVBDemuxSectionHandle handle;
50
51 public:
52     MySniffer()
53     {
54         struct dmx_sct_filter_params sec_filter;
55         memset(&sec_filter, 0, sizeof (struct dmx_sct_filter_params));
56         sec_filter.pid = PID;
57         sec_filter.filter.filter[0] = 62;
58         sec_filter.filter.mask[0] = 0xff;
59         sec_filter.flags = DMX_IMMEDIATE_START;
60         sec_filter.flags |= DMX_CHECK_CRC;
61
62         handle.protocol().setSectionFilter( &sec_filter );
63         
64         senf::Scheduler::instance().add(
65             handle, senf::membind(&MySniffer::dumpSection, this));
66     }
67
68 private:
69     void dumpSection(senf::FileHandle /* ignored */, senf::Scheduler::EventId event)
70     {
71         std::string data (handle.read());
72         senf::DatagramSection section (senf::DatagramSection::create(data));
73         section.dump(std::cout);
74         senf::PacketData & datagramData (section.last().data());
75         senf::hexdump(datagramData.begin(), datagramData.end(), std::cout);
76     }
77 };
78
79 int main(int argc, char const * argv[])
80 {
81     try {
82         MySniffer sniffer;
83         senf::Scheduler::instance().process();
84     }
85     catch (std::exception const & ex) {
86         std::cerr << senf::prettyName(typeid(ex)) << ": " << ex.what() << "\n";
87     }
88     return 0;
89 }
90
91
92 ///////////////////////////////cc.e////////////////////////////////////////
93 #undef prefix_
94
95 \f
96 // Local Variables:
97 // mode: c++
98 // fill-column: 100
99 // c-file-style: "senf"
100 // indent-tabs-mode: nil
101 // ispell-local-dictionary: "american"
102 // compile-command: "scons -u test"
103 // comment-column: 40
104 // End: