Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(722)

Unified Diff: third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp

Issue 2124693002: Worker: Fix broken GC logic on Dedicated Worker while DOMTimer is set (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: annotate WorkerGlobalScope interface with 'ActiveScriptWrappable' and make tests stricter Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp
diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp
index 67a8b59d6fedf0b55b9fd8a38253956a7fcace59..2b95a79973da95105096dbc03ec9e386e63fdad4 100644
--- a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp
+++ b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp
@@ -32,23 +32,31 @@
#include "bindings/core/v8/SerializedScriptValue.h"
#include "bindings/core/v8/SourceLocation.h"
+#include "bindings/core/v8/V8GCController.h"
#include "core/dom/CrossThreadTask.h"
#include "core/dom/Document.h"
#include "core/dom/ExecutionContext.h"
#include "core/inspector/ConsoleMessage.h"
#include "core/workers/InProcessWorkerMessagingProxy.h"
+#include "core/workers/WorkerGlobalScope.h"
+#include "core/workers/WorkerThread.h"
#include "wtf/Functional.h"
#include "wtf/PtrUtil.h"
#include <memory>
namespace blink {
+const double kDefaultIntervalInSec = 1;
+const double kMaxIntervalInSec = 30;
+
std::unique_ptr<InProcessWorkerObjectProxy> InProcessWorkerObjectProxy::create(InProcessWorkerMessagingProxy* messagingProxy)
{
DCHECK(messagingProxy);
return wrapUnique(new InProcessWorkerObjectProxy(messagingProxy));
}
+InProcessWorkerObjectProxy::~InProcessWorkerObjectProxy() {}
+
void InProcessWorkerObjectProxy::postMessageToWorkerObject(PassRefPtr<SerializedScriptValue> message, std::unique_ptr<MessagePortChannelArray> channels)
{
getExecutionContext()->postTask(BLINK_FROM_HERE, createCrossThreadTask(&InProcessWorkerMessagingProxy::postMessageToWorkerObject, crossThreadUnretained(m_messagingProxy), message, passed(std::move(channels))));
@@ -59,14 +67,19 @@ void InProcessWorkerObjectProxy::postTaskToMainExecutionContext(std::unique_ptr<
getExecutionContext()->postTask(BLINK_FROM_HERE, std::move(task));
}
-void InProcessWorkerObjectProxy::confirmMessageFromWorkerObject(bool hasPendingActivity)
+void InProcessWorkerObjectProxy::confirmMessageFromWorkerObject()
{
- getExecutionContext()->postTask(BLINK_FROM_HERE, createCrossThreadTask(&InProcessWorkerMessagingProxy::confirmMessageFromWorkerObject, crossThreadUnretained(m_messagingProxy), hasPendingActivity));
+ getExecutionContext()->postTask(BLINK_FROM_HERE, createCrossThreadTask(&InProcessWorkerMessagingProxy::confirmMessageFromWorkerObject, crossThreadUnretained(m_messagingProxy)));
}
-void InProcessWorkerObjectProxy::reportPendingActivity(bool hasPendingActivity)
+void InProcessWorkerObjectProxy::startPendingActivityTimer()
{
- getExecutionContext()->postTask(BLINK_FROM_HERE, createCrossThreadTask(&InProcessWorkerMessagingProxy::reportPendingActivity, crossThreadUnretained(m_messagingProxy), hasPendingActivity));
+ // Restart the timer if it's running.
+ if (m_timer->isActive())
+ m_currentIntervalInSec = kDefaultIntervalInSec;
+
+ m_timer->startOneShot(m_currentIntervalInSec, BLINK_FROM_HERE);
haraken 2016/08/16 12:17:40 Given that startPendingActivityTimer is called at
kinuko 2016/08/16 21:37:38 I think we could possibly restart the timer only i
nhiroki 2016/08/17 04:45:32 On second thought, it'd be preferable just to retu
kinuko 2016/08/17 22:15:08 One possible scenario I considered was a message f
nhiroki 2016/08/17 23:31:31 Acknowledged.
+ m_currentIntervalInSec = std::min(m_currentIntervalInSec * 1.5, m_maxIntervalInSec);
}
void InProcessWorkerObjectProxy::reportException(const String& errorMessage, std::unique_ptr<SourceLocation> location, int exceptionId)
@@ -86,6 +99,18 @@ void InProcessWorkerObjectProxy::postMessageToPageInspector(const String& messag
toDocument(context)->postInspectorTask(BLINK_FROM_HERE, createCrossThreadTask(&InProcessWorkerMessagingProxy::postMessageToPageInspector, crossThreadUnretained(m_messagingProxy), message));
}
+void InProcessWorkerObjectProxy::didEvaluateWorkerScript(bool)
+{
+ startPendingActivityTimer();
+}
+
+void InProcessWorkerObjectProxy::workerGlobalScopeStarted(WorkerOrWorkletGlobalScope* globalScope)
+{
+ DCHECK(!m_workerGlobalScope);
+ m_workerGlobalScope = toWorkerGlobalScope(globalScope);
+ m_timer = wrapUnique(new Timer<InProcessWorkerObjectProxy>(this, &InProcessWorkerObjectProxy::checkPendingActivity));
+}
+
void InProcessWorkerObjectProxy::workerGlobalScopeClosed()
{
getExecutionContext()->postTask(BLINK_FROM_HERE, createCrossThreadTask(&InProcessWorkerMessagingProxy::terminateWorkerGlobalScope, crossThreadUnretained(m_messagingProxy)));
@@ -97,8 +122,16 @@ void InProcessWorkerObjectProxy::workerThreadTerminated()
getExecutionContext()->postTask(BLINK_FROM_HERE, createCrossThreadTask(&InProcessWorkerMessagingProxy::workerThreadTerminated, crossThreadUnretained(m_messagingProxy)));
}
+void InProcessWorkerObjectProxy::willDestroyWorkerGlobalScope()
+{
+ m_timer.reset();
+ m_workerGlobalScope = nullptr;
+}
+
InProcessWorkerObjectProxy::InProcessWorkerObjectProxy(InProcessWorkerMessagingProxy* messagingProxy)
: m_messagingProxy(messagingProxy)
+ , m_currentIntervalInSec(kDefaultIntervalInSec)
+ , m_maxIntervalInSec(kMaxIntervalInSec)
{
}
@@ -108,4 +141,21 @@ ExecutionContext* InProcessWorkerObjectProxy::getExecutionContext()
return m_messagingProxy->getExecutionContext();
}
+void InProcessWorkerObjectProxy::checkPendingActivity(TimerBase*)
+{
haraken 2016/08/16 12:17:40 Shall we add DCHECK(m_workerGlobalScope) (if you w
nhiroki 2016/08/17 04:45:32 WONTFIX because I changed WeakPersistent to Persis
+ bool hasPendingActivity = V8GCController::hasPendingActivity(m_workerGlobalScope->thread()->isolate(), m_workerGlobalScope);
+ if (!hasPendingActivity) {
+ // Report all activities are done.
+ getExecutionContext()->postTask(BLINK_FROM_HERE, createCrossThreadTask(&InProcessWorkerMessagingProxy::pendingActivityFinished, crossThreadUnretained(m_messagingProxy)));
+
+ // Don't schedule a timer. It will be started again when a message event
+ // is dispatched.
+ m_currentIntervalInSec = kDefaultIntervalInSec;
+ return;
+ }
+
+ // There is still a pending activity. Check it later.
+ startPendingActivityTimer();
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698