cbr-traffic-PP.cc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:5k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * This code is a contribution of Arnaud Legout, Institut Eurecom, France.
  4.  * This code is highly inspired from the code of the CBR sources.
  5.  * The following copyright is the original copyright included in the 
  6.  * cbr_traffic.cc file.
  7.  *
  8.  * Copyright (c) Xerox Corporation 1997. All rights reserved.
  9.  *  
  10.  * This program is free software; you can redistribute it and/or modify it
  11.  * under the terms of the GNU General Public License as published by the
  12.  * Free Software Foundation; either version 2 of the License, or (at your
  13.  * option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful, but
  16.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18.  * General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License along
  21.  * with this program; if not, write to the Free Software Foundation, Inc.,
  22.  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  23.  *
  24.  * Linking this file statically or dynamically with other modules is making
  25.  * a combined work based on this file.  Thus, the terms and conditions of
  26.  * the GNU General Public License cover the whole combination.
  27.  *
  28.  * In addition, as a special exception, the copyright holders of this file
  29.  * give you permission to combine this file with free software programs or
  30.  * libraries that are released under the GNU LGPL and with code included in
  31.  * the standard release of ns-2 under the Apache 2.0 license or under
  32.  * otherwise-compatible licenses with advertising requirements (or modified
  33.  * versions of such code, with unchanged license).  You may copy and
  34.  * distribute such a system following the terms of the GNU GPL for this
  35.  * file and the licenses of the other code concerned, provided that you
  36.  * include the source code of that other code when and as the GNU GPL
  37.  * requires distribution of source code.
  38.  *
  39.  * Note that people who make modified versions of this file are not
  40.  * obligated to grant this special exception for their modified versions;
  41.  * it is their choice whether to do so.  The GNU General Public License
  42.  * gives permission to release a modified version without this exception;
  43.  * this exception also makes it possible to release a modified version
  44.  * which carries forward this exception.
  45.  */
  46. #include <stdlib.h>
  47.  
  48. #include "random.h"
  49. #include "trafgen.h"
  50. #include "ranvar.h"
  51. /* 
  52.  * Constant bit rate traffic source.   Parameterized by interval, (optional)
  53.  * random noise in the interval, and packet size.  
  54.  */
  55. class CBR_PP_Traffic : public TrafficGenerator {
  56.  public:
  57. CBR_PP_Traffic();
  58. virtual double next_interval(int&);
  59. //HACK so that udp agent knows interpacket arrival time within a burst
  60. inline double interval() { return (interval_); }
  61.  protected:
  62. virtual void start();
  63. void init();
  64. void timeout();
  65. double rate_;     /* send rate during on time (bps) */
  66. double interval_; /* packet inter-arrival time during burst (sec) */
  67. double random_;
  68. int seqno_;
  69. int maxpkts_;
  70. int PP_;
  71. int PBM_;         /*size of the packets bunch*/
  72. };
  73. static class CBR_PP_TrafficClass : public TclClass {
  74.  public:
  75. CBR_PP_TrafficClass() : TclClass("Application/Traffic/CBR_PP") {}
  76. TclObject* create(int, const char*const*) {
  77. return (new CBR_PP_Traffic());
  78. }
  79. } class_cbr_PP_traffic;
  80. CBR_PP_Traffic::CBR_PP_Traffic() : seqno_(0)
  81. {
  82. bind_bw("rate_", &rate_);
  83. bind("random_", &random_);
  84. bind("packetSize_", &size_);
  85. bind("maxpkts_", &maxpkts_);
  86. bind("PBM_", &PBM_);
  87. }
  88. void CBR_PP_Traffic::init()
  89. {
  90.         // compute inter-packet interval 
  91.  interval_ = PBM_*(double)(size_ << 3)/(double)rate_;
  92. //interval_ = 1e-100;
  93. PP_ = 0;
  94. if (agent_)
  95. agent_->set_pkttype(PT_CBR);
  96. }
  97. void CBR_PP_Traffic::start()
  98. {
  99.         init();
  100.         running_ = 1;
  101.         timeout();
  102. }
  103. double CBR_PP_Traffic::next_interval(int& size)
  104. {
  105. // Recompute interval in case rate_ or size_ has changes
  106. if (PP_ >= (PBM_ - 1)){
  107. interval_ = PBM_*(double)(size_ << 3)/(double)rate_;
  108. PP_ = 0;
  109. }
  110. else {
  111. interval_ = 1e-100;
  112. PP_ += 1 ;
  113. }
  114. double t = interval_;
  115. if (random_==1)
  116. t += interval_ * Random::uniform(-0.5, 0.5);
  117. if (random_==2)
  118. t += interval_ * Random::uniform(-0.000001, 0.000001);
  119. size = size_;
  120. if (++seqno_ < maxpkts_)
  121. return(t);
  122. else
  123. return(-1); 
  124. }
  125. void CBR_PP_Traffic::timeout()
  126. {
  127.         if (! running_)
  128.                 return;
  129.         /* send a packet */
  130.         // The test tcl/ex/test-rcvr.tcl relies on the "NEW_BURST" flag being 
  131.         // set at the start of any exponential burst ("talkspurt").  
  132.         if (PP_ == 0) 
  133.                 agent_->sendmsg(size_, "NEW_BURST");
  134.         else 
  135.                 agent_->sendmsg(size_);
  136.         /* figure out when to send the next one */
  137.         nextPkttime_ = next_interval(size_);
  138.         /* schedule it */
  139.         if (nextPkttime_ > 0)
  140.                 timer_.resched(nextPkttime_);
  141. }