expoo.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.  * Copyright (c) Xerox Corporation 1997. All rights reserved.
  4.  *  
  5.  * This program is free software; you can redistribute it and/or modify it
  6.  * under the terms of the GNU General Public License as published by the
  7.  * Free Software Foundation; either version 2 of the License, or (at your
  8.  * option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful, but
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License along
  16.  * with this program; if not, write to the Free Software Foundation, Inc.,
  17.  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  18.  *
  19.  * Linking this file statically or dynamically with other modules is making
  20.  * a combined work based on this file.  Thus, the terms and conditions of
  21.  * the GNU General Public License cover the whole combination.
  22.  *
  23.  * In addition, as a special exception, the copyright holders of this file
  24.  * give you permission to combine this file with free software programs or
  25.  * libraries that are released under the GNU LGPL and with code included in
  26.  * the standard release of ns-2 under the Apache 2.0 license or under
  27.  * otherwise-compatible licenses with advertising requirements (or modified
  28.  * versions of such code, with unchanged license).  You may copy and
  29.  * distribute such a system following the terms of the GNU GPL for this
  30.  * file and the licenses of the other code concerned, provided that you
  31.  * include the source code of that other code when and as the GNU GPL
  32.  * requires distribution of source code.
  33.  *
  34.  * Note that people who make modified versions of this file are not
  35.  * obligated to grant this special exception for their modified versions;
  36.  * it is their choice whether to do so.  The GNU General Public License
  37.  * gives permission to release a modified version without this exception;
  38.  * this exception also makes it possible to release a modified version
  39.  * which carries forward this exception.
  40.  */
  41. #ifndef lint
  42. static const char rcsid[] =
  43.     "@(#) $Header: /cvsroot/nsnam/ns-2/tools/expoo.cc,v 1.15 2005/08/26 05:05:30 tomh Exp $ (Xerox)";
  44. #endif
  45. #include <stdlib.h>
  46.  
  47. #include "random.h"
  48. #include "trafgen.h"
  49. #include "ranvar.h"
  50. /* implement an on/off source with exponentially distributed on and
  51.  * off times.  parameterized by average burst time, average idle time,
  52.  * burst rate and packet size.
  53.  */
  54. class EXPOO_Traffic : public TrafficGenerator {
  55.  public:
  56. EXPOO_Traffic();
  57. virtual double next_interval(int&);
  58.         virtual void timeout();
  59. // Added by Debojyoti Dutta October 12th 2000
  60. int command(int argc, const char*const* argv);
  61.  protected:
  62. void init();
  63. double ontime_;   /* average length of burst (sec) */
  64. double offtime_;  /* average length of idle time (sec) */
  65. double rate_;     /* send rate during on time (bps) */
  66. double interval_; /* packet inter-arrival time during burst (sec) */
  67. unsigned int rem_; /* number of packets left in current burst */
  68. /* new stuff using RandomVariable */
  69. ExponentialRandomVariable burstlen_;
  70. ExponentialRandomVariable Offtime_;
  71. };
  72. static class EXPTrafficClass : public TclClass {
  73.  public:
  74. EXPTrafficClass() : TclClass("Application/Traffic/Exponential") {}
  75. TclObject* create(int, const char*const*) {
  76. return (new EXPOO_Traffic());
  77. }
  78. } class_expoo_traffic;
  79. // Added by Debojyoti Dutta October 12th 2000
  80. // This is a new command that allows us to use 
  81. // our own RNG object for random number generation
  82. // when generating application traffic
  83. int EXPOO_Traffic::command(int argc, const char*const* argv){
  84.         
  85.         if(argc==3){
  86.                 if (strcmp(argv[1], "use-rng") == 0) {
  87.                         burstlen_.seed((char *)argv[2]);
  88.                         Offtime_.seed((char *)argv[2]);
  89.                         return (TCL_OK);
  90.                 }
  91.         }
  92.         return Application::command(argc,argv);
  93. }
  94. EXPOO_Traffic::EXPOO_Traffic() : burstlen_(0.0), Offtime_(0.0)
  95. {
  96. bind_time("burst_time_", &ontime_);
  97. bind_time("idle_time_", Offtime_.avgp());
  98. bind_bw("rate_", &rate_);
  99. bind("packetSize_", &size_);
  100. }
  101. void EXPOO_Traffic::init()
  102. {
  103.         /* compute inter-packet interval during bursts based on
  104.  * packet size and burst rate.  then compute average number
  105.  * of packets in a burst.
  106.  */
  107. interval_ = (double)(size_ << 3)/(double)rate_;
  108. burstlen_.setavg(ontime_/interval_);
  109. rem_ = 0;
  110. if (agent_)
  111. agent_->set_pkttype(PT_EXP);
  112. }
  113. double EXPOO_Traffic::next_interval(int& size)
  114. {
  115. double t = interval_;
  116. if (rem_ == 0) {
  117. /* compute number of packets in next burst */
  118. rem_ = int(burstlen_.value() + .5);
  119. /* make sure we got at least 1 */
  120. if (rem_ == 0)
  121. rem_ = 1;
  122. /* start of an idle period, compute idle time */
  123. t += Offtime_.value();
  124. }
  125. rem_--;
  126. size = size_;
  127. return(t);
  128. }
  129. void EXPOO_Traffic::timeout()
  130. {
  131. if (! running_)
  132. return;
  133. /* send a packet */
  134. // The test tcl/ex/test-rcvr.tcl relies on the "NEW_BURST" flag being 
  135. // set at the start of any exponential burst ("talkspurt").  
  136. if (nextPkttime_ != interval_ || nextPkttime_ == -1) 
  137. agent_->sendmsg(size_, "NEW_BURST");
  138. else 
  139. agent_->sendmsg(size_);
  140. /* figure out when to send the next one */
  141. nextPkttime_ = next_interval(size_);
  142. /* schedule it */
  143. if (nextPkttime_ > 0)
  144. timer_.resched(nextPkttime_);
  145. }