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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * omni_mcast.h
  3.  * Copyright (C) 2000 by the University of Southern California
  4.  * $Id: omni_mcast.h,v 1.4 2005/08/25 18:58:04 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. /* omni_mcast.h : Chalermek Intanagonwiwat (USC/ISI)  08/16/99  */
  47. /****************************************************************/
  48. // Share api with diffusion and flooding
  49. // Using diffusion packet header
  50. #ifndef ns_omni_mcast_h
  51. #define ns_omni_mcast_h
  52. #include <assert.h>
  53. #include <math.h>
  54. #include <stdio.h>
  55. #include <signal.h>
  56. #include <float.h>
  57. #include <stdlib.h>
  58. #include <tcl.h>
  59. #include "diff_header.h"
  60. #include "agent.h"
  61. #include "tclcl.h"
  62. #include "ip.h"
  63. #include "config.h"
  64. #include "packet.h"
  65. #include "trace.h"
  66. #include "random.h"
  67. #include "classifier.h"
  68. #include "node.h"
  69. #include "iflist.h"
  70. #include "hash_table.h"
  71. #include "arp.h"
  72. #include "mac.h"
  73. #include "ll.h"
  74. #include "dsr/path.h"
  75. #define THIS_NODE             here_.addr_
  76. #define MAC_RETRY_            0          // 0 or 1
  77. #define JITTER                0.11       // (sec) to jitter broadcast
  78. #define ARP_BUFFER_CHECK      0.03       // (sec) between buffer checks
  79. #define ARP_MAX_ATTEMPT       3          // (times)
  80. #define ARP_BUF_SIZE          64         // (slots)
  81. #define SEND_BUFFER_CHECK     0.03       // (sec) between buffer checks
  82. #define SEND_TIMEOUT          30.0       // (sec) a packet can live in sendbuf
  83. #define SEND_BUF_SIZE         64         // (slots)
  84. #define SEND_MESSAGE(x,y,z)  send_to_dmux(prepare_message(x,y,z), 0)
  85. class OmniMcastAgent;
  86. class OmniMcastArpBufEntry {
  87.  public:
  88.   Time   t;                            // Insertion Time
  89.   int    attempt;                      // number of attempts
  90.   Packet *p;
  91.   OmniMcastArpBufEntry() { t=0; attempt=0; p=NULL; }
  92. };
  93. class OmniMcastArpBufferTimer : public TimerHandler {
  94.  public:
  95.   OmniMcastArpBufferTimer(OmniMcastAgent *a) : TimerHandler() { a_ = a; }
  96.   void expire(Event *e);
  97.  protected:
  98.   OmniMcastAgent *a_;
  99. };
  100. class OmniMcastSendBufferEntry {
  101.  public:
  102.   Time    t;                          // Insertion Time 
  103.   Packet *p;
  104.   OmniMcastSendBufferEntry() { t=0; p=NULL; }
  105. };
  106. class OmniMcastSendBufTimer : public TimerHandler {
  107.  public:
  108.   OmniMcastSendBufTimer(OmniMcastAgent *a) : TimerHandler() { a_ = a; }
  109.   void expire(Event *e);
  110.  protected:
  111.   OmniMcastAgent *a_;
  112. };
  113. // Omnicient Multicast Entry
  114. class OmniMcast_Entry {
  115.  public:
  116.   Agent_List *source;
  117.   Agent_List *sink;
  118.   OmniMcast_Entry() { 
  119.     source       = NULL;
  120.     sink         = NULL;
  121.   }
  122.   void reset();
  123.   void clear_agentlist(Agent_List *);
  124. };
  125. class OmniMcastAgent : public Agent {
  126.  public:
  127.   OmniMcastAgent();
  128.   int command(int argc, const char*const* argv);
  129.   void recv(Packet*, Handler*);
  130.   OmniMcast_Entry  routing_table[MAX_DATA_TYPE];
  131.  protected:
  132.   // Variables start here.
  133.   int pk_count;
  134.   Pkt_Hash_Table PktTable;
  135.   Node *node;
  136.   Trace *tracetarget;       // Trace Target
  137.   NsObject *ll;  
  138.   NsObject *port_dmux;
  139.   ARPTable *arp_table;
  140.   OmniMcastArpBufferTimer     arp_buf_timer;
  141.   OmniMcastArpBufEntry        arp_buf[ARP_BUF_SIZE];
  142.   OmniMcastSendBufTimer       send_buf_timer;
  143.   OmniMcastSendBufferEntry    send_buf[SEND_BUF_SIZE];
  144.   // Methods start here.
  145.   inline void send_to_dmux(Packet *pkt, Handler *h) { 
  146.     port_dmux->recv(pkt, h); 
  147.   }
  148.   void clear_arp_buf();
  149.   void clear_send_buf();
  150.   void reset();
  151.   void ConsiderNew(Packet *);
  152.   void Start();
  153.   void Terminate();
  154.   Packet *create_packet();
  155.   Packet *prepare_message(unsigned int dtype, ns_addr_t to_addr, int msg_type);
  156.   void DataForSink(Packet *);
  157.   void GodForwardData(Packet *);
  158.   void StopSource();
  159.   void MACprepare(Packet *pkt, nsaddr_t next_hop, unsigned int type, 
  160.   bool lk_dtct);
  161.   void MACsend(Packet *pkt, Time delay=0);
  162.   void xmitFailed(Packet *pkt);
  163.   void StickPacketInArpBuffer(Packet *pkt);
  164.   void ArpBufferCheck();
  165.   void SendBufferCheck();
  166.   void StickPacketInSendBuffer(Packet *p);
  167.   void trace(char *fmt,...);
  168.   friend void OmniMcastXmitFailedCallback(Packet *pkt, void *data);
  169.   friend class OmniMcastArpBufferTimer;
  170.   friend class OmniMcastSendBufTimer;
  171. };
  172. #endif