PPI: Add senf::connect() packet type compatibility check documentation
[senf.git] / Console / testServer.cc
1 // $Id$
2 //
3 // Copyright (C) 2008 
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 test non-inline non-template implementation */
25
26 //#include "test.hh"
27 //#include "test.ih"
28
29 // Custom includes
30 #include <iostream>
31 #include "Server.hh"
32 #include "Node.hh"
33 #include "ScopedDirectory.hh"
34 #include "../Scheduler/Scheduler.hh"
35 #include "../Utils/Logger/SenfLog.hh"
36
37 //#include "test.mpp"
38 #define prefix_
39 ///////////////////////////////cc.p////////////////////////////////////////
40
41 namespace {
42     
43     void fn(std::ostream & output, senf::console::ParseCommandInfo const & command) {
44         senf::console::CommandNode::Arguments::iterator i (command.arguments().begin());
45         senf::console::CommandNode::Arguments::iterator i_end (command.arguments().end());
46         for (; i != i_end; ++i) {
47             senf::console::ParseCommandInfo::ArgumentsRange::value_type::iterator j (i->begin());
48             senf::console::ParseCommandInfo::ArgumentsRange::value_type::iterator j_end (i->end());
49             for (; j != j_end; ++j) 
50                 output << j->value() << ' ';
51         }
52         output << "\n";
53     }
54
55     struct TestObject
56     {
57         senf::console::ScopedDirectory<TestObject> dir;
58
59         TestObject() : dir(this) {
60             dir.add("blub", &TestObject::blub)
61                 .doc("Example of a member function");
62         }
63         
64         void blub(std::ostream & output, senf::console::ParseCommandInfo const &) {
65             output << "blub\n";
66         }
67     };
68
69     void shutdownServer(std::ostream &, senf::console::ParseCommandInfo const &)
70     {
71         senf::Scheduler::instance().terminate();
72         throw senf::console::Executor::ExitException();
73     }
74
75 }
76
77 int main(int, char const **)
78 {
79     senf::log::ConsoleTarget::instance().route< senf::SenfLog, senf::log::NOTICE >();
80
81     senf::console::root()
82         .doc("This is the console test application");
83     senf::console::root()
84         .mkdir("network")
85         .doc("Network related settings");
86     senf::console::root()["network"]
87         .mkdir("eth0")
88         .doc("Ethernet device eth0");
89     senf::console::root()
90         .mkdir("server");
91     senf::console::root()["server"]
92         .add("shutdown", &shutdownServer)
93         .doc("Terminate server application");
94     senf::console::root()["network"]
95         .add("route", &fn)
96         .doc("Example of a directly registered function");
97
98     TestObject test;
99     senf::console::root()
100         .add("testob", test.dir)
101         .doc("Example of an instance directory");
102
103     senf::console::Server::start( senf::INet4SocketAddress("0.0.0.0:23232") )
104         .name("testServer");
105
106     senf::Scheduler::instance().process();
107 }
108
109 ///////////////////////////////cc.e////////////////////////////////////////
110 #undef prefix_
111 //#include "test.mpp"
112
113 \f
114 // Local Variables:
115 // mode: c++
116 // fill-column: 100
117 // comment-column: 40
118 // c-file-style: "senf"
119 // indent-tabs-mode: nil
120 // ispell-local-dictionary: "american"
121 // compile-command: "scons -U testServer"
122 // End: