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

通讯编程

开发平台:

Visual C++

  1. //
  2. // rmst.cc         : Rmst Class Methods
  3. // authors         : Fred Stann
  4. //
  5. // Copyright (C) 2003 by the University of Southern California
  6. // $Id: rmst.cc,v 1.2 2005/09/13 04:53:48 tomh Exp $
  7. //
  8. // This program is free software; you can redistribute it and/or
  9. // modify it under the terms of the GNU General Public License,
  10. // version 2, as published by the Free Software Foundation.
  11. //
  12. // This program is distributed in the hope that it will be useful,
  13. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. // GNU General Public License for more details.
  16. //
  17. // You should have received a copy of the GNU General Public License along
  18. // with this program; if not, write to the Free Software Foundation, Inc.,
  19. // 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  20. //
  21. // Linking this file statically or dynamically with other modules is making
  22. // a combined work based on this file.  Thus, the terms and conditions of
  23. // the GNU General Public License cover the whole combination.
  24. //
  25. // In addition, as a special exception, the copyright holders of this file
  26. // give you permission to combine this file with free software programs or
  27. // libraries that are released under the GNU LGPL and with code included in
  28. // the standard release of ns-2 under the Apache 2.0 license or under
  29. // otherwise-compatible licenses with advertising requirements (or modified
  30. // versions of such code, with unchanged license).  You may copy and
  31. // distribute such a system following the terms of the GNU GPL for this
  32. // file and the licenses of the other code concerned, provided that you
  33. // include the source code of that other code when and as the GNU GPL
  34. // requires distribution of source code.
  35. //
  36. // Note that people who make modified versions of this file are not
  37. // obligated to grant this special exception for their modified versions;
  38. // it is their choice whether to do so.  The GNU General Public License
  39. // gives permission to release a modified version without this exception;
  40. // this exception also makes it possible to release a modified version
  41. // which carries forward this exception.
  42. #include <stdio.h>
  43. #include "rmst.hh"
  44. Rmst::Rmst(int id, int mxFrag)
  45. {
  46.   rmst_no_ = id;
  47.   max_frag_rec_ = mxFrag;
  48.   max_frag_sent_ = 0;
  49.   reinf_ = false;
  50.   local_source_ = false;
  51.   target_str_ = NULL;
  52.   acked_ = false;
  53.   resent_last_data_ = false;
  54.   resent_last_exp_ = false;
  55.   wait_for_new_path_ = false;
  56.   watchdog_active_ = false;
  57.   cancel_watchdog_ = false;
  58.   ack_timer_active_ = false;
  59.   sent_exp_req_ = false;
  60.   last_hop_ = 0;
  61.   fwd_hop_ = 0;
  62.   sync_base_ = 0;
  63.   pkts_sent_ = 0;
  64.   pkts_rec_ = 0;
  65.   naks_rec_ = 0;
  66.   last_hop_pkts_sent_ = 0;
  67. }
  68. Rmst::~Rmst()
  69. {
  70.   void *tmp_frag_ptr;
  71.   Int2Frag::iterator frag_iterator;
  72.   for(frag_iterator=frag_map_.begin(); frag_iterator!=frag_map_.end(); ++frag_iterator){
  73.     tmp_frag_ptr = (void*)(*frag_iterator).second;
  74.     delete((char *)tmp_frag_ptr);
  75.   }
  76.   if (target_str_ != NULL)
  77.     delete(target_str_);
  78. }
  79. void* Rmst::getFrag(int frag_no)
  80. {
  81.   Int2Frag::iterator frag_iterator = frag_map_.find(frag_no);
  82.   if(frag_iterator == frag_map_.end())
  83.     return NULL;
  84.   else
  85.     return (*frag_iterator).second;
  86. }
  87. void Rmst::putFrag(int frag_no, void *data)
  88. {
  89.   frag_map_.insert(Int2Frag::value_type(frag_no, data));
  90.   if (frag_no > max_frag_rec_){
  91.     max_frag_rec_ = frag_no;
  92.   }
  93. }
  94. bool Rmst::holeInFragMap()
  95. {
  96.   int count = frag_map_.size();
  97.   if ( (count <= max_frag_rec_) ||
  98.     (hole_map_.size() != 0) )
  99.     return true;
  100.   else
  101.     return false;
  102. }
  103. bool Rmst::rmstComplete()
  104. {
  105.   int count = frag_map_.size();
  106.   if (count <= max_frag_)
  107.     return false;
  108.   else
  109.     return true;
  110. }
  111. bool Rmst::inHoleMap(int hole_no)
  112. {
  113.   Int2Nak::iterator hole_iterator;
  114.   hole_iterator = hole_map_.find(hole_no);
  115.   if (hole_iterator == hole_map_.end() )
  116.     return false;
  117.   return true;
  118. }
  119. void Rmst::putHole(int hole_no)
  120. {
  121.   NakData *nak_ptr = new NakData();
  122.   GetTime(&(nak_ptr->tmv));
  123.   hole_map_.insert(Int2Nak::value_type(hole_no, nak_ptr));
  124. }
  125. NakData* Rmst::getHole(int hole_no)
  126. {
  127.   Int2Nak::iterator hole_iterator = hole_map_.find(hole_no);
  128.   if(hole_iterator == hole_map_.end())
  129.     return NULL;
  130.   else
  131.     return (*hole_iterator).second;
  132. }
  133. void Rmst::delHole(int hole_no)
  134. {
  135.   NakData *nak_ptr;
  136.   Int2Nak::iterator hole_iterator;
  137.   hole_iterator = hole_map_.find(hole_no);
  138.   if (hole_iterator == hole_map_.end() ){
  139.     DiffPrint(DEBUG_ALWAYS, "delHole:: did not find hole num %dn", hole_no);
  140.     return;
  141.   }
  142.   nak_ptr = (*hole_iterator).second;
  143.   delete nak_ptr;
  144.   hole_map_.erase(hole_iterator);
  145.   return;
  146. }
  147. void Rmst::cleanHoleMap()
  148. {
  149.   NakData *nak_ptr;
  150.   Int2Nak::iterator hole_iterator;
  151.   for(hole_iterator = hole_map_.begin(); hole_iterator != hole_map_.end(); ++hole_iterator){
  152.     if (hole_iterator != hole_map_.end() ){
  153.       nak_ptr = (*hole_iterator).second;
  154.       delete nak_ptr;
  155.       hole_map_.erase(hole_iterator);
  156.     }
  157.   }
  158. }
  159. bool Rmst::holeMapEmpty()
  160. {
  161.   Int2Nak::iterator hole_iterator;
  162.   hole_iterator = hole_map_.begin();
  163.   if (hole_iterator != hole_map_.end())
  164.     return false;
  165.   else
  166.     return true;
  167. }
  168. void Rmst::syncHoleMap()
  169. {
  170.   Int2Nak::iterator nak_iterator;
  171.   Int2Frag::iterator frag_iterator;
  172.   DiffPrint(DEBUG_SOME_DETAILS, "  syncHoleMap - found %d holes.n",
  173.     (max_frag_rec_+1) - frag_map_.size());
  174.   for (int i = sync_base_; i <= max_frag_rec_; i++){
  175.     frag_iterator = frag_map_.find(i);
  176.     if (frag_iterator == frag_map_.end() ){
  177.       DiffPrint(DEBUG_SOME_DETAILS, "  syncHoleMap - found hole num %dn", i);
  178.       nak_iterator = hole_map_.find(i);
  179.       if (nak_iterator == hole_map_.end())
  180.         putHole(i);
  181.     }
  182.   }
  183. }
  184. void PrintTime(struct timeval *time)
  185. {
  186.   DiffPrint(DEBUG_ALWAYS, "  time: sec = %dn", (unsigned int) time->tv_sec);
  187. }