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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2007 
  3.  * Mercedes-Benz Research & Development North America, Inc. and
  4.  * University of Karlsruhe (TH)
  5.  * All rights reserved.
  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. /*
  48.  * For further information see: 
  49.  * http://dsn.tm.uni-karlsruhe.de/english/Overhaul_NS-2.php
  50.  */
  51. #include <iostream>
  52. #include "random.h"
  53. #include "pbc.h"
  54. int hdr_pbc::offset_;
  55. /**********************TCL Classes***************************/
  56. static class PBCHeaderClass : public PacketHeaderClass {
  57. public:
  58. PBCHeaderClass() : PacketHeaderClass("PacketHeader/PBC",
  59.       sizeof(hdr_pbc)) {
  60. bind_offset(&hdr_pbc::offset_);
  61. }
  62. } class_pbchdr;
  63. static class PBCClass : public TclClass {
  64. public:
  65. PBCClass() : TclClass("Agent/PBC") {}
  66. TclObject* create(int, const char*const*) {
  67. return (new PBCAgent());
  68. }
  69. } class_pbc;
  70. /**********************PBC Agent****Constructor*************************/
  71. PBCAgent::PBCAgent() : Agent(PT_PBC), timer(this)
  72. {
  73.   bind("payloadSize", &size);
  74.   bind("periodicBroadcastVariance", &msgVariance);
  75.   bind("periodicBroadcastInterval", &msgInterval);
  76.   bind("modulationScheme",&modulationScheme);
  77.   periodicBroadcast = false;
  78. }
  79. PBCAgent::~PBCAgent()
  80. {
  81. }
  82. /**********************PBC Agent****Member functions *************************/
  83. void PBCAgent::singleBroadcast()
  84. {
  85.   Packet* pkt = allocpkt();
  86.   hdr_cmn *cmnhdr = hdr_cmn::access(pkt);
  87.   hdr_pbc* pbchdr = hdr_pbc::access(pkt);
  88.   hdr_ip*  iphdr  = hdr_ip::access(pkt);
  89.   cmnhdr->next_hop() = IP_BROADCAST;
  90.   cmnhdr->size()    = size;
  91.   iphdr->src_.addr_ = here_.addr_;  //LL will fill MAC addresses in the MAC header
  92.   iphdr->dst_.addr_ = IP_BROADCAST;
  93.   iphdr->dst_.port_ = this->port();
  94.   pbchdr->send_time = Scheduler::instance().clock();
  95.   switch (modulationScheme)
  96.     {
  97.     case BPSK:   cmnhdr->mod_scheme_ = BPSK;break;
  98.     case QPSK:   cmnhdr->mod_scheme_ = QPSK;break;
  99.     case QAM16:  cmnhdr->mod_scheme_ = QAM16;break;
  100.     case QAM64:  cmnhdr->mod_scheme_ = QAM64;break;
  101.     default :
  102.       cmnhdr->mod_scheme_ = BPSK;
  103.     }
  104.   send(pkt,0);
  105. }
  106. void PBCAgent::singleUnicast(int addr)
  107. {
  108.   Packet* pkt = allocpkt();
  109.   hdr_cmn *cmnhdr = hdr_cmn::access(pkt);
  110.   hdr_pbc* pbchdr = hdr_pbc::access(pkt);
  111.   hdr_ip*  iphdr  = hdr_ip::access(pkt);
  112.   cmnhdr->addr_type() = NS_AF_ILINK;
  113.   cmnhdr->next_hop()  = (u_int32_t)(addr);
  114.   cmnhdr->size()      = size; 
  115.   iphdr->src_.addr_ = here_.addr_;  //MAC will fill this address
  116.   iphdr->dst_.addr_ = (u_int32_t)(addr);
  117.   iphdr->dst_.port_ = this->port();
  118.   pbchdr->send_time  = Scheduler::instance().clock();
  119.   switch (modulationScheme)
  120.     {
  121.     case BPSK:   cmnhdr->mod_scheme_ = BPSK;break;
  122.     case QPSK:   cmnhdr->mod_scheme_ = QPSK;break;
  123.     case QAM16:  cmnhdr->mod_scheme_ = QAM16;break;
  124.     case QAM64:  cmnhdr->mod_scheme_ = QAM64;break;
  125.     default :
  126.       cmnhdr->mod_scheme_ = BPSK;
  127.     }
  128.   send(pkt,0);
  129. }
  130. void PBCAgent::recv(Packet* pkt, Handler*)
  131. {
  132. Packet::free(pkt);
  133. }
  134. /*************************PBC Timer *******************/
  135. /****asyn_start() start() stop() setPeriod()***********/
  136. void
  137. PBCTimer::start(void)
  138. {
  139.   if(!started)
  140.     {
  141.       Scheduler &s = Scheduler::instance();
  142.       started = 1;
  143.       variance = agent->msgVariance;
  144.       period = agent->msgInterval;
  145.       double offset = Random::uniform(0.0,period);
  146.       s.schedule(this, &intr, offset);
  147.     }
  148. }
  149. void PBCTimer::stop(void)
  150. {
  151.    Scheduler &s = Scheduler::instance();
  152.    if(started)
  153.    {
  154.    s.cancel(&intr);
  155.    }
  156.    started = 0;
  157. }
  158. void PBCTimer::setVariance(double v)
  159. {
  160.   if(v >= 0) variance = v;
  161. }
  162. void PBCTimer::setPeriod(double p)
  163. {
  164.   if(p >= 0) period = p;
  165. }
  166. void PBCTimer::handle(Event *e)
  167. {
  168. agent->singleBroadcast();
  169. if(agent->periodicBroadcast)
  170.   {
  171.     Scheduler &s = Scheduler::instance();
  172.     double t = period - variance + Random::uniform(variance*2);
  173.     s.schedule(this, &intr, t>0.0 ? t : 0.0);
  174.   }
  175. }
  176. /*************************************************************************/
  177. int PBCAgent::command(int argc, const char*const* argv)
  178. {
  179. if (argc == 2) 
  180. {
  181. if (strcmp(argv[1], "singleBroadcast") == 0)
  182. {
  183. singleBroadcast();
  184. return (TCL_OK);
  185. }
  186. if (strcmp(argv[1], "stop") == 0)
  187. {
  188.   timer.stop();
  189.   return (TCL_OK);
  190. }
  191. }
  192. if (argc == 3)
  193. {
  194. if(strcmp(argv[1],"unicast")==0)
  195.   {
  196.     int addr =atoi(argv[2]);
  197.     singleUnicast(addr);
  198.     return TCL_OK;
  199.   }
  200. if(strcmp(argv[1],"PeriodicBroadcast") ==0)
  201. {
  202.   if (strcmp(argv[2],"ON") == 0 )
  203.     {
  204.       periodicBroadcast = true;
  205.       timer.start();
  206.       return TCL_OK;
  207.     }
  208.   if(strcmp(argv[2],"OFF") ==0 )
  209.     {
  210.       periodicBroadcast = false;
  211.       timer.stop();
  212.       return TCL_OK;
  213.     }
  214. }
  215. }
  216. // If the command hasn't been processed by PBCAgent()::command,
  217. // call the command() function for the base class
  218. return (Agent::command(argc, argv));
  219. }