Socket: Add additional port-only constructor for INet[46]SocketAddress
[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 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::ArgumentsRange::iterator iterator;
36     iterator i (command.arguments().begin());
37     iterator i_end (command.arguments().end());
38     for (; i != i_end; ++i) {
39         iterator::value_type::iterator j (i->begin());
40         iterator::value_type::iterator j_end (i->end());
41         for (; j != j_end; ++j) 
42             output << j->value() << ' ';
43     }
44     output << "\n";
45 }
46
47 struct TestObject
48 {
49     senf::console::ScopedDirectory<TestObject> dir;
50
51     TestObject() 
52         : dir(this) 
53         {
54             dir.add("vat", &TestObject::vat)
55                 .arg("vat", "VAT in %", kw::default_value = 19)
56                 .arg("amount", "Amount including VAT")
57                 .doc("Returns the amount of {vat}-% VAT included in {amount}");
58         }
59
60     double vat (int vat, double amount) 
61         {
62             return amount * vat/(100.0+vat);
63         }
64 };
65
66 void shutdownServer()
67 {
68     senf::Scheduler::instance().terminate();
69     throw senf::console::Executor::ExitException();
70 }
71
72 int main(int, char **)
73 {
74     senf::log::ConsoleTarget::instance().route< senf::SenfLog, senf::log::NOTICE >();
75
76     senf::console::root()
77         .doc("This is the console test application");
78     senf::console::root()
79         .mkdir("network")
80         .doc("Network related settings");
81     senf::console::root()["network"]
82         .mkdir("eth0")
83         .doc("Ethernet device eth0");
84     senf::console::root()
85         .mkdir("server");
86     senf::console::root()["server"]
87         .add("shutdown", &shutdownServer)
88         .doc("Terminate server application");
89     senf::console::root()["network"]
90         .add("echo", &echo)
91         .doc("Example of a function utilizing manual argument parsing");
92
93     TestObject test;
94     senf::console::root()
95         .add("testob", test.dir)
96         .doc("Example of an instance directory");
97
98     senf::console::Server::start( senf::INet4SocketAddress(23232) )
99         .name("testServer");
100
101     senf::Scheduler::instance().process();
102 }
103
104 \f
105 // Local Variables:
106 // mode: c++
107 // fill-column: 100
108 // comment-column: 40
109 // c-file-style: "senf"
110 // indent-tabs-mode: nil
111 // ispell-local-dictionary: "american"
112 // compile-command: "scons -U testServer"
113 // End: