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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2000 by the University of Southern California
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License,
  6.  * version 2, as published by the Free Software Foundation.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.  * GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License along
  14.  * with this program; if not, write to the Free Software Foundation, Inc.,
  15.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  16.  *
  17.  *
  18.  * The copyright of this module includes the following
  19.  * linking-with-specific-other-licenses addition:
  20.  *
  21.  * In addition, as a special exception, the copyright holders of
  22.  * this module give you permission to combine (via static or
  23.  * dynamic linking) this module with free software programs or
  24.  * libraries that are released under the GNU LGPL and with code
  25.  * included in the standard release of ns-2 under the Apache 2.0
  26.  * license or under otherwise-compatible licenses with advertising
  27.  * requirements (or modified versions of such code, with unchanged
  28.  * license).  You may copy and distribute such a system following the
  29.  * terms of the GNU GPL for this module and the licenses of the
  30.  * other code concerned, provided that you include the source code of
  31.  * that other code when and as the GNU GPL requires distribution of
  32.  * source code.
  33.  *
  34.  * Note that people who make modified versions of this module
  35.  * are not obligated to grant this special exception for their
  36.  * modified versions; it is their choice whether to do so.  The GNU
  37.  * General Public License gives permission to release a modified
  38.  * version without this exception; this exception also makes it
  39.  * possible to release a modified version which carries forward this
  40.  * exception.
  41.  *
  42.  * $Header: /cvsroot/nsnam/nam-1/enetmodel.h,v 1.19 2007/02/12 07:08:43 tom_henderson Exp $
  43.  */
  44. // Network model for Editor
  45. #ifndef nam_enetmodel_h
  46. #define nam_enetmodel_h
  47. #include "netmodel.h"
  48. #include "trafficsource.h"
  49. #include "lossmodel.h"
  50. #include "queuehandle.h"
  51. // The various classifications of agents and traffic generators
  52. // used for determining compatibility (so users can't link incompatible
  53. // objects together in the editor)
  54. typedef enum {
  55. UDP_SOURCE_AGENT, UDP_SINK_AGENT,
  56. TCP_SOURCE_AGENT, TCP_SINK_AGENT,
  57. FULLTCP_AGENT,
  58. UNKNOWN_AGENT
  59. } agent_type;
  60. typedef enum {
  61. UDP_APP,
  62. TCP_APP,
  63. FULLTCP_APP,
  64. UNKNOWN_APP
  65. } trafgen_type;
  66. // The ratio of node radius and mean edge length in the topology
  67. class EditorNetModel : public NetModel {
  68. public:
  69. EditorNetModel(const char *animator);
  70. virtual ~EditorNetModel();
  71. void BoundingBox(BBox&);
  72. Node * addNode(Node * node);
  73. Node * addNode(int node_id);
  74. int addNode(float cx, float cy);
  75. Edge* addEdge(Edge * edge);
  76. int addLink(Node*, Node*);
  77. int addLink(int source_id, int destination_id);
  78. agent_type classifyAgent(const char * agent);
  79. bool checkAgentCompatibility(agent_type source, agent_type dest);
  80. bool checkAgentCompatibility(const char * source, const char * dest);
  81. int addAgent(Agent * agent, Node * node);
  82. int addAgent(Node * src, const char * agent_type, float cx, float cy);
  83. int addAgentLink(Agent*, Agent*);
  84. int addAgentLink(int source_id, int destination_id);
  85. trafgen_type classifyTrafficSource(const char * source);
  86. bool checkAgentTrafficSourceCompatibility(agent_type agent, trafgen_type source);
  87. bool checkAgentTrafficSourceCompatibility(const char * agent, const char * source);
  88. int addTrafficSource(TrafficSource * traffic_source, Agent * agent);
  89. int addTrafficSource(Agent * agent, const char * type, float cx, float cy);
  90. TrafficSource * lookupTrafficSource(int id);
  91. int addLossModel(LossModel * loss_model, Edge * edge);
  92. int addLossModel(Edge * edge, const char * type, double cx, double cy);
  93. LossModel * lookupLossModel(int id);
  94. QueueHandle * addQueueHandle(Edge * edge);
  95. QueueHandle * addQueueHandle(Edge * edge, const char * type);
  96. int writeNsScript(FILE * file, const char * filename, const char * filename_root);
  97. void setNodeProperty(int id, const char * value, const char* variable);
  98. void setAgentProperty(int id, const char* value, const char* variable);
  99. void setLinkProperty(int source_id, int destination_id,
  100.                      const char * value, const char * variable);
  101. void setQueueHandleProperty(int source_id, int destination_id,
  102.                             const char * value, const char * variable);
  103. void setTrafficSourceProperty(int id, const char* value, const char* variable);
  104. void setLossModelProperty(int id, const char* value, const char * variable);
  105. void layout();
  106. void removeLink(Edge *);
  107. void removeNode(Node *);
  108. void removeAgent(Agent *a);
  109. void removeTrafficSource(TrafficSource * ts);
  110. void removeLossModel(LossModel * lossmodel);
  111. inline EditorNetModel* wobj() { return wobj_; }
  112. protected:
  113. EditorNetModel *wobj_;
  114. int command(int argc, const char*const* argv);
  115. private:
  116. int node_id_count;
  117. double pxmin_;
  118. double pymin_;
  119. double pxmax_;
  120. double pymax_;
  121. TrafficSource * traffic_sources_;
  122. LossModel * lossmodels_;
  123. QueueHandle * queue_handles_;
  124. double maximum_simulation_time_; //seconds
  125. double playback_speed_; //microseconds (us)
  126. };
  127. #endif // nam_enetmodel_h