packmime_OL.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 2002, Statistics Research, Bell Labs, Lucent Technologies and
  4.  * The University of North Carolina at Chapel Hill
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without 
  7.  * modification, are permitted provided that the following conditions are met:
  8.  * 
  9.  *    1. Redistributions of source code must retain the above copyright 
  10.  * notice, this list of conditions and the following disclaimer.
  11.  *    2. Redistributions in binary form must reproduce the above copyright 
  12.  * notice, this list of conditions and the following disclaimer in the 
  13.  * documentation and/or other materials provided with the distribution.
  14.  *    3. The name of the author may not be used to endorse or promote 
  15.  * products derived from this software without specific prior written 
  16.  * permission.
  17.  * 
  18.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 
  19.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
  20.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
  21.  * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, 
  22.  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
  23.  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
  24.  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
  25.  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 
  26.  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 
  27.  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
  28.  * POSSIBILITY OF SUCH DAMAGE.
  29.  */
  30. /*
  31.  * Reference
  32.  *     Stochastic Models for Generating Synthetic HTTP Source Traffic 
  33.  *     J. Cao, W.S. Cleveland, Y. Gao, K. Jeffay, F.D. Smith, and M.C. Weigle 
  34.  *     IEEE INFOCOM 2004.
  35.  *
  36.  * Documentation available at http://dirt.cs.unc.edu/packmime/
  37.  * 
  38.  * Contacts: Michele Weigle (mcweigle@cs.unc.edu),
  39.  *           Kevin Jeffay (jeffay@cs.unc.edu)
  40.  */
  41. /*
  42. #include <sys/types.h>
  43. #include <sys/stat.h> 
  44. #include <stdio.h>
  45. #include <stdlib.h>
  46. #include <math.h>
  47. #include "config.h"
  48. #include "random.h"
  49. #include "trafgen.h"
  50. #include "ranvar.h"
  51. */
  52. #include "packmime_OL.h"
  53. #include "packmime_ranvar.h"
  54. /* 
  55.  * Constant bit rate traffic source.   Parameterized by interval, (optional)
  56.  * random noise in the interval, and packet size.  
  57.  */
  58. /*
  59. class PackMimeOpenLoop : public TrafficGenerator {
  60.  public:
  61. PackMimeOpenLoop();
  62. virtual double next_interval(int&);
  63. //HACK so that udp agent knows interpacket arrival time within a burst
  64. int command(int argc, const char*const* argv);
  65.  
  66.  protected:
  67. virtual void start();
  68. void init();
  69. int size_;
  70. int seqno_;
  71. int64_t maxpkts_;
  72. // statistics objects
  73. RandomVariable* pm_pac_ia_;
  74. RandomVariable* pm_pac_size_;
  75. // helper methods
  76. TclObject* lookup_obj(const char* name) {
  77.                 TclObject* obj = Tcl::instance().lookup(name);
  78.                 if (obj == NULL) 
  79.                         fprintf(stderr, "Bad object name %sn", name);
  80.                 return obj;
  81.         }
  82. inline int lookup_rv (RandomVariable*& rv, const char* name) {
  83. if (rv != NULL)
  84. Tcl::instance().evalf ("delete %s", rv->name());
  85. rv = (RandomVariable*) lookup_obj (name);
  86. return rv ? (TCL_OK) : (TCL_ERROR);
  87. }
  88. };
  89. */
  90. static class PackMimeOpenLoopClass : public TclClass {
  91.  public:
  92. PackMimeOpenLoopClass() : TclClass("Application/Traffic/PackMimeOpenLoop") {}
  93. TclObject* create(int, const char*const*) {
  94. return (new PackMimeOpenLoop());
  95. }
  96. } class_bl_traffic;
  97. PackMimeOpenLoop::PackMimeOpenLoop() : size_(40), seqno_(0), maxpkts_(0), 
  98.        pm_pac_ia_(NULL), pm_pac_size_(NULL)
  99. {
  100. bind("maxpkts_", &maxpkts_);
  101. }
  102. void PackMimeOpenLoop::init()
  103. {
  104. if (agent_)
  105. agent_->set_pkttype(PT_BLTRACE);
  106. else 
  107. printf("no agent_n");
  108. return;
  109. }
  110. void PackMimeOpenLoop::start()
  111. {
  112. init();
  113. if (!pm_pac_ia_ || !pm_pac_size_) {
  114. fprintf(stderr, "Random variables are not set up yet!n");
  115. return;
  116. }
  117.         running_ = 1;
  118. nextPkttime_ = next_interval(size_);
  119. timer_.resched(nextPkttime_);       
  120. return;
  121. }
  122. double PackMimeOpenLoop::next_interval(int& size)
  123. {
  124. double t = 1;
  125. size = (int)pm_pac_size_->value(); // current packet size
  126. assert(size>=40);
  127. size -= 28; // length of IP + UDP header
  128. t = pm_pac_ia_->value();   // time to next packet arrival    
  129. if ((++seqno_ < maxpkts_) || (maxpkts_ <= 0))
  130. return(t);
  131. else
  132. return(-1); 
  133. }
  134. int PackMimeOpenLoop::command(int argc, const char*const* argv)
  135. {  
  136. if (argc == 3) {
  137. if (strcmp (argv[1], "set-pac-size") == 0) {
  138. int res = lookup_rv (pm_pac_size_, argv[2]);
  139. if (res == TCL_ERROR) {
  140. delete pm_pac_size_;
  141. fprintf (stderr, "Invalid packet size random variablen");
  142. return (TCL_ERROR);
  143. }
  144. return (TCL_OK);
  145. }
  146. else if (strcmp (argv[1], "set-pac-ia") == 0) {
  147. int res = lookup_rv (pm_pac_ia_, argv[2]);
  148. if (res == TCL_ERROR) {
  149. delete pm_pac_ia_;
  150. fprintf (stderr,"Invalid packet arrive random variablen");
  151. return (TCL_ERROR);
  152. }
  153. return (TCL_OK);
  154. }
  155. } else if (argc == 2) {
  156. if (strcmp(argv[1], "start") == 0) {
  157. start();
  158. return(TCL_OK);
  159. }
  160. }
  161. return (Application::command(argc, argv));
  162. }