cmu-trace.h
上传用户:sdhqmy
上传日期:2015-12-07
资源大小:63k
文件大小:5k
源码类别:

3G开发

开发平台:

C/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: /nfs/jade/vint/CVSROOT/ns-2/trace/cmu-trace.h,v 1.13 2002/03/14 01:18:09 haldar 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__ ((const char *) 0)
  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. #define TR_ROUTER 0x01
  52. #define TR_MAC 0x02
  53. #define TR_IFQ 0x04
  54. #define TR_AGENT 0x08
  55. #define DROP_END_OF_SIMULATION "END"
  56. #define DROP_MAC_COLLISION "COL"
  57. #define DROP_MAC_DUPLICATE "DUP"
  58. #define DROP_MAC_PACKET_ERROR "ERR"
  59. #define DROP_MAC_RETRY_COUNT_EXCEEDED "RET"
  60. #define DROP_MAC_INVALID_STATE "STA"
  61. #define DROP_MAC_BUSY "BSY"
  62. #define DROP_MAC_INVALID_DST            "DST"
  63. //JUNGMIN
  64. #define DROP_END_OF_BEACON_INTERVAL "ENB"
  65. #define DROP_END_OF_ATIM_WINDOW "ENA"
  66. //end of JUNGMIN
  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. class CMUTrace : public Trace {
  81. public:
  82. CMUTrace(const char *s, char t);
  83. void recv(Packet *p, Handler *h);
  84. void recv(Packet *p, const char* why);
  85. private:
  86. char tracename[MAX_ID_LEN + 1];
  87. int nodeColor[MAX_NODE];
  88.         int     tracetype;
  89.         MobileNode *node_;
  90. int     newtrace_;
  91.         int initialized() { return node_ && 1; }
  92. int node_energy();
  93. int command(int argc, const char*const* argv);
  94. void format(Packet *p, const char *why);
  95.         void    nam_format(Packet *p, int offset);
  96. void format_mac(Packet *p, const char *why, int offset);
  97. void format_ip(Packet *p, int offset);
  98. void format_arp(Packet *p, int offset);
  99. void format_dsr(Packet *p, int offset);
  100. void format_msg(Packet *p, int offset);
  101. void format_tcp(Packet *p, int offset);
  102. void format_rtp(Packet *p, int offset);
  103. void format_tora(Packet *p, int offset);
  104.         void    format_imep(Packet *p, int offset);
  105.         void    format_aodv(Packet *p, int offset);
  106. };
  107. #endif /* __cmu_trace__ */