![]() |
User Manual, Developers Guide and API Documentation |
![]() |
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 <WNS/simulator/ISimulator.hpp> 00029 #include <WNS/events/scheduler/Interface.hpp> 00030 00031 #include "ConstanzePDU.hpp" 00032 //#include "ConstanzePCI.hpp" 00033 #include <WNS/Assure.hpp> 00034 00035 00036 using namespace constanze; 00037 00038 ConstanzePDU::ConstanzePDU(Bit _length) 00039 : 00040 //PDU(), 00041 wns::osi::PDU(new wns::osi::PCI), 00042 length(_length), 00043 creationTime(0.0) 00044 { 00045 creationTime = wns::simulator::getEventScheduler()->getTime(); 00046 } 00047 00048 ConstanzePDU::~ConstanzePDU() 00049 {} 00050 00051 void ConstanzePDU::setLengthInBits(Bit _length) 00052 { 00053 length = _length; 00054 } // setLengthInBits 00055 00056 void ConstanzePDU::setTimeStamp(simTimeType time) 00057 { 00058 //assure(time >= wns::simulator::getEventScheduler()->getTime(), "living in the past?"); 00059 creationTime = time; 00060 } 00061 00062 simTimeType ConstanzePDU::getTimeStamp() 00063 { 00064 return creationTime; 00065 } 00066 00067 /* 00068 ConstanzePCI* ConstanzePDU::getConstanzePCI() const 00069 { 00070 assureType(getPCI(), ConstanzePCI*); 00071 return static_cast<ConstanzePCI*>(getPCI()); 00072 } 00073 */ 00074 00075 ConstanzePDU* ConstanzePDU::castPDU2ConstanzePDU(wns::osi::PDU* pdu) 00076 { 00077 assureType(pdu, ConstanzePDU*); 00078 return static_cast<ConstanzePDU*>(pdu); 00079 } 00080 00081 wns::osi::PDU* ConstanzePDU::castConstanzePDU2PDU(ConstanzePDU* pdu) 00082 { 00083 return static_cast<wns::osi::PDU*>(pdu); 00084 } 00085 00086 Bit ConstanzePDU::doGetLengthInBits() const 00087 { 00088 //assert(getPCI()); 00089 //return 8 * getPCI()->getPDULength(); 00090 return length; 00091 }
1.5.5