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

通讯编程

开发平台:

Visual C++

  1. // 
  2. // tools.hh      : Other utility functions
  3. // authors       : Fabio Silva
  4. //
  5. // Copyright (C) 2000-2002 by the University of Southern California
  6. // $Id: tools.hh,v 1.13 2005/09/13 04:53:50 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. //
  43. //
  44. // This file contains OS abstractions to make it easy to use diffusion
  45. // in different environments (i.e. in simulations, where time is
  46. // virtualized, and in embeddedd apps where error logging happens in
  47. // some non-trivial way).
  48. //
  49. // This file defines the various debug levels and a global debug level
  50. // variable (global_debug_level) that can be set according to how much
  51. // debug information one would like to get when using DiffPrint (see
  52. // below for further details).
  53. #ifndef _TOOLS_HH_
  54. #define _TOOLS_HH_
  55. #ifdef HAVE_CONFIG_H
  56. #include "config.h"
  57. #endif // HAVE_CONFIG_H
  58. #include <stdio.h>
  59. #include <stdarg.h>
  60. #include <stdlib.h>
  61. #include <sys/time.h>
  62. #include <unistd.h>
  63. // Defines the various debug levels
  64. #define DEBUG_NEVER            11
  65. #define DEBUG_LOTS_DETAILS     10
  66. #define DEBUG_MORE_DETAILS      8
  67. #define DEBUG_DETAILS           6
  68. #define DEBUG_SOME_DETAILS      4
  69. #define DEBUG_NO_DETAILS        3
  70. #define DEBUG_IMPORTANT         2
  71. #define DEBUG_ALWAYS            1
  72. // Defines the default debug level
  73. #ifdef NS_DIFFUSION
  74. #define DEBUG_DEFAULT           0
  75. #else
  76. #define DEBUG_DEFAULT           1
  77. #endif // NS_DIFFUSION
  78. extern int global_debug_level;
  79. // SetSeed sets the random number generator's seed with the timeval
  80. // structure given in tv (which is not changed)
  81. void SetSeed(struct timeval *tv);
  82. // GetTime returns a timeval structure with the current system time
  83. void GetTime(struct timeval *tv);
  84. // GetRand returns a random number between 0 and RAND_MAX
  85. int GetRand();
  86. // DiffPrint can be used to print messages. In addition to take the
  87. // message to be printed (using the variable argument list format,
  88. // just like fprintf), DiffPrint also requires a debug level for this
  89. // particular message. This is is compared to the global debug level
  90. // and if it is below the current global debug level, the message is
  91. // sent to the logging device (usually set to stderr).
  92. void DiffPrint(int msg_debug_level, const char *fmt, ...);
  93. // Same as DiffPrint but will print the current system time before
  94. // printing the message
  95. void DiffPrintWithTime(int msg_debug_level, const char *fmt, ...);
  96. #endif // !_TOOLS_HH_