FLImaging 7.4.14.3
Log.h
1#pragma once
2
10
11#include "FLBase.h"
12
14namespace FLImaging
15{
17 namespace Base
18 {
19 class CInternalLog;
27 typedef void(__stdcall* CLogCallbackProcType)(const wchar_t*, CFLBase*);
28
35 class FL_EXPORT CLog : public CFLBase
36 {
37 protected:
46
47 public:
55 virtual ~CLog();
56
68 static const CResult Initialize();
69
79 static bool IsInitialized();
80
92 static const CResult Terminate();
93
109 static const CResult __stdcall Write(const char* pszFormat, ...);
110
128 static const CResult __stdcall Write(const CFLBase* pFLBase, const char* pszFormat, ...);
129
145 static const CResult __stdcall Write(const wchar_t* pWcsFormat, ...);
146
164 static const CResult __stdcall Write(const CFLBase* pFLBase, const wchar_t* pWcsFormat, ...);
165
183 static const CResult __stdcall WriteWithColor(uint32_t u32Color, const char* pszFormat, ...);
184
202 static const CResult __stdcall WriteWithColor(uint32_t u32Color, const wchar_t* pWcsFormat, ...);
203
204
222 static const CResult __stdcall WriteByCategory(const char* pszCategory, const char* pszFormat, ...);
223
241 static const CResult __stdcall WriteByCategory(const wchar_t* pWcsCategory, const wchar_t* pWcsFormat, ...);
242
243
263 static const CResult __stdcall WriteWithColorByCategory(const char* pszCategory, uint32_t u32Color, const char* pszFormat, ...);
264
284 static const CResult __stdcall WriteWithColorByCategory(const wchar_t* pWcsCategory, uint32_t u32Color, const wchar_t* pWcsFormat, ...);
285
286
298 static const CResult SetLogBufferSize(int64_t i64BufferSize = 65536);
299
300
310 static int64_t GetLogBufferSize();
311
312
322 static void SetLogPath(const wchar_t* pWcsLogPath = nullptr);
323
324
334 static const wchar_t* GetLogPathName();
335
345 static const wchar_t* GetLogFileName();
346
356 static const wchar_t* GetLogFileNameWithPath();
357
373 static void SetLogCallback(CLogCallbackProcType pCallback, CFLBase* pReceiver);
374
385
398
399 DeclareGetClassType();
400
401 private:
402 static CLog* GetInstance();
403
404 CInternalLog* m_pInternal;
405 };
406 }
407}
408
Top-level base class of FLImaging.
Definition FLBase.h:36
CFLBase()
Default constructor.
static const wchar_t * GetLogFileName()
Get log save file name.
static CFLBase * GetReceiver()
Return log callback receive object pointer.
static const CResult __stdcall Write(const CFLBase *pFLBase, const char *pszFormat,...)
Writes a log entry.
static const CResult __stdcall WriteWithColor(uint32_t u32Color, const wchar_t *pWcsFormat,...)
Write log with specified color.
static bool IsInitialized()
Get initialization status.
static const wchar_t * GetLogFileNameWithPath()
Get log save file name including path.
static const CResult __stdcall Write(const wchar_t *pWcsFormat,...)
Write log.
static const CResult __stdcall WriteWithColor(uint32_t u32Color, const char *pszFormat,...)
Write log with specified color.
static const CResult __stdcall Write(const char *pszFormat,...)
Write log.
static const CResult __stdcall Write(const CFLBase *pFLBase, const wchar_t *pWcsFormat,...)
Writes a log entry.
static int64_t GetLogBufferSize()
Get size of buffer to create when writing a log.
static const CResult Initialize()
Initialize.
static CLogCallbackProcType GetLogCallback()
Set log callback.
CLog()
Constructor.
static const CResult __stdcall WriteByCategory(const wchar_t *pWcsCategory, const wchar_t *pWcsFormat,...)
Write log by specified categories.
static const CResult __stdcall WriteWithColorByCategory(const char *pszCategory, uint32_t u32Color, const char *pszFormat,...)
Write log with specified color and category.
static const CResult Terminate()
Terminate the log system. After explicitly calling the function, the log recording function will no l...
static const wchar_t * GetLogPathName()
Get log save path.
static void SetLogCallback(CLogCallbackProcType pCallback, CFLBase *pReceiver)
Set log callback.
static void SetLogPath(const wchar_t *pWcsLogPath=nullptr)
Specify log storage path.
static const CResult SetLogBufferSize(int64_t i64BufferSize=65536)
Set the size of the buffer to create when writing a log.
static const CResult __stdcall WriteWithColorByCategory(const wchar_t *pWcsCategory, uint32_t u32Color, const wchar_t *pWcsFormat,...)
Write log with specified color and category.
static const CResult __stdcall WriteByCategory(const char *pszCategory, const char *pszFormat,...)
Write log by specified categories.
FLImaging module execution result object.
Definition ResultsDef.h:1676
Definition AESCryptography.h:18
void(__stdcall * CLogCallbackProcType)(const wchar_t *, CFLBase *)
Log Callback Procedure Type.
Definition Log.h:27