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

通讯编程

开发平台:

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. #ifndef ns_pbc_h
  52. #define ns_pbc_h
  53. #include "agent.h"
  54. #include "tclcl.h"
  55. #include "packet.h"
  56. #include "address.h"
  57. #include "ip.h"
  58. struct hdr_pbc {
  59. double  send_time;
  60. static int offset_; // required by PacketHeaderManager
  61. inline static int& offset() { return offset_; }
  62. inline static hdr_pbc* access(const Packet* p) {
  63. return (hdr_pbc*) p->access(offset_);
  64. }
  65. };
  66. class PBCAgent;
  67. class PBCTimer : public Handler {
  68. public:
  69. PBCTimer(PBCAgent* ag, double p = 1) : agent(ag), period(p) {
  70. started = 0;
  71. }
  72. void start(void);
  73. void stop(void);
  74. void setPeriod(double p);
  75. void setVariance(double v);
  76. void handle(Event *e);
  77. protected:
  78. int started;
  79. Event intr;
  80. PBCAgent *agent;
  81. double period;
  82. double variance;
  83. };
  84. class PBCAgent : public Agent {
  85. friend class PBCTimer;
  86. public:
  87. PBCAgent();
  88. ~PBCAgent();
  89. virtual int command(int argc, const char*const* argv);
  90. virtual void recv(Packet*, Handler*);
  91. void singleBroadcast();
  92. void    singleUnicast(int addr);
  93. bool    periodicBroadcast;
  94. double msgInterval;
  95. double msgVariance;
  96. private:
  97. PBCTimer  timer;
  98. int size;
  99. int modulationScheme;
  100. };
  101. #endif // ns_pbc_h