1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/*
* Copyright (c) 2017, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
//!
//! \file cm_log.h
//! \brief Contains Class CmLogger declarations.
//!
#ifndef MEDIADRIVER_AGNOSTIC_COMMON_CM_CMLOG_H_
#define MEDIADRIVER_AGNOSTIC_COMMON_CM_CMLOG_H_
#include <fstream>
#include <ostream>
#include <string>
#include <sstream>
#if (_DEBUG || _RELEASE_INTERNAL)
#define CM_LOG_ON 1
#endif
#if !(CM_LOG_ON)
#define INSERT_API_CALL_LOG()
#define TASK_LOG(_pTask)
#define DEVICE_LOG(_pDev)
#else
#include "cm_perf.h" // definition of CmTimer
typedef enum _CM_LOG_LEVEL{
CM_LOG_LEVEL_NONE = 0, // This emu must be zero.
CM_LOG_LEVEL_ERROR = 1,
CM_LOG_LEVEL_WARN = 2,
CM_LOG_LEVEL_DEBUG = 3,
CM_LOG_LEVEL_INFO = 4
}CM_LOG_LEVEL;
#define _CM_LOG(priority, msg) { \
std::ostringstream __debug_stream__; \
__debug_stream__ << msg; \
CmLogger::GetInstance().Print(priority, __FILE__, __LINE__, \
__debug_stream__.str()); \
}
#define CM_ERROR(msg) _CM_LOG(CM_LOG_LEVEL_ERROR, msg)
#define CM_WARN(msg) _CM_LOG(CM_LOG_LEVEL_WARN, msg)
#define CM_DEBUG(msg) _CM_LOG(CM_LOG_LEVEL_DEBUG, msg)
#define CM_INFO(msg) _CM_LOG(CM_LOG_LEVEL_INFO, msg)
#define INSERT_API_CALL_LOG() CmLogTimer _LogTimer(__FUNCTION__)
#define TASK_LOG(_pTask) CM_DEBUG(_pTask->Log());
#define DEVICE_LOG(_pDev) CM_DEBUG(_pDev->Log());
class CmLogger
{
/**
* \brief Pointer to the unique Logger (i.e., Singleton)
*/
static CmLogger* m_globalCmLogger;
/**
* \brief Initial part of the name of the file used for Logging.
* Date and time are automatically appended.
*/
std::string m_logFile;
/**
* \brief Stream used when logging on a file or screen
*/
std::ofstream m_streamOut;
/**
* \brief Verbosity threshold
*/
unsigned int m_verbosityLevel;
CmLogger();
~CmLogger();
/**
* \brief Method to lock in case of multithreading
*/
inline static void Lock();
/**
* \brief Method to unlock in case of multithreading
*/
inline static void Unlock();
/**
* \brief Method to get verbosity level from register key
*/
void GetVerbosityLevel();
public:
static CmLogger& GetInstance();
static void LogDataArrayHex(std::ostringstream &oss, unsigned char * data, unsigned int size );
void Print(const unsigned int verbosityLevel,
const std::string& sourceFile,
const int codeLine,
const std::string& message);
};
class CmLogTimer
{
public:
CmLogTimer(std::string str);
~CmLogTimer();
void Stop();
private:
std::string m_string;
CmTimer m_timer;
};
#endif
#endif // #ifndef MEDIADRIVER_AGNOSTIC_COMMON_CM_CMLOG_H_
|