a74fdbcad31010738320ef2cf37622bcc37f8b79
[senf.git] / PPI / SocketSource.hh
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.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 /** \file
24     \brief SocketSource public header */
25
26 #ifndef HH_SocketSource_
27 #define HH_SocketSource_ 1
28
29 // Custom includes
30 #include "../Packets/Packets.hh"
31 #include "../Socket/ClientSocketHandle.hh"
32 #include "../Socket/SocketPolicy.hh"
33 #include "../Socket/ReadWritePolicy.hh"
34 #include "../Socket/FramingPolicy.hh"
35 #include "Module.hh"
36 #include "Connectors.hh"
37 #include "IOEvent.hh"
38
39 //#include "SocketSource.mpp"
40 ///////////////////////////////hh.p////////////////////////////////////////
41
42 namespace senf {
43 namespace ppi {
44
45     /** \brief Reader for module::ActiveSocketSource
46
47         This read helper will read a datagram from a datagram socket. This datagram will then be
48         interpreted as a packet of type \a Packet as defined in the packet library. \a Packet
49         defaults to DataPacket (type DataPacketType), which will place the data uninterpreted 
50         into a packet data structure.
51      */
52     template <class Packet=DataPacket>
53     class DgramReader
54     {
55     public:
56         typedef Packet PacketType;
57         typedef senf::ClientSocketHandle<
58             senf::MakeSocketPolicy< senf::ReadablePolicy,
59                                     senf::DatagramFramingPolicy >::policy > Handle;
60                                         ///< Handle type supported by this reader
61
62         Packet operator()(Handle handle);
63                                         ///< Read packet from \a handle
64                                         /**< Read a datagram from \a handle and interpret is as
65                                              packet of type \c Packet.
66                                              \param[in] handle Handle to read data from
67                                              \returns Pointer to new packet instance or 0, if no
68                                                  packet could be read */
69     };
70
71 }}
72
73 namespace senf {
74 namespace ppi {
75 namespace module {
76
77     /** \brief Input module reading data from an arbitrary FileHandle
78
79         This input module will read data from a FileHandle object and parse the data according to
80         the \a Reader. The default reader is senf::ppi::DgramReader <> which reads the data into a
81         senf::DataPacket. To parse the data according to some other packet type, pass that packet
82         type to senf::ppi::DgramReader:
83         \code
84         senf::ppi::module::ActiveSocketSource< senf::ppi::DgramReader<senf::EthernetPacket> > source;
85         \endcode
86         declares a \a reader module reading senf::EthernetPacket's
87
88         A \a Reader must fulfill the following interface:
89         \code
90         class SomeReader
91         {
92         public:
93             typedef unspecified_type Handle;                       // type of handle requested
94
95             SomeReader();                                          // EITHER default constructible
96             SomeReader(SomeReader const & other);                  // OR copy constructible
97
98             Packet operator()(Handle handle);                      // extraction function
99         };
100         \endcode
101         Whenever the FileHandle object is ready for reading, the \a Reader's \c operator() is called
102         to read a packet.
103
104         \ingroup io_modules
105      */
106     template <class Reader=DgramReader<> >
107     class ActiveSocketSource 
108         : public Module
109     {
110         SENF_PPI_MODULE(ActiveSocketSource);
111
112     public:
113         typedef typename Reader::Handle Handle; ///< Handle type requested by the reader
114
115         connector::ActiveOutput<typename Reader::PacketType> output; 
116                                         ///< Output connector to which the data received is written
117         
118         ActiveSocketSource(Handle handle); ///< Create new reader for the given handle
119                                         /**< Data will be read from \a handle and be parsed by \a
120                                              Reader.
121                                              \pre Requires \a Reader to be default constructible
122                                              \param[in] handle Handle to read data from */
123         ActiveSocketSource(Handle handle, Reader reader);
124                                         ///< Create new reader for the given handle
125                                         /**< Data will be read from \a handle and be parsed by \a
126                                              Reader.
127                                              \pre Requires \a Reader to be copy constructible
128                                              \param[in] handle Handle to read data from */
129
130         Reader & reader();              ///< Access Reader helper
131         
132     private:
133         void read();
134         
135         Handle handle_;
136         IOEvent event_;
137         Reader reader_;
138     };
139
140 }}}
141
142 ///////////////////////////////hh.e////////////////////////////////////////
143 //#include "SocketSource.cci"
144 #include "SocketSource.ct"
145 #include "SocketSource.cti"
146 #endif
147
148 \f
149 // Local Variables:
150 // mode: c++
151 // fill-column: 100
152 // c-file-style: "senf"
153 // indent-tabs-mode: nil
154 // ispell-local-dictionary: "american"
155 // compile-command: "scons -u test"
156 // comment-column: 40
157 // End: