mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
4.5 KiB
C
86 lines
4.5 KiB
C
4 years ago
|
/**
|
||
11 years ago
|
*
|
||
4 years ago
|
* \section COPYRIGHT
|
||
11 years ago
|
*
|
||
4 years ago
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
11 years ago
|
*
|
||
4 years ago
|
* By using this file, you agree to the terms and conditions set
|
||
|
* forth in the LICENSE file which can be found at the top level of
|
||
|
* the distribution.
|
||
11 years ago
|
*
|
||
|
*/
|
||
|
|
||
10 years ago
|
/******************************************************************************
|
||
|
* File: debug.h
|
||
|
*
|
||
|
* Description: Debug output utilities.
|
||
|
*
|
||
|
* Reference:
|
||
|
*****************************************************************************/
|
||
|
|
||
4 years ago
|
#ifndef SRSRAN_DEBUG_H
|
||
|
#define SRSRAN_DEBUG_H
|
||
11 years ago
|
|
||
6 years ago
|
#include "phy_logger.h"
|
||
4 years ago
|
#include "srsran/config.h"
|
||
6 years ago
|
#include <stdio.h>
|
||
7 years ago
|
|
||
4 years ago
|
#define SRSRAN_VERBOSE_DEBUG 2
|
||
|
#define SRSRAN_VERBOSE_INFO 1
|
||
|
#define SRSRAN_VERBOSE_NONE 0
|
||
11 years ago
|
|
||
|
#include <sys/time.h>
|
||
4 years ago
|
SRSRAN_API void get_time_interval(struct timeval* tdata);
|
||
11 years ago
|
|
||
4 years ago
|
#define SRSRAN_DEBUG_ENABLED 1
|
||
11 years ago
|
|
||
4 years ago
|
SRSRAN_API extern int srsran_verbose;
|
||
|
SRSRAN_API extern int handler_registered;
|
||
11 years ago
|
|
||
4 years ago
|
#define SRSRAN_VERBOSE_ISINFO() (srsran_verbose >= SRSRAN_VERBOSE_INFO)
|
||
|
#define SRSRAN_VERBOSE_ISDEBUG() (srsran_verbose >= SRSRAN_VERBOSE_DEBUG)
|
||
|
#define SRSRAN_VERBOSE_ISNONE() (srsran_verbose == SRSRAN_VERBOSE_NONE)
|
||
11 years ago
|
|
||
4 years ago
|
#define PRINT_DEBUG srsran_verbose = SRSRAN_VERBOSE_DEBUG
|
||
|
#define PRINT_INFO srsran_verbose = SRSRAN_VERBOSE_INFO
|
||
|
#define PRINT_NONE srsran_verbose = SRSRAN_VERBOSE_NONE
|
||
11 years ago
|
|
||
6 years ago
|
#define DEBUG(_fmt, ...) \
|
||
|
do { \
|
||
4 years ago
|
if (SRSRAN_DEBUG_ENABLED && srsran_verbose >= SRSRAN_VERBOSE_DEBUG && !handler_registered) { \
|
||
4 years ago
|
fprintf(stdout, "[DEBUG]: " _fmt "\n", ##__VA_ARGS__); \
|
||
6 years ago
|
} else { \
|
||
4 years ago
|
srsran_phy_log_print(LOG_LEVEL_DEBUG_S, _fmt, ##__VA_ARGS__); \
|
||
6 years ago
|
} \
|
||
|
} while (0)
|
||
11 years ago
|
|
||
6 years ago
|
#define INFO(_fmt, ...) \
|
||
|
do { \
|
||
4 years ago
|
if (SRSRAN_DEBUG_ENABLED && srsran_verbose >= SRSRAN_VERBOSE_INFO && !handler_registered) { \
|
||
4 years ago
|
fprintf(stdout, "[INFO]: " _fmt "\n", ##__VA_ARGS__); \
|
||
6 years ago
|
} else { \
|
||
4 years ago
|
srsran_phy_log_print(LOG_LEVEL_INFO_S, _fmt, ##__VA_ARGS__); \
|
||
6 years ago
|
} \
|
||
|
} while (0)
|
||
11 years ago
|
|
||
5 years ago
|
#if CMAKE_BUILD_TYPE == Debug
|
||
7 years ago
|
/* In debug mode, it prints out the */
|
||
6 years ago
|
#define ERROR(_fmt, ...) \
|
||
|
do { \
|
||
|
if (!handler_registered) { \
|
||
|
fprintf(stderr, "\e[31m%s.%d: " _fmt "\e[0m\n", __FILE__, __LINE__, ##__VA_ARGS__); \
|
||
|
} else { \
|
||
4 years ago
|
srsran_phy_log_print(LOG_LEVEL_ERROR_S, _fmt, ##__VA_ARGS__); \
|
||
6 years ago
|
} \
|
||
|
} while (0)
|
||
7 years ago
|
#else
|
||
5 years ago
|
#define ERROR(_fmt, ...) \
|
||
|
if (!handler_registered) { \
|
||
|
fprintf(stderr, "[ERROR in %s]:" _fmt "\n", __FUNCTION__, ##__VA_ARGS__); \
|
||
|
} else { \
|
||
4 years ago
|
srsran_phy_log_print(LOG_LEVEL_ERROR, _fmt, ##__VA_ARGS__); \
|
||
5 years ago
|
} //
|
||
7 years ago
|
#endif /* CMAKE_BUILD_TYPE==Debug */
|
||
11 years ago
|
|
||
4 years ago
|
#endif // SRSRAN_DEBUG_H
|