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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * Copyright (c) Xerox Corporation 1997. All rights reserved.
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify it
  6.  * under the terms of the GNU General Public License as published by the
  7.  * Free Software Foundation; either version 2 of the License, or (at your
  8.  * option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful, but
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License along
  16.  * with this program; if not, write to the Free Software Foundation, Inc.,
  17.  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  18.  *
  19.  * Linking this file statically or dynamically with other modules is making
  20.  * a combined work based on this file.  Thus, the terms and conditions of
  21.  * the GNU General Public License cover the whole combination.
  22.  *
  23.  * In addition, as a special exception, the copyright holders of this file
  24.  * give you permission to combine this file with free software programs or
  25.  * libraries that are released under the GNU LGPL and with code included in
  26.  * the standard release of ns-2 under the Apache 2.0 license or under
  27.  * otherwise-compatible licenses with advertising requirements (or modified
  28.  * versions of such code, with unchanged license).  You may copy and
  29.  * distribute such a system following the terms of the GNU GPL for this
  30.  * file and the licenses of the other code concerned, provided that you
  31.  * include the source code of that other code when and as the GNU GPL
  32.  * requires distribution of source code.
  33.  *
  34.  * Note that people who make modified versions of this file are not
  35.  * obligated to grant this special exception for their modified versions;
  36.  * it is their choice whether to do so.  The GNU General Public License
  37.  * gives permission to release a modified version without this exception;
  38.  * this exception also makes it possible to release a modified version
  39.  * which carries forward this exception.
  40.  *
  41.  * $Header: /cvsroot/nsnam/ns-2/adc/sa.cc,v 1.16 2005/08/26 05:05:28 tomh Exp $
  42.  */
  43. //packets after it succeeds in a3-way handshake from the receiver
  44. // should be connected with Agent/SignalAck class
  45. #include "udp.h"
  46. #include "sa.h"
  47. #include "ip.h"
  48. #include "random.h"
  49. #define SAMPLERATE 8000
  50. SA_Agent::SA_Agent() : Agent(PT_UDP), trafgen_(0), rtd_(0), callback_(0), 
  51.     sa_timer_(this), nextPkttime_(-1), running_(0), seqno_(-1)
  52. {
  53. bind_bw("rate_",&rate_);
  54. bind("bucket_",&bucket_);
  55. bind("packetSize_", &size_);
  56. }
  57. SA_Agent::~SA_Agent()
  58. {
  59.         if (callback_) 
  60.                 delete[] callback_;
  61. }
  62. static class SA_AgentClass : public TclClass {
  63. public:
  64. SA_AgentClass() : TclClass("Agent/SA") {}
  65. TclObject* create(int, const char*const*) {
  66. return (new SA_Agent());
  67. }
  68. } class_signalsource_agent;
  69. int SA_Agent::command(int argc, const char*const* argv)
  70. {
  71. Tcl& tcl = Tcl::instance();
  72. if (argc==3) {
  73. if (strcmp(argv[1], "target") == 0) {
  74. target_ = (NsObject*)TclObject::lookup(argv[2]);
  75. if (target_ == 0) {
  76. tcl.resultf("no such object %s", argv[2]);
  77. return (TCL_ERROR);
  78. }
  79. ctrl_target_=target_;
  80. return (TCL_OK);
  81. else if (strcmp(argv[1],"ctrl-target")== 0) {
  82. ctrl_target_=(NsObject*)TclObject::lookup(argv[2]);
  83. if (ctrl_target_ == 0) {
  84. tcl.resultf("no such object %s", argv[2]);
  85. return (TCL_ERROR);
  86. }
  87. return (TCL_OK);
  88. }
  89.         if (strcmp(argv[1], "stoponidle") == 0) {
  90.         stoponidle(argv[2]);
  91. return(TCL_OK);
  92. }
  93.                 if (strcmp(argv[1], "attach-traffic") == 0) {
  94.                         trafgen_ =(TrafficGenerator*)TclObject::lookup(argv[2]);
  95.                         if (trafgen_ == 0) {
  96.                                 tcl.resultf("no such node %s", argv[2]);
  97.                                 return(TCL_ERROR);
  98.                         }
  99.                         return(TCL_OK);
  100.                 }
  101. }
  102.         if (argc == 2) {
  103.                 if (strcmp(argv[1], "start") == 0) {
  104.                         start();
  105.                         return(TCL_OK);
  106.                 } else if (strcmp(argv[1], "stop") == 0) {
  107.                         stop();
  108.                         return(TCL_OK);
  109.                 }
  110.         }
  111. return (Agent::command(argc,argv));
  112. }
  113. void SA_Agent::start()
  114. {
  115. //send the request packet
  116. if (trafgen_) {
  117. trafgen_->init();
  118. //running_=1;
  119. sendreq();
  120. }
  121. }
  122. void SA_Agent::stop()
  123. {
  124. sendteardown();
  125. if (running_ != 0) {
  126. sa_timer_.cancel();
  127. running_ =0;
  128. }
  129. }
  130. void SA_Agent::sendreq()
  131. {
  132. Packet *p = allocpkt();
  133. hdr_cmn* ch= hdr_cmn::access(p);
  134. ch->ptype()=PT_REQUEST;
  135. ch->size()=20;
  136. //also put in the r,b parameters for the flow in the packet
  137. hdr_resv* rv=hdr_resv::access(p);
  138. rv->decision() =1;
  139. rv->rate()=rate_;
  140. rv->bucket()=bucket_;
  141. ctrl_target_->recv(p);
  142. }
  143. void SA_Agent::sendteardown()
  144. {
  145. Packet *p = allocpkt();
  146. hdr_cmn* ch= hdr_cmn::access(p);
  147. ch->ptype()=PT_TEARDOWN;
  148. ch->size()=20;
  149. //also put in the r,b parameters for the flow in the packet
  150. hdr_resv* rv=hdr_resv::access(p);
  151. rv->decision() =1;
  152. rv->rate()=rate_;
  153. rv->bucket()=bucket_;
  154. ctrl_target_->recv(p);
  155. }
  156. void SA_Agent::recv(Packet *p, Handler *) 
  157. {
  158. hdr_cmn *ch= hdr_cmn::access(p);
  159. hdr_resv *rv=hdr_resv::access(p);
  160. hdr_ip * iph = hdr_ip::access(p);
  161. if ( ch->ptype() == PT_ACCEPT || ch->ptype() == PT_REJECT ) {
  162. ch->ptype() = PT_CONFIRM;
  163. // turn the packet around by swapping src and dst
  164. // (address and port)
  165. ns_addr_t tmp;
  166. tmp = iph->src();
  167. iph->src() = iph->dst();
  168. iph->dst() = tmp;
  169. ctrl_target_->recv(p);
  170. }
  171. // put an additional check here to see if admission was granted
  172. if (rv->decision()) {
  173. //printf("Flow %d accepted @ %fn",iph->flowid(),Scheduler::instance().clock());
  174. fflush(stdout);
  175. double t = trafgen_->next_interval(size_);
  176. running_=1;
  177. sa_timer_.resched(t);
  178. }
  179. else {
  180. //printf("Flow %d rejected @ %fn",iph->flowid(),Scheduler::instance().clock());
  181. fflush(stdout);
  182. //Currently the flow is stopped if rejected
  183. running_=0;
  184. }
  185. //make an upcall to sched a stoptime for this flow from now
  186. Tcl::instance().evalf("%s sched-stop %d",name(),rv->decision());
  187. }
  188. void SA_Agent::stoponidle(const char *s)
  189. {
  190.         callback_ = new char[strlen(s)+1];
  191.         strcpy(callback_, s);
  192.         if (trafgen_->on()) {
  193.                 // Tcl::instance().evalf("puts "%s waiting for burst at %f"", name(), Scheduler::instance().clock());
  194.                 rtd_ = 1;
  195.         }
  196.         else {
  197.                 stop();
  198.                 Tcl::instance().evalf("%s %s", name(), callback_);
  199.         }
  200. }
  201. void SA_Timer::expire(Event* /*e*/) {
  202.         a_->timeout(0);
  203. }
  204. void SA_Agent::timeout(int)
  205. {
  206.         if (running_) {
  207.                 /* send a packet */
  208.                 sendpkt();
  209.                 /* figure out when to send the next one */
  210.                 nextPkttime_ = trafgen_->next_interval(size_);
  211.                 /* schedule it */
  212.                 sa_timer_.resched(nextPkttime_);
  213.                 /* hack: if we are waiting for a current burst to end
  214.                  * before stopping . . .
  215.                  */
  216.                 if (rtd_) {
  217.                         if (trafgen_->on() == 0) {
  218.                                 stop();
  219.                                 //Tcl::instance().evalf("puts "%s burst over at %f"",
  220.                                 // name(), Scheduler::instance().clock());
  221.                                 Tcl::instance().evalf("%s sched-stop %d", name(), 0);
  222.                         }
  223.                 }
  224.         }
  225. }
  226. void SA_Agent::sendpkt()
  227. {
  228.         Packet* p = allocpkt();
  229.         hdr_rtp* rh = hdr_rtp::access(p);
  230.         rh->seqno() = ++seqno_;
  231.         rh->flags()=0;
  232.         double local_time=Scheduler::instance().clock();
  233.         /*put in "rtp timestamps" and begining of talkspurt labels */
  234.         hdr_cmn* ch = hdr_cmn::access(p);
  235.         ch->timestamp()=(u_int32_t)(SAMPLERATE*local_time);
  236.         ch->size()=size_;
  237.         if ((nextPkttime_ != trafgen_->interval()) || (nextPkttime_ == -1))
  238.                 rh->flags() |= RTP_M;
  239.         target_->recv(p);
  240. }
  241. void SA_Agent::sendmsg(int nbytes, const char* /*flags*/)
  242. {
  243.         Packet *p;
  244.         int n;
  245. assert (size_ > 0);
  246. n = nbytes / size_;
  247.         if (nbytes == -1) {
  248.                 start();
  249.                 return;
  250.         }
  251.         while (n-- > 0) {
  252.         p = allocpkt();
  253.                 hdr_rtp* rh = hdr_rtp::access(p);
  254.                 rh->seqno() = seqno_;
  255.                 target_->recv(p);
  256.         }
  257.         n = nbytes % size_;
  258.         if (n > 0) {
  259.          p = allocpkt();
  260.          hdr_rtp* rh = hdr_rtp::access(p);
  261.          rh->seqno() = seqno_;
  262.          target_->recv(p);
  263.         }
  264.         idle();
  265. }