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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * empftp.h
  4.  * Copyright (C) 2001 by the University of Southern California
  5.  * $Id: empftp.h,v 1.5 2005/08/25 18:58:05 johnh Exp $
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License,
  9.  * version 2, as published by the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License along
  17.  * with this program; if not, write to the Free Software Foundation, Inc.,
  18.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  19.  *
  20.  *
  21.  * The copyright of this module includes the following
  22.  * linking-with-specific-other-licenses addition:
  23.  *
  24.  * In addition, as a special exception, the copyright holders of
  25.  * this module give you permission to combine (via static or
  26.  * dynamic linking) this module with free software programs or
  27.  * libraries that are released under the GNU LGPL and with code
  28.  * included in the standard release of ns-2 under the Apache 2.0
  29.  * license or under otherwise-compatible licenses with advertising
  30.  * requirements (or modified versions of such code, with unchanged
  31.  * license).  You may copy and distribute such a system following the
  32.  * terms of the GNU GPL for this module and the licenses of the
  33.  * other code concerned, provided that you include the source code of
  34.  * that other code when and as the GNU GPL requires distribution of
  35.  * source code.
  36.  *
  37.  * Note that people who make modified versions of this module
  38.  * are not obligated to grant this special exception for their
  39.  * modified versions; it is their choice whether to do so.  The GNU
  40.  * General Public License gives permission to release a modified
  41.  * version without this exception; this exception also makes it
  42.  * possible to release a modified version which carries forward this
  43.  * exception.
  44.  *
  45.  */
  46. //
  47. // Empirical FTP traffic model that simulates FTP traffic based on a set of
  48. // CDF (Cumulative Distribution Function) data derived from live tcpdump trace
  49. // The structure of this file is largely borrowed from empweb.h
  50. //
  51. #ifndef ns_empftp_h
  52. #define ns_empftp_h
  53. #include "ranvar.h"
  54. #include "random.h"
  55. #include "timer-handler.h"
  56. #include "lib/bsd-list.h"
  57. #include "node.h"
  58. #include "tcp.h"
  59. #include "tcp-sink.h"
  60. #include "persconn.h"
  61. class EmpFtpTrafPool;
  62. class EmpFtpTrafSession : public TimerHandler {
  63. public: 
  64. EmpFtpTrafSession(EmpFtpTrafPool *mgr, int np, int id) : 
  65. rvInterFile_(NULL), rvFileSize_(NULL),
  66. rvServerSel_(NULL), 
  67. rvServerWin_(NULL), rvClientWin_(NULL),
  68. mgr_(mgr), nFile_(np), curFile_(0), 
  69. id_(id) {}
  70. virtual ~EmpFtpTrafSession();
  71. // Queried by individual pages/objects
  72. inline EmpiricalRandomVariable*& interFile() { return rvInterFile_; }
  73. inline EmpiricalRandomVariable*& fileSize() { return rvFileSize_; }
  74. inline EmpiricalRandomVariable*& serverSel() { return rvServerSel_; }
  75. inline EmpiricalRandomVariable*& serverWin() { return rvServerWin_; }
  76. inline EmpiricalRandomVariable*& clientWin() { return rvClientWin_; }
  77. inline void setServer(Node* s) { src_ = s; }
  78. inline void setClient(Node* c) { dst_ = c; }
  79. void sendFile(int obj, int size);
  80. inline int id() const { return id_; }
  81. inline EmpFtpTrafPool* mgr() { return mgr_; }
  82. static int LASTFILE_;
  83. private:
  84. virtual void expire(Event *e = 0);
  85. virtual void handle(Event *e);
  86. EmpiricalRandomVariable *rvInterFile_, *rvFileSize_, *rvServerSel_;
  87. EmpiricalRandomVariable *rvServerWin_, *rvClientWin_;
  88. EmpFtpTrafPool* mgr_;
  89. Node* src_;
  90. Node* dst_;
  91. int nFile_, curFile_ ;
  92. int id_;
  93. };
  94. class EmpFtpTrafPool : public PagePool {
  95. public: 
  96. EmpFtpTrafPool(); 
  97. virtual ~EmpFtpTrafPool(); 
  98. inline void doneSession(int idx) { 
  99. assert((idx>=0) && (idx<nSession_) && (session_[idx]!=NULL));
  100. if (isdebug()) {
  101. printf("deleted session %d n", idx );
  102.                 }
  103. delete session_[idx];
  104. session_[idx] = NULL; 
  105. }
  106. TcpAgent* picktcp(int size);
  107. TcpSink* picksink();
  108. inline int nTcp() { return nTcp_; }
  109. inline int nSink() { return nSink_; }
  110. inline int isdebug() { return debug_; }
  111. virtual void delay_bind_init_all();
  112. virtual int delay_bind_dispatch(const char*, const char*, TclObject*);
  113. int nSrcL_;
  114. int nClientL_;
  115.         int color_;
  116. int nSrc_;
  117. Node** server_; /* FTP servers */
  118. protected:
  119. virtual int command(int argc, const char*const* argv);
  120. // Session management: fixed number of sessions, fixed number
  121. // of pages per session
  122. int nSession_;
  123. EmpFtpTrafSession** session_; 
  124. int nClient_;
  125. Node** client_;  /* FTP clients */
  126. // TCP agent pool management
  127. struct AgentListElem {
  128. AgentListElem(Agent* a) : agt_(a) {
  129. link.le_next = NULL;
  130. link.le_prev = NULL;
  131. }
  132. Agent* agt_;
  133. LIST_ENTRY(AgentListElem) link;
  134. };
  135. LIST_HEAD(AgentList, AgentListElem);
  136. inline void insertAgent(AgentList* l, Agent *a) {
  137. AgentListElem *e = new AgentListElem(a);
  138. LIST_INSERT_HEAD(l, e, link);
  139. }
  140. inline Agent* detachHead(AgentList* l) {
  141. AgentListElem *e = l->lh_first;
  142. if (e == NULL)
  143. return NULL;
  144. Agent *a = e->agt_;
  145. LIST_REMOVE(e, link);
  146. delete e;
  147. return a;
  148. }
  149. int nTcp_, nSink_;
  150. AgentList tcpPool_; /* TCP agent pool */
  151. AgentList sinkPool_; /* TCP sink pool */
  152. // Helper methods
  153. inline int lookup_rv(EmpiricalRandomVariable*& rv, const char* name) {
  154. if (rv != NULL)
  155. Tcl::instance().evalf("delete %s", rv->name());
  156. rv = (EmpiricalRandomVariable*)lookup_obj(name);
  157. return rv ? (TCL_OK) : (TCL_ERROR);
  158. }
  159. int debug_;
  160. };
  161. #endif // ns_empftp_h