Console: Implement ObjectDirectory proxy
[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 "ObjectDirectory.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::ObjectDirectory<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 }
71
72 int main(int, char const **)
73 {
74     senf::log::ConsoleTarget::instance().route< senf::SenfLog, senf::log::NOTICE >();
75
76     senf::console::root().doc("This is the console test application");
77     senf::console::root().mkdir("network")
78         .doc("Network related settings");
79     senf::console::root()["network"].mkdir("eth0")
80         .doc("Ethernet device eth0");
81     senf::console::root().mkdir("server");
82     senf::console::root()["network"].add("route", &fn)
83         .doc("Example of a directly registered function");
84
85     TestObject test;
86     senf::console::root().add("testob", test.dir)
87         .doc("Example of an instance directory");
88
89     senf::console::Server::start( senf::INet4SocketAddress("127.0.0.1:23232") )
90         .name("testServer");
91
92     senf::Scheduler::instance().process();
93 }
94
95 ///////////////////////////////cc.e////////////////////////////////////////
96 #undef prefix_
97 //#include "test.mpp"
98
99 \f
100 // Local Variables:
101 // mode: c++
102 // fill-column: 100
103 // comment-column: 40
104 // c-file-style: "senf"
105 // indent-tabs-mode: nil
106 // ispell-local-dictionary: "american"
107 // compile-command: "scons -U testServer"
108 // End: