Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/PluginTabBase.cpp

Issue 5747779603267584: Issue #1234 - Rework strings in debug facility (Closed)
Patch Set: typo fix Created March 5, 2015, 12:43 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/plugin/PluginStdAfx.h ('k') | src/plugin/PluginWbPassThrough.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/plugin/PluginTabBase.cpp
===================================================================
--- a/src/plugin/PluginTabBase.cpp
+++ b/src/plugin/PluginTabBase.cpp
@@ -47,9 +47,8 @@
}
catch (const std::system_error& ex)
{
- auto errDescription = std::string("Tab::Thread - Failed to create tab thread") +
- ex.code().message() + ex.what();
- DEBUG_ERROR_LOG(ex.code().value(), PLUGIN_ERROR_THREAD, PLUGIN_ERROR_TAB_THREAD_CREATE_PROCESS, errDescription.c_str());
+ DEBUG_SYSTEM_EXCEPTION(ex, PLUGIN_ERROR_THREAD, PLUGIN_ERROR_TAB_THREAD_CREATE_PROCESS,
+ "Tab::Thread - Failed to create tab thread");
}
m_traverser = new CPluginDomTraverser(static_cast<CPluginTab*>(this));
}
@@ -106,9 +105,8 @@
}
catch (const std::system_error& ex)
{
- auto errDescription = std::string("Class::Thread - Failed to start filter loader thread, ") +
- ex.code().message() + ex.what();
- DEBUG_ERROR_LOG(ex.code().value(), PLUGIN_ERROR_THREAD, PLUGIN_ERROR_MAIN_THREAD_CREATE_PROCESS, errDescription.c_str());
+ DEBUG_SYSTEM_EXCEPTION(ex, PLUGIN_ERROR_THREAD, PLUGIN_ERROR_MAIN_THREAD_CREATE_PROCESS,
+ "Class::Thread - Failed to start filter loader thread");
}
m_traverser->ClearCache();
}
@@ -116,12 +114,17 @@
void CPluginTabBase::InjectABP(IWebBrowser2* browser)
{
CriticalSection::Lock lock(m_csInject);
- CString url = ToCString(GetDocumentUrl());
- CString log;
- log.Format(L"InjectABP. Current URL: %s, settings URL: %s", url, UserSettingsFileUrl().c_str());
+ auto url = GetDocumentUrl();
+
+ std::wstring log = L"InjectABP. Current URL: ";
+ log += url;
+ log += L", settings URL: ";
+ log += UserSettingsFileUrl();
DEBUG_GENERAL(log);
- if (!(0 == url.CompareNoCase(CString(UserSettingsFileUrl().c_str())) ||
- 0 == url.CompareNoCase(CString(FirstRunPageFileUrl().c_str()))))
+
+ CString urlLegacy = ToCString(url);
+ if (!(0 == urlLegacy.CompareNoCase(CString(UserSettingsFileUrl().c_str())) ||
+ 0 == urlLegacy.CompareNoCase(CString(FirstRunPageFileUrl().c_str()))))
{
DEBUG_GENERAL(L"Not injecting");
return;
@@ -310,20 +313,18 @@
void CPluginTabBase::ThreadProc()
{
// Force loading/creation of settings
- CPluginSettings* settings = CPluginSettings::GetInstance();
+ CPluginSettings::GetInstance()->SetWorkingThreadId();
- settings->SetWorkingThreadId();
-
- CString threadInfo;
- threadInfo.Format(L"%d.%d", ::GetCurrentProcessId(), ::GetCurrentThreadId());
-
- CString debugText;
-
- debugText += L"================================================================================";
- debugText += L"\nTAB THREAD " + threadInfo;
- debugText += L"\n================================================================================";
-
- DEBUG_GENERAL(debugText)
+ std::string message =
+ "================================================================================\n"
+ "TAB THREAD process=";
+ message += std::to_string(::GetCurrentProcessId());
+ message + " thread=";
+ message += std::to_string(::GetCurrentThreadId());
+ message +=
+ "\n"
+ "================================================================================";
+ DEBUG_GENERAL(message);
// --------------------------------------------------------------------
// Tab loop
« no previous file with comments | « src/plugin/PluginStdAfx.h ('k') | src/plugin/PluginWbPassThrough.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld