40e3139bf2131bc21da9f976b81bc5d2589641dd
[senf.git] / Examples / TCPClientServer / server.cc
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 //     Thorsten Horstmann <tho@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 // Definition of non-inline non-template functions
24
25 //#include "server.hh"
26 //#include "server.ih"
27
28 // Custom includes
29 #include <string>
30 #include <iostream>
31 #include <senf/Scheduler/Scheduler.hh>
32 #include <senf/Utils/membind.hh>
33 #include <senf/Socket/Protocols/INet.hh>
34
35 class Server
36 {
37     senf::TCPv4ServerSocketHandle serverSock;
38     senf::scheduler::FdEvent acceptevent;
39     senf::scheduler::FdEvent readevent;
40
41 public:
42     Server(senf::INet4Address const & host, unsigned int port)
43         : serverSock(senf::INet4SocketAddress(host, port)),
44           acceptevent("Server accept", senf::membind(&Server::accept, this),
45                       serverSock, senf::scheduler::FdEvent::EV_READ),
46           readevent("Server read", 0)
47         {}
48
49     void run()
50     {
51         senf::scheduler::process();
52     }
53
54 private:
55     void accept(int event)
56     {
57         senf::TCPv4ClientSocketHandle clientSock (serverSock.accept());
58         readevent
59             .action(boost::bind(&Server::readFromClient, this, clientSock, _1))
60             .handle(clientSock)
61             .events(senf::scheduler::FdEvent::EV_READ)
62             .enable();
63     }
64
65     void readFromClient(senf::TCPv4ClientSocketHandle clientSock, int event)
66     {
67         if (!clientSock) {
68             readevent.disable();
69             return;
70         }
71         std::string data (clientSock.read());
72         std::cout << "'" << data << "'" << std::endl;
73     }
74 };
75
76
77 int main(int argc, char const * argv[])
78 {
79     try {
80         Server myServer (senf::INet4Address::Loopback, 4243);
81         myServer.run();
82     }
83     catch (std::exception const & ex) {
84         std::cerr << senf::prettyName(typeid(ex)) << ": " << ex.what() << "\n";
85     }
86     return 0;
87 }
88
89 \f
90 // Local Variables:
91 // mode: c++
92 // fill-column: 100
93 // c-file-style: "senf"
94 // indent-tabs-mode: nil
95 // ispell-local-dictionary: "american"
96 // compile-command: "scons -u"
97 // comment-column: 40
98 // End: