CCA
Port.cpp
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 #include "Port.h"
00028 
00029 #include <string>
00030 #include <sstream>
00031 #include <iostream>
00032 
00033 #include "cca/Exception.h"
00034 
00035 using namespace rsb;
00036 using namespace std;
00037 using namespace boost;
00038 
00039 namespace cca {
00040 
00041 Port::Port(bool opt) :
00042         config(), configured(false), optional(opt) {
00043 }
00044 
00045 Port::~Port() {
00046 }
00047 
00048 bool Port::isReady() const {
00049     return this->configured;
00050 }
00051 
00052 void Port::makeOptional(bool opt) {
00053     this->optional = opt;
00054 }
00055 
00056 bool Port::isOptional() const {
00057     return this->optional;
00058 }
00059 
00060 void Port::configure(const std::string &scope) {
00061     this->configure(PortConfiguration::DEFAULT(scope));
00062 }
00063 
00064 void Port::configure(PortConfigurationPtr conf) {
00065     this->config = conf;
00066 
00067     this->configureSpecifics();
00068 
00069     this->configured = true;
00070 }
00071 
00072 bool Port::isLocalPort() {
00073     if (!this->configured) {
00074         throw CCAException("Port not yet configured.");
00075     }
00076     return this->config->isLocalPort();
00077 }
00078 
00079 bool Port::isRemotePort() {
00080     if (!this->configured) {
00081         throw CCAException("Port not yet configured.");
00082     }
00083     return this->config->isRemotePort();
00084 }
00085 
00086 PortConfigurationPtr Port::getConfig() const {
00087     return this->config;
00088 }
00089 
00090 ScopePtr Port::getScopePtr() const {
00091     return this->config->getScopePtr();
00092 }
00093 
00094 }