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

Side by Side Diff: third_party/WebKit/Source/core/html/parser/HTMLParserScheduler.h

Issue 2554813002: Make HTMLParserScheduler inherit from ActiveDOMObject
Patch Set: Created 4 years 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 INC. ``AS IS'' AND ANY 13 * THIS SOFTWARE IS PROVIDED BY APPLE 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 INC. OR 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE 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 #ifndef HTMLParserScheduler_h 26 #ifndef HTMLParserScheduler_h
27 #define HTMLParserScheduler_h 27 #define HTMLParserScheduler_h
28 28
29 #include "core/dom/ActiveDOMObject.h"
29 #include "core/html/parser/NestingLevelIncrementer.h" 30 #include "core/html/parser/NestingLevelIncrementer.h"
30 #include "platform/WebTaskRunner.h" 31 #include "platform/WebTaskRunner.h"
31 #include "wtf/Allocator.h" 32 #include "wtf/Allocator.h"
32 #include "wtf/RefPtr.h" 33 #include "wtf/RefPtr.h"
33 #include <memory> 34 #include <memory>
34 35
35 namespace blink { 36 namespace blink {
36 37
38 class Document;
37 class HTMLDocumentParser; 39 class HTMLDocumentParser;
38 class WebTaskRunner; 40 class WebTaskRunner;
39 41
40 class PumpSession : public NestingLevelIncrementer { 42 class PumpSession : public NestingLevelIncrementer {
41 STACK_ALLOCATED(); 43 STACK_ALLOCATED();
42 44
43 public: 45 public:
44 PumpSession(unsigned& nestingLevel); 46 PumpSession(unsigned& nestingLevel);
45 ~PumpSession(); 47 ~PumpSession();
46 }; 48 };
47 49
48 class SpeculationsPumpSession : public NestingLevelIncrementer { 50 class SpeculationsPumpSession : public NestingLevelIncrementer {
49 STACK_ALLOCATED(); 51 STACK_ALLOCATED();
50 52
51 public: 53 public:
52 SpeculationsPumpSession(unsigned& nestingLevel); 54 SpeculationsPumpSession(unsigned& nestingLevel);
53 ~SpeculationsPumpSession(); 55 ~SpeculationsPumpSession();
54 56
55 double elapsedTime() const; 57 double elapsedTime() const;
56 void addedElementTokens(size_t count); 58 void addedElementTokens(size_t count);
57 size_t processedElementTokens() const { return m_processedElementTokens; } 59 size_t processedElementTokens() const { return m_processedElementTokens; }
58 60
59 private: 61 private:
60 double m_startTime; 62 double m_startTime;
61 size_t m_processedElementTokens; 63 size_t m_processedElementTokens;
62 }; 64 };
63 65
64 class HTMLParserScheduler final 66 class HTMLParserScheduler final
65 : public GarbageCollectedFinalized<HTMLParserScheduler> { 67 : public GarbageCollectedFinalized<HTMLParserScheduler>,
68 public ActiveDOMObject {
66 WTF_MAKE_NONCOPYABLE(HTMLParserScheduler); 69 WTF_MAKE_NONCOPYABLE(HTMLParserScheduler);
70 USING_GARBAGE_COLLECTED_MIXIN(HTMLParserScheduler);
67 71
68 public: 72 public:
69 static HTMLParserScheduler* create(HTMLDocumentParser* parser, 73 static HTMLParserScheduler* create(Document&,
70 WebTaskRunner* loadingTaskRunner) { 74 HTMLDocumentParser*,
71 return new HTMLParserScheduler(parser, loadingTaskRunner); 75 WebTaskRunner*);
72 }
73 ~HTMLParserScheduler(); 76 ~HTMLParserScheduler();
74 77
75 bool isScheduledForResume() const; 78 bool isScheduledForResume() const;
76 void scheduleForResume(); 79 void scheduleForResume();
77 bool yieldIfNeeded(const SpeculationsPumpSession&, bool startingScript); 80 bool yieldIfNeeded(const SpeculationsPumpSession&, bool startingScript);
78 81
79 /** 82 void suspend() final;
80 * Can only be called if this scheduler is suspended. If this is called, 83 void resume() final;
81 * then after the scheduler is resumed by calling resume(), this call
82 * ensures that HTMLDocumentParser::resumeAfterYield will be called. Used to
83 * signal this scheduler that the background html parser sent chunks to
84 * HTMLDocumentParser while it was suspended.
85 */
86 void forceResumeAfterYield();
87
88 void suspend();
89 void resume();
90 84
91 void detach(); // Clear active tasks if any. 85 void detach(); // Clear active tasks if any.
92 86
93 DECLARE_TRACE(); 87 DECLARE_TRACE();
94 88
95 private: 89 private:
96 HTMLParserScheduler(HTMLDocumentParser*, WebTaskRunner*); 90 HTMLParserScheduler(Document&, HTMLDocumentParser*, WebTaskRunner*);
97 91
98 bool shouldYield(const SpeculationsPumpSession&, bool startingScript) const; 92 bool shouldYield(const SpeculationsPumpSession&, bool startingScript) const;
99 void continueParsing(); 93 void continueParsing();
100 94
101 Member<HTMLDocumentParser> m_parser; 95 Member<HTMLDocumentParser> m_parser;
102 std::unique_ptr<WebTaskRunner> m_loadingTaskRunner; 96 std::unique_ptr<WebTaskRunner> m_loadingTaskRunner;
103 97
104 TaskHandle m_cancellableContinueParseTaskHandle; 98 TaskHandle m_cancellableContinueParseTaskHandle;
105 bool m_isSuspendedWithActiveTimer; 99 bool m_isSuspendedWithActiveTimer;
106 }; 100 };
107 101
108 } // namespace blink 102 } // namespace blink
109 103
110 #endif 104 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698