srm.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.  * srm.h
  4.  * Copyright (C) 1997 by the University of Southern California
  5.  * $Id: srm.h,v 1.22 2005/09/18 23:33:33 tomh 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. // Author: Kannan Varadhan <kannan@isi.edu>
  48. // Version Date: Mon Jun 30 15:51:33 PDT 1997
  49. //
  50. // @(#) $Header: /cvsroot/nsnam/ns-2/mcast/srm.h,v 1.22 2005/09/18 23:33:33 tomh Exp $ (USC/ISI)
  51. //
  52. #ifndef ns_srm_h
  53. #define ns_srm_h
  54. #include <math.h>
  55. #include <tcl.h>
  56. #include "config.h"
  57. //#include "heap.h"
  58. #include "srm-state.h"
  59. #include "srm-headers.h"
  60. class SRMAgent : public Agent {
  61. protected:
  62. int dataCtr_; /* # of data packets sent */
  63. int sessCtr_; /* # of session messages sent */
  64. int packetSize_; /* size of data messages for repr */
  65. SRMinfo* sip_; /* Table of sender info */
  66. Tcl_HashTable* siphash_;
  67. int groupSize_;
  68. int seqno_; /* Seqno for CBR packets */
  69. int app_fid_;
  70. packet_t app_type_;
  71. virtual void start() {
  72. int new_entry = 0;
  73. long key = addr();
  74. sip_->sender_   /* is itself */ = addr();
  75. sip_->distance_ /* to itself */ = 0.0;
  76. sip_->next_ = NULL;
  77. siphash_ = new Tcl_HashTable;
  78. Tcl_InitHashTable(siphash_, TCL_ONE_WORD_KEYS);
  79. Tcl_HashEntry* he = Tcl_CreateHashEntry(siphash_,
  80. (char*) key,
  81. &new_entry);
  82. Tcl_SetHashValue(he, (ClientData*)sip_);
  83. groupSize_++;
  84. }
  85. SRMinfo* get_state(int sender) {
  86. assert(siphash_);
  87. int new_entry = 0;
  88. long key = sender;
  89. Tcl_HashEntry* he = Tcl_CreateHashEntry(siphash_,
  90. (char*) key,
  91. &new_entry);
  92. if (new_entry) {
  93. groupSize_++;
  94. SRMinfo* tmp = new SRMinfo(sender);
  95. tmp->next_ = sip_->next_;
  96. sip_->next_ = tmp;
  97. Tcl_SetHashValue(he, (ClientData*)tmp);
  98. }
  99. return (SRMinfo*)Tcl_GetHashValue(he);
  100. }
  101. virtual void cleanup () {
  102. Tcl_DeleteHashTable(siphash_);
  103. }
  104. virtual void addExtendedHeaders(Packet*) {}
  105. virtual void parseExtendedHeaders(Packet*) {}
  106. virtual int request(SRMinfo* sp, int hi) {
  107. int miss = 0;
  108. if (sp->ldata_ >= hi)
  109. return miss;
  110. int maxsize = ((int)log10(hi + 1) + 2) * (hi - sp->ldata_);
  111. // 1 + log10(msgid) bytes for the msgid
  112. // msgid could be 0, if first pkt is lost.
  113. // 1 byte per msg separator
  114. // hi - sp->ldata_ msgs max missing
  115. char* msgids = new char[maxsize + 1];
  116. *msgids = '';
  117. for (int i = sp->ldata_ + 1; i <= hi; i++)
  118. if (! sp->ifReceived(i)) {
  119. (void) sprintf(msgids, "%s %d", msgids, i);
  120. miss++;
  121. }
  122. assert(miss);
  123. Tcl::instance().evalf("%s request %d %s", name_,
  124.       sp->sender_, msgids);
  125. delete[] msgids;
  126. return miss;
  127. }
  128. virtual void recv_data(int sender, int msgid, u_char* data);
  129. virtual void recv_repr(int round, int sender, int msgid, u_char* data);
  130. virtual void recv_rqst(int requestr, int round, int sender, int msgid);
  131. virtual void recv_sess(Packet*, int sessCtr, int* data);
  132. virtual void send_ctrl(int typ, int rnd, int sndr, int msgid, int sz);
  133. virtual void send_sess();
  134. public:
  135. SRMAgent();
  136. virtual ~SRMAgent();
  137. virtual int command(int argc, const char*const* argv);
  138. virtual void recv(Packet* p, Handler* h);
  139.         virtual void sendmsg(int nbytes, const char *flags = 0);
  140.         virtual void send(int nbytes) { sendmsg(nbytes); }
  141. };
  142. class ASRMAgent : public SRMAgent {
  143. double pdistance_;
  144. int    requestor_;
  145. public:
  146. ASRMAgent() {
  147. bind("pdistance_", &pdistance_);
  148. bind("requestor_", &requestor_);
  149. }
  150. protected:
  151. virtual void addExtendedHeaders(Packet* p) {
  152. SRMinfo* sp;
  153. hdr_srm* sh = hdr_srm::access(p);
  154. hdr_asrm* seh = hdr_asrm::access(p);
  155. switch (sh->type()) {
  156. case SRM_RQST:
  157. sp = get_state(sh->sender());
  158. seh->distance() = sp->distance_;
  159. break;
  160. case SRM_REPR:
  161. sp = get_state(requestor_);
  162. seh->distance() = sp->distance_;
  163. break;
  164. case SRM_DATA:
  165. case SRM_SESS:
  166. seh->distance() = 0.;
  167. break;
  168. default:
  169. assert(0);
  170. /*NOTREACHED*/
  171. }
  172. SRMAgent::addExtendedHeaders(p);
  173. }
  174. virtual void parseExtendedHeaders(Packet* p) {
  175. SRMAgent::parseExtendedHeaders(p);
  176. hdr_asrm* seh = hdr_asrm::access(p);
  177. pdistance_ = seh->distance();
  178. }
  179. };
  180. #endif