| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. | |
| 3 * | |
| 4 * Redistribution and use in source and binary forms, with or without | |
| 5 * modification, are permitted provided that the following conditions | |
| 6 * are met: | |
| 7 * 1. Redistributions of source code must retain the above copyright | |
| 8 * notice, this list of conditions and the following disclaimer. | |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | |
| 10 * notice, this list of conditions and the following disclaimer in the | |
| 11 * documentation and/or other materials provided with the distribution. | |
| 12 * | |
| 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY | |
| 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
| 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR | |
| 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
| 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
| 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | |
| 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 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. | |
| 24 */ | |
| 25 | |
| 26 #include "sky/engine/core/html/parser/HTMLParserScheduler.h" | |
| 27 | |
| 28 #include "sky/engine/core/dom/Document.h" | |
| 29 #include "sky/engine/core/frame/FrameView.h" | |
| 30 #include "sky/engine/core/html/parser/HTMLDocumentParser.h" | |
| 31 | |
| 32 namespace blink { | |
| 33 | |
| 34 // parserChunkSize is used to define how many tokens the parser will | |
| 35 // process before checking against parserTimeLimit and possibly yielding. | |
| 36 // This is a performance optimization to prevent checking after every token. | |
| 37 const int HTMLParserScheduler::parserChunkSize = 4096; | |
| 38 | |
| 39 // parserTimeLimit is the seconds the parser will run in one write() call | |
| 40 // before yielding. Inline <script> execution can cause it to exceed the limit. | |
| 41 const double HTMLParserScheduler::parserTimeLimit = 0.2; | |
| 42 | |
| 43 ActiveParserSession::ActiveParserSession(Document* document) | |
| 44 : m_document(document) | |
| 45 { | |
| 46 if (!m_document) | |
| 47 return; | |
| 48 m_document->incrementActiveParserCount(); | |
| 49 } | |
| 50 | |
| 51 ActiveParserSession::~ActiveParserSession() | |
| 52 { | |
| 53 if (!m_document) | |
| 54 return; | |
| 55 m_document->decrementActiveParserCount(); | |
| 56 } | |
| 57 | |
| 58 PumpSession::PumpSession(unsigned& nestingLevel, Document* document) | |
| 59 : NestingLevelIncrementer(nestingLevel) | |
| 60 , ActiveParserSession(document) | |
| 61 // Setting processedTokens to INT_MAX causes us to check for yields | |
| 62 // after any token during any parse where yielding is allowed. | |
| 63 // At that time we'll initialize startTime. | |
| 64 , processedTokens(INT_MAX) | |
| 65 , startTime(0) | |
| 66 , needsYield(false) | |
| 67 , didSeeScript(false) | |
| 68 { | |
| 69 } | |
| 70 | |
| 71 PumpSession::~PumpSession() | |
| 72 { | |
| 73 } | |
| 74 | |
| 75 HTMLParserScheduler::HTMLParserScheduler(HTMLDocumentParser* parser) | |
| 76 : m_parser(parser) | |
| 77 , m_continueNextChunkTimer(this, &HTMLParserScheduler::continueNextChunkTime
rFired) | |
| 78 { | |
| 79 } | |
| 80 | |
| 81 HTMLParserScheduler::~HTMLParserScheduler() | |
| 82 { | |
| 83 m_continueNextChunkTimer.stop(); | |
| 84 } | |
| 85 | |
| 86 void HTMLParserScheduler::continueNextChunkTimerFired(Timer<HTMLParserScheduler>
* timer) | |
| 87 { | |
| 88 ASSERT_UNUSED(timer, timer == &m_continueNextChunkTimer); | |
| 89 m_parser->resumeParsingAfterYield(); | |
| 90 } | |
| 91 | |
| 92 void HTMLParserScheduler::scheduleForResume() | |
| 93 { | |
| 94 m_continueNextChunkTimer.startOneShot(0, FROM_HERE); | |
| 95 } | |
| 96 | |
| 97 } | |
| OLD | NEW |