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

Unified Diff: src/plugin/PluginClientBase.cpp

Issue 29323611: Issue #1234, #2058 - Rewrite log facility, improving thread implementation
Patch Set: rebase only Created July 27, 2016, 9:11 p.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/PluginClientBase.h ('k') | src/plugin/PluginDebug.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/plugin/PluginClientBase.cpp
===================================================================
deleted file mode 100644
--- a/src/plugin/PluginClientBase.cpp
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * This file is part of Adblock Plus <https://adblockplus.org/>,
- * Copyright (C) 2006-2016 Eyeo GmbH
- *
- * Adblock Plus is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
- *
- * Adblock Plus is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include "PluginClientBase.h"
-
-#include "PluginSettings.h"
-#include "Config.h"
-#include "PluginDebug.h"
-
-CComAutoCriticalSection LogQueue::s_criticalSectionQueue;
-std::vector<CPluginError> LogQueue::s_pluginErrors;
-
-void LogQueue::LogPluginError(DWORD errorCode, int errorId, int errorSubid, const std::string& description, bool isAsync, DWORD dwProcessId, DWORD dwThreadId)
-{
- // Prevent circular references
- if (CPluginSettings::HasInstance() && isAsync)
- {
- DEBUG_ERROR_CODE_EX(errorCode, description, dwProcessId, dwThreadId);
-
- CString pluginError;
- pluginError.Format(L"%2.2d%2.2d", errorId, errorSubid);
-
- CString pluginErrorCode;
- pluginErrorCode.Format(L"%u", errorCode);
-
- CPluginSettings* settings = CPluginSettings::GetInstance();
-
- settings->AddError(pluginError, pluginErrorCode);
- }
-
- // Post error to client for later submittal
- if (!isAsync)
- {
- LogQueue::PostPluginError(errorId, errorSubid, errorCode, description);
- }
-}
-
-
-void LogQueue::PostPluginError(int errorId, int errorSubid, DWORD errorCode, const std::string& errorDescription)
-{
- s_criticalSectionQueue.Lock();
- {
- CPluginError pluginError(errorId, errorSubid, errorCode, errorDescription);
-
- s_pluginErrors.push_back(pluginError);
- }
- s_criticalSectionQueue.Unlock();
-}
-
-
-bool LogQueue::PopFirstPluginError(CPluginError& pluginError)
-{
- bool hasError = false;
-
- s_criticalSectionQueue.Lock();
- {
- std::vector<CPluginError>::iterator it = s_pluginErrors.begin();
- if (it != s_pluginErrors.end())
- {
- pluginError = *it;
-
- hasError = true;
-
- s_pluginErrors.erase(it);
- }
- }
- s_criticalSectionQueue.Unlock();
-
- return hasError;
-}
« no previous file with comments | « src/plugin/PluginClientBase.h ('k') | src/plugin/PluginDebug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld