CCA
Port.h
Go to the documentation of this file.
00001 /* ============================================================
00002  *
00003  * This file is a part of CCA project
00004  *
00005  * Copyright (C) 2011 by Arne Nordmann <anordman at cor-lab dot uni-bielefeld dot de>
00006  *
00007  * This file may be licensed under the terms of the
00008  * GNU Lesser General Public License Version 3 (the ``LGPL''),
00009  * or (at your option) any later version.
00010  *
00011  * Software distributed under the License is distributed
00012  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
00013  * express or implied. See the LGPL for the specific language
00014  * governing rights and limitations.
00015  *
00016  * You should have received a copy of the LGPL along with this
00017  * program. If not, go to http://www.gnu.org/licenses/lgpl.html
00018  * or write to the Free Software Foundation, Inc.,
00019  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
00020  *
00021  * The development of this software was supported by:
00022  *   CoR-Lab, Research Institute for Cognition and Robotics
00023  *     Bielefeld University
00024  *
00025  * ============================================================ */
00026 
00027 #pragma once
00028 
00029 #include <boost/shared_ptr.hpp>
00030 
00031 #include <rsb/Scope.h>
00032 
00033 #include "port/PortConfiguration.h"
00034 
00035 namespace cca {
00036 
00037 class Port;
00038 typedef ::boost::shared_ptr<Port> PortPtr;
00039 
00043 class Port {
00044 
00045 public:
00046 
00047     static const bool MANDATORY = false;
00048     static const bool OPTIONAL = true;
00049 
00055     virtual bool isReady() const;
00056 
00062     virtual void makeOptional(bool optional);
00063 
00069     virtual bool isOptional() const;
00070 
00076     void configure(const std::string &scope);
00077 
00083     void configure(PortConfigurationPtr config);
00084 
00090     virtual void configureSpecifics() = 0;
00091 
00096     virtual PortConfigurationPtr getConfig() const;
00097 
00102     virtual ::rsb::ScopePtr getScopePtr() const;
00103 
00108     virtual bool isLocalPort();
00109 
00114     virtual bool isRemotePort();
00115 
00116     virtual ~Port();
00117 
00121     virtual std::string print() const = 0;
00122 
00123 protected:
00132     Port(bool optional = false);
00133 
00137     PortConfigurationPtr config;
00138 
00139     bool configured, optional;
00140 
00141 };
00142 
00143 }