// $Id$ // // Copyright (C) 2008 // Fraunhofer Institute for Open Communication Systems (FOKUS) // Competence Center NETwork research (NET), St. Augustin, GERMANY // Stefan Bund // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the // Free Software Foundation, Inc., // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /** \file \brief Node inline non-template implementation */ //#include "Node.ih" // Custom includes #include "../Utils/senfassert.hh" #define prefix_ inline ///////////////////////////////cci.p/////////////////////////////////////// /////////////////////////////////////////////////////////////////////////// // senf::console::GenericNode prefix_ senf::console::GenericNode::~GenericNode() {} prefix_ std::string const & senf::console::GenericNode::name() const { return name_; } prefix_ senf::console::GenericNode::GenericNode(std::string const & name) : name_ (name), parent_ (0) { ///\fixme Provide a default name if 'name' is empty ? } prefix_ void senf::console::GenericNode::name(std::string const & name) { name_ = name; } prefix_ void senf::console::GenericNode::name(GenericNode & node, std::string const & name) { node.name_ = name; } prefix_ boost::shared_ptr senf::console::GenericNode::parent() const { return boost::static_pointer_cast( parent_ ? parent_->shared_from_this() : ptr() ); } prefix_ senf::console::GenericNode::ptr senf::console::GenericNode::thisptr() { return shared_from_this(); } prefix_ senf::console::GenericNode::cptr senf::console::GenericNode::thisptr() const { return shared_from_this(); } /////////////////////////////////////////////////////////////////////////// // senf::console::DirectoryNode prefix_ senf::console::GenericNode & senf::console::DirectoryNode::add(std::auto_ptr node, bool uniquify) { GenericNode::ptr p (node.release()); add(p, uniquify); return *p; } prefix_ senf::console::DirectoryNode & senf::console::DirectoryNode::operator[](std::string const & name) const { return dynamic_cast(get(name)); } prefix_ senf::console::CommandNode & senf::console::DirectoryNode::operator()(std::string const & name) const { return dynamic_cast(get(name)); } prefix_ senf::console::DirectoryNode & senf::console::DirectoryNode::mkdir(std::string const & name) { return static_cast( add(std::auto_ptr(new DirectoryNode(name)))); } prefix_ senf::console::DirectoryNode::ChildrenRange senf::console::DirectoryNode::children() const { return boost::make_iterator_range(children_.begin(), children_.end()); } prefix_ senf::console::DirectoryNode::DirectoryNode(std::string const & name) : GenericNode(name) {} prefix_ senf::console::DirectoryNode::ptr senf::console::DirectoryNode::thisptr() { return boost::static_pointer_cast(shared_from_this()); } prefix_ senf::console::DirectoryNode::cptr senf::console::DirectoryNode::thisptr() const { return boost::static_pointer_cast(shared_from_this()); } /////////////////////////////////////////////////////////////////////////// // senf::console::CommandNode prefix_ senf::console::CommandNode::CommandNode(std::string const & name) : GenericNode(name) {} prefix_ senf::console::CommandNode::ptr senf::console::CommandNode::thisptr() { return boost::static_pointer_cast(shared_from_this()); } prefix_ senf::console::CommandNode::cptr senf::console::CommandNode::thisptr() const { return boost::static_pointer_cast(shared_from_this()); } ///////////////////////////////cci.e/////////////////////////////////////// #undef prefix_ // 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 test" // End: