Commit bf64d3a7 authored by captainwong's avatar captainwong

upgrade

parent cb386ccd
......@@ -55,6 +55,7 @@ private:
std::string log_file_foler_ = "";
std::string log_file_path_ = "";
std::string line_prefix_ = "";
std::string log_file_prefix_ = "";
std::mutex lock_;
//static log* instance_;
......@@ -66,11 +67,13 @@ public:
void set_output_to_console(bool b = true) { log_to_console_ = b; }
// 3 functions below must be called by sequence
void set_log_file_foler(const std::string& folder_path) { log_file_foler_ = folder_path.empty() ? "" : folder_path + "\\"; }
void set_log_file_prefix(const std::string& prefix) { log_file_prefix_ = prefix; }
void set_output_to_file(bool b = true) { log_to_file_ = b; if (b) create_file_name(); }
auto get_log_file_path() const { return log_file_path_; }
std::string get_log_file_path() const { return log_file_path_; }
public:
......@@ -248,7 +251,7 @@ protected:
auto s = now_to_string();
std::replace(s.begin(), s.end(), ' ', '_');
std::replace(s.begin(), s.end(), ':', '-');
log_file_path_ = log_file_foler_ + s + ".log";
log_file_path_ = log_file_foler_ + log_file_prefix_ + "." + s + ".log";
}
std::string format_msg(const std::string& msg) {
......
// VsVer.h
// VsVer.h
#pragma once
/***************************************/
// 为了代码在vc6和vs2010下都能通过编译,定义以下宏
#if _MSC_VER == 1200 // vc6的cl版本号
// 为了代码在vc6和vs2010下都能通过编译,定义以下宏
#if _MSC_VER == 1200 // vc6的cl版本号
#define _ultoa_s _ultoa
#define _itoa_s _itoa
#define _ltoa_s _ltoa
......
......@@ -70,7 +70,7 @@ private:
{
if (num_replies_ == 0) {
total_time_ += std::chrono::milliseconds(5000);
std::cout << "Request timed out" << std::endl;
JLOGA("Request timed out");
}
if (!quiting_) {
......@@ -115,15 +115,18 @@ private:
// Print out some information about the reply packet.
posix_time::ptime now = posix_time::microsec_clock::universal_time();
auto ms = (now - time_sent_).total_milliseconds();
std::cout << length - ipv4_hdr.header_length()
std::stringstream ss;
ss << length - ipv4_hdr.header_length()
<< " bytes from " << ipv4_hdr.source_address()
<< ": icmp_seq=" << icmp_hdr.sequence_number()
<< ", ttl=" << ipv4_hdr.time_to_live()
<< ", time=" << ms << " ms"
<< std::endl;
<< ", time=" << ms << " ms";
JLOGA(ss.str().c_str());
total_time_ += std::chrono::milliseconds(ms);
auto cnt = total_time_.count();
std::cout << "total_time_ " << cnt << std::endl;
ss.str(""); ss.clear();
ss << "total_time_ " << cnt;
JLOGA(ss.str().c_str());
}
if (max_sequence_number_ != 0 && sequence_number_ < max_sequence_number_)
......
......@@ -9,6 +9,9 @@
#include "utf8.h"
#include "win32/MyWSAError.h"
#include "win32/path_op.h"
#if _WIN32_WINNT > _WIN32_WINNT_WINXP
#include "win32/file_op.h"
#endif
#include "win32/memory_micros.h"
namespace utf8 {
......@@ -80,7 +83,11 @@ inline DWORD daemon(const std::wstring& path, bool wait_app_exit = true, bool sh
CloseHandle(pi.hProcess);
return dwExit;
}
return -1;
return 0xFFFFFFFF;
}
inline DWORD daemon(const std::string& path, bool wait_app_exit = true, bool show = true) {
return daemon(utf8::a2w(path), wait_app_exit, show);
}
inline BOOL Win32CenterWindow(HWND hwndWindow)
......@@ -120,95 +127,6 @@ inline BOOL Win32CenterWindow(HWND hwndWindow)
return FALSE;
}
inline bool get_file_open_dialog_result(std::wstring& path, HWND hWnd = nullptr) {
bool ok = false;
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED(hr)) {
IFileOpenDialog *pFileOpen;
// Create the FileOpenDialog object.
hr = CoCreateInstance(CLSID_FileOpenDialog, NULL, CLSCTX_ALL,
IID_IFileOpenDialog, reinterpret_cast<void**>(&pFileOpen));
if (SUCCEEDED(hr)) {
// Show the Open dialog box.
hr = pFileOpen->Show(hWnd);
// Get the file name from the dialog box.
if (SUCCEEDED(hr)) {
IShellItem *pItem;
hr = pFileOpen->GetResult(&pItem);
if (SUCCEEDED(hr)) {
PWSTR pszFilePath;
hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &pszFilePath);
// Display the file name to the user.
if (SUCCEEDED(hr)) {
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path = pszFilePath;
ok = true;
CoTaskMemFree(pszFilePath);
}
pItem->Release();
}
}
pFileOpen->Release();
}
CoUninitialize();
}
return ok;
}
inline bool get_save_as_dialog_path(std::wstring& path, HWND hWnd = nullptr) {
bool ok = false;
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED(hr)) {
IFileSaveDialog *pFileSave;
// Create the FileOpenDialog object.
hr = CoCreateInstance(CLSID_FileSaveDialog, NULL, CLSCTX_ALL,
IID_IFileSaveDialog, reinterpret_cast<void**>(&pFileSave));
if (SUCCEEDED(hr)) {
// Show the Open dialog box.
hr = pFileSave->Show(hWnd);
// Get the file name from the dialog box.
if (SUCCEEDED(hr)) {
IShellItem *pItem;
hr = pFileSave->GetResult(&pItem);
if (SUCCEEDED(hr)) {
PWSTR pszFilePath;
hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &pszFilePath);
// Display the file name to the user.
if (SUCCEEDED(hr)) {
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path = pszFilePath;
ok = true;
CoTaskMemFree(pszFilePath);
}
pItem->Release();
}
}
pFileSave->Release();
}
CoUninitialize();
}
return ok;
}
class auto_timer : public boost::noncopyable
{
private:
......@@ -232,22 +150,22 @@ public:
namespace rc_detail {
inline auto Width(LPCRECT rc) {
inline long Width(::LPCRECT rc) {
return rc->right - rc->left;
}
inline auto Height(LPCRECT rc) {
inline long Height(::LPCRECT rc) {
return rc->bottom - rc->top;
}
inline void DeflateRect(LPRECT rc, int l, int t, int r, int b) {
inline void DeflateRect(::LPRECT rc, int l, int t, int r, int b) {
rc->left += l;
rc->top += t;
rc->right -= r;
rc->bottom -= b;
}
inline void InflateRect(LPRECT rc, int l, int t, int r, int b) {
inline void InflateRect(::LPRECT rc, int l, int t, int r, int b) {
rc->left -= l;
rc->top -= t;
rc->right += r;
......@@ -257,10 +175,10 @@ inline void InflateRect(LPRECT rc, int l, int t, int r, int b) {
}
// 将矩形平均分割成n份,间距2*gap, n is x^2, x={1,2,3...}
inline std::vector<RECT> split_rect(LPCRECT rc, int n, int gap = 50) {
inline std::vector<::RECT> split_rect(::LPCRECT rc, int n, int gap = 50) {
using namespace rc_detail;
std::vector<RECT> v;
std::vector<::RECT> v;
for (int i = 0; i < n; i++) {
v.push_back(*rc);
}
......@@ -283,9 +201,9 @@ inline std::vector<RECT> split_rect(LPCRECT rc, int n, int gap = 50) {
};
// 将矩形水平平均分割为n份矩形, 当hgap==-1时,分割出的矩形与源矩形保持比例
inline std::vector<RECT> split_rect_horizontal(LPCRECT rc, int n, int wgap = 50, int hgap = -1) {
inline std::vector<::RECT> split_rect_horizontal(::LPCRECT rc, int n, int wgap = 50, int hgap = -1) {
using namespace rc_detail;
std::vector<RECT> v;
std::vector<::RECT> v;
int w = (Width(rc) - (n + 1) * wgap) / n;
......@@ -296,7 +214,7 @@ inline std::vector<RECT> split_rect_horizontal(LPCRECT rc, int n, int wgap = 50,
}
for (int i = 0; i < n; i++) {
RECT r = *rc;
::RECT r = *rc;
r.left += i*w + (i + 1)*wgap;
r.right = r.left + w;
r.top = rc->top + hgap;
......@@ -308,22 +226,22 @@ inline std::vector<RECT> split_rect_horizontal(LPCRECT rc, int n, int wgap = 50,
}
// rc's width / spliter = (rc's width - hexagon's side length) / 2
inline std::vector<POINT> get_hexagon_vertexes_from_rect(LPCRECT rc, float spliter = 3.0) {
inline std::vector<::POINT> get_hexagon_vertexes_from_rect(::LPCRECT rc, float spliter = 3.0) {
if (!rc) {
return std::vector<POINT>();
return std::vector<::POINT>();
}
if (spliter == 0.0) {
spliter = 3.0;
}
std::vector<POINT> v;
std::vector<::POINT> v;
auto w = rc->right - rc->left;
auto h = rc->bottom - rc->top;
auto ww = static_cast<int>(w / spliter);
auto hh = static_cast<int>(h / spliter);
POINT pt;
::POINT pt;
pt.x = rc->left;
pt.y = rc->top + hh;
v.push_back(pt);
......
#pragma once
inline bool get_file_open_dialog_result(std::wstring& path, HWND hWnd = nullptr) {
bool ok = false;
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED(hr)) {
IFileOpenDialog *pFileOpen;
// Create the FileOpenDialog object.
hr = CoCreateInstance(CLSID_FileOpenDialog, NULL, CLSCTX_ALL,
IID_IFileOpenDialog, reinterpret_cast<void**>(&pFileOpen));
if (SUCCEEDED(hr)) {
// Show the Open dialog box.
hr = pFileOpen->Show(hWnd);
// Get the file name from the dialog box.
if (SUCCEEDED(hr)) {
IShellItem *pItem;
hr = pFileOpen->GetResult(&pItem);
if (SUCCEEDED(hr)) {
PWSTR pszFilePath;
hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &pszFilePath);
// Display the file name to the user.
if (SUCCEEDED(hr)) {
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path = pszFilePath;
ok = true;
CoTaskMemFree(pszFilePath);
}
pItem->Release();
}
}
pFileOpen->Release();
}
CoUninitialize();
}
return ok;
}
inline bool get_save_as_dialog_path(std::wstring& path, HWND hWnd = nullptr) {
bool ok = false;
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED(hr)) {
IFileSaveDialog *pFileSave;
// Create the FileOpenDialog object.
hr = CoCreateInstance(CLSID_FileSaveDialog, NULL, CLSCTX_ALL,
IID_IFileSaveDialog, reinterpret_cast<void**>(&pFileSave));
if (SUCCEEDED(hr)) {
// Show the Open dialog box.
hr = pFileSave->Show(hWnd);
// Get the file name from the dialog box.
if (SUCCEEDED(hr)) {
IShellItem *pItem;
hr = pFileSave->GetResult(&pItem);
if (SUCCEEDED(hr)) {
PWSTR pszFilePath;
hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &pszFilePath);
// Display the file name to the user.
if (SUCCEEDED(hr)) {
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path = pszFilePath;
ok = true;
CoTaskMemFree(pszFilePath);
}
pItem->Release();
}
}
pFileSave->Release();
}
CoUninitialize();
}
return ok;
}
#pragma once
inline bool get_file_open_dialog_result(std::wstring& path, HWND hWnd = nullptr) {
bool ok = false;
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED(hr)) {
IFileOpenDialog *pFileOpen;
// Create the FileOpenDialog object.
hr = CoCreateInstance(CLSID_FileOpenDialog, NULL, CLSCTX_ALL,
IID_IFileOpenDialog, reinterpret_cast<void**>(&pFileOpen));
if (SUCCEEDED(hr)) {
// Show the Open dialog box.
hr = pFileOpen->Show(hWnd);
// Get the file name from the dialog box.
if (SUCCEEDED(hr)) {
IShellItem *pItem;
hr = pFileOpen->GetResult(&pItem);
if (SUCCEEDED(hr)) {
PWSTR pszFilePath;
hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &pszFilePath);
// Display the file name to the user.
if (SUCCEEDED(hr)) {
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path = pszFilePath;
ok = true;
CoTaskMemFree(pszFilePath);
}
pItem->Release();
}
}
pFileOpen->Release();
}
CoUninitialize();
}
return ok;
}
inline bool get_save_as_dialog_path(std::wstring& path, HWND hWnd = nullptr) {
bool ok = false;
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED(hr)) {
IFileSaveDialog *pFileSave;
// Create the FileOpenDialog object.
hr = CoCreateInstance(CLSID_FileSaveDialog, NULL, CLSCTX_ALL,
IID_IFileSaveDialog, reinterpret_cast<void**>(&pFileSave));
if (SUCCEEDED(hr)) {
// Show the Open dialog box.
hr = pFileSave->Show(hWnd);
// Get the file name from the dialog box.
if (SUCCEEDED(hr)) {
IShellItem *pItem;
hr = pFileSave->GetResult(&pItem);
if (SUCCEEDED(hr)) {
PWSTR pszFilePath;
hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &pszFilePath);
// Display the file name to the user.
if (SUCCEEDED(hr)) {
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path = pszFilePath;
ok = true;
CoTaskMemFree(pszFilePath);
}
pItem->Release();
}
}
pFileSave->Release();
}
CoUninitialize();
}
return ok;
}
......@@ -18,5 +18,6 @@ inline std::string get_exe_path_a()
return std::string(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