aodv_logs.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. */
  26. #include <aodv/aodv.h>
  27. #include <aodv/aodv_packet.h>
  28. #include <ip.h>
  29. #define CURRENT_TIME    Scheduler::instance().clock()
  30. static const int verbose = 0;
  31. /* =====================================================================
  32.    Logging Functions
  33.    ===================================================================== */
  34. void
  35. AODV::log_link_del(nsaddr_t dst)
  36. {
  37.         static int link_del = 0;
  38.         if(! logtarget || ! verbose) return;
  39.         /*
  40.          *  If "god" thinks that these two nodes are still
  41.          *  reachable then this is an erroneous deletion.
  42.          */
  43.         sprintf(logtarget->pt_->buffer(),
  44.                 "A %.9f _%d_ deleting LL hop to %d (delete %d is %s)",
  45.                 CURRENT_TIME,
  46.                 index,
  47.                 dst,
  48.                 ++link_del,
  49.                 God::instance()->hops(index, dst) != 1 ? "VALID" : "INVALID");
  50.         logtarget->pt_->dump();
  51. }
  52. void
  53. AODV::log_link_broke(Packet *p)
  54. {
  55.         static int link_broke = 0;
  56.         struct hdr_cmn *ch = HDR_CMN(p);
  57.         if(! logtarget || ! verbose) return;
  58.         sprintf(logtarget->pt_->buffer(),
  59.                 "A %.9f _%d_ LL unable to deliver packet %d to %d (%d) (reason = %d, ifqlen = %d)",
  60.                 CURRENT_TIME,
  61.                 index,
  62.                 ch->uid_,
  63.                 ch->next_hop_,
  64.                 ++link_broke,
  65.                 ch->xmit_reason_,
  66.                 ifqueue->length());
  67. logtarget->pt_->dump();
  68. }
  69. void
  70. AODV::log_link_kept(nsaddr_t dst)
  71. {
  72.         static int link_kept = 0;
  73.         if(! logtarget || ! verbose) return;
  74.         /*
  75.          *  If "god" thinks that these two nodes are now
  76.          *  unreachable, then we are erroneously keeping
  77.          *  a bad route.
  78.          */
  79.         sprintf(logtarget->pt_->buffer(),
  80.                 "A %.9f _%d_ keeping LL hop to %d (keep %d is %s)",
  81.                 CURRENT_TIME,
  82.                 index,
  83.                 dst,
  84.                 ++link_kept,
  85.                 God::instance()->hops(index, dst) == 1 ? "VALID" : "INVALID");
  86.         logtarget->pt_->dump();
  87. }