HowTos/NewPacket: Remove old code from example
[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, 
44             senf::console::CommandNode::Arguments const & arguments) {
45         senf::console::CommandNode::Arguments::iterator i (arguments.begin());
46         senf::console::CommandNode::Arguments::iterator i_end (arguments.end());
47         for (; i != i_end; ++i) {
48             senf::console::CommandNode::Arguments::value_type::iterator j (i->begin());
49             senf::console::CommandNode::Arguments::value_type::iterator j_end (i->end());
50             for (; j != j_end; ++j) 
51                 output << j->value() << ' ';
52         }
53         output << "\n";
54     }
55
56     struct TestObject
57     {
58         senf::console::ScopedDirectory<TestObject> dir;
59
60         TestObject() : dir(this) {
61             dir.add("blub", &TestObject::blub)
62                 .doc("Example of a member function");
63         }
64         
65         void blub(std::ostream & output, senf::console::CommandNode::Arguments const & args) {
66             output << "blub\n";
67         }
68     };
69
70     void shutdownServer(std::ostream &,
71                         senf::console::CommandNode::Arguments const &)
72     {
73         senf::Scheduler::instance().terminate();
74         throw senf::console::Executor::ExitException();
75     }
76
77 }
78
79 int main(int, char const **)
80 {
81     senf::log::ConsoleTarget::instance().route< senf::SenfLog, senf::log::NOTICE >();
82
83     senf::console::root()
84         .doc("This is the console test application");
85     senf::console::root()
86         .mkdir("network")
87         .doc("Network related settings");
88     senf::console::root()["network"]
89         .mkdir("eth0")
90         .doc("Ethernet device eth0");
91     senf::console::root()
92         .mkdir("server");
93     senf::console::root()["server"]
94         .add("shutdown", &shutdownServer)
95         .doc("Terminate server application");
96     senf::console::root()["network"]
97         .add("route", &fn)
98         .doc("Example of a directly registered function");
99
100     TestObject test;
101     senf::console::root()
102         .add("testob", test.dir)
103         .doc("Example of an instance directory");
104
105     senf::console::Server::start( senf::INet4SocketAddress("0.0.0.0:23232") )
106         .name("testServer");
107
108     senf::Scheduler::instance().process();
109 }
110
111 ///////////////////////////////cc.e////////////////////////////////////////
112 #undef prefix_
113 //#include "test.mpp"
114
115 \f
116 // Local Variables:
117 // mode: c++
118 // fill-column: 100
119 // comment-column: 40
120 // c-file-style: "senf"
121 // indent-tabs-mode: nil
122 // ispell-local-dictionary: "american"
123 // compile-command: "scons -U testServer"
124 // End: