Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
b4c5f6ca
Commit
b4c5f6ca
authored
Oct 08, 2015
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add LOGASC for CLog
parent
6554d7ef
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
3 deletions
+46
-3
FileOper.h
FileOper.h
+14
-2
Log.h
Log.h
+30
-0
global.h
global.h
+1
-0
observer_macro.h
observer_macro.h
+1
-1
No files found.
FileOper.h
View file @
b4c5f6ca
...
...
@@ -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
);
...
...
Log.h
View file @
b4c5f6ca
...
...
@@ -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
();
...
...
global.h
View file @
b4c5f6ca
...
...
@@ -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
:
...
...
observer_macro.h
View file @
b4c5f6ca
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment