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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2004-2005 by the University of Southern California
  3.  * $Id: diffrtg.cc,v 1.16 2005/09/13 20:47:34 johnh Exp $
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License,
  7.  * version 2, as published by the Free Software Foundation.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License along
  15.  * with this program; if not, write to the Free Software Foundation, Inc.,
  16.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  17.  *
  18.  *
  19.  * The copyright of this module includes the following
  20.  * linking-with-specific-other-licenses addition:
  21.  *
  22.  * In addition, as a special exception, the copyright holders of
  23.  * this module give you permission to combine (via static or
  24.  * dynamic linking) this module with free software programs or
  25.  * libraries that are released under the GNU LGPL and with code
  26.  * included in the standard release of ns-2 under the Apache 2.0
  27.  * license or under otherwise-compatible licenses with advertising
  28.  * requirements (or modified versions of such code, with unchanged
  29.  * license).  You may copy and distribute such a system following the
  30.  * terms of the GNU GPL for this module and the licenses of the
  31.  * other code concerned, provided that you include the source code of
  32.  * that other code when and as the GNU GPL requires distribution of
  33.  * source code.
  34.  *
  35.  * Note that people who make modified versions of this module
  36.  * are not obligated to grant this special exception for their
  37.  * modified versions; it is their choice whether to do so.  The GNU
  38.  * General Public License gives permission to release a modified
  39.  * version without this exception; this exception also makes it
  40.  * possible to release a modified version which carries forward this
  41.  * exception.
  42.  *
  43.  */
  44. // 
  45. // Diffusion Routing Agent - a wrapper class for core diffusion agent, ported from SCADDS's directed diffusion software. --Padma, nov 2001.
  46. #ifdef NS_DIFFUSION
  47. #include "diffrtg.h"
  48. #include "address.h"
  49. #include "scheduler.h"
  50. #include "diffagent.h"
  51. static class DiffRoutingAgentClass : public TclClass {
  52. public:
  53. DiffRoutingAgentClass() : TclClass("Agent/DiffusionRouting") {}
  54. TclObject* create(int argc, const char*const* argv) {
  55. if (argc == 5)
  56. return(new DiffRoutingAgent(atoi(argv[4])));
  57. fprintf(stderr, "Insufficient number of args for creating DiffRtgAgent");
  58. return (NULL);
  59. }
  60. } class_diffusion_routing_agent;
  61. void LocalApp::sendPacket(DiffPacket msg, int len, int dst) {
  62.   agent_->sendPacket(msg, len, dst); 
  63. }
  64. DiffPacket LocalApp::recvPacket(int fd) {
  65.   DiffPacket p;
  66.   
  67.   fprintf(stderr, "This function should not get called; call DiffRoutingAgent::recv(Packet *, Handler *) insteadnn");
  68.   exit(1);
  69.   return (p);  // to keep the compiler happy
  70. }
  71. void LinkLayerAbs::sendPacket(DiffPacket dp, int len, int dst) {
  72.   Packet *p;
  73.   hdr_cmn *ch;
  74.   hdr_ip *iph;
  75.   Message *msg;
  76.   
  77.   msg = (Message *)dp;
  78.   p = agent_->createNsPkt(msg, len, dst); 
  79.   iph = HDR_IP(p);
  80.   ch = HDR_CMN(p);
  81.   iph->saddr() = agent_->addr();
  82.   iph->sport() = agent_->port();    //RT_PORT;
  83.   iph->daddr() = msg->next_hop_;  // Use diffusion next_hop_
  84.   iph->dport() = agent_->port();    //RT_PORT;
  85.   ch->next_hop_ = msg->next_hop_;  // populate nexthop in cmn hdr
  86.   agent_->send(p, 0);
  87. }
  88. DiffPacket LinkLayerAbs::recvPacket(int fd) {
  89.   DiffPacket p;
  90.   
  91.   fprintf(stderr, "This function should not get called; call DiffRoutingAgent::recv(Packet *, Handler *) insteadnn");
  92.   exit(1);
  93.   return (p);  // to keep the compiler happy
  94. }
  95. DiffRoutingAgent::DiffRoutingAgent(int nodeid) : Agent(PT_DIFF) {
  96. agent_ = new DiffusionCoreAgent(this, nodeid);
  97. }
  98. void DiffRoutingAgent::sendPacket(DiffPacket dp, int len, int dst) {
  99. Packet *p;
  100. hdr_ip *iph;
  101. Message *msg;
  102. msg = (Message *)dp;
  103. p = createNsPkt(msg, len, dst); 
  104. iph = HDR_IP(p);
  105. iph->dport() = dst;
  106. // schedule for a realistic delay : 0 sec for now
  107. (void)Scheduler::instance().schedule(port_dmux(), p, 0.000001);
  108. }
  109. void
  110. DiffRoutingAgent::initpkt(Packet* p, Message* msg, int len)
  111. {
  112. hdr_cmn* ch = HDR_CMN(p);
  113. hdr_ip* iph = HDR_IP(p);
  114. AppData *diffdata;
  115. diffdata  = new DiffusionData(msg, len);
  116. p->setdata(diffdata);
  117. // initialize pkt
  118. ch->uid() = msg->pkt_num_; /* copy pkt_num from diffusion msg */
  119. ch->ptype() = type_;
  120. ch->size() = size_;
  121. ch->timestamp() = Scheduler::instance().clock();
  122. ch->iface() = UNKN_IFACE.value(); // from packet.h (agent is local)
  123. ch->direction() = hdr_cmn::NONE;
  124. ch->error() = 0; /* pkt not corrupt to start with */
  125. iph->saddr() = addr();
  126. iph->sport() = port(); // RT_PORT
  127. iph->daddr() = addr();
  128. iph->flowid() = fid_;
  129. iph->prio() = prio_;
  130. iph->ttl() = defttl_;
  131. hdr_flags* hf = hdr_flags::access(p);
  132. hf->ecn_capable_ = 0;
  133. hf->ecn_ = 0;
  134. hf->eln_ = 0;
  135. hf->ecn_to_echo_ = 0;
  136. hf->fs_ = 0;
  137. hf->no_ts_ = 0;
  138. hf->pri_ = 0;
  139. hf->cong_action_ = 0;
  140. }
  141. Packet* 
  142. DiffRoutingAgent::createNsPkt(Message *msg, int len, int dst) {
  143. Packet *p;
  144. p = Packet::alloc();
  145. initpkt(p, msg, len);
  146. return p;
  147. }
  148. void DiffRoutingAgent::recv(Packet *p, Handler *h) {
  149. Message *msg;
  150. DiffusionData *diffdata;
  151. diffdata = (DiffusionData *)(p->userdata());
  152. msg = diffdata->data();
  153. agent_->recvMessage(msg);
  154. //delete msg;
  155. Packet::free(p);
  156. }
  157. int DiffRoutingAgent::command(int argc, const char*const* argv) {
  158. if (argc == 2) {
  159. if (strcasecmp(argv[1], "start")==0) {
  160. //start();
  161. //eq = new DiffusionCoreEQ(this);
  162. //eq->eq_new();
  163. // Add timers to the eventQueue
  164. //eq->eq_addAfter(NEIGHBORS_TIMER, NULL, NEIGHBORS_DELAY);
  165. //eq->eq_addAfter(FILTER_TIMER, NULL, FILTER_DELAY);
  166. return TCL_OK;
  167. }
  168. }
  169. else if (argc == 3) {
  170. if (strcasecmp(argv[1], "addr") == 0) {
  171. addr_ = (Address::instance().str2addr(argv[2]));
  172. return TCL_OK;
  173. }
  174. if (strcasecmp(argv[1], "stop-time")==0) {
  175. // add stop-event which when fired dumps statistical data
  176. // at end of ns simulation
  177. TimerCallback *callback;
  178. callback = new DiffusionStopTimer(agent_);
  179. agent_->timers_manager_->addTimer(atoi(argv[2])*1000, callback);
  180. return TCL_OK;
  181. }
  182. TclObject *obj;
  183. if ((obj = TclObject::lookup (argv[2])) == 0) {
  184. fprintf(stderr, "_Diffusion Node_ %s lookup of %s failedn", argv[1], argv[2]);
  185. return TCL_ERROR;
  186. }
  187. if (strcasecmp(argv[1], "port-dmux") == 0) {
  188. port_dmux_ = (PortClassifier *)obj;
  189. return TCL_OK;
  190. }
  191. if (strcasecmp(argv[1], "add-ll") == 0) {
  192. target_ = (LL*)obj;
  193. return TCL_OK;
  194. }
  195. if (strcasecmp(argv[1], "tracetarget") == 0) {
  196. tracetarget_ = (Trace *)obj;
  197. return TCL_OK;
  198. }
  199. }
  200. return Agent::command(argc, argv);
  201. }
  202. void DiffRoutingAgent::trace(char *fmt, ...) {
  203. va_list ap;
  204. if (!tracetarget_)
  205. return;
  206. va_start (ap, fmt);
  207. vsprintf (tracetarget_->pt_->buffer (), fmt, ap);
  208. tracetarget_->pt_->dump ();
  209. va_end (ap);
  210. }
  211. #endif // NS