Scheduler: Remove obsolete 'Scheduler' class
[senf.git] / Console / testServer.cc
index 8e9323a..7458055 100644 (file)
 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 /** \file
-    \brief test non-inline non-template implementation */
-
-//#include "test.hh"
-//#include "test.ih"
+    \brief testServer implementation */
 
 // Custom includes
 #include <iostream>
-#include "Server.hh"
-#include "../Scheduler/Scheduler.hh"
-#include "../Utils/Logger/SenfLog.hh"
+#include <senf/Console.hh>
+#include <senf/Scheduler/Scheduler.hh>
+
+namespace kw = senf::console::kw;
 
-//#include "test.mpp"
-#define prefix_
-///////////////////////////////cc.p////////////////////////////////////////
+void echo(std::ostream & output, senf::console::ParseCommandInfo const & command)
+{
+    typedef senf::console::ParseCommandInfo::TokensRange::iterator iterator;
+    iterator i (command.tokens().begin());
+    iterator i_end (command.tokens().end());
+    for (; i != i_end; ++i) {
+        output << i->value() << ' ';
+    }
+    output << "\n";
+}
 
-int main(int, char const **)
+struct TestObject
 {
-    senf::log::ConsoleTarget::instance().route< senf::SenfLog, senf::log::NOTICE >();
+    senf::console::ScopedDirectory<TestObject> dir;
+
+    TestObject() 
+        : dir(this) 
+        {
+            dir.add("vat", &TestObject::vat)
+                .arg("vat", "VAT in %", kw::default_value = 19)
+                .arg("amount", "Amount including VAT")
+                .doc("Returns the amount of {vat}-% VAT included in {amount}");
+        }
 
-    senf::console::Server::start( senf::INet4SocketAddress("127.0.0.1:23232") )
-        .name("testServer ");
+    double vat (int vat, double amount) 
+        {
+            return amount * vat/(100.0+vat);
+        }
+};
 
-    senf::Scheduler::instance().process();
+void shutdownServer()
+{
+    senf::scheduler::terminate();
+    throw senf::console::Executor::ExitException();
 }
 
-///////////////////////////////cc.e////////////////////////////////////////
-#undef prefix_
-//#include "test.mpp"
+void enableLogging(std::ostream & os)
+{
+    senf::console::Client::get(os).route<senf::log::NOTICE>();
+}
+
+int main(int, char **)
+{
+    ::signal(SIGPIPE, SIG_IGN);
+    senf::log::ConsoleTarget::instance().route< senf::log::VERBOSE >();
+
+    senf::console::root()
+        .doc("This is the console test application");
+
+    senf::console::root()
+        .mkdir("console")
+        .doc("Console settings");
+
+    senf::console::DirectoryNode & serverDir (
+        senf::console::root()
+            .mkdir("server")
+            .doc("server commands") );
+
+    senf::console::ScopedDirectory<> testDir;
+    senf::console::root()
+        .add("test", testDir)
+        .doc("Test functions");
+
+    senf::console::root()["console"]
+        .add("showlog", &enableLogging)
+        .doc("Enable display of log messages on the current console");
+
+    serverDir
+        .add("shutdown", &shutdownServer)
+        .doc("Terminate server application");
+
+    testDir
+        .add("echo", &echo)
+        .doc("Example of a function utilizing manual argument parsing");
+
+    TestObject test;
+    testDir
+        .add("extra", test.dir)
+        .doc("Example of an instance directory");
+
+    senf::console::Server::start( senf::INet4SocketAddress(23232u) )
+        .name("testServer");
+
+    senf::scheduler::process();
+}
 
 \f
 // Local Variables: