Commit b4c5f6ca authored by captainwong's avatar captainwong

add LOGASC for CLog

parent 6554d7ef
......@@ -101,7 +101,8 @@ public:
}
// 获取路径中最右的文件夹名称,如D:\A\B,返回B
static CString GetCurFolderFromFullPath(CString strpath){
static CString GetCurFolderFromFullPath(const CString& strpath)
{
int pos = -1;
pos = strpath.ReverseFind(_T('\\'));
if(pos != -1)
......@@ -109,8 +110,19 @@ public:
return _T("");
}
// 获取文件路径中的文件夹路径,如D:/A/B.TXT, 返回D:/A
static CString GetFolderPathFromFilePath(const CString& strpath)
{
int pos = -1;
pos = strpath.ReverseFind(_T('\\'));
if (pos != -1)
return strpath.Left(pos);
return _T("");
}
// 复制文件夹到目的,并弹出文件夹复制对话框
static BOOL CopyFolder(CString dstFolder, CString srcFolder, HWND hWnd){
static BOOL CopyFolder(const CString& dstFolder, const CString& srcFolder, HWND hWnd)
{
TCHAR szDst[MAX_PATH], szSrc[MAX_PATH];
ZeroMemory(szDst, MAX_PATH);
ZeroMemory(szSrc, MAX_PATH);
......
......@@ -164,6 +164,36 @@ public:
}
}
static void DumpAsc(const char* buff, size_t buff_len)
{
try {
CLog* plog = CLog::GetInstance();
if (plog == NULL)
return;
CLocalLock lock(&m_cs);
if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) {
size_t output_len = buff_len * 6 + 64;
wchar_t* output = new wchar_t[output_len];
output[0] = 0;
wchar_t c[64] = { 0 };
swprintf_s(c, L"len %d\n", buff_len);
wcscat_s(output, output_len, c);
for (size_t i = 0; i < buff_len; i++) {
swprintf_s(c, L"%C ", static_cast<unsigned char>(buff[i]));
wcscat_s(output, output_len, c);
if (i > 0 && (i + 1) % 16 == 0) {
wcscat_s(output, output_len, L"\n");
}
}
wcscat_s(output, output_len, L"\n");
plog->Output(output);
delete[] output;
}
} catch (...) {
assert(0);
}
}
static void WriteLog(const TCHAR* format, ...) {
try{
CLog* plog = CLog::GetInstance();
......
......@@ -10,6 +10,7 @@
#define LOGA CLog::WriteLogA
#define LOGW CLog::WriteLogW
#define LOGB(b, l) CLog::Dump(b, l)
#define LOGASC(b, l) CLog::DumpAsc(b, l)
class LogFunction {
private:
......
......@@ -15,7 +15,7 @@ protected: \
std::list<_callbackInfo *> _observerList; \
CLock _lock4ObserverList; \
public: \
void RegisterObserver(void* udata, callback cb); \
void RegisterObserver(void* udata, _callback cb); \
void UnRegisterObserver(void* udata); \
void NotifyObservers(_param_type param);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment