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

通讯编程

开发平台:

Visual C++

  1. /*
  2. Copyright (c) 1997, 1998 Carnegie Mellon University.  All Rights
  3. Reserved. 
  4. Redistribution and use in source and binary forms, with or without
  5. modification, are permitted provided that the following conditions are met:
  6. 1. Redistributions of source code must retain the above copyright notice,
  7. this list of conditions and the following disclaimer.
  8. 2. Redistributions in binary form must reproduce the above copyright notice,
  9. this list of conditions and the following disclaimer in the documentation
  10. and/or other materials provided with the distribution.
  11. 3. The name of the author may not be used to endorse or promote products
  12. derived from this software without specific prior written permission.
  13. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  14. IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  15. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  16. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  17. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  18. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  19. OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  20. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  21. OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  22. ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  23. The AODV code developed by the CMU/MONARCH group was optimized and tuned by Samir Das and Mahesh Marina, University of Cincinnati. The work was partially done in Sun Microsystems.
  24. */
  25. #include <aodv/aodv_rtable.h>
  26. //#include <cmu/aodv/aodv.h>
  27. /*
  28.   The Routing Table
  29. */
  30. aodv_rt_entry::aodv_rt_entry()
  31. {
  32. int i;
  33.  rt_req_timeout = 0.0;
  34.  rt_req_cnt = 0;
  35.  rt_dst = 0;
  36.  rt_seqno = 0;
  37.  rt_hops = rt_last_hop_count = INFINITY2;
  38.  rt_nexthop = 0;
  39.  LIST_INIT(&rt_pclist);
  40.  rt_expire = 0.0;
  41.  rt_flags = RTF_DOWN;
  42.  /*
  43.  rt_errors = 0;
  44.  rt_error_time = 0.0;
  45.  */
  46.  for (i=0; i < MAX_HISTORY; i++) {
  47.    rt_disc_latency[i] = 0.0;
  48.  }
  49.  hist_indx = 0;
  50.  rt_req_last_ttl = 0;
  51.  LIST_INIT(&rt_nblist);
  52. }
  53. aodv_rt_entry::~aodv_rt_entry()
  54. {
  55. AODV_Neighbor *nb;
  56.  while((nb = rt_nblist.lh_first)) {
  57.    LIST_REMOVE(nb, nb_link);
  58.    delete nb;
  59.  }
  60. AODV_Precursor *pc;
  61.  while((pc = rt_pclist.lh_first)) {
  62.    LIST_REMOVE(pc, pc_link);
  63.    delete pc;
  64.  }
  65. }
  66. void
  67. aodv_rt_entry::nb_insert(nsaddr_t id)
  68. {
  69. AODV_Neighbor *nb = new AODV_Neighbor(id);
  70.         
  71.  assert(nb);
  72.  nb->nb_expire = 0;
  73.  LIST_INSERT_HEAD(&rt_nblist, nb, nb_link);
  74. }
  75. AODV_Neighbor*
  76. aodv_rt_entry::nb_lookup(nsaddr_t id)
  77. {
  78. AODV_Neighbor *nb = rt_nblist.lh_first;
  79.  for(; nb; nb = nb->nb_link.le_next) {
  80.    if(nb->nb_addr == id)
  81.      break;
  82.  }
  83.  return nb;
  84. }
  85. void
  86. aodv_rt_entry::pc_insert(nsaddr_t id)
  87. {
  88. if (pc_lookup(id) == NULL) {
  89. AODV_Precursor *pc = new AODV_Precursor(id);
  90.         
  91.   assert(pc);
  92.   LIST_INSERT_HEAD(&rt_pclist, pc, pc_link);
  93. }
  94. }
  95. AODV_Precursor*
  96. aodv_rt_entry::pc_lookup(nsaddr_t id)
  97. {
  98. AODV_Precursor *pc = rt_pclist.lh_first;
  99.  for(; pc; pc = pc->pc_link.le_next) {
  100.    if(pc->pc_addr == id)
  101.     return pc;
  102.  }
  103.  return NULL;
  104. }
  105. void
  106. aodv_rt_entry::pc_delete(nsaddr_t id) {
  107. AODV_Precursor *pc = rt_pclist.lh_first;
  108.  for(; pc; pc = pc->pc_link.le_next) {
  109.    if(pc->pc_addr == id) {
  110.      LIST_REMOVE(pc,pc_link);
  111.      delete pc;
  112.      break;
  113.    }
  114.  }
  115. }
  116. void
  117. aodv_rt_entry::pc_delete(void) {
  118. AODV_Precursor *pc;
  119.  while((pc = rt_pclist.lh_first)) {
  120.    LIST_REMOVE(pc, pc_link);
  121.    delete pc;
  122.  }
  123. }
  124. bool
  125. aodv_rt_entry::pc_empty(void) {
  126. AODV_Precursor *pc;
  127.  if ((pc = rt_pclist.lh_first)) return false;
  128.  else return true;
  129. }
  130. /*
  131.   The Routing Table
  132. */
  133. aodv_rt_entry*
  134. aodv_rtable::rt_lookup(nsaddr_t id)
  135. {
  136. aodv_rt_entry *rt = rthead.lh_first;
  137.  for(; rt; rt = rt->rt_link.le_next) {
  138.    if(rt->rt_dst == id)
  139.      break;
  140.  }
  141.  return rt;
  142. }
  143. void
  144. aodv_rtable::rt_delete(nsaddr_t id)
  145. {
  146. aodv_rt_entry *rt = rt_lookup(id);
  147.  if(rt) {
  148.    LIST_REMOVE(rt, rt_link);
  149.    delete rt;
  150.  }
  151. }
  152. aodv_rt_entry*
  153. aodv_rtable::rt_add(nsaddr_t id)
  154. {
  155. aodv_rt_entry *rt;
  156.  assert(rt_lookup(id) == 0);
  157.  rt = new aodv_rt_entry;
  158.  assert(rt);
  159.  rt->rt_dst = id;
  160.  LIST_INSERT_HEAD(&rthead, rt, rt_link);
  161.  return rt;
  162. }