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

通讯编程

开发平台:

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 <assert.h>
  26. #include <cmu-trace.h>
  27. #include <aodv/aodv_rqueue.h>
  28. #define CURRENT_TIME    Scheduler::instance().clock()
  29. #define QDEBUG
  30. /*
  31.   Packet Queue used by AODV.
  32. */
  33. aodv_rqueue::aodv_rqueue() {
  34.   head_ = tail_ = 0;
  35.   len_ = 0;
  36.   limit_ = AODV_RTQ_MAX_LEN;
  37.   timeout_ = AODV_RTQ_TIMEOUT;
  38. }
  39. void
  40. aodv_rqueue::enque(Packet *p) {
  41. struct hdr_cmn *ch = HDR_CMN(p);
  42.  /*
  43.   * Purge any packets that have timed out.
  44.   */
  45.  purge();
  46.  
  47.  p->next_ = 0;
  48.  ch->ts_ = CURRENT_TIME + timeout_;
  49.  if (len_ == limit_) {
  50.  Packet *p0 = remove_head(); // decrements len_
  51.    assert(p0);
  52.    if(HDR_CMN(p0)->ts_ > CURRENT_TIME) {
  53.      drop(p0, DROP_RTR_QFULL);
  54.    }
  55.    else {
  56.      drop(p0, DROP_RTR_QTIMEOUT);
  57.    }
  58.  }
  59.  
  60.  if(head_ == 0) {
  61.    head_ = tail_ = p;
  62.  }
  63.  else {
  64.    tail_->next_ = p;
  65.    tail_ = p;
  66.  }
  67.  len_++;
  68. #ifdef QDEBUG
  69.    verifyQueue();
  70. #endif // QDEBUG
  71. }
  72.                 
  73. Packet*
  74. aodv_rqueue::deque() {
  75. Packet *p;
  76.  /*
  77.   * Purge any packets that have timed out.
  78.   */
  79.  purge();
  80.  p = remove_head();
  81. #ifdef QDEBUG
  82.  verifyQueue();
  83. #endif // QDEBUG
  84.  return p;
  85. }
  86. Packet*
  87. aodv_rqueue::deque(nsaddr_t dst) {
  88. Packet *p, *prev;
  89.  /*
  90.   * Purge any packets that have timed out.
  91.   */
  92.  purge();
  93.  findPacketWithDst(dst, p, prev);
  94.  assert(p == 0 || (p == head_ && prev == 0) || (prev->next_ == p));
  95.  if(p == 0) return 0;
  96.  if (p == head_) {
  97.    p = remove_head();
  98.  }
  99.  else if (p == tail_) {
  100.    prev->next_ = 0;
  101.    tail_ = prev;
  102.    len_--;
  103.  }
  104.  else {
  105.    prev->next_ = p->next_;
  106.    len_--;
  107.  }
  108. #ifdef QDEBUG
  109.  verifyQueue();
  110. #endif // QDEBUG
  111.  return p;
  112. }
  113. char 
  114. aodv_rqueue::find(nsaddr_t dst) {
  115. Packet *p, *prev;  
  116.  findPacketWithDst(dst, p, prev);
  117.  if (0 == p)
  118.    return 0;
  119.  else
  120.    return 1;
  121. }
  122. /*
  123.   Private Routines
  124. */
  125. Packet*
  126. aodv_rqueue::remove_head() {
  127. Packet *p = head_;
  128.         
  129.  if(head_ == tail_) {
  130.    head_ = tail_ = 0;
  131.  }
  132.  else {
  133.    head_ = head_->next_;
  134.  }
  135.  if(p) len_--;
  136.  return p;
  137. }
  138. void
  139. aodv_rqueue::findPacketWithDst(nsaddr_t dst, Packet*& p, Packet*& prev) {
  140.   
  141.   p = prev = 0;
  142.   for(p = head_; p; p = p->next_) {
  143.   // if(HDR_IP(p)->dst() == dst) {
  144.        if(HDR_IP(p)->daddr() == dst) {
  145.       return;
  146.     }
  147.     prev = p;
  148.   }
  149. }
  150. void
  151. aodv_rqueue::verifyQueue() {
  152. Packet *p, *prev = 0;
  153. int cnt = 0;
  154.  for(p = head_; p; p = p->next_) {
  155.    cnt++;
  156.    prev = p;
  157.  }
  158.  assert(cnt == len_);
  159.  assert(prev == tail_);
  160. }
  161. /*
  162. void
  163. aodv_rqueue::purge() {
  164. Packet *p;
  165.  while((p = head_) && HDR_CMN(p)->ts_ < CURRENT_TIME) {
  166.    // assert(p == remove_head());     
  167.    p = remove_head();     
  168.    drop(p, DROP_RTR_QTIMEOUT);
  169.  }
  170. }
  171. */
  172. bool
  173. aodv_rqueue::findAgedPacket(Packet*& p, Packet*& prev) {
  174.   
  175.   p = prev = 0;
  176.   for(p = head_; p; p = p->next_) {
  177.     if(HDR_CMN(p)->ts_ < CURRENT_TIME) {
  178.       return true;
  179.     }
  180.     prev = p;
  181.   }
  182.   return false;
  183. }
  184. void
  185. aodv_rqueue::purge() {
  186. Packet *p, *prev;
  187.  while ( findAgedPacket(p, prev) ) {
  188.   assert(p == 0 || (p == head_ && prev == 0) || (prev->next_ == p));
  189.   if(p == 0) return;
  190.   if (p == head_) {
  191.     p = remove_head();
  192.   }
  193.   else if (p == tail_) {
  194.     prev->next_ = 0;
  195.     tail_ = prev;
  196.     len_--;
  197.   }
  198.   else {
  199.     prev->next_ = p->next_;
  200.     len_--;
  201.   }
  202. #ifdef QDEBUG
  203.   verifyQueue();
  204. #endif // QDEBUG
  205. p = prev = 0;
  206.  }
  207. }