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