Commit 7bdb54bc authored by captainwong's avatar captainwong

local update

parent e32fc562
...@@ -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)
}; };
...@@ -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) }; STARTUPINFOW 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 = CreateProcessW(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;
......
...@@ -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); GetModuleFileNameW(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);
} }
......
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