replaced some tabs with spaces
[senf.git] / Scheduler / 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 testServer implementation */
25
26 // Custom includes
27 #include <iostream>
28 #include <senf/Console.hh>
29 #include <senf/Scheduler/Scheduler.hh>
30
31 namespace kw = senf::console::kw;
32
33 void echo(std::ostream & output, senf::console::ParseCommandInfo const & command)
34 {
35     typedef senf::console::ParseCommandInfo::TokensRange::iterator iterator;
36     iterator i (command.tokens().begin());
37     iterator i_end (command.tokens().end());
38     for (; i != i_end; ++i) {
39         output << i->value() << ' ';
40     }
41     output << "\n";
42 }
43
44 struct TestObject
45 {
46     senf::console::ScopedDirectory<TestObject> dir;
47
48     TestObject() 
49         : dir(this) 
50         {
51             dir.add("vat", &TestObject::vat)
52                 .arg("vat", "VAT in %", kw::default_value = 19)
53                 .arg("amount", "Amount including VAT")
54                 .doc("Returns the amount of {vat}-% VAT included in {amount}");
55         }
56
57     double vat (int vat, double amount) 
58         {
59             return amount * vat/(100.0+vat);
60         }
61 };
62
63 void shutdownServer()
64 {
65     senf::scheduler::terminate();
66     throw senf::console::Executor::ExitException();
67 }
68
69 void enableLogging(std::ostream & os)
70 {
71     senf::console::Client::get(os).route<senf::log::NOTICE>();
72 }
73
74 int main(int, char **)
75 {
76     ::signal(SIGPIPE, SIG_IGN);
77     senf::log::ConsoleTarget::instance().route< senf::log::VERBOSE >();
78
79     senf::console::root()
80         .doc("This is the console test application");
81
82     senf::console::root()
83         .mkdir("console")
84         .doc("Console settings");
85
86     senf::console::DirectoryNode & serverDir (
87         senf::console::root()
88             .mkdir("server")
89             .doc("server commands") );
90
91     senf::console::ScopedDirectory<> testDir;
92     senf::console::root()
93         .add("test", testDir)
94         .doc("Test functions");
95
96     senf::console::root()["console"]
97         .add("showlog", &enableLogging)
98         .doc("Enable display of log messages on the current console");
99
100     serverDir
101         .add("shutdown", &shutdownServer)
102         .doc("Terminate server application");
103
104     testDir
105         .add("echo", &echo)
106         .doc("Example of a function utilizing manual argument parsing");
107
108     TestObject test;
109     testDir
110         .add("extra", test.dir)
111         .doc("Example of an instance directory");
112
113     senf::console::Server::start( senf::INet4SocketAddress(23232u) )
114         .name("testServer");
115
116     senf::scheduler::process();
117 }
118
119 \f
120 // Local Variables:
121 // mode: c++
122 // fill-column: 100
123 // comment-column: 40
124 // c-file-style: "senf"
125 // indent-tabs-mode: nil
126 // ispell-local-dictionary: "american"
127 // compile-command: "scons -U testServer"
128 // End: