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
03073231
Commit
03073231
authored
Oct 22, 2019
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
d123ad0a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
12 deletions
+11
-12
chrono_wrapper.h
jlib/util/chrono_wrapper.h
+10
-10
test_path_op.cpp
test/test_path_op/test_path_op.cpp
+1
-2
No files found.
jlib/util/chrono_wrapper.h
View file @
03073231
...
...
@@ -26,7 +26,7 @@ inline void localtime_s(struct tm* tmtm, const time_t* t) {
// 0 for YYYY-mm-dd HH:MM:SS
// 1 for YYYY-mm-dd
// 2 for HH:MM:SS
inline
std
::
wstring
time_t
_to_w
string
(
time_t
t
,
int
section
=
0
)
inline
std
::
wstring
time_t
ToW
string
(
time_t
t
,
int
section
=
0
)
{
wchar_t
wtime
[
32
]
=
{
0
};
struct
tm
tmtm
;
...
...
@@ -51,7 +51,7 @@ inline std::wstring time_t_to_wstring(time_t t, int section = 0)
// 0 for YYYY-mm-dd HH:MM:SS
// 1 for YYYY-mm-dd
// 2 for HH:MM:SS
inline
std
::
string
time_t
_to_s
tring
(
time_t
t
,
int
section
=
0
)
inline
std
::
string
time_t
ToS
tring
(
time_t
t
,
int
section
=
0
)
{
char
stime
[
32
]
=
{
0
};
struct
tm
tmtm
;
...
...
@@ -72,7 +72,7 @@ inline std::string time_t_to_string(time_t t, int section = 0)
return
std
::
string
(
stime
);
}
inline
std
::
string
time
_point_to_s
tring
(
const
std
::
chrono
::
system_clock
::
time_point
&
tp
,
bool
with_milliseconds
=
false
)
inline
std
::
string
time
PointToS
tring
(
const
std
::
chrono
::
system_clock
::
time_point
&
tp
,
bool
with_milliseconds
=
false
)
{
std
::
stringstream
ss
;
auto
t
=
std
::
chrono
::
system_clock
::
to_time_t
(
tp
);
...
...
@@ -86,7 +86,7 @@ inline std::string time_point_to_string(const std::chrono::system_clock::time_po
return
ss
.
str
();
}
inline
std
::
wstring
time
_point_to_ws
tring
(
const
std
::
chrono
::
system_clock
::
time_point
&
tp
,
bool
with_milliseconds
=
false
)
inline
std
::
wstring
time
PointToWS
tring
(
const
std
::
chrono
::
system_clock
::
time_point
&
tp
,
bool
with_milliseconds
=
false
)
{
std
::
wstringstream
ss
;
auto
t
=
std
::
chrono
::
system_clock
::
to_time_t
(
tp
);
...
...
@@ -100,7 +100,7 @@ inline std::wstring time_point_to_wstring(const std::chrono::system_clock::time_
return
ss
.
str
();
}
inline
std
::
chrono
::
system_clock
::
time_point
string_to_time_point
(
const
std
::
string
&
s
)
inline
std
::
chrono
::
system_clock
::
time_point
timePointFromString
(
const
std
::
string
&
s
)
{
std
::
tm
tm
=
{
0
};
std
::
istringstream
ss
(
s
);
...
...
@@ -108,7 +108,7 @@ inline std::chrono::system_clock::time_point string_to_time_point(const std::str
return
std
::
chrono
::
system_clock
::
from_time_t
(
std
::
mktime
(
&
tm
));
}
inline
std
::
chrono
::
system_clock
::
time_point
wstring_to_time_point
(
const
std
::
wstring
&
s
)
inline
std
::
chrono
::
system_clock
::
time_point
timePointFromWString
(
const
std
::
wstring
&
s
)
{
std
::
tm
tm
=
{
0
};
std
::
wistringstream
ss
(
s
);
...
...
@@ -116,14 +116,14 @@ inline std::chrono::system_clock::time_point wstring_to_time_point(const std::ws
return
std
::
chrono
::
system_clock
::
from_time_t
(
std
::
mktime
(
&
tm
));
}
inline
std
::
string
now
_to_s
tring
(
bool
with_milliseconds
=
false
)
inline
std
::
string
now
ToS
tring
(
bool
with_milliseconds
=
false
)
{
return
time
_point_to_s
tring
(
std
::
chrono
::
system_clock
::
now
(),
with_milliseconds
);
return
time
PointToS
tring
(
std
::
chrono
::
system_clock
::
now
(),
with_milliseconds
);
}
inline
std
::
wstring
now
_to_ws
tring
(
bool
with_milliseconds
=
false
)
inline
std
::
wstring
now
ToWS
tring
(
bool
with_milliseconds
=
false
)
{
return
time
_point_to_ws
tring
(
std
::
chrono
::
system_clock
::
now
(),
with_milliseconds
);
return
time
PointToWS
tring
(
std
::
chrono
::
system_clock
::
now
(),
with_milliseconds
);
}
};
test/test_path_op/test_path_op.cpp
View file @
03073231
...
...
@@ -10,11 +10,10 @@ using namespace jlib::win32;
int
main
()
{
printf
(
"getExePathA=%s
\n
"
,
getExePathA
().
data
());
printf
(
"getExeFolderPathA=%s
\n
"
,
getExeFolderPathA
().
data
());
auto
name
=
jlib
::
now
_to_s
tring
(
true
)
+
".txt"
;
auto
name
=
jlib
::
now
ToS
tring
(
true
)
+
".txt"
;
auto
name2
=
integrateFileName
(
name
);
printf
(
"integrateFileName:
\n
old=%s
\n
new=%s
\n
"
,
name
.
data
(),
name2
.
data
());
...
...
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