p802_15_4fail.cc
上传用户: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_4fail.cc
  13. // Mode:  C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t
  14. // $Header: /cvsroot/nsnam/ns-2/wpan/p802_15_4fail.cc,v 1.1 2005/01/24 18:34:24 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. #include "p802_15_4fail.h"
  49. LFAILLINK *lfailLink1 = NULL;
  50. LFAILLINK *lfailLink2 = NULL;
  51. NFAILLINK *nfailLink1 = NULL;
  52. NFAILLINK *nfailLink2 = NULL;
  53. int addLFailLink(int s,int d)
  54. {
  55. LFAILLINK *tmp;
  56. if(lfailLink2 == NULL) //not exist yet
  57. {
  58. lfailLink2 = new LFAILLINK(s,d);
  59. if (lfailLink2 == NULL) return 1;
  60. lfailLink1 = lfailLink2;
  61. }
  62. else
  63. {
  64. tmp=new LFAILLINK(s,d);
  65. if (tmp == NULL) return 1;
  66. tmp->last = lfailLink2;
  67. (lfailLink2)->next = tmp;
  68. lfailLink2 = tmp;
  69. }
  70. return 0;
  71. }
  72. int updateLFailLink(int oper,int s,int d)
  73. {
  74. LFAILLINK *tmp;
  75. int rt;
  76. rt = 1;
  77. tmp = lfailLink1;
  78. while(tmp != NULL)
  79. {
  80. if ((tmp->src == s)&&(tmp->dst == d))
  81. {
  82. if (oper == fl_oper_del) //delete an element
  83. {
  84. if(tmp->last != NULL)
  85. {
  86. tmp->last->next = tmp->next;
  87. if(tmp->next != NULL)
  88. tmp->next->last = tmp->last;
  89. else
  90. lfailLink2 = tmp->last;
  91. }
  92. else if (tmp->next != NULL)
  93. {
  94. lfailLink1 = tmp->next;
  95. tmp->next->last = NULL;
  96. }
  97. else
  98. {
  99. lfailLink1 = NULL;
  100. lfailLink2 = NULL;
  101. }
  102. delete tmp;
  103. }
  104. rt = 0;
  105. break;
  106. }
  107. tmp = tmp->next;
  108. }
  109. return rt;
  110. }
  111. int chkAddLFailLink(int s,int d)
  112. {
  113.         int i;
  114.         i = updateLFailLink(fl_oper_est,s,d);
  115.         if (i == 0) return 1;
  116.         i = addLFailLink(s,d);
  117.         if (i == 0) return 0;
  118.         else return 2;
  119. }
  120. int addNFailLink(int a)
  121. {
  122. NFAILLINK *tmp;
  123. if(nfailLink2 == NULL) //not exist yet
  124. {
  125. nfailLink2 = new NFAILLINK(a);
  126. if (nfailLink2 == NULL) return 1;
  127. nfailLink1 = nfailLink2;
  128. }
  129. else
  130. {
  131. tmp=new NFAILLINK(a);
  132. if (tmp == NULL) return 1;
  133. tmp->last = nfailLink2;
  134. (nfailLink2)->next = tmp;
  135. nfailLink2 = tmp;
  136. }
  137. return 0;
  138. }
  139. int updateNFailLink(int oper,int a)
  140. {
  141. NFAILLINK *tmp;
  142. int rt;
  143. rt = 1;
  144. tmp = nfailLink1;
  145. while(tmp != NULL)
  146. {
  147. if (tmp->addr == a)
  148. {
  149. if (oper == fl_oper_del) //delete an element
  150. {
  151. if(tmp->last != NULL)
  152. {
  153. tmp->last->next = tmp->next;
  154. if(tmp->next != NULL)
  155. tmp->next->last = tmp->last;
  156. else
  157. nfailLink2 = tmp->last;
  158. }
  159. else if (tmp->next != NULL)
  160. {
  161. nfailLink1 = tmp->next;
  162. tmp->next->last = NULL;
  163. }
  164. else
  165. {
  166. nfailLink1 = NULL;
  167. nfailLink2 = NULL;
  168. }
  169. delete tmp;
  170. }
  171. rt = 0;
  172. break;
  173. }
  174. tmp = tmp->next;
  175. }
  176. return rt;
  177. }
  178. int chkAddNFailLink(int a)
  179. {
  180.         int i;
  181.         i = updateNFailLink(fl_oper_est,a);
  182.         if (i == 0) return 1;
  183.         i = addNFailLink(a);
  184.         if (i == 0) return 0;
  185.         else return 2;
  186. }
  187. // End of file: p802_15_4fail.cc