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

通讯编程

开发平台:

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.  * Changes by the Daedalus group, http://daedalus.cs.berkeley.edu
  42.  * Add Application interface
  43.  *
  44.  * @(#) $Header: /cvsroot/nsnam/ns-2/tools/trafgen.h,v 1.7 2005/08/26 05:05:31 tomh Exp $ (Xerox)
  45.  */
  46. #ifndef ns_trafgen_h
  47. #define ns_trafgen_h
  48. #include "app.h"
  49. #include "timer-handler.h"
  50. class TrafficGenerator;
  51. class TrafficTimer : public TimerHandler {
  52. public:
  53. TrafficTimer(TrafficGenerator* tg) : tgen_(tg) {}
  54. protected:
  55. void expire(Event*);
  56. TrafficGenerator* tgen_;
  57. };
  58. /* abstract class for traffic generation modules.  derived classes
  59.  * must define  the next_interval() function.  the traffic generation 
  60.  * module schedules an event for a UDP_Agent when it is time to 
  61.  * generate a new packet.  it passes the packet size with the event 
  62.  * (to accommodate traffic generation modules that may not use fixed 
  63.  * size packets).
  64.  */
  65. /* abstract class for traffic generation modules.  derived classes
  66.  * must define the next_interva() function that is invoked by
  67.  * UDP_Agent.  This function returns the time to the next packet
  68.  * is generated and sets the size of the packet (which is passed
  69.  * by reference).  The init() method is called from the start()
  70.  * method of the UDP_Agent.  It can do any one-time initialization
  71.  * needed by the traffic generation process.
  72.  */
  73. class TrafficGenerator : public Application {
  74. public:
  75. TrafficGenerator();
  76. virtual double next_interval(int &) = 0;
  77. virtual void init() {}
  78. virtual double interval() { return 0; }
  79. virtual int on() { return 0; }
  80. virtual void timeout();
  81. virtual void recv() {}
  82. virtual void resume() {}
  83. protected:
  84. virtual void start();
  85. virtual void stop();
  86. double nextPkttime_;
  87. int size_;
  88. int running_;
  89. TrafficTimer timer_;
  90. };
  91. #endif