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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1997 University of Southern California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *      This product includes software developed by the Information Sciences
  16.  *      Institute of the University of Southern California.
  17.  * 4. Neither the name of the University nor of the Institute may be used
  18.  *    to endorse or promote products derived from this software without
  19.  *    specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  *
  33.  */
  34. #ifndef nam_trafficsource_h
  35. #define nam_trafficsource_h
  36. #include <tclcl.h>
  37. #include "animation.h"
  38. #define SOURCE 10
  39. #define DESTINATION 20
  40. class Agent;
  41. class TimeElement {
  42. public:
  43. TimeElement(double time);
  44. ~TimeElement();
  45. TimeElement * next_;
  46. double time_;
  47. };
  48. // This is a list to keep track of start and stop times
  49. class TimeList {
  50. public:
  51. TimeList() {head_ = NULL;}
  52. TimeList(double time);
  53. ~TimeList();
  54. void clear();
  55. TimeElement * head() {return head_;}
  56. void add(double time);
  57. void remove(double time);
  58. void setList(const char * list_string);
  59. void getListString(char* buffer, int buffer_size);
  60. bool isOn(double time);
  61. double lastStopTime();
  62. private:
  63. TimeElement * head_;
  64. };
  65. class TrafficSource : public Animation, public TclObject {
  66. public:
  67. TrafficSource(const char* type, int id, double _size);
  68. TrafficSource(const char * name, double _size);
  69. void attachTo(Agent * agent);
  70. void removeFromAgent();
  71. inline int number() {return number_;}
  72. virtual int classid() const { return ClassTrafficSourceID; }
  73. inline const char * name() const { return (label_); }
  74. virtual void reset(double);
  75. inline double x() const {return x_;}
  76. inline double y() const {return y_;}
  77. inline double width() const {return width_;}
  78. inline double height() const {return height_;}
  79. void place();
  80. const char* info() const;
  81. void label(const char* name);
  82. virtual double distance(double x, double y) const;
  83. void color(const char* name);
  84. virtual void size(double s);
  85. inline double size() const { return (size_); }
  86. inline TrafficSource * next() const { return next_;}
  87. inline void next(TrafficSource * ts) {next_ = ts;}
  88. inline void windowInit(int size) { windowInit_ = size;}
  89. inline void window(int size) { window_ = size;}
  90. inline void maxcwnd(int size) { maxcwnd_ = size;}
  91. void tracevar(const char* var);
  92. inline void setInterval(float interval) {interval_ = interval;}
  93. inline void setMaxpkts(int maxpkts) {maxpkts_ = maxpkts;}
  94. inline void setBurstTime(int burst_time) {burst_time_ = burst_time;}
  95. inline void setIdleTime(int idle_time) {idle_time_ = idle_time;}
  96. inline void setRate(int rate) {rate_ = rate;}
  97. inline void setShape(double shape) {shape_ = shape;}
  98. double stopAt();
  99. const char* getname() const;
  100. int inside(double, float, float) const;
  101. virtual void update_bb();
  102. virtual void draw(View * view, double now);
  103. int writeNsDefinitionScript(FILE *file);
  104. int writeNsActionScript(FILE *file);
  105. int saveAsEnam(FILE *file);
  106. const char * property(); 
  107. void setWidth(double w) {width_ = w;}
  108. void setHeight(double h) {height_ = h;}
  109. private:
  110. void setDefaults(); 
  111. void placeNextTo(TrafficSource * neighbor); // To the right of my neighbor
  112. void placeOnAgent(); // On top of my Agent
  113. public:
  114. TrafficSource * next_, * previous_;
  115. TrafficSource * editornetmodel_next_; // Used by editornetmodel to track all traffic sources for property editing purposes
  116. Agent * agent_;
  117. int number_;
  118. int packet_size_;
  119. float interval_;
  120. TimeList timelist;
  121. protected:
  122. void drawlabel(View * view) const;
  123. double size_;
  124. double width_;
  125. double height_;
  126. double x_, y_;
  127. double angle_;
  128. int anchor_;
  129. char * label_;
  130. int window_, windowInit_, maxcwnd_;
  131. char* color_;
  132. // Exponential
  133. int burst_time_;
  134. int idle_time_;
  135. int rate_;
  136. // Pareto
  137. double shape_;
  138. int maxpkts_; // Used by FTP 
  139. };
  140. #endif