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

Side by Side Diff: third_party/WebKit/Source/core/workers/WorkerEventQueue.cpp

Issue 2806623004: Worker: Introduce per-global-scope task scheduler (Closed)
Patch Set: remove unused header Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All Rights Reserved. 2 * Copyright (C) 2010 Google Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 * 24 *
25 */ 25 */
26 26
27 #include "core/workers/WorkerEventQueue.h" 27 #include "core/workers/WorkerEventQueue.h"
28 28
29 #include "core/dom/TaskRunnerHelper.h"
29 #include "core/events/Event.h" 30 #include "core/events/Event.h"
30 #include "core/probe/CoreProbes.h" 31 #include "core/probe/CoreProbes.h"
31 #include "core/workers/WorkerGlobalScope.h" 32 #include "core/workers/WorkerGlobalScope.h"
32 #include "core/workers/WorkerThread.h" 33 #include "core/workers/WorkerThread.h"
33 34
34 namespace blink { 35 namespace blink {
35 36
36 WorkerEventQueue* WorkerEventQueue::Create( 37 WorkerEventQueue* WorkerEventQueue::Create(
37 WorkerGlobalScope* worker_global_scope) { 38 WorkerGlobalScope* worker_global_scope) {
38 return new WorkerEventQueue(worker_global_scope); 39 return new WorkerEventQueue(worker_global_scope);
(...skipping 11 matching lines...) Expand all
50 visitor->Trace(pending_events_); 51 visitor->Trace(pending_events_);
51 EventQueue::Trace(visitor); 52 EventQueue::Trace(visitor);
52 } 53 }
53 54
54 bool WorkerEventQueue::EnqueueEvent(Event* event) { 55 bool WorkerEventQueue::EnqueueEvent(Event* event) {
55 if (is_closed_) 56 if (is_closed_)
56 return false; 57 return false;
57 probe::AsyncTaskScheduled(event->target()->GetExecutionContext(), 58 probe::AsyncTaskScheduled(event->target()->GetExecutionContext(),
58 event->type(), event); 59 event->type(), event);
59 pending_events_.insert(event); 60 pending_events_.insert(event);
60 worker_global_scope_->GetThread()->PostTask( 61 // This queue is unthrottled because throttling event tasks may break existing
61 BLINK_FROM_HERE, 62 // web pages. For example, throttling IndexedDB events may break scenarios
62 WTF::Bind(&WorkerEventQueue::DispatchEvent, WrapPersistent(this), 63 // where several tabs, some of which are backgrounded, access the same
63 WrapWeakPersistent(event))); 64 // database concurrently. See also comments in the ctor of
65 // DOMWindowEventQueueTimer.
66 // TODO(nhiroki): Callers of enqueueEvent() should specify the task type.
67 TaskRunnerHelper::Get(TaskType::kUnthrottled, worker_global_scope_.Get())
68 ->PostTask(BLINK_FROM_HERE,
69 WTF::Bind(&WorkerEventQueue::DispatchEvent,
70 WrapPersistent(this), WrapWeakPersistent(event)));
haraken 2017/04/17 14:49:52 Not related to this CL, do you know why we're usin
nhiroki 2017/04/18 05:34:38 It was introduced by https://codereview.chromium.o
64 return true; 71 return true;
65 } 72 }
66 73
67 bool WorkerEventQueue::CancelEvent(Event* event) { 74 bool WorkerEventQueue::CancelEvent(Event* event) {
68 if (!RemoveEvent(event)) 75 if (!RemoveEvent(event))
69 return false; 76 return false;
70 probe::AsyncTaskCanceled(event->target()->GetExecutionContext(), event); 77 probe::AsyncTaskCanceled(event->target()->GetExecutionContext(), event);
71 return true; 78 return true;
72 } 79 }
73 80
(...skipping 14 matching lines...) Expand all
88 95
89 void WorkerEventQueue::DispatchEvent(Event* event) { 96 void WorkerEventQueue::DispatchEvent(Event* event) {
90 if (!event || !RemoveEvent(event)) 97 if (!event || !RemoveEvent(event))
91 return; 98 return;
92 99
93 probe::AsyncTask async_task(worker_global_scope_, event); 100 probe::AsyncTask async_task(worker_global_scope_, event);
94 event->target()->DispatchEvent(event); 101 event->target()->DispatchEvent(event);
95 } 102 }
96 103
97 } // namespace blink 104 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698