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

通讯编程

开发平台:

Visual C++

  1. /********************************************/
  2. /*     NS2 Simulator for IEEE 802.15.4      */
  3. /*           (per P802.15.4/D18)            */
  4. /*------------------------------------------*/
  5. /* by:        Jianliang Zheng               */
  6. /*        (zheng@ee.ccny.cuny.edu)          */
  7. /*              Myung J. Lee                */
  8. /*          (lee@ccny.cuny.edu)             */
  9. /*        ~~~~~~~~~~~~~~~~~~~~~~~~~         */
  10. /*           SAIT-CUNY Joint Lab            */
  11. /********************************************/
  12. // File:  p802_15_4nam.h
  13. // Mode:  C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t
  14. // $Header: /cvsroot/nsnam/ns-2/wpan/p802_15_4nam.h,v 1.1 2005/01/24 18:34:25 haldar Exp $
  15. /*
  16.  * Copyright (c) 2003-2004 Samsung Advanced Institute of Technology and
  17.  * The City University of New York. All rights reserved.
  18.  *
  19.  * Redistribution and use in source and binary forms, with or without
  20.  * modification, are permitted provided that the following conditions
  21.  * are met:
  22.  * 1. Redistributions of source code must retain the above copyright
  23.  *    notice, this list of conditions and the following disclaimer.
  24.  * 2. Redistributions in binary form must reproduce the above copyright
  25.  *    notice, this list of conditions and the following disclaimer in the
  26.  *    documentation and/or other materials provided with the distribution.
  27.  * 3. All advertising materials mentioning features or use of this software
  28.  *    must display the following acknowledgement:
  29.  * This product includes software developed by the Joint Lab of Samsung 
  30.  *      Advanced Institute of Technology and The City University of New York.
  31.  * 4. Neither the name of Samsung Advanced Institute of Technology nor of 
  32.  *    The City University of New York may be used to endorse or promote 
  33.  *    products derived from this software without specific prior written 
  34.  *    permission.
  35.  *
  36.  * THIS SOFTWARE IS PROVIDED BY THE JOINT LAB OF SAMSUNG ADVANCED INSTITUTE
  37.  * OF TECHNOLOGY AND THE CITY UNIVERSITY OF NEW YORK ``AS IS'' AND ANY EXPRESS 
  38.  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 
  39.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 
  40.  * NO EVENT SHALL SAMSUNG ADVANCED INSTITUTE OR THE CITY UNIVERSITY OF NEW YORK 
  41.  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
  42.  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 
  43.  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
  44.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
  45.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 
  46.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  47.  */
  48. #ifndef p802_15_4nam_h
  49. #define p802_15_4nam_h
  50. #define mac_oper_del 1
  51. #define mac_oper_est 2
  52. class Mac802_15_4;
  53. class MACLINK 
  54. {
  55. public:
  56. Mac802_15_4 *mac;
  57. int addr;
  58. MACLINK *last;
  59. MACLINK *next;
  60. MACLINK(int ad,Mac802_15_4 *m)
  61. {
  62. addr = ad;
  63. mac = m;
  64. last = NULL;
  65. next = NULL;
  66. }
  67. };
  68. int addMacLink(int ad,Mac802_15_4 *m);
  69. int updateMacLink(int oper,int ad);
  70. Mac802_15_4 *getMacLink(int ad);
  71. int chkAddMacLink(int ad,Mac802_15_4 *m);
  72. //------------------------------------------------------------------
  73. #define at_oper_del 1
  74. #define at_oper_est 2
  75. extern int ATTRIBUTE_SN;
  76. class ATTRIBUTELINK 
  77. {
  78. public:
  79. packet_t ptype;
  80. char color[21];
  81. int src,dst;
  82. int attribute;
  83. ATTRIBUTELINK *last;
  84. ATTRIBUTELINK *next;
  85. ATTRIBUTELINK(packet_t pt,char *clr,int s,int d)
  86. {
  87. ptype = pt;
  88. strncpy(color,clr,20);
  89. color[20] = 0;
  90. src = s;
  91. dst = d;
  92. attribute = ATTRIBUTE_SN++;
  93. last = NULL;
  94. next = NULL;
  95. }
  96. };
  97. packet_t nam_pktName2Type(const char *name);
  98. int addAttrLink(packet_t pt,char *clr,int s = -2,int d = -2);
  99. int updateAttrLink(int oper,packet_t pt,int s = -2,int d = -2);
  100. int chkAddAttrLink(packet_t pt,char *clr,int s = -2,int d = -2);
  101. ATTRIBUTELINK *findAttrLink(packet_t pt,int s = -2,int d = -2);
  102. //------------------------------------------------------------------
  103. class Nam802_15_4
  104. {
  105. friend class Mac802_15_4;
  106. friend class Phy802_15_4;
  107. public:
  108. Nam802_15_4(const char *ncolor,const char *mcolor,Mac802_15_4 *m);
  109. //~Nam802_15_4();
  110. static void flowAttribute(int clrID,const char *clrName);
  111. static void changePlaybackRate(double atTime,const char *stepLen);
  112. protected:
  113. void changeNodeColor(double atTime,const char *newColor,bool save = true);
  114. void changeBackNodeColor(double atTime);
  115. void flashNodeColor(double atTime,const char *flashColor = "");
  116. void changeMarkColor(double atTime,const char *newColor);
  117. void flashNodeMark(double atTime);
  118. void changeLabel(double atTime,const char *lb);
  119. void flashLinkFail(double atTime,int dst,const char *flashColor = "");
  120. void annotate(double atTime,const char *note);
  121. public:
  122. static bool Nam_Status;
  123. static bool emStatus; //energy model used?
  124. static bool emHandling; //need special handling for energy model?
  125. static char def_PANCoor_clr[21];
  126. static char def_Coor_clr[21];
  127. static char def_Dev_clr[21];
  128. static char def_Node_clr[21];
  129. static char def_Mark_clr[21];
  130. static char def_ColFlash_clr[21];
  131. static char def_NodeFail_clr[21];
  132. static char def_LinkFailFlash_clr[21];
  133. protected:
  134. char nodePreColor[21];
  135. char nodeColor[21];
  136. char markColor[21];
  137. char label[81];
  138. private:
  139. Mac802_15_4 *mac;
  140. };
  141. #endif
  142. // End of file: p802_15_4nam.h