webtraf.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.  * webtraf.h
  4.  * Copyright (C) 1999 by the University of Southern California
  5.  * $Id: webtraf.h,v 1.18 2005/08/25 18:58:13 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. // Incorporating Polly's web traffic module into the PagePool framework
  48. //
  49. // XXX This has nothing to do with the HttpApp classes. Because we are 
  50. // only interested in traffic pattern here, we do not want to be bothered 
  51. // with the burden of transmitting HTTP headers, etc. 
  52. //
  53. // $Header: /cvsroot/nsnam/ns-2/webcache/webtraf.h,v 1.18 2005/08/25 18:58:13 johnh Exp $
  54. #ifndef ns_webtraf_h
  55. #define ns_webtraf_h
  56. #include "ranvar.h"
  57. #include "random.h"
  58. #include "timer-handler.h"
  59. #include "lib/bsd-list.h"
  60. #include "node.h"
  61. #include "tcp.h"
  62. #include "tcp-sink.h"
  63. #include "pagepool.h"
  64. #include "webserver.h"
  65. const int WEBTRAF_DEFAULT_OBJ_PER_PAGE = 1;
  66. class WebTrafPool;
  67. class WebTrafSession : public TimerHandler {
  68. public: 
  69. WebTrafSession(WebTrafPool *mgr, Node *src, int np, int id, int ftcp_, int recycle_p);
  70. virtual ~WebTrafSession();
  71. // Queried by individual pages/objects
  72. inline RandomVariable*& interPage() { return rvInterPage_; }
  73. inline RandomVariable*& pageSize() { return rvPageSize_; }
  74. inline RandomVariable*& interObj() { return rvInterObj_; }
  75. inline RandomVariable*& objSize() { return rvObjSize_; }
  76. void donePage(void* ClntData);
  77. void launchReq(void* ClntData, int obj, int size);
  78. inline int id() const { return id_; }
  79. inline WebTrafPool* mgr() { return mgr_; }
  80. inline void set_interPageOption(int option) { interPageOption_ = option; }
  81. static int LASTPAGE_;
  82. private:
  83. virtual void expire(Event *e = 0);
  84. virtual void handle(Event *e);
  85. RandomVariable *rvInterPage_, *rvPageSize_, *rvInterObj_, *rvObjSize_;
  86. WebTrafPool* mgr_;
  87. Node* src_; // One Web client (source of request) per session
  88. int nPage_, curPage_, donePage_;
  89. int id_, interPageOption_;
  90. // fulltcp support
  91. int fulltcp_;
  92. // Reuse of page level attributes support
  93. int recycle_page_;
  94. };
  95. class WebServer;
  96. class WebTrafPool : public PagePool {
  97. public: 
  98. WebTrafPool(); 
  99. virtual ~WebTrafPool(); 
  100. Node* picksrc();
  101. Node* pickdst();
  102. inline void doneSession(int idx) { 
  103. assert((idx>=0) && (idx<nSession_) && (session_[idx]!=NULL));
  104. if (isdebug())
  105. printf("deleted session %dn", idx);
  106. delete session_[idx];
  107. session_[idx] = NULL; 
  108. }
  109. void launchReq(Node*, void*, int, int);
  110. void launchResp(int, Node*, Node*, Agent*, Agent*, int, void*);
  111. inline int nTcp() { return nTcp_; }
  112. inline int nSink() { return nSink_; }
  113. inline int isdebug() { return debug_; }
  114. virtual void delay_bind_init_all();
  115. virtual int delay_bind_dispatch(const char*, const char*, TclObject*);
  116. // pick end points for a new TCP connection
  117. void pick_ep(TcpAgent**, Agent**);
  118. TcpAgent* picktcp();
  119. TcpSink* picksink();
  120. // Given sever's node id, find server
  121. int find_server(int);
  122. protected:
  123. virtual int command(int argc, const char*const* argv);
  124. // Session management: fixed number of sessions, fixed number
  125. // of pages per session
  126. int nSession_;
  127. WebTrafSession** session_; 
  128. // Web servers
  129. int nServer_;
  130. //Node** server_;
  131. // keep the finish time of the last job (M/G/1)
  132. WebServer *server_;
  133. // Browsers
  134. int nClient_;
  135. Node** client_;
  136. // Debo added this
  137. int asimflag_;
  138. // TCP agent pool management
  139. struct AgentListElem {
  140. AgentListElem(Agent* a) : agt_(a) {
  141. link.le_next = NULL;
  142. link.le_prev = NULL;
  143. }
  144. Agent* agt_;
  145. LIST_ENTRY(AgentListElem) link;
  146. };
  147. LIST_HEAD(AgentList, AgentListElem);
  148. inline void insertAgent(AgentList* l, Agent *a) {
  149. AgentListElem *e = new AgentListElem(a);
  150. LIST_INSERT_HEAD(l, e, link);
  151. }
  152. inline Agent* detachHead(AgentList* l) {
  153. AgentListElem *e = l->lh_first;
  154. if (e == NULL)
  155. return NULL;
  156. Agent *a = e->agt_;
  157. LIST_REMOVE(e, link);
  158. delete e;
  159. return a;
  160. }
  161. int nTcp_, nSink_;
  162. int dbTcp_a, dbTcp_r, dbTcp_cr;
  163. AgentList tcpPool_; /* TCP agent pool */
  164. AgentList sinkPool_; /* TCP sink pool */
  165. // Helper methods
  166. inline int lookup_rv(RandomVariable*& rv, const char* name) {
  167. if (rv != NULL)
  168. Tcl::instance().evalf("delete %s", rv->name());
  169. rv = (RandomVariable*)lookup_obj(name);
  170. return rv ? (TCL_OK) : (TCL_ERROR);
  171. }
  172. int debug_;
  173. // fulltcp support
  174. int fulltcp_;
  175. // Reuse of page level attributes support
  176. int recycle_page_;
  177. int dont_recycle_; // Do not recycle tcp agents
  178. };
  179. #endif // ns_webtraf_h