src/core/model/log.h
author Josh Pelkey <jpelkey@gatech.edu>
Fri, 13 May 2011 14:52:27 -0400
changeset 7169 358f71a624d8
parent 7017 f288fc1bb2be
child 7252 c8200621e252
permissions -rw-r--r--
core coding style changes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     2
/*
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     3
 * Copyright (c) 2006,2007 INRIA
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     4
 *
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License version 2 as
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     7
 * published by the Free Software Foundation;
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     8
 *
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    12
 * GNU General Public License for more details.
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    13
 *
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    17
 *
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    18
 * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    19
 */
1506
3c8b23550e6a disable log unless debug build
Craig Dowell <craigdo@ee.washington.edu>
parents: 1504
diff changeset
    20
3c8b23550e6a disable log unless debug build
Craig Dowell <craigdo@ee.washington.edu>
parents: 1504
diff changeset
    21
#ifndef __LOG_H__
3c8b23550e6a disable log unless debug build
Craig Dowell <craigdo@ee.washington.edu>
parents: 1504
diff changeset
    22
#define __LOG_H__
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    23
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    24
#include <string>
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    25
#include <iostream>
4353
596eb8034443 bug 552: build with gcc 4.4
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3530
diff changeset
    26
#include <stdint.h>
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    27
3483
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    28
namespace ns3 {
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    29
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    30
enum LogLevel {
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    31
  LOG_NONE           = 0x00000000, // no logging
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    32
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    33
  LOG_ERROR          = 0x00000001, // serious error messages only
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    34
  LOG_LEVEL_ERROR    = 0x00000001,
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    35
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    36
  LOG_WARN           = 0x00000002, // warning messages
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    37
  LOG_LEVEL_WARN     = 0x00000003,
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    38
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    39
  LOG_DEBUG          = 0x00000004, // rare ad-hoc debug messages
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    40
  LOG_LEVEL_DEBUG    = 0x00000007,
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    41
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    42
  LOG_INFO           = 0x00000008, // informational messages (e.g., banners)
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    43
  LOG_LEVEL_INFO     = 0x0000000f,
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    44
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    45
  LOG_FUNCTION       = 0x00000010, // function tracing
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    46
  LOG_LEVEL_FUNCTION = 0x0000001f, 
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    47
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    48
  LOG_LOGIC          = 0x00000020, // control flow tracing within functions
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    49
  LOG_LEVEL_LOGIC    = 0x0000003f,
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    50
5522
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
    51
  LOG_ALL            = 0x1fffffff, // print everything
3483
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    52
  LOG_LEVEL_ALL      = LOG_ALL,
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    53
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    54
  LOG_PREFIX_FUNC    = 0x80000000, // prefix all trace prints with function
5522
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
    55
  LOG_PREFIX_TIME    = 0x40000000, // prefix all trace prints with simulation time
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
    56
  LOG_PREFIX_NODE    = 0x20000000  // prefix all trace prints with simulation node
3483
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    57
};
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    58
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    59
/**
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    60
 * \param name a log component name
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    61
 * \param level a logging level
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    62
 * \ingroup logging
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    63
 *
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    64
 * Enable the logging output associated with that log component.
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    65
 * The logging output can be later disabled with a call
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    66
 * to ns3::LogComponentDisable.
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    67
 *
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    68
 * Same as running your program with the NS_LOG environment
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    69
 * variable set as NS_LOG='name=level'
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    70
 */
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    71
void LogComponentEnable (char const *name, enum LogLevel level);
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    72
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    73
/**
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    74
 * \param level a logging level
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    75
 * \ingroup logging
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    76
 *
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    77
 * Enable the logging output for all registered log components.
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    78
 *
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    79
 * Same as running your program with the NS_LOG environment
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    80
 * variable set as NS_LOG='*=level'
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    81
 */
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    82
void LogComponentEnableAll (enum LogLevel level);
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    83
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    84
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    85
/**
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    86
 * \param name a log component name
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    87
 * \param level a logging level
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    88
 * \ingroup logging
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    89
 *
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    90
 * Disable the logging output associated with that log component.
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    91
 * The logging output can be later re-enabled with a call
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    92
 * to ns3::LogComponentEnable.
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    93
 */
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    94
void LogComponentDisable (char const *name, enum LogLevel level);
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    95
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    96
/**
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    97
 * \param level a logging level
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    98
 * \ingroup logging
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
    99
 *
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
   100
 * Disable all logging for all components.
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
   101
 */
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
   102
void LogComponentDisableAll (enum LogLevel level);
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
   103
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
   104
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
   105
} // namespace ns3
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
   106
