switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / Examples / MCSniffer / MCSniffer.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Thorsten Horstmann <tho@berlios.de>
27
28
29 // Definition of non-inline non-template functions
30
31 //#include "MCSniffer.hh"
32 //#include "MCSniffer.ih"
33
34 // Custom includes
35 #include <fstream>
36 #include <string>
37 #include <iomanip>
38 #include <senf/Socket/Protocols/INet.hh>
39 #include <senf/Scheduler/Scheduler.hh>
40 #include <senf/Packets/DefaultBundle/EthernetPacket.hh>
41 #include <senf/Utils/membind.hh>
42 #include <senf/Utils/hexdump.hh>
43
44
45 //#include "MCSniffer.mpp"
46 #define prefix_
47 //-/////////////////////////////////////////////////////////////////////////////////////////////////
48
49 class MCSniffer
50 {
51     senf::UDPv4ClientSocketHandle sock;
52     std::ostream& stream;
53     senf::scheduler::FdEvent event;
54
55 public:
56     MCSniffer(senf::INet4Address addr, std::ostream& s)
57         : stream(s), event("MCSniffer", senf::membind(&MCSniffer::dumpPacket, this),
58                            sock, senf::scheduler::FdEvent::EV_READ)
59     {
60         // sock.bind(addr);
61         sock.protocol().mcLoop(true);
62         sock.protocol().mcAddMembership(addr);
63     }
64
65 private:
66     void dumpPacket(int event)
67     {
68         std::string data (sock.read());
69         senf::EthernetPacket packet (
70             senf::EthernetPacket::create(data));
71         packet.dump(stream);
72         senf::hexdump(packet.last().data().begin(),
73                 packet.last().data().end(),
74                 stream);
75         stream << "\n\n";
76      }
77 };
78
79
80 int main(int argc, char const * argv[])
81 {
82     try {
83         std::ofstream f1 ("233.132.152.1.txt");
84         std::ofstream f2 ("233.132.152.2.txt");
85
86         MCSniffer sniffer1 (
87             senf::INet4Address::from_string("233.132.152.1"), f1);
88         MCSniffer sniffer2 (
89             senf::INet4Address::from_string("233.132.152.2"), f2);
90
91         senf::scheduler::process();
92     }
93     catch (std::exception const & ex) {
94         std::cerr << senf::prettyName(typeid(ex)) << ": " << ex.what() << "\n";
95     }
96     return 0;
97 }
98
99
100 //-/////////////////////////////////////////////////////////////////////////////////////////////////
101 #undef prefix_
102 //#include "MCSniffer.mpp"
103
104 \f
105 // Local Variables:
106 // mode: c++
107 // fill-column: 100
108 // c-file-style: "senf"
109 // indent-tabs-mode: nil
110 // ispell-local-dictionary: "american"
111 // compile-command: "scons -u"
112 // comment-column: 40
113 // End: