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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * empweb.h
  4.  * Copyright (C) 2001 by the University of Southern California
  5.  * $Id: empweb.h,v 1.19 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 Web traffic model that simulates Web 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 webtraf.h
  50. //
  51. // $Header: /cvsroot/nsnam/ns-2/empweb/empweb.h,v 1.19 2005/08/25 18:58:05 johnh Exp $
  52. #ifndef ns_empweb_h
  53. #define ns_empweb_h
  54. #include "ranvar.h"
  55. #include "random.h"
  56. #include "timer-handler.h"
  57. #include "lib/bsd-list.h"
  58. #include "node.h"
  59. #include "tcp.h"
  60. #include "tcp-sink.h"
  61. #include "persconn.h"
  62. const int WEBTRAF_DEFAULT_OBJ_PER_PAGE = 1;
  63. class EmpWebTrafPool;
  64. class EmpWebTrafSession : public TimerHandler {
  65. public: 
  66. EmpWebTrafSession(EmpWebTrafPool *mgr, Node *src, int np, int id, int connNum, int cl, int ftcp_) : 
  67. rvInterPage_(NULL), rvPageSize_(NULL),
  68. rvInterObj_(NULL), rvObjSize_(NULL), 
  69. rvReqSize_(NULL), rvPersistSel_(NULL), rvServerSel_(NULL),
  70. rvServerWin_(NULL), rvClientWin_(NULL),
  71. rvMtu_(NULL),
  72. mgr_(mgr), src_(src), nPage_(np), curPage_(0), donePage_(0),
  73. id_(id), clientIdx_(cl), fulltcp_(0), interPageOption_(1) {
  74.         fulltcp_ = ftcp_;
  75. }
  76. virtual ~EmpWebTrafSession();
  77. // Queried by individual pages/objects
  78. inline EmpiricalRandomVariable*& interPage() { return rvInterPage_; }
  79. inline EmpiricalRandomVariable*& pageSize() { return rvPageSize_; }
  80. inline EmpiricalRandomVariable*& interObj() { return rvInterObj_; }
  81. inline EmpiricalRandomVariable*& objSize() { return rvObjSize_; }
  82. inline EmpiricalRandomVariable*& reqSize() { return rvReqSize_; }
  83. inline EmpiricalRandomVariable*& persistSel() { return rvPersistSel_; }
  84. inline EmpiricalRandomVariable*& serverSel() { return rvServerSel_; }
  85. inline EmpiricalRandomVariable*& serverWin() { return rvServerWin_; }
  86. inline EmpiricalRandomVariable*& clientWin() { return rvClientWin_; }
  87. inline EmpiricalRandomVariable*& mtu() { return rvMtu_; }
  88. void donePage(void* ClntData);
  89. void launchReq(void* ClntData, int obj, int size, int reqSize, int sid, int p);
  90. inline int id() const { return id_; }
  91. inline EmpWebTrafPool* mgr() { return mgr_; }
  92.         inline void set_interPageOption(int option) { interPageOption_ = option; }
  93.  
  94. static int LASTPAGE_;
  95. private:
  96. virtual void expire(Event *e = 0);
  97. virtual void handle(Event *e);
  98. EmpiricalRandomVariable *rvInterPage_, *rvPageSize_, *rvInterObj_, *rvObjSize_;
  99. EmpiricalRandomVariable *rvReqSize_, *rvPersistSel_, *rvServerSel_;
  100. EmpiricalRandomVariable *rvServerWin_, *rvClientWin_;
  101. EmpiricalRandomVariable *rvMtu_;
  102. EmpWebTrafPool* mgr_;
  103. Node* src_; // One Web client (source of request) per session
  104. int nPage_, curPage_, donePage_;
  105. int id_;
  106.         int clientIdx_;
  107.         int fulltcp_;
  108.         int interPageOption_;
  109. TcpAgent* ctcp_;
  110.         TcpAgent* stcp_;
  111. TcpSink* csnk_;
  112. TcpSink* ssnk_;
  113. };
  114. class EmpWebTrafPool : public PagePool {
  115. public: 
  116. EmpWebTrafPool(); 
  117. virtual ~EmpWebTrafPool(); 
  118. inline void startSession() {
  119.         concurrentSess_++;
  120. if (isdebug()) 
  121. printf("concurrent number of sessions = %d n", concurrentSess_ );
  122. }
  123. inline void doneSession(int idx) { 
  124. assert((idx>=0) && (idx<nSession_) && (session_[idx]!=NULL));
  125. if (concurrentSess_ > 0) concurrentSess_--;
  126. if (isdebug()) {
  127. printf("deleted session %d n", idx );
  128. printf("concurrent number of sessions = %d n", concurrentSess_ );
  129.                 }
  130. delete session_[idx];
  131. session_[idx] = NULL; 
  132. }
  133. void recycleTcp(Agent* a);
  134. void recycleSink(Agent* a);
  135. TcpAgent* picktcp(int size, int mtu);
  136. TcpSink* picksink();
  137. inline int nTcp() { return nTcp_; }
  138. inline int nSink() { return nSink_; }
  139. inline int isdebug() { return debug_; }
  140. virtual void delay_bind_init_all();
  141. virtual int delay_bind_dispatch(const char*, const char*, TclObject*);
  142. int nSrcL_;
  143. int nClientL_;
  144. int concurrentSess_;
  145.   int color_;
  146. static int LASTFLOW_;
  147. int nSrc_;
  148. Node** server_; /* Web servers */
  149. protected:
  150. virtual int command(int argc, const char*const* argv);
  151. // Session management: fixed number of sessions, fixed number
  152. // of pages per session
  153. int nSession_;
  154. EmpWebTrafSession** session_; 
  155. int nClient_;
  156. Node** client_;  /* Browsers */
  157. // TCP agent pool management
  158. struct AgentListElem {
  159. AgentListElem(Agent* a) : agt_(a) {
  160. link.le_next = NULL;
  161. link.le_prev = NULL;
  162. }
  163. Agent* agt_;
  164. LIST_ENTRY(AgentListElem) link;
  165. };
  166. LIST_HEAD(AgentList, AgentListElem);
  167. inline void insertAgent(AgentList* l, Agent *a) {
  168. AgentListElem *e = new AgentListElem(a);
  169. LIST_INSERT_HEAD(l, e, link);
  170. }
  171. inline Agent* detachHead(AgentList* l) {
  172. AgentListElem *e = l->lh_first;
  173. if (e == NULL)
  174. return NULL;
  175. Agent *a = e->agt_;
  176. LIST_REMOVE(e, link);
  177. delete e;
  178. return a;
  179. }
  180. int nTcp_, nSink_;
  181. AgentList tcpPool_; /* TCP agent pool */
  182. AgentList sinkPool_; /* TCP sink pool */
  183. // Helper methods
  184. inline int lookup_rv(EmpiricalRandomVariable*& rv, const char* name) {
  185. if (rv != NULL)
  186. Tcl::instance().evalf("delete %s", rv->name());
  187. rv = (EmpiricalRandomVariable*)lookup_obj(name);
  188. return rv ? (TCL_OK) : (TCL_ERROR);
  189. }
  190. int debug_;
  191. int fulltcp_;
  192. };
  193. #endif // ns_empweb_h