Skip to content
Snippets Groups Projects
assertions.h 4.68 KiB
Newer Older
Cédric Roux's avatar
Cédric Roux committed
/*******************************************************************************

  Eurecom OpenAirInterface
  Copyright(c) 1999 - 2012 Eurecom

  This program is free software; you can redistribute it and/or modify it
  under the terms and conditions of the GNU General Public License,
  version 2, as published by the Free Software Foundation.

  This program is distributed in the hope 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.,
  51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.

  The full GNU General Public License is included in this distribution in
  the file called "COPYING".

  Contact Information
  Openair Admin: openair_admin@eurecom.fr
  Openair Tech : openair_tech@eurecom.fr
  Forums       : http://forums.eurecom.fr/openairinterface
  Address      : EURECOM, Campus SophiaTech, 450 Route des Chappes
                 06410 Biot FRANCE

*******************************************************************************/
#ifndef ASSERTIONS_H_
#define ASSERTIONS_H_

#include <stdint.h>
#include <inttypes.h>
Cédric Roux's avatar
Cédric Roux committed
#define DevCheck(cOND, vALUE1, vALUE2, vALUE3)                          \
do {                                                                    \
    if (!(cOND)) {                                                      \
        fprintf(stderr, "%s:%d:%s Assertion `"#cOND"` failed.\n",       \
                __FILE__, __LINE__, __FUNCTION__);                      \
        fprintf(stderr, #vALUE1": %"PRIdMAX"\n"#vALUE2": %"PRIdMAX"\n"#vALUE3": %"PRIdMAX"\n",  \
        (intmax_t)vALUE1, (intmax_t)vALUE2, (intmax_t)vALUE3);                         \
        fflush(stdout);                                                 \
        fflush(stderr);                                                 \
Cédric Roux's avatar
Cédric Roux committed
        abort();                                                        \
    }                                                                   \
} while(0)

#define DevCheck4(cOND, vALUE1, vALUE2, vALUE3, vALUE4)                 \
do {                                                                    \
    if (!(cOND)) {                                                      \
        fprintf(stderr, "%s:%d:%s\nAssertion `"#cOND"` failed.\n",      \
Cédric Roux's avatar
Cédric Roux committed
                __FILE__, __LINE__, __FUNCTION__);                      \
        fprintf(stderr, #vALUE1": %"PRIdMAX"\n"#vALUE2": %"PRIdMAX"\n"#vALUE3": %"PRIdMAX"\n"   \
        #vALUE4": %"PRIdMAX"\n",                                                \
        (intmax_t)vALUE1, (intmax_t)vALUE2, (intmax_t)vALUE3, (intmax_t)vALUE4);            \
        fflush(stdout);                                                 \
        fflush(stderr);                                                 \
Cédric Roux's avatar
Cédric Roux committed
        exit(EXIT_FAILURE);                                             \
    }                                                                   \
} while(0)

#define DevParam(vALUE1, vALUE2, vALUE3)    \
    DevCheck(0 == 1, vALUE1, vALUE2, vALUE3)

#define DevAssert(cOND)                                                 \
do {                                                                    \
    if (!(cOND))    {                                                   \
        fprintf(stderr, "%s:%d:%s Assertion `"#cOND"` failed\n",        \
Cédric Roux's avatar
Cédric Roux committed
        __FILE__, __LINE__, __FUNCTION__);                              \
        fflush(stdout);                                                 \
        fflush(stderr);                                                 \
Cédric Roux's avatar
Cédric Roux committed
        abort();                                                        \
    }                                                                   \
} while(0)

#define DevMessage(mESSAGE)                                             \
do {                                                                    \
    fprintf(stderr, "%s:%d:%s Execution interrupted: `"#mESSAGE"`.\n",  \
    __FILE__, __LINE__, __FUNCTION__);                                  \
    fflush(stdout);                                                 \
    fflush(stderr);                                                     \
Cédric Roux's avatar
Cédric Roux committed
    abort();                                                            \
} while(0)

#endif /* ASSERTIONS_H_ */