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

Unified Diff: Source/core/dom/ScriptLoader.cpp

Issue 656113002: Refactor Script(Loader|Runner): don't access Resources all over the place... (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: . Created 6 years, 2 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: Source/core/dom/ScriptLoader.cpp
diff --git a/Source/core/dom/ScriptLoader.cpp b/Source/core/dom/ScriptLoader.cpp
index 4879d4d051c23907a66a98f9b5b06ad076605b40..e51592dab70ce86c91374db04e706e305ec30768 100644
--- a/Source/core/dom/ScriptLoader.cpp
+++ b/Source/core/dom/ScriptLoader.cpp
@@ -75,7 +75,7 @@ ScriptLoader::ScriptLoader(Element* element, bool parserInserted, bool alreadySt
ScriptLoader::~ScriptLoader()
{
- stopLoadRequest();
+ m_pendingScript.stopWatchingForLoad(this);
haraken 2014/10/15 15:09:41 We might want to avoid calling stopWatchingForLoad
marja 2014/10/16 15:19:03 No, stopWatchingForLoad handles it gracefully - wh
}
void ScriptLoader::didNotifySubtreeInsertionsToDocument()
@@ -235,11 +235,15 @@ bool ScriptLoader::prepareScript(const TextPosition& scriptStartPosition, Legacy
m_readyToBeParserExecuted = true;
} else if (client->hasSourceAttribute() && !client->asyncAttributeValue() && !m_forceAsync) {
m_willExecuteInOrder = true;
- contextDocument->scriptRunner()->queueScriptForExecution(this, m_resource, ScriptRunner::IN_ORDER_EXECUTION);
- m_resource->addClient(this);
+ m_pendingScript = PendingScript(m_element, m_resource.get());
+ contextDocument->scriptRunner()->queueScriptForExecution(this, ScriptRunner::IN_ORDER_EXECUTION);
+ // Note that watchForLoad can immediately call notifyFinished.
+ m_pendingScript.watchForLoad(this);
} else if (client->hasSourceAttribute()) {
- contextDocument->scriptRunner()->queueScriptForExecution(this, m_resource, ScriptRunner::ASYNC_EXECUTION);
- m_resource->addClient(this);
+ m_pendingScript = PendingScript(m_element, m_resource.get());
+ contextDocument->scriptRunner()->queueScriptForExecution(this, ScriptRunner::ASYNC_EXECUTION);
+ // Note that watchForLoad can immediately call notifyFinished.
+ m_pendingScript.watchForLoad(this);
} else {
// Reset line numbering for nested writes.
TextPosition position = elementDocument.isInDocumentWrite() ? TextPosition() : scriptStartPosition;
@@ -356,26 +360,20 @@ void ScriptLoader::executeScript(const ScriptSourceCode& sourceCode, double* com
}
}
-void ScriptLoader::stopLoadRequest()
-{
- if (m_resource) {
- if (!m_willBeParserExecuted)
- m_resource->removeClient(this);
- m_resource = 0;
- }
-}
-
-void ScriptLoader::execute(ScriptResource* resource)
+void ScriptLoader::execute()
{
ASSERT(!m_willBeParserExecuted);
- ASSERT(resource);
- if (resource->errorOccurred()) {
+ ASSERT(m_pendingScript.resource());
+ bool errorOccurred = false;
+ ScriptSourceCode source = m_pendingScript.getSource(KURL(), errorOccurred);
+ RefPtr<Element> element = m_pendingScript.releaseElementAndClear();
+ if (errorOccurred) {
dispatchErrorEvent();
- } else if (!resource->wasCanceled()) {
- executeScript(ScriptSourceCode(resource));
+ } else if (!m_resource->wasCanceled()) {
+ executeScript(source);
dispatchLoadEvent();
}
- resource->removeClient(this);
+ m_resource = 0;
haraken 2014/10/15 15:09:41 Just help me understand: Don't we need to call m_p
marja 2014/10/16 15:19:03 No, because it's already called in execute().
}
void ScriptLoader::notifyFinished(Resource* resource)
@@ -387,13 +385,8 @@ void ScriptLoader::notifyFinished(Resource* resource)
if (!contextDocument)
return;
- // Resource possibly invokes this notifyFinished() more than
- // once because ScriptLoader doesn't unsubscribe itself from
- // Resource here and does it in execute() instead.
- // We use m_resource to check if this function is already called.
ASSERT_UNUSED(resource, resource == m_resource);
- if (!m_resource)
- return;
+
haraken 2014/10/15 15:09:41 Shall we add ASSERT(m_resource)?
marja 2014/10/16 15:19:03 It's a bit unnecessary since we already ASSERT res
if (m_resource->errorOccurred()) {
dispatchErrorEvent();
contextDocument->scriptRunner()->notifyScriptLoadError(this, m_willExecuteInOrder ? ScriptRunner::IN_ORDER_EXECUTION : ScriptRunner::ASYNC_EXECUTION);
@@ -404,7 +397,7 @@ void ScriptLoader::notifyFinished(Resource* resource)
else
contextDocument->scriptRunner()->notifyScriptReady(this, ScriptRunner::ASYNC_EXECUTION);
- m_resource = 0;
+ m_pendingScript.stopWatchingForLoad(this);
}
bool ScriptLoader::ignoresLoadRequest() const

Powered by Google App Engine
This is Rietveld 408576698