107fd64716169b204cf0279daad42ca7de287254
[senf.git] / Examples / DVBAdapter / MPEdec.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Thorsten Horstmann <thorsten.horstmann@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(unsigned short adapter=0, unsigned short device=0)
53         : handle( adapter, device ) 
54     {
55         struct dmx_sct_filter_params sec_filter;
56         memset(&sec_filter, 0, sizeof (struct dmx_sct_filter_params));
57         sec_filter.pid = PID;
58         sec_filter.filter.filter[0] = 62;
59         sec_filter.filter.mask[0] = 0xff;
60         sec_filter.flags = DMX_IMMEDIATE_START;
61         sec_filter.flags |= DMX_CHECK_CRC;
62
63         handle.protocol().setSectionFilter( &sec_filter );
64         
65         senf::Scheduler::instance().add(
66             handle, senf::membind(&MySniffer::dumpSection, this));
67     }
68
69 private:
70     void dumpSection(senf::FileHandle /* ignored */, senf::Scheduler::EventId event)
71     {
72         std::string data (handle.read());
73         senf::DatagramSection section (senf::DatagramSection::create(data));
74         section.dump(std::cout);
75         senf::PacketData & datagramData (section.next().data());
76         senf::hexdump(datagramData.begin(), datagramData.end(), std::cout);
77     }
78 };
79
80 int main(int argc, char const * argv[])
81 {
82     try {
83         MySniffer sniffer;
84         senf::Scheduler::instance().process();
85     }
86     catch (std::exception const & ex) {
87         std::cerr << senf::prettyName(typeid(ex)) << ": " << ex.what() << "\n";
88     }
89     return 0;
90 }
91
92
93 ///////////////////////////////cc.e////////////////////////////////////////
94 #undef prefix_
95
96 \f
97 // Local Variables:
98 // mode: c++
99 // fill-column: 100
100 // c-file-style: "senf"
101 // indent-tabs-mode: nil
102 // ispell-local-dictionary: "american"
103 // compile-command: "scons -u test"
104 // comment-column: 40
105 // End: