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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*-
  2.  *
  3.  * Copyright (c) 1997 Regents of the University of California.
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. All advertising materials mentioning features or use of this software
  15.  *    must display the following acknowledgement:
  16.  * This product includes software developed by the Computer Systems
  17.  * Engineering Group at Lawrence Berkeley Laboratory.
  18.  * 4. Neither the name of the University nor of the Laboratory may be used
  19.  *    to endorse or promote products derived from this software without
  20.  *    specific prior written permission.
  21.  *
  22.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  26.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  *
  34.  * $Header: /cvsroot/nsnam/ns-2/trace/cmu-trace.h,v 1.27 2008/02/18 03:39:03 tom_henderson Exp $
  35.  */
  36. /* Ported from CMU/Monarch's code, nov'98 -Padma.*/
  37. #ifndef __cmu_trace__
  38. #define __cmu_trace__
  39. #include "trace.h"
  40. #include "god.h"
  41. #ifndef __PRETTY_FUNCTION__
  42. #define __PRETTY_FUNCTION__ ("")
  43. #endif /* !__PRETTY_FUNCTION__ */
  44. /* ======================================================================
  45.    Global Defines
  46.    ====================================================================== */
  47. #define DROP            'D'
  48. #define RECV            'r'
  49. #define SEND     's'
  50. #define FWRD     'f'
  51. // change wrt Mike's code
  52. #define EOT             'x'
  53. #define TR_ROUTER 0x01
  54. #define TR_MAC 0x02
  55. #define TR_IFQ 0x04
  56. #define TR_AGENT 0x08
  57. #define TR_PHY 0x10
  58. #define DROP_END_OF_SIMULATION "END"
  59. #define DROP_MAC_COLLISION "COL"
  60. #define DROP_MAC_DUPLICATE "DUP"
  61. #define DROP_MAC_PACKET_ERROR "ERR"
  62. #define DROP_MAC_RETRY_COUNT_EXCEEDED "RET"
  63. #define DROP_MAC_INVALID_STATE "STA"
  64. #define DROP_MAC_BUSY "BSY"
  65. #define DROP_MAC_INVALID_DST            "DST"
  66. #define DROP_MAC_SLEEP                  "SLP"   // smac sleep state
  67. #define DROP_RTR_NO_ROUTE "NRTE"  // no route
  68. #define DROP_RTR_ROUTE_LOOP "LOOP"  // routing loop
  69. #define DROP_RTR_TTL                    "TTL"   // ttl reached zero
  70. #define DROP_RTR_QFULL                  "IFQ"   // queue full
  71. #define DROP_RTR_QTIMEOUT               "TOUT"  // packet expired
  72. #define DROP_RTR_MAC_CALLBACK           "CBK"   // MAC callback
  73. #define DROP_RTR_SALVAGE         "SAL"
  74. #define DROP_IFQ_QFULL                  "IFQ"   // no buffer space in IFQ
  75. #define DROP_IFQ_ARP_FULL               "ARP"   // dropped by ARP
  76. #define DROP_IFQ_FILTER                 "FIL"
  77. #define DROP_OUTSIDE_SUBNET             "OUT"   // dropped by base stations if received rtg updates from nodes outside its domain.
  78. #define MAX_ID_LEN 3
  79. #define MAX_NODE 4096
  80. /**
  81.  * This class allows a dynamic library to define the tracing format
  82.  * for newly defined packet types 
  83.  * 
  84.  */
  85. class PacketTracer
  86. {
  87. public:
  88. PacketTracer();
  89.          virtual ~PacketTracer();
  90. void setNext(PacketTracer *next);
  91. PacketTracer *getNext();
  92. int format_unknow(Packet *p, int offset, BaseTrace *pt_, int newtrace);
  93. protected:
  94. virtual int format(Packet *p, int offset, BaseTrace *pt_, int newtrace) = 0; //return 0 if the packet is unknown
  95. PacketTracer *next_;
  96. };
  97. class CMUTrace : public Trace {
  98. public:
  99. CMUTrace(const char *s, char t);
  100. void recv(Packet *p, Handler *h);
  101. void recv(Packet *p, const char* why);
  102. static void addPacketTracer(PacketTracer *pt);
  103. private:
  104. char tracename[MAX_ID_LEN + 1];
  105. int nodeColor[MAX_NODE];
  106.         int     tracetype;
  107.         MobileNode *node_;
  108. int     newtrace_;
  109. //<zheng: ns 2.27 removed the following part, but we need it to control the broadcast radius>
  110.         static double  bradius;
  111.         static double  radius_scaling_factor_;
  112.         static double  duration_scaling_factor_;
  113.         static void calculate_broadcast_parameters();
  114. //</zheng>
  115.         int initialized() { return node_ && 1; }
  116. int node_energy();
  117. int command(int argc, const char*const* argv);
  118. void format(Packet *p, const char *why);
  119.         void    nam_format(Packet *p, int offset);
  120. void format_phy(Packet *p, int offset);
  121. void format_mac_common(Packet *p, const char *why, int offset);
  122. void    format_mac(Packet *p, int offset);
  123. void    format_smac(Packet *p, int offset);
  124. void format_ip(Packet *p, int offset);
  125. void format_arp(Packet *p, int offset);
  126. void    format_hdlc(Packet *p, int offset);
  127. void format_dsr(Packet *p, int offset);
  128. void format_msg(Packet *p, int offset);
  129. void format_tcp(Packet *p, int offset);
  130. void    format_sctp(Packet *p, int offset);
  131. void format_rtp(Packet *p, int offset);
  132. void format_tora(Packet *p, int offset);
  133.         void    format_imep(Packet *p, int offset);
  134.         void    format_aodv(Packet *p, int offset);
  135. // This holds all the tracers added at run-time
  136. static PacketTracer *pktTrc_;
  137. };
  138. #endif /* __cmu_trace__ */