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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * diffusion.h
  3.  * Copyright (C) 2000 by the University of Southern California
  4.  * $Id: diffusion.h,v 1.7 2005/08/25 18:58:03 johnh Exp $
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License,
  8.  * version 2, as published by the Free Software Foundation.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License along
  16.  * with this program; if not, write to the Free Software Foundation, Inc.,
  17.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  18.  *
  19.  *
  20.  * The copyright of this module includes the following
  21.  * linking-with-specific-other-licenses addition:
  22.  *
  23.  * In addition, as a special exception, the copyright holders of
  24.  * this module give you permission to combine (via static or
  25.  * dynamic linking) this module with free software programs or
  26.  * libraries that are released under the GNU LGPL and with code
  27.  * included in the standard release of ns-2 under the Apache 2.0
  28.  * license or under otherwise-compatible licenses with advertising
  29.  * requirements (or modified versions of such code, with unchanged
  30.  * license).  You may copy and distribute such a system following the
  31.  * terms of the GNU GPL for this module and the licenses of the
  32.  * other code concerned, provided that you include the source code of
  33.  * that other code when and as the GNU GPL requires distribution of
  34.  * source code.
  35.  *
  36.  * Note that people who make modified versions of this module
  37.  * are not obligated to grant this special exception for their
  38.  * modified versions; it is their choice whether to do so.  The GNU
  39.  * General Public License gives permission to release a modified
  40.  * version without this exception; this exception also makes it
  41.  * possible to release a modified version which carries forward this
  42.  * exception.
  43.  *
  44.  */
  45. /****************************************************************/
  46. /* diffusion.h : Chalermek Intanagonwiwat (USC/ISI)  08/16/99   */
  47. /****************************************************************/
  48. // Important Note: Work still in progress ! 
  49. #ifndef ns_diffusion_h
  50. #define ns_diffusion_h
  51. #include <assert.h>
  52. #include <math.h>
  53. #include <stdio.h>
  54. #include <signal.h>
  55. #include <float.h>
  56. #include <tcl.h>
  57. #include <stdlib.h>
  58. #include "diff_header.h"
  59. #include "agent.h"
  60. #include "tclcl.h"
  61. #include "ip.h"
  62. #include "config.h"
  63. #include "packet.h"
  64. #include "trace.h"
  65. #include "random.h"
  66. #include "classifier.h"
  67. #include "node.h"
  68. #include "iflist.h"
  69. #include "hash_table.h"
  70. #include "arp.h"
  71. #include "mac.h"
  72. #include "ll.h"
  73. #include "dsr/path.h"
  74. #include "routing_table.h"
  75. #define THIS_NODE             here_.addr_
  76. #define MAC_RETRY_            0          // 0: NO RETRY
  77.                                          // 1: RETRY
  78.                                          // But, we only have no retry now!
  79. #define JITTER                0.11       // (sec) to jitter broadcast
  80. #define ARP_BUFFER_CHECK      0.03       // (sec) between buffer checks
  81. #define ARP_MAX_ATTEMPT       3          // (times)
  82. #define ARP_BUF_SIZE          64         // (slots)
  83. #define SEND_BUFFER_CHECK     0.03       // (sec) between buffer checks
  84. #define SEND_TIMEOUT          30.0       // (sec) a packet can live in sendbuf
  85. #define SEND_BUF_SIZE         64         // (slots)
  86. #define SEND_MESSAGE(x,y,z)  send_to_dmux(prepare_message(x,y,z), 0)
  87. #define max(a,b) (((a)<(b))?(b):(a))
  88. class DiffusionAgent;
  89. class ArpBufEntry {
  90.  public:
  91.   Time   t;                            // Insertion Time
  92.   int    attempt;                      // number of attempts
  93.   Packet *p;
  94.   ArpBufEntry() { t=0; attempt=0; p=NULL; }
  95. };
  96. class ArpBufferTimer : public TimerHandler {
  97.  public:
  98.   ArpBufferTimer(DiffusionAgent *a) : TimerHandler() { a_ = a; }
  99.   void expire(Event *e);
  100.  protected:
  101.   DiffusionAgent *a_;
  102. };
  103. class SendBufferEntry {
  104.  public:
  105.   Time    t;                          // Insertion Time 
  106.   Packet *p;
  107.   SendBufferEntry() { t=0; p=NULL; }
  108. };
  109. class SendBufTimer : public TimerHandler {
  110.  public:
  111.   SendBufTimer(DiffusionAgent *a) : TimerHandler() { a_ = a; }
  112.   void expire(Event *e);
  113.  protected:
  114.   DiffusionAgent *a_;
  115. };
  116. class DiffusionAgent : public Agent {
  117.  public:
  118.   DiffusionAgent();
  119.   int command(int argc, const char*const* argv);
  120.   void recv(Packet*, Handler*);
  121.   Diff_Routing_Entry  routing_table[MAX_DATA_TYPE];
  122.  protected:
  123.   // Variables start here.
  124.   bool POS_REINF_;
  125.   bool NEG_REINF_;
  126.   int pk_count;
  127.   int overhead;
  128.   Pkt_Hash_Table PktTable;
  129.   Node *node;
  130.   Trace *tracetarget;       // Trace Target
  131.   NsObject *ll;  
  132.   NsObject *port_dmux;
  133.   ARPTable *arp_table;
  134.   ArpBufferTimer     arp_buf_timer;
  135.   ArpBufEntry        arp_buf[ARP_BUF_SIZE];
  136.   SendBufTimer       send_buf_timer;
  137.   SendBufferEntry    send_buf[SEND_BUF_SIZE];
  138.   // Methods start here.
  139.   inline void send_to_dmux(Packet *pkt, Handler *h) { 
  140.     port_dmux->recv(pkt, h); 
  141.   }
  142.   void clear_arp_buf();
  143.   void clear_send_buf();
  144.   void reset();
  145.   void consider_old(Packet *);
  146.   void consider_new(Packet *);
  147.   void Terminate();
  148.   virtual void Start();
  149.   Packet *create_packet();
  150.   Packet *prepare_message(unsigned int dtype, ns_addr_t to_addr, int msg_type);
  151.   virtual void Print_IOlist();
  152.   void DataForSink(Packet *);
  153.   void StopSource();
  154.   void MACprepare(Packet *pkt, nsaddr_t next_hop, int type, 
  155.   bool lk_dtct);
  156.   void MACsend(Packet *pkt, Time delay=0);
  157.   void xmitFailed(Packet *pkt);
  158.   void StickPacketInArpBuffer(Packet *pkt);
  159.   void ArpBufferCheck();
  160.   void SendBufferCheck();
  161.   void StickPacketInSendBuffer(Packet *p);
  162.   void trace(char *fmt,...);
  163.   friend void XmitFailedCallback(Packet *pkt, void *data);
  164.   friend class ArpBufferTimer;
  165.   friend class SendBufTimer;
  166. };
  167. #endif