packmime_OL.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

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. #ifndef ns_packmimeOL_h
  42. #define ns_packmimeOL_h
  43. #include <sys/types.h>
  44. #include <sys/stat.h> 
  45. #include <stdio.h>
  46. #include <stdlib.h>
  47. #include <math.h>
  48. #include "config.h"
  49. #include "random.h"
  50. #include "trafgen.h"
  51. #include "ranvar.h"
  52. /* 
  53.  * Constant bit rate traffic source.   Parameterized by interval, (optional)
  54.  * random noise in the interval, and packet size.  
  55.  */
  56. class PackMimeOpenLoop : public TrafficGenerator {
  57.  public:
  58. PackMimeOpenLoop();
  59. virtual double next_interval(int&);
  60. //HACK so that udp agent knows interpacket arrival time within a burst
  61. int command(int argc, const char*const* argv);
  62.  
  63.  protected:
  64. virtual void start();
  65. void init();
  66. int size_;
  67. int seqno_;
  68. int64_t maxpkts_;
  69. // statistics objects
  70. RandomVariable* pm_pac_ia_;
  71. RandomVariable* pm_pac_size_;
  72. // helper methods
  73. TclObject* lookup_obj(const char* name) {
  74.                 TclObject* obj = Tcl::instance().lookup(name);
  75.                 if (obj == NULL) 
  76.                         fprintf(stderr, "Bad object name %sn", name);
  77.                 return obj;
  78.         }
  79. inline int lookup_rv (RandomVariable*& rv, const char* name) {
  80. if (rv != NULL)
  81. Tcl::instance().evalf ("delete %s", rv->name());
  82. rv = (RandomVariable*) lookup_obj (name);
  83. return rv ? (TCL_OK) : (TCL_ERROR);
  84. }
  85. };
  86. #endif