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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2004-2005 by the University of Southern California
  3.  * $Id: diffrtg.h,v 1.12 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. //
  47. #ifdef NS_DIFFUSION
  48. #ifndef DIFFUSION_RTG
  49. #define DIFFUSION_RTG
  50. #include "filter_core.hh"
  51. #include "iodev.hh"
  52. #include "events.hh"
  53. #include "classifier-port.h"
  54. #include "ll.h"
  55. #include "ns-process.h"
  56. #include "agent.h"
  57. #include "trace.h"
  58. #include "message.hh"
  59. class DiffusionCoreAgent;
  60. class DiffRoutingAgent;
  61. extern DiffPacket DupPacket(DiffPacket pkt);
  62. class LocalApp : public DiffusionIO {
  63. public:
  64. LocalApp(DiffRoutingAgent *agent) { agent_ = agent;}
  65. DiffPacket recvPacket(int fd);
  66. void sendPacket(DiffPacket p, int len, int dst); 
  67. protected:
  68. DiffRoutingAgent *agent_;
  69. };
  70. class LinkLayerAbs : public DiffusionIO {
  71. public:
  72. LinkLayerAbs(DiffRoutingAgent *agent) { agent_ = agent;}
  73. DiffPacket recvPacket(int fd);
  74. void sendPacket(DiffPacket p, int len, int dst); 
  75. protected:
  76. DiffRoutingAgent *agent_;
  77. };
  78.  
  79. class DiffusionData : public AppData {
  80. private:
  81. Message *data_;
  82. int len_;
  83. public:
  84. DiffusionData(Message *data, int len) : AppData(DIFFUSION_DATA), data_(0)
  85. data_ = data;
  86. len_ = len;
  87. }
  88. ~DiffusionData() { delete data_; }
  89. Message *data() {return data_;}
  90. int size() const { return len_; }
  91. AppData* copy() { 
  92. Message *newdata = CopyMessage(data_);
  93. DiffusionData *dup = new DiffusionData(newdata, len_);
  94. return dup; 
  95. };
  96. class DiffRoutingAgent : public Agent {
  97. public:
  98. DiffRoutingAgent(int nodeid);
  99. int command(int argc, const char*const* argv);
  100. void initpkt(Packet* p, Message* msg, int len);
  101. Packet* createNsPkt(Message *msg, int len, int dst);  
  102. void recv(Packet*, Handler*);
  103. void sendPacket(DiffPacket p, int len, int dst);
  104.   
  105. DiffusionCoreAgent *getagent() { return agent_; }
  106. //trace support
  107. void trace (char *fmt,...);
  108. PortClassifier *port_dmux() {return port_dmux_; }
  109. private:
  110. int addr_;
  111. Trace *tracetarget_;
  112. //  diffusion core agent 
  113. DiffusionCoreAgent *agent_;
  114. //port-dmux
  115. PortClassifier *port_dmux_;
  116. }; 
  117. #endif //diffrtg
  118. #endif // NS