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