User Manual, Developers Guide and API Documentation

Connection.cpp

Go to the documentation of this file.
00001 /*******************************************************************************
00002  * This file is part of openWNS (open Wireless Network Simulator)
00003  * _____________________________________________________________________________
00004  *
00005  * Copyright (C) 2004-2007
00006  * Chair of Communication Networks (ComNets)
00007  * Kopernikusstr. 16, D-52074 Aachen, Germany
00008  * phone: ++49-241-80-27910,
00009  * fax: ++49-241-80-22242
00010  * email: info@openwns.org
00011  * www: http://www.openwns.org
00012  * _____________________________________________________________________________
00013  *
00014  * openWNS is free software; you can redistribute it and/or modify it under the
00015  * terms of the GNU Lesser General Public License version 2 as published by the
00016  * Free Software Foundation;
00017  *
00018  * openWNS is distributed in the hope that it will be useful, but WITHOUT ANY
00019  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
00020  * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
00021  * details.
00022  *
00023  * You should have received a copy of the GNU Lesser General Public License
00024  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
00025  *
00026  ******************************************************************************/
00027 
00028 #include <TCP/Connection.hpp>
00029 #include <TCP/DataHandler.hpp>
00030 #include <TCP/UpperConvergence.hpp>
00031 
00032 
00033 using namespace tcp;
00034 
00035 Connection::Connection(const wns::service::tl::FlowID& _flowID,
00036                UpperConvergence* _upperConvergence,
00037                const wns::pyconfig::View& _config) :
00038     flowID(_flowID),
00039     logger(_config.get("logger")),
00040     upperConvergence(_upperConvergence)
00041 {
00042 }
00043 
00044 void
00045 Connection::registerDataHandler(wns::service::tl::DataHandler* _dh)
00046 {
00047     assure(_dh, "No valid instance of DataHandler");
00048     dh = _dh;
00049     MESSAGE_SINGLE(NORMAL, logger, "dataHandler set for flowID: " << flowID);
00050 }
00051 
00052 void
00053 Connection::sendData(const wns::osi::PDUPtr& sdu)
00054 {
00055     MESSAGE_SINGLE(NORMAL, logger, sdu->getLengthInBits()/8 << " bytes received from upper layer.");
00056 
00057     assure(upperConvergence, "UpperConvergence of TCP's FUN not set!");
00058 
00059     upperConvergence->sendData(this->flowID, sdu);
00060 }
00061 
00062 wns::service::tl::FlowID
00063 Connection::getFlowID()
00064 {
00065     return this->flowID;
00066 }
00067 
00068 
00069 void
00070 Connection::onData(const wns::osi::PDUPtr& _pdu)
00071 {
00072     MESSAGE_SINGLE(NORMAL, logger, "onData for flowID: " << flowID);
00073     assure(dh, "No DataHandler set!");
00074     dh->onData(_pdu);
00075 }

Generated on Sun May 27 03:32:17 2012 for openWNS by  doxygen 1.5.5