7ce1353e63ba Make the LogComponent* utility functions available for optimized builds as well, albeit as noops. Closes #258.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3182
diff changeset
   107
2978
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   108
#ifdef NS3_LOG_ENABLE
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   109
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   110
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   111
/**
3182
61fe7fe81ebd Doxygen organization
Tom Henderson <tomh@tomh.org>
parents: 3159
diff changeset
   112
 * \ingroup debugging
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   113
 * \defgroup logging Logging
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   114
 * \brief Logging functions and macros
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   115
 *
2346
ff124e6986a7 Update NS_LOG documentation
Tom Henderson <tomh@tomh.org>
parents: 2294
diff changeset
   116
 * LOG functionality: macros which allow developers to
ff124e6986a7 Update NS_LOG documentation
Tom Henderson <tomh@tomh.org>
parents: 2294
diff changeset
   117
 * send information out on screen. All logging messages 
ff124e6986a7 Update NS_LOG documentation
Tom Henderson <tomh@tomh.org>
parents: 2294
diff changeset
   118
 * are disabled by default. To enable selected logging 
ff124e6986a7 Update NS_LOG documentation
Tom Henderson <tomh@tomh.org>
parents: 2294
diff changeset
   119
 * messages, use the ns3::LogComponentEnable
ff124e6986a7 Update NS_LOG documentation
Tom Henderson <tomh@tomh.org>
parents: 2294
diff changeset
   120
 * function or use the NS_LOG environment variable 
1783
36472385a1cc NS_LOG parsing changes to address bug 91
Craig Dowell <craigdo@ee.washington.edu>
parents: 1775
diff changeset
   121
 *
2982
a7e3e54c7e94 change NS_LOG= syntax and default behavior to be more useful by default.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2981
diff changeset
   122
 * Use the environment variable NS_LOG to define a ':'-separated list of
2346
ff124e6986a7 Update NS_LOG documentation
Tom Henderson <tomh@tomh.org>
parents: 2294
diff changeset
   123
 * logging components to enable. For example (using bash syntax), 
2983
e3a416fe9dd5 NS_LOG_FUNCTION -> NS_LOG_FUNCTION_NOARGS and NS_LOG_PARAMS -> NS_LOG_FUNCTION
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2982
diff changeset
   124
 * NS_LOG="OlsrAgent" would enable one component at all log levels. 
e3a416fe9dd5 NS_LOG_FUNCTION -> NS_LOG_FUNCTION_NOARGS and NS_LOG_PARAMS -> NS_LOG_FUNCTION
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2982
diff changeset
   125
 * NS_LOG="OlsrAgent:Ipv4L3Protocol" would enable two components, 
7169
358f71a624d8 core coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents: 7017
diff changeset
   126
 * at all log levels, etc.
2983
e3a416fe9dd5 NS_LOG_FUNCTION -> NS_LOG_FUNCTION_NOARGS and NS_LOG_PARAMS -> NS_LOG_FUNCTION
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2982
diff changeset
   127
 * NS_LOG="*" will enable all available log components at all levels.
1783
36472385a1cc NS_LOG parsing changes to address bug 91
Craig Dowell <craigdo@ee.washington.edu>
parents: 1775
diff changeset
   128
 *
2983
e3a416fe9dd5 NS_LOG_FUNCTION -> NS_LOG_FUNCTION_NOARGS and NS_LOG_PARAMS -> NS_LOG_FUNCTION
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2982
diff changeset
   129
 * To control more selectively the log levels for each component, use
e3a416fe9dd5 NS_LOG_FUNCTION -> NS_LOG_FUNCTION_NOARGS and NS_LOG_PARAMS -> NS_LOG_FUNCTION
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2982
diff changeset
   130
 * this syntax: NS_LOG='Component1=func|warn:Component2=error|debug'
e3a416fe9dd5 NS_LOG_FUNCTION -> NS_LOG_FUNCTION_NOARGS and NS_LOG_PARAMS -> NS_LOG_FUNCTION
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2982
diff changeset
   131
 * This example would enable the 'func', and 'warn' log
1783
36472385a1cc NS_LOG parsing changes to address bug 91
Craig Dowell <craigdo@ee.washington.edu>
parents: 1775
diff changeset
   132
 * levels for 'Component1' and the 'error' and 'debug' log levels
36472385a1cc NS_LOG parsing changes to address bug 91
Craig Dowell <craigdo@ee.washington.edu>
parents: 1775
diff changeset
   133
 * for 'Component2'.  The wildcard can be used here as well.  For example
36472385a1cc NS_LOG parsing changes to address bug 91
Craig Dowell <craigdo@ee.washington.edu>
parents: 1775
diff changeset
   134
 * NS_LOG='*=level_all|prefix' would enable all log levels and prefix all
36472385a1cc NS_LOG parsing changes to address bug 91
Craig Dowell <craigdo@ee.washington.edu>
parents: 1775
diff changeset
   135
 * prints with the component and function names.
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   136
 */
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   137
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   138
/**
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   139
 * \ingroup logging
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   140
 * \param name a string
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   141
 *
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   142
 * Define a Log component with a specific name. This macro
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   143
 * should be used at the top of every file in which you want 
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   144
 * to use the NS_LOG macro. This macro defines a new
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   145
 * "log component" which can be later selectively enabled
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   146
 * or disabled with the ns3::LogComponentEnable and 
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   147
 * ns3::LogComponentDisable functions or with the NS_LOG
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   148
 * environment variable.
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   149
 */
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   150
#define NS_LOG_COMPONENT_DEFINE(name)                           \
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   151
  static ns3::LogComponent g_log = ns3::LogComponent (name)
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   152
3095
ea368d066bea add NS_LOG_APPEND_CONTEXT
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3007
diff changeset
   153
#define NS_LOG_APPEND_TIME_PREFIX                               \
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   154
  if (g_log.IsEnabled (ns3::LOG_PREFIX_TIME))                   \
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   155
    {                                                           \
3495
67786573098a use fully-qualified c++ typename to allow using macros outside of the ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3483
diff changeset
   156
      ns3::LogTimePrinter printer = ns3::LogGetTimePrinter ();  \
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   157
      if (printer != 0)                                         \
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   158
        {                                                       \
7169
358f71a624d8 core coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents: 7017
diff changeset
   159
          (*printer)(std::clog);                               \
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   160
          std::clog << " ";                                     \
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   161
        }                                                       \
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   162
    }
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   163
5522
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   164
#define NS_LOG_APPEND_NODE_PREFIX                               \
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   165
  if (g_log.IsEnabled (ns3::LOG_PREFIX_NODE))                   \
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   166
    {                                                           \
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   167
      ns3::LogNodePrinter printer = ns3::LogGetNodePrinter ();  \
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   168
      if (printer != 0)                                         \
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   169
        {                                                       \
7169
358f71a624d8 core coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents: 7017
diff changeset
   170
          (*printer)(std::clog);                               \
5522
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   171
          std::clog << " ";                                     \
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   172
        }                                                       \
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   173
    }
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   174
3095
ea368d066bea add NS_LOG_APPEND_CONTEXT
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3007
diff changeset
   175
#define NS_LOG_APPEND_FUNC_PREFIX                               \
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   176
  if (g_log.IsEnabled (ns3::LOG_PREFIX_FUNC))                   \
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   177
    {                                                           \
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   178
      std::clog << g_log.Name () << ":" <<                      \
7169
358f71a624d8 core coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents: 7017
diff changeset
   179
      __FUNCTION__ << "(): ";                                 \
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   180
    }                                                           \
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   181
3095
ea368d066bea add NS_LOG_APPEND_CONTEXT
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3007
diff changeset
   182
#ifndef NS_LOG_APPEND_CONTEXT
ea368d066bea add NS_LOG_APPEND_CONTEXT
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3007
diff changeset
   183
#define NS_LOG_APPEND_CONTEXT
ea368d066bea add NS_LOG_APPEND_CONTEXT
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3007
diff changeset
   184
#endif /* NS_LOG_APPEND_CONTEXT */
ea368d066bea add NS_LOG_APPEND_CONTEXT
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3007
diff changeset
   185
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   186
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   187
/**
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   188
 * \ingroup logging
1795
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   189
 * \param level the log level
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   190
 * \param msg the message to log
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   191
 *
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   192
 * This macro allows you to log an arbitrary message at a specific
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   193
 * log level. The log message is expected to be a C++ ostream
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   194
 * message such as "my string" << aNumber << "my oth stream".
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   195
 *
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   196
 * Typical usage looks like:
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   197
 * \code
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   198
 * NS_LOG (LOG_DEBUG, "a number="<<aNumber<<", anotherNumber="<<anotherNumber);
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   199
 * \endcode
820cc1254290 get rid of doxygen warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 1783
diff changeset
   200
 */
1506
3c8b23550e6a disable log unless debug build
Craig Dowell <craigdo@ee.washington.edu>
parents: 1504
diff changeset
   201
#define NS_LOG(level, msg)                                      \
3c8b23550e6a disable log unless debug build
Craig Dowell <craigdo@ee.washington.edu>
parents: 1504
diff changeset
   202
  do                                                            \
3c8b23550e6a disable log unless debug build
Craig Dowell <craigdo@ee.washington.edu>
parents: 1504
diff changeset
   203
    {                                                           \
3c8b23550e6a disable log unless debug build
Craig Dowell <craigdo@ee.washington.edu>
parents: 1504
diff changeset
   204
      if (g_log.IsEnabled (level))                              \
3c8b23550e6a disable log unless debug build
Craig Dowell <craigdo@ee.washington.edu>
parents: 1504
diff changeset
   205
        {                                                       \
3095
ea368d066bea add NS_LOG_APPEND_CONTEXT
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3007
diff changeset
   206
          NS_LOG_APPEND_TIME_PREFIX;                            \
5522
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   207
          NS_LOG_APPEND_NODE_PREFIX;                            \
3095
ea368d066bea add NS_LOG_APPEND_CONTEXT
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3007
diff changeset
   208
          NS_LOG_APPEND_CONTEXT;                                \
ea368d066bea add NS_LOG_APPEND_CONTEXT
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3007
diff changeset
   209
          NS_LOG_APPEND_FUNC_PREFIX;                            \
1772
dd278e20e52e log verbosity changes
Craig Dowell <craigdo@ee.washington.edu>
parents: 1507
diff changeset
   210
          std::clog << msg << std::endl;                        \
1506
3c8b23550e6a disable log unless debug build
Craig Dowell <craigdo@ee.washington.edu>
parents: 1504
diff changeset
   211
        }                                                       \
3c8b23550e6a disable log unless debug build
Craig Dowell <craigdo@ee.washington.edu>
parents: 1504
diff changeset
   212
    }                                                           \
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   213
  while (false)
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   214
2980
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   215
/**
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   216
 * \ingroup logging
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   217
 * \param msg the message to log
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   218
 *
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   219
 * Use \ref NS_LOG to output a message of level LOG_ERROR.
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   220
 */
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   221
#define NS_LOG_ERROR(msg) \
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   222
  NS_LOG(ns3::LOG_ERROR, msg)
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   223
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   224
/**
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   225
 * \ingroup logging
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   226
 * \param msg the message to log
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   227
 *
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   228
 * Use \ref NS_LOG to output a message of level LOG_WARN.
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   229
 */
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   230
#define NS_LOG_WARN(msg) \
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   231
  NS_LOG(ns3::LOG_WARN, msg)
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   232
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   233
/**
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   234
 * \ingroup logging
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   235
 * \param msg the message to log
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   236
 *
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   237
 * Use \ref NS_LOG to output a message of level LOG_DEBUG.
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   238
 */
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   239
#define NS_LOG_DEBUG(msg) \
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   240
  NS_LOG(ns3::LOG_DEBUG, msg)
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   241
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   242
/**
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   243
 * \ingroup logging
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   244
 * \param msg the message to log
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   245
 *
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   246
 * Use \ref NS_LOG to output a message of level LOG_INFO.
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   247
 */
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   248
#define NS_LOG_INFO(msg) \
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   249
  NS_LOG(ns3::LOG_INFO, msg)
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   250
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   251
/**
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   252
 * \ingroup logging
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   253
 *
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   254
 * Output the name of the function.
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   255
 */
2983
e3a416fe9dd5 NS_LOG_FUNCTION -> NS_LOG_FUNCTION_NOARGS and NS_LOG_PARAMS -> NS_LOG_FUNCTION
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2982
diff changeset
   256
#define NS_LOG_FUNCTION_NOARGS()                                \
1772
dd278e20e52e log verbosity changes
Craig Dowell <craigdo@ee.washington.edu>
parents: 1507
diff changeset
   257
  do                                                            \
dd278e20e52e log verbosity changes
Craig Dowell <craigdo@ee.washington.edu>
parents: 1507
diff changeset
   258
    {                                                           \
2980
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   259
      if (g_log.IsEnabled (ns3::LOG_FUNCTION))                  \
1772
dd278e20e52e log verbosity changes
Craig Dowell <craigdo@ee.washington.edu>
parents: 1507
diff changeset
   260
        {                                                       \
3095
ea368d066bea add NS_LOG_APPEND_CONTEXT
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3007
diff changeset
   261
          NS_LOG_APPEND_TIME_PREFIX;                            \
5522
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   262
          NS_LOG_APPEND_NODE_PREFIX;                            \
3095
ea368d066bea add NS_LOG_APPEND_CONTEXT
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3007
diff changeset
   263
          NS_LOG_APPEND_CONTEXT;                                \
2980
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   264
          std::clog << g_log.Name () << ":"                     \
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   265
                    << __FUNCTION__ << "()" << std::endl;       \
1772
dd278e20e52e log verbosity changes
Craig Dowell <craigdo@ee.washington.edu>
parents: 1507
diff changeset
   266
        }                                                       \
dd278e20e52e log verbosity changes
Craig Dowell <craigdo@ee.washington.edu>
parents: 1507
diff changeset
   267
    }                                                           \
1504
36ecc970ba96 checkpoint debug to log
Craig Dowell <craigdo@ee.washington.edu>
parents: 1503
diff changeset
   268
  while (false)
36ecc970ba96 checkpoint debug to log
Craig Dowell <craigdo@ee.washington.edu>
parents: 1503
diff changeset
   269
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   270
2980
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   271
/**
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   272
 * \ingroup logging
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   273
 * \param parameters the parameters to output.
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   274
 *
2983
e3a416fe9dd5 NS_LOG_FUNCTION -> NS_LOG_FUNCTION_NOARGS and NS_LOG_PARAMS -> NS_LOG_FUNCTION
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2982
diff changeset
   275
 * If log level LOG_FUNCTION is enabled, this macro will output
2980
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   276
 * all input parameters separated by ", ".
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   277
 *
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   278
 * Typical usage looks like:
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   279
 * \code
2983
e3a416fe9dd5 NS_LOG_FUNCTION -> NS_LOG_FUNCTION_NOARGS and NS_LOG_PARAMS -> NS_LOG_FUNCTION
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2982
diff changeset
   280
 * NS_LOG_FUNCTION (aNumber<<anotherNumber);
2980
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   281
 * \endcode
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   282
 * And the output will look like:
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   283
 * \code
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   284
 * Component:Function (aNumber, anotherNumber)
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   285
 * \endcode
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   286
 */
3530
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   287
#define NS_LOG_FUNCTION(parameters)                             \
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   288
  do                                                            \
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   289
    {                                                           \
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   290
      if (g_log.IsEnabled (ns3::LOG_FUNCTION))                  \
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   291
        {                                                       \
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   292
          NS_LOG_APPEND_TIME_PREFIX;                            \
5522
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   293
          NS_LOG_APPEND_NODE_PREFIX;                            \
3530
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   294
          NS_LOG_APPEND_CONTEXT;                                \
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   295
          std::clog << g_log.Name () << ":"                     \
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   296
                    << __FUNCTION__ << "(";                     \
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   297
          ns3::ParameterLogger (std::clog)  << parameters;      \
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   298
          std::clog << ")" << std::endl;                        \
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   299
        }                                                       \
b1744fac67da fully qualify class name to use macro outside of ns3 namespace.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3495
diff changeset
   300
    }                                                           \
1828
6ab68edddf45 nicer logging of parameters (bug 79 patch from Gustavo)
Tom Henderson <tomh@tomh.org>
parents: 1795
diff changeset
   301
  while (false)
6ab68edddf45 nicer logging of parameters (bug 79 patch from Gustavo)
Tom Henderson <tomh@tomh.org>
parents: 1795
diff changeset
   302
6ab68edddf45 nicer logging of parameters (bug 79 patch from Gustavo)
Tom Henderson <tomh@tomh.org>
parents: 1795
diff changeset
   303
2980
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   304
/**
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   305
 * \ingroup logging
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   306
 * \param msg the message to log
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   307
 *
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   308
 * Use \ref NS_LOG to output a message of level LOG_LOGIC
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   309
 */
1503
53dd8f414ba6 sorting out logging
Craig Dowell <craigdo@ee.washington.edu>
parents: 1498
diff changeset
   310
#define NS_LOG_LOGIC(msg) \
1507
11a370eecc52 allow discrete levels
Craig Dowell <craigdo@ee.washington.edu>
parents: 1506
diff changeset
   311
  NS_LOG(ns3::LOG_LOGIC, msg)
1503
53dd8f414ba6 sorting out logging
Craig Dowell <craigdo@ee.washington.edu>
parents: 1498
diff changeset
   312
2980
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   313
/**
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   314
 * \ingroup logging
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   315
 * \param msg the message to log
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   316
 *
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   317
 * Output the requested message unconditionaly.
98b75bde4403 add doxygen.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2979
diff changeset
   318
 */
1503
53dd8f414ba6 sorting out logging
Craig Dowell <craigdo@ee.washington.edu>
parents: 1498
diff changeset
   319
#define NS_LOG_UNCOND(msg)              \
53dd8f414ba6 sorting out logging
Craig Dowell <craigdo@ee.washington.edu>
parents: 1498
diff changeset
   320
  do                                    \
53dd8f414ba6 sorting out logging
Craig Dowell <craigdo@ee.washington.edu>
parents: 1498
diff changeset
   321
    {                                   \
53dd8f414ba6 sorting out logging
Craig Dowell <craigdo@ee.washington.edu>
parents: 1498
diff changeset
   322
      std::clog << msg << std::endl;    \
53dd8f414ba6 sorting out logging
Craig Dowell <craigdo@ee.washington.edu>
parents: 1498
diff changeset
   323
    }                                   \
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   324
  while (false)
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   325
7017
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   326
#else /* LOG_ENABLE */
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   327
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   328
#define NS_LOG_COMPONENT_DEFINE(component)
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   329
#define NS_LOG(level, msg)
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   330
#define NS_LOG_ERROR(msg)
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   331
#define NS_LOG_WARN(msg)
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   332
#define NS_LOG_DEBUG(msg)
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   333
#define NS_LOG_INFO(msg)
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   334
#define NS_LOG_FUNCTION_NOARGS()
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   335
#define NS_LOG_FUNCTION(msg)
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   336
#define NS_LOG_LOGIC(msg)
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   337
#define NS_LOG_UNCOND(msg)
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   338
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   339
#endif /* LOG_ENABLE */
f288fc1bb2be making NS3_LOGGING_ENABLE control macro expansion and nothing more
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6821
diff changeset
   340
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   341
namespace ns3 {
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   342
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   343
/**
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   344
 * \ingroup logging
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   345
 *
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   346
 * Print the list of logging messages available.
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   347
 * Same as running your program with the NS_LOG environment
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   348
 * variable set as NS_LOG=print-list
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   349
 */
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   350
void LogComponentPrintList (void);
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   351
7169
358f71a624d8 core coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents: 7017
diff changeset
   352
typedef void (*LogTimePrinter)(std::ostream &os);
358f71a624d8 core coding style changes
Josh Pelkey <jpelkey@gatech.edu>
parents: 7017
diff changeset
   353
typedef void (*LogNodePrinter)(std::ostream &os);
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   354
3005
cc521f35f033 avoid segfault when setting NS_LOG=*
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2986
diff changeset
   355
void LogSetTimePrinter (LogTimePrinter);
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   356
LogTimePrinter LogGetTimePrinter(void);
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   357
5522
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   358
void LogSetNodePrinter (LogNodePrinter);
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   359
LogNodePrinter LogGetNodePrinter(void);
0d1a06c5b285 Print node context in log messages
Guillaume Seguin <guillaume@segu.in>
parents: 4353
diff changeset
   360
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   361
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   362
class LogComponent {
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   363
public:
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   364
  LogComponent (char const *name);
1783
36472385a1cc NS_LOG parsing changes to address bug 91
Craig Dowell <craigdo@ee.washington.edu>
parents: 1775
diff changeset
   365
  void EnvVarCheck (char const *name);
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   366
  bool IsEnabled (enum LogLevel level) const;
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   367
  bool IsNoneEnabled (void) const;
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   368
  void Enable (enum LogLevel level);
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   369
  void Disable (enum LogLevel level);
1772
dd278e20e52e log verbosity changes
Craig Dowell <craigdo@ee.washington.edu>
parents: 1507
diff changeset
   370
  char const *Name (void) const;
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   371
private:
1772
dd278e20e52e log verbosity changes
Craig Dowell <craigdo@ee.washington.edu>
parents: 1507
diff changeset
   372
  int32_t     m_levels;
dd278e20e52e log verbosity changes
Craig Dowell <craigdo@ee.washington.edu>
parents: 1507
diff changeset
   373
  char const *m_name;
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   374
};
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   375
2978
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   376
class ParameterLogger : public std::ostream
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   377
{
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   378
  int m_itemNumber;
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   379
  std::ostream &m_os;
2978
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   380
public:
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   381
  ParameterLogger (std::ostream &os);
2978
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   382
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   383
  template<typename T>
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   384
  ParameterLogger& operator<< (T param)
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   385
  {
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   386
    switch (m_itemNumber)
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   387
      {
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   388
      case 0: // first parameter
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   389
        m_os << param;
2978
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   390
        break;
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   391
      default: // parameter following a previous parameter
2979
3d39dd617b8d add time logging support
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2978
diff changeset
   392
        m_os << ", " << param;
2978
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   393
        break;
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   394
      }
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   395
    m_itemNumber++;
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   396
    return *this;
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   397
  }
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   398
};
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   399
1498
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   400
} // namespace ns3
520bc8457799 log rides along for free
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
   401
2978
c93e1d0d6916 cleanup to avoid too many #ifdefs
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2976
diff changeset
   402
1506
3c8b23550e6a disable log unless debug build
Craig Dowell <craigdo@ee.washington.edu>
parents: 1504
diff changeset
   403
#endif // __LOG_H__