2007-02-16 09:00:22 +01:00
|
|
|
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2006 INRIA
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
|
* published by the Free Software Foundation;
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*
|
|
|
|
|
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
|
|
|
|
|
*/
|
|
|
|
|
#ifndef ASSERT_H
|
|
|
|
|
#define ASSERT_H
|
|
|
|
|
|
|
|
|
|
#ifdef NS3_ASSERT_ENABLE
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
2007-08-08 12:33:14 +02:00
|
|
|
/**
|
2008-01-10 07:31:40 -08:00
|
|
|
* \ingroup core
|
2008-05-29 23:24:10 -07:00
|
|
|
* \defgroup debugging Debugging
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* \ingroup debugging
|
2007-08-08 12:33:14 +02:00
|
|
|
* \defgroup assert Assert
|
2008-05-29 23:24:10 -07:00
|
|
|
*
|
2007-08-08 12:33:14 +02:00
|
|
|
* \brief assert functions and macros
|
|
|
|
|
*
|
|
|
|
|
* The assert macros are used to verify
|
|
|
|
|
* at runtime that a certain condition is true. If it is
|
|
|
|
|
* not true, the program halts. These checks are built
|
|
|
|
|
* into the program only in debugging builds. They are
|
|
|
|
|
* removed in optimized builds.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-02-16 09:00:22 +01:00
|
|
|
/**
|
|
|
|
|
* \ingroup assert
|
|
|
|
|
* \param condition condition to verifiy.
|
|
|
|
|
*
|
|
|
|
|
* At runtime, in debugging builds, if this condition is not
|
|
|
|
|
* true, the program prints the source file, line number and
|
2008-07-29 11:19:16 -07:00
|
|
|
* unverified condition and halts by dereferencing a null pointer.
|
2007-02-16 09:00:22 +01:00
|
|
|
*/
|
2007-02-21 20:07:39 +01:00
|
|
|
#define NS_ASSERT(condition) \
|
|
|
|
|
do \
|
2007-02-16 09:00:22 +01:00
|
|
|
{ \
|
2007-02-21 20:07:39 +01:00
|
|
|
if (!(condition)) \
|
|
|
|
|
{ \
|
2007-08-01 09:38:09 +02:00
|
|
|
std::cerr << "assert failed. file=" << __FILE__ << \
|
2007-02-21 20:07:39 +01:00
|
|
|
", line=" << __LINE__ << ", cond=\""#condition << \
|
|
|
|
|
"\"" << std::endl; \
|
2008-07-29 11:19:16 -07:00
|
|
|
int *a = 0; \
|
|
|
|
|
*a = 0; \
|
2007-02-21 20:07:39 +01:00
|
|
|
} \
|
|
|
|
|
} \
|
|
|
|
|
while (false)
|
|
|
|
|
|
2007-02-16 09:00:22 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \ingroup assert
|
|
|
|
|
* \param condition condition to verifiy.
|
|
|
|
|
* \param message message to output
|
|
|
|
|
*
|
|
|
|
|
* At runtime, in debugging builds, if this condition is not
|
|
|
|
|
* true, the program prints the message to output and
|
2008-07-29 11:19:16 -07:00
|
|
|
* halts by dereferencing a null pointer.
|
2007-02-16 09:00:22 +01:00
|
|
|
*/
|
2007-02-21 20:07:39 +01:00
|
|
|
#define NS_ASSERT_MSG(condition, message) \
|
|
|
|
|
do \
|
|
|
|
|
{ \
|
|
|
|
|
if (!(condition)) \
|
|
|
|
|
{ \
|
2007-08-01 09:38:09 +02:00
|
|
|
std::cerr << message << std::endl; \
|
2008-07-29 11:19:16 -07:00
|
|
|
int *a = 0; \
|
|
|
|
|
*a = 0; \
|
2007-02-21 20:07:39 +01:00
|
|
|
} \
|
|
|
|
|
} \
|
|
|
|
|
while (false)
|
2007-02-16 09:00:22 +01:00
|
|
|
|
|
|
|
|
#else /* NS3_ASSERT_ENABLE */
|
|
|
|
|
|
|
|
|
|
#define NS_ASSERT(cond)
|
|
|
|
|
#define NS_ASSERT_MSG(cond,msg)
|
|
|
|
|
|
|
|
|
|
#endif /* NS3_ASSERT_ENABLE */
|
|
|
|
|
|
|
|
|
|
#endif /* ASSERT_H */
|