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