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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2004-2005 by the University of Southern California
  3.  * $Id: diffagent.cc,v 1.13 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. // DiffAppAgent - Wrapper Class for diffusion transport agent DR, ported from SCADDS's directed diffusion software. --Padma, nov 2001.  
  45. #ifdef NS_DIFFUSION
  46. #include "diffagent.h"
  47. #include "diffrtg.h"
  48. static class DiffAppAgentClass : public TclClass {
  49. public:
  50.   DiffAppAgentClass() : TclClass("Agent/DiffusionApp") {}
  51.   TclObject* create(int , const char*const* ) {
  52.     return(new DiffAppAgent());
  53.   }
  54. } class_diffusion_app_agent;
  55. void NsLocal::sendPacket(DiffPacket p, int len, int dst) {
  56.   agent_->sendPacket(p, len, dst);
  57. }
  58. DiffPacket NsLocal::recvPacket(int fd) {
  59.   DiffPacket p;
  60.   fprintf(stderr, "This function should not get called; call DiffAppAgent::recv(Packet *, Handler *) insteadnn");
  61.   exit(1);
  62.   return (p);  // to keep the compiler happy
  63. }
  64. DiffAppAgent::DiffAppAgent() : Agent(PT_DIFF) {
  65.   dr_ = NR::create_ns_NR(DEFAULT_DIFFUSION_PORT, this);
  66. }
  67. int DiffAppAgent::command(int argc, const char*const* argv) {
  68.   //Tcl& tcl = Tcl::instance();
  69.   
  70.   if (argc == 3) {
  71.   if (strcmp(argv[1], "node") == 0) {
  72.   MobileNode *node = (MobileNode *)TclObject::lookup(argv[2]);
  73.   ((DiffusionRouting *)dr_)->getNode(node);
  74.   return TCL_OK;
  75.   } 
  76.   if (strcmp(argv[1], "agent-id") == 0) {
  77.   int id = atoi(argv[2]);
  78.   ((DiffusionRouting *)dr_)->getAgentId(id);
  79.   return TCL_OK;
  80.   }
  81.   }
  82.   return Agent::command(argc, argv);
  83. }
  84. void DiffAppAgent::recv(Packet* p, Handler* h) 
  85. {
  86. Message *msg;
  87. DiffusionData *diffdata;
  88. diffdata = (DiffusionData *)(p->userdata());
  89. msg = diffdata->data();
  90. DiffusionRouting *dr = (DiffusionRouting*)dr_;
  91. dr->recvMessage(msg);
  92. Packet::free(p);
  93. }
  94. void
  95. DiffAppAgent::initpkt(Packet* p, Message* msg, int len)
  96. {
  97. hdr_cmn* ch = HDR_CMN(p);
  98. hdr_ip* iph = HDR_IP(p);
  99. AppData *diffdata;
  100. diffdata  = new DiffusionData(msg, len);
  101. p->setdata(diffdata);
  102. // initialize pkt
  103. ch->uid() = msg->pkt_num_; /* copy pkt_num from diffusion msg */
  104. ch->ptype() = type_;
  105. ch->size() = size_;
  106. ch->timestamp() = Scheduler::instance().clock();
  107. ch->iface() = UNKN_IFACE.value(); // from packet.h (agent is local)
  108. ch->direction() = hdr_cmn::NONE;
  109. ch->error() = 0; /* pkt not corrupt to start with */
  110. iph->saddr() = addr();
  111. iph->sport() = ((DiffusionRouting*)dr_)->getAgentId();
  112. iph->daddr() = addr();
  113. iph->flowid() = fid_;
  114. iph->prio() = prio_;
  115. iph->ttl() = defttl_;
  116. hdr_flags* hf = hdr_flags::access(p);
  117. hf->ecn_capable_ = 0;
  118. hf->ecn_ = 0;
  119. hf->eln_ = 0;
  120. hf->ecn_to_echo_ = 0;
  121. hf->fs_ = 0;
  122. hf->no_ts_ = 0;
  123. hf->pri_ = 0;
  124. hf->cong_action_ = 0;
  125. }
  126. Packet* 
  127. DiffAppAgent::createNsPkt(Message *msg, int len) 
  128. {
  129. Packet *p;
  130.   
  131. p =  Packet::alloc();
  132. initpkt(p, msg, len);
  133. return (p);
  134. }
  135. void DiffAppAgent::sendPacket(DiffPacket dp, int len, int dst) {
  136.   Packet *p;
  137.   hdr_ip *iph;
  138.   Message *msg;
  139.   msg = (Message *)dp;
  140.   p = createNsPkt(msg, len); 
  141.   iph = HDR_IP(p);
  142.   iph->dport() = dst;
  143.   // schedule for realistic delay : set to 0 sec for now
  144.   (void)Scheduler::instance().schedule(target_, p, 0.000001);
  145. }
  146. #endif // NS