// $Id$ // // Copyright (C) 2008 // Fraunhofer Institute for Open Communication Systems (FOKUS) // // The contents of this file are subject to the Fraunhofer FOKUS Public License // Version 1.0 (the "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // http://senf.berlios.de/license.html // // The Fraunhofer FOKUS Public License Version 1.0 is based on, // but modifies the Mozilla Public License Version 1.1. // See the full license text for the amendments. // // Software distributed under the License is distributed on an "AS IS" basis, // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License // for the specific language governing rights and limitations under the License. // // The Original Code is Fraunhofer FOKUS code. // // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. // (registered association), Hansastraße 27 c, 80686 Munich, Germany. // // Contributor(s): // Stefan Bund /** \page console_testserver Test Server \dontinclude testServer.cc You can find this code in the \c testServer.cc source file. \skip Custom \skip #include \until namespace Here we see the necessary include files. For console support only senf/Console.hh needs to be included. This will pull in all necessary definitions. We declare an alias for the senf::console::kw namespace which we will use further down for the keyword arguments. \until echo \until } \until } The first callback \c echo utilizes \link console_manualparse manual argument parsing\endlink. You should always refer to the iterator types as shown here since this will be safe from future changes. The following \c struct \c TestObject is used to show how member functions and objects are used in the console. \until dir Important is the definition of the public senf::console::ScopedDirectory member called \c dir. This member can be used later to add the class to the node tree. Here we just register a single function \c vat (with \link console_autoparse automatic argument parsing\endlink) and set some command attributes. \until }; The \c shutdownServer callback terminates the server. \until } This happens in two steps: First the \c terminate() call tells the scheduler to leave it's main-loop after shutdownServer returns (which is ultimately called via the console server from the scheduler). Throwing a senf::console::Executor::ExitException is like entering the \c exit built-in command at the console. The next callback accesses the client instance directly to manipulate the logging: \until } The senf::console::Client instance can be accessed using the senf::console::Client::get() helper via the output stream. Since every Client is a senf::log::Target, we can route arbitrary log messages to the console instance. We now define \c main() which initializes the node tree and starts the console server \until route Here we just setup more verbose logging and set \c SIGPIPE signals to be ignored. \c SIGPIPE's are a pain and really should be disabled. \until settings This shows, how to set the top-level documentation and create a new subdirectory. \until doc Here we create another new directory and save a reference so we can later access the node directly. All the add commands return such a node reference of the correct type (this is a lie, but it works like this anyways and it's an implementation detail that must not concern you here). Instead of creating a new directory directly and later sotring a reference, it is better to use \c senf::console::ScopedDirectory<> like this: \until functions This will automatically remove the node from the tree when the \c senf::console::ScopedDirectory instance is destroyed. It also protects against the problem of dangling references: When using a plain reference, removing the directory from the tree will destroy the node. The reference however will still reference the (now nonexistent) directory and any access via the reference will crash the program. The next statements add commands to the various directories declared so far \until Example We now continue by creating an instance of our test class \c TestObject \until Example We add that objects directory to the \c test dir. We now have created a directory structure like tis:
    /
      console/
        showlog
      server/
        shutdown
      test/
        echo
        testob/
          vat
    
We now start the server (giving it a nice descriptive name) and run the scheduler. \until } */ // Local Variables: // mode: c++ // fill-column: 100 // comment-column: 40 // c-file-style: "senf" // indent-tabs-mode: nil // ispell-local-dictionary: "american" // compile-command: "scons -U doc" // mode: flyspell // mode: auto-fill // End: