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

通讯编程

开发平台:

Visual C++

  1. // 
  2. // tools.cc      : Implements a few utility functions
  3. // authors       : Fabio Silva
  4. //
  5. // Copyright (C) 2000-2002 by the University of Southern California
  6. // $Id: tools.cc,v 1.16 2005/10/05 15:16:02 sfloyd 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 <math.h>
  43. #include "tools.hh"
  44. #ifdef NS_DIFFUSION
  45. #include "scheduler.h"
  46. #include "rng.h"
  47. #include "random.h"
  48. #endif // NS_DIFFUSION
  49. int global_debug_level = DEBUG_DEFAULT;
  50. void GetTime(struct timeval *tv)
  51. {
  52. #ifdef NS_DIFFUSION
  53.   double time;
  54.   long sec, usec;
  55.   time = Scheduler::instance().clock();
  56.   // sec = lrint (time);
  57.   sec = (long) rint (time);
  58.   // usec = lrint ((time - sec) * 1000000);
  59.   usec = (long) rint ((time - sec) * 1000000);
  60.   tv->tv_sec = sec;
  61.   tv->tv_usec = usec;
  62.   DiffPrint(DEBUG_NEVER, "tv->sec = %ld, tv->usec = %ldn", tv->tv_sec, tv->tv_usec);
  63. #else
  64.   gettimeofday(tv, NULL);
  65. #endif // NS_DIFFUSION
  66. }
  67. void SetSeed(struct timeval *tv) 
  68. {
  69. #ifdef NS_DIFFUSION
  70.   // Don't need to do anything since NS's RNG is seeded using
  71.   // otcl proc ns-random <seed>
  72. #else
  73.   srand(tv->tv_usec);
  74. #endif // NS_DIFFUSION
  75. }
  76. int GetRand()
  77. {
  78. #ifdef NS_DIFFUSION
  79.   return (Random::random());
  80. #else
  81.   return (rand());
  82. #endif // NS_DIFFUSION
  83. }
  84. void DiffPrint(int msg_debug_level, const char *fmt, ...)
  85. {
  86.   va_list ap;
  87.   va_start(ap, fmt);
  88.   if (global_debug_level >= msg_debug_level){
  89.     // Print message
  90.     vfprintf(stderr, fmt, ap);
  91.     fflush(NULL);
  92.   }
  93.   va_end(ap);
  94. }
  95. void DiffPrintWithTime(int msg_debug_level, const char *fmt, ...)
  96. {
  97.   struct timeval tv;
  98.   va_list ap;
  99.   va_start(ap, fmt);
  100.   if (global_debug_level >= msg_debug_level){
  101.     // Get time
  102.     GetTime(&tv);
  103.     // Print Time
  104.     fprintf(stderr, "%ld.%06ld : ", tv.tv_sec, (long int) tv.tv_usec);
  105.     // Print message
  106.     vfprintf(stderr, fmt, ap);
  107.     fflush(NULL);
  108.   }
  109.   va_end(ap);
  110. }