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

Unified Diff: Source/bindings/core/v8/ScriptStreamerThread.cpp

Issue 368283002: Stream scripts to V8 as they load - Blink side. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed untrue assert Created 6 years, 3 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
« no previous file with comments | « Source/bindings/core/v8/ScriptStreamerThread.h ('k') | Source/bindings/core/v8/V8ScriptRunner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptStreamerThread.cpp
diff --git a/Source/bindings/core/v8/ScriptStreamerThread.cpp b/Source/bindings/core/v8/ScriptStreamerThread.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..9170e1128f216f3a8d88a668046088117a54e68d
--- /dev/null
+++ b/Source/bindings/core/v8/ScriptStreamerThread.cpp
@@ -0,0 +1,66 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+#include "bindings/core/v8/ScriptStreamerThread.h"
+
+#include "bindings/core/v8/ScriptStreamer.h"
+#include "platform/Task.h"
+#include "public/platform/Platform.h"
+#include "wtf/MainThread.h"
+#include "wtf/PassOwnPtr.h"
+
+namespace blink {
+
+static ScriptStreamerThread* s_sharedThread = 0;
+
+void ScriptStreamerThread::init()
+{
+ ASSERT(!s_sharedThread);
+ ASSERT(isMainThread());
+ s_sharedThread = new ScriptStreamerThread();
+}
+
+void ScriptStreamerThread::shutdown()
+{
+ ASSERT(s_sharedThread);
+ delete s_sharedThread;
+ s_sharedThread = 0;
+}
+
+ScriptStreamerThread* ScriptStreamerThread::shared()
+{
+ return s_sharedThread;
+}
+
+void ScriptStreamerThread::postTask(WebThread::Task* task)
+{
+ ASSERT(isMainThread());
+ ASSERT(!m_runningTask);
+ m_runningTask = true;
+ platformThread().postTask(task);
+}
+
+blink::WebThread& ScriptStreamerThread::platformThread()
+{
+ if (!isRunning())
+ m_thread = adoptPtr(blink::Platform::current()->createThread("ScriptStreamerThread"));
+ return *m_thread;
+}
+
+ScriptStreamingTask::ScriptStreamingTask(v8::ScriptCompiler::ScriptStreamingTask* task, ScriptStreamer* streamer)
+ : m_v8Task(adoptPtr(task)), m_streamer(streamer) { }
+
+void ScriptStreamingTask::run()
+{
+ // Running the task can and will block: SourceStream::GetSomeData will get
+ // called and it will block and wait for data from the network.
+ m_v8Task->Run();
+ // Post a task to the main thread to signal that V8 has completed the
+ // streaming.
+ callOnMainThread(&ScriptStreamerThread::taskDone, 0);
+ callOnMainThread(WTF::bind(&ScriptStreamer::streamingComplete, m_streamer));
+}
+
+} // namespace blink
« no previous file with comments | « Source/bindings/core/v8/ScriptStreamerThread.h ('k') | Source/bindings/core/v8/V8ScriptRunner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698