[DEV] update Log interafce
This commit is contained in:
parent
ccaa044058
commit
5dff6c1e8e
@ -12,16 +12,7 @@
|
|||||||
namespace drain {
|
namespace drain {
|
||||||
int32_t getLogId();
|
int32_t getLogId();
|
||||||
};
|
};
|
||||||
// TODO : Review this problem of multiple intanciation of "std::stringbuf sb"
|
#define DRAIN_BASE(info,data) TK_LOG_BASE(drain::getLogId(),info,data)
|
||||||
#define DRAIN_BASE(info,data) \
|
|
||||||
do { \
|
|
||||||
if (info <= etk::log::getLevel(drain::getLogId())) { \
|
|
||||||
std::stringbuf sb; \
|
|
||||||
std::ostream tmpStream(&sb); \
|
|
||||||
tmpStream << data; \
|
|
||||||
etk::log::logStream(drain::getLogId(), info, __LINE__, __class__, __func__, tmpStream); \
|
|
||||||
} \
|
|
||||||
} while(0)
|
|
||||||
|
|
||||||
#define DRAIN_CRITICAL(data) DRAIN_BASE(1, data)
|
#define DRAIN_CRITICAL(data) DRAIN_BASE(1, data)
|
||||||
#define DRAIN_ERROR(data) DRAIN_BASE(2, data)
|
#define DRAIN_ERROR(data) DRAIN_BASE(2, data)
|
||||||
|
10
test/channelOrder.cpp
Normal file
10
test/channelOrder.cpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
/** @file
|
||||||
|
* @author Edouard DUPIN
|
||||||
|
* @copyright 2015, Edouard DUPIN, all right reserved
|
||||||
|
* @license APACHE v2.0 (see license file)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <test/debug.h>
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
#include <drain/process.h>
|
||||||
|
|
15
test/debug.cpp
Normal file
15
test/debug.cpp
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* @author Edouard DUPIN
|
||||||
|
*
|
||||||
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
|
*
|
||||||
|
* @license GPL v3 (see license file)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "debug.h"
|
||||||
|
|
||||||
|
int32_t appl::getLogId() {
|
||||||
|
static int32_t g_val = etk::log::registerInstance("test");
|
||||||
|
return g_val;
|
||||||
|
}
|
||||||
|
|
43
test/debug.h
Normal file
43
test/debug.h
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
/**
|
||||||
|
* @author Edouard DUPIN
|
||||||
|
*
|
||||||
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
|
*
|
||||||
|
* @license GPL v3 (see license file)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __APPL_DEBUG_H__
|
||||||
|
#define __APPL_DEBUG_H__
|
||||||
|
|
||||||
|
#include <etk/log.h>
|
||||||
|
|
||||||
|
namespace appl {
|
||||||
|
int32_t getLogId();
|
||||||
|
};
|
||||||
|
|
||||||
|
#define APPL_BASE(info,data) TK_LOG_BASE(appl::getLogId(),info,data)
|
||||||
|
|
||||||
|
#define APPL_CRITICAL(data) APPL_BASE(1, data)
|
||||||
|
#define APPL_ERROR(data) APPL_BASE(2, data)
|
||||||
|
#define APPL_WARNING(data) APPL_BASE(3, data)
|
||||||
|
#ifdef DEBUG
|
||||||
|
#define APPL_INFO(data) APPL_BASE(4, data)
|
||||||
|
#define APPL_DEBUG(data) APPL_BASE(5, data)
|
||||||
|
#define APPL_VERBOSE(data) APPL_BASE(6, data)
|
||||||
|
#define APPL_TODO(data) APPL_BASE(4, "TODO : " << data)
|
||||||
|
#else
|
||||||
|
#define APPL_INFO(data) do { } while(false)
|
||||||
|
#define APPL_DEBUG(data) do { } while(false)
|
||||||
|
#define APPL_VERBOSE(data) do { } while(false)
|
||||||
|
#define APPL_TODO(data) do { } while(false)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define APPL_ASSERT(cond,data) \
|
||||||
|
do { \
|
||||||
|
if (!(cond)) { \
|
||||||
|
APPL_CRITICAL(data); \
|
||||||
|
assert(!#cond); \
|
||||||
|
} \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#endif
|
12
test/equalizer.cpp
Normal file
12
test/equalizer.cpp
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/** @file
|
||||||
|
* @author Edouard DUPIN
|
||||||
|
* @copyright 2015, Edouard DUPIN, all right reserved
|
||||||
|
* @license APACHE v2.0 (see license file)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <test/debug.h>
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
#include <drain/process.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
10
test/format.cpp
Normal file
10
test/format.cpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
/** @file
|
||||||
|
* @author Edouard DUPIN
|
||||||
|
* @copyright 2015, Edouard DUPIN, all right reserved
|
||||||
|
* @license APACHE v2.0 (see license file)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <test/debug.h>
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
#include <drain/process.h>
|
||||||
|
|
30
test/main.cpp
Normal file
30
test/main.cpp
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
/** @file
|
||||||
|
* @author Edouard DUPIN
|
||||||
|
* @copyright 2015, Edouard DUPIN, all right reserved
|
||||||
|
* @license APACHE v2.0 (see license file)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <test/debug.h>
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
|
|
||||||
|
#undef __class__
|
||||||
|
#define __class__ "test"
|
||||||
|
|
||||||
|
int main(int argc, char **argv) {
|
||||||
|
// init Google test :
|
||||||
|
::testing::InitGoogleTest(&argc, const_cast<char **>(argv));
|
||||||
|
// the only one init for etk:
|
||||||
|
etk::init(_argc, _argv);
|
||||||
|
for (int32_t iii=0; iii<_argc ; ++iii) {
|
||||||
|
std::string data = _argv[iii];
|
||||||
|
if ( data == "-h"
|
||||||
|
|| data == "--help") {
|
||||||
|
APPL_INFO("Help : ");
|
||||||
|
APPL_INFO(" ./xxx ---");
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return RUN_ALL_TESTS();
|
||||||
|
}
|
||||||
|
|
10
test/resampling.cpp
Normal file
10
test/resampling.cpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
/** @file
|
||||||
|
* @author Edouard DUPIN
|
||||||
|
* @copyright 2015, Edouard DUPIN, all right reserved
|
||||||
|
* @license APACHE v2.0 (see license file)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <test/debug.h>
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
#include <drain/process.h>
|
||||||
|
|
10
test/updateFlow.cpp
Normal file
10
test/updateFlow.cpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
/** @file
|
||||||
|
* @author Edouard DUPIN
|
||||||
|
* @copyright 2015, Edouard DUPIN, all right reserved
|
||||||
|
* @license APACHE v2.0 (see license file)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <test/debug.h>
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
#include <drain/process.h>
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user