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
7bdb54bc
Commit
7bdb54bc
authored
Dec 14, 2016
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
local update
parent
e32fc562
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
4 deletions
+53
-4
chrono_wrapper.h
chrono_wrapper.h
+50
-1
win32.h
win32.h
+2
-2
path_op.h
win32/path_op.h
+1
-1
No files found.
chrono_wrapper.h
View file @
7bdb54bc
...
@@ -8,6 +8,56 @@
...
@@ -8,6 +8,56 @@
namespace
jlib
{
namespace
jlib
{
// section:
// 0 for YYYY-mm-dd HH:MM:SS
// 1 for YYYY-mm-dd
// 2 for HH:MM:SS
inline
std
::
wstring
time_t_to_wstring
(
time_t
t
,
int
section
=
0
)
{
wchar_t
wtime
[
32
]
=
{
0
};
struct
tm
tmtm
;
localtime_s
(
&
tmtm
,
&
t
);
if
(
t
==
-
1
)
{
t
=
time
(
nullptr
);
localtime_s
(
&
tmtm
,
&
t
);
}
if
(
section
==
0
)
{
wcsftime
(
wtime
,
32
,
L"%Y-%m-%d %H:%M:%S"
,
&
tmtm
);
}
else
if
(
section
==
1
)
{
wcsftime
(
wtime
,
32
,
L"%Y-%m-%d"
,
&
tmtm
);
}
else
{
wcsftime
(
wtime
,
32
,
L"%H:%M:%S"
,
&
tmtm
);
}
return
std
::
wstring
(
wtime
);
}
// section:
// 0 for YYYY-mm-dd HH:MM:SS
// 1 for YYYY-mm-dd
// 2 for HH:MM:SS
inline
std
::
string
time_t_to_string
(
time_t
t
,
int
section
=
0
)
{
char
stime
[
32
]
=
{
0
};
struct
tm
tmtm
;
localtime_s
(
&
tmtm
,
&
t
);
if
(
t
==
-
1
)
{
t
=
time
(
nullptr
);
localtime_s
(
&
tmtm
,
&
t
);
}
if
(
section
==
0
)
{
strftime
(
stime
,
32
,
"%Y-%m-%d %H:%M:%S"
,
&
tmtm
);
}
else
if
(
section
==
1
)
{
strftime
(
stime
,
32
,
"%Y-%m-%d"
,
&
tmtm
);
}
else
{
strftime
(
stime
,
32
,
"%H:%M:%S"
,
&
tmtm
);
}
return
std
::
string
(
stime
);
}
inline
std
::
string
time_point_to_string
(
const
std
::
chrono
::
system_clock
::
time_point
&
tp
,
bool
with_milliseconds
=
false
)
inline
std
::
string
time_point_to_string
(
const
std
::
chrono
::
system_clock
::
time_point
&
tp
,
bool
with_milliseconds
=
false
)
{
{
std
::
stringstream
ss
;
std
::
stringstream
ss
;
...
@@ -64,5 +114,4 @@ inline std::wstring now_to_wstring(bool with_milliseconds = false)
...
@@ -64,5 +114,4 @@ inline std::wstring now_to_wstring(bool with_milliseconds = false)
};
};
win32.h
View file @
7bdb54bc
...
@@ -70,11 +70,11 @@ inline std::string mbcs_to_utf8(const std::wstring& mbcs) {
...
@@ -70,11 +70,11 @@ inline std::string mbcs_to_utf8(const std::wstring& mbcs) {
namespace
jlib
{
namespace
jlib
{
inline
DWORD
daemon
(
const
std
::
wstring
&
path
,
bool
wait_app_exit
=
true
,
bool
show
=
true
)
{
inline
DWORD
daemon
(
const
std
::
wstring
&
path
,
bool
wait_app_exit
=
true
,
bool
show
=
true
)
{
STARTUPINFO
si
=
{
sizeof
(
si
)
};
STARTUPINFO
W
si
=
{
sizeof
(
si
)
};
si
.
dwFlags
|=
STARTF_USESHOWWINDOW
;
si
.
dwFlags
|=
STARTF_USESHOWWINDOW
;
si
.
wShowWindow
=
show
?
SW_SHOW
:
SW_HIDE
;
si
.
wShowWindow
=
show
?
SW_SHOW
:
SW_HIDE
;
PROCESS_INFORMATION
pi
;
PROCESS_INFORMATION
pi
;
BOOL
bRet
=
CreateProcess
(
NULL
,
(
LPWSTR
)(
path
.
c_str
()),
NULL
,
NULL
,
FALSE
,
0
,
NULL
,
NULL
,
&
si
,
&
pi
);
BOOL
bRet
=
CreateProcess
W
(
NULL
,
(
LPWSTR
)(
path
.
c_str
()),
NULL
,
NULL
,
FALSE
,
0
,
NULL
,
NULL
,
&
si
,
&
pi
);
if
(
bRet
)
{
if
(
bRet
)
{
WaitForSingleObject
(
pi
.
hProcess
,
wait_app_exit
?
INFINITE
:
0
);
WaitForSingleObject
(
pi
.
hProcess
,
wait_app_exit
?
INFINITE
:
0
);
DWORD
dwExit
;
DWORD
dwExit
;
...
...
win32/path_op.h
View file @
7bdb54bc
...
@@ -7,7 +7,7 @@ namespace jlib {
...
@@ -7,7 +7,7 @@ namespace jlib {
inline
std
::
wstring
get_exe_path
()
inline
std
::
wstring
get_exe_path
()
{
{
wchar_t
path
[
1024
]
=
{
0
};
wchar_t
path
[
1024
]
=
{
0
};
GetModuleFileName
(
nullptr
,
path
,
1024
);
GetModuleFileName
W
(
nullptr
,
path
,
1024
);
std
::
wstring
::
size_type
pos
=
std
::
wstring
(
path
).
find_last_of
(
L"
\\
/"
);
std
::
wstring
::
size_type
pos
=
std
::
wstring
(
path
).
find_last_of
(
L"
\\
/"
);
return
std
::
wstring
(
path
).
substr
(
0
,
pos
);
return
std
::
wstring
(
path
).
substr
(
0
,
pos
);
}
}
...
...
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