2009-06-28 22:44:22 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set sw=2 ts=2 et tw=79: */
|
2012-05-29 15:52:43 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-06-28 22:44:22 +00:00
|
|
|
|
2013-08-14 06:56:21 +00:00
|
|
|
#include "nsHtml5Parser.h"
|
|
|
|
|
|
|
|
#include "mozilla/AutoRestore.h"
|
|
|
|
#include "nsContentUtils.h" // for kLoadAsData
|
2009-06-28 22:44:22 +00:00
|
|
|
#include "nsHtml5Tokenizer.h"
|
|
|
|
#include "nsHtml5TreeBuilder.h"
|
2009-09-21 11:43:43 +00:00
|
|
|
#include "nsHtml5AtomTable.h"
|
2011-09-28 12:45:17 +00:00
|
|
|
#include "nsHtml5DependentUTF16Buffer.h"
|
2013-09-10 17:40:50 +00:00
|
|
|
#include "nsNetUtil.h"
|
2009-06-28 22:44:22 +00:00
|
|
|
|
2009-09-18 09:21:47 +00:00
|
|
|
NS_INTERFACE_TABLE_HEAD(nsHtml5Parser)
|
2014-04-27 07:06:00 +00:00
|
|
|
NS_INTERFACE_TABLE(nsHtml5Parser, nsIParser, nsISupportsWeakReference)
|
2009-09-18 09:21:47 +00:00
|
|
|
NS_INTERFACE_TABLE_TO_MAP_SEGUE_CYCLE_COLLECTION(nsHtml5Parser)
|
|
|
|
NS_INTERFACE_MAP_END
|
2009-06-28 22:44:22 +00:00
|
|
|
|
2009-09-18 09:21:47 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsHtml5Parser)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsHtml5Parser)
|
2009-06-28 22:44:22 +00:00
|
|
|
|
2013-08-02 01:29:05 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsHtml5Parser)
|
|
|
|
|
2009-09-18 09:21:47 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsHtml5Parser)
|
2012-11-15 07:32:40 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mExecutor)
|
2014-04-16 05:41:39 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_RAWPTR(GetStreamParser())
|
2009-06-28 22:44:22 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2009-09-18 09:21:47 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsHtml5Parser)
|
2012-11-15 07:32:40 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mExecutor)
|
2010-04-27 07:33:06 +00:00
|
|
|
tmp->DropStreamParser();
|
2009-06-28 22:44:22 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
nsHtml5Parser::nsHtml5Parser()
|
2012-07-30 14:20:58 +00:00
|
|
|
: mFirstBuffer(new nsHtml5OwningUTF16Buffer((void*)nullptr))
|
2009-09-18 09:21:47 +00:00
|
|
|
, mLastBuffer(mFirstBuffer)
|
|
|
|
, mExecutor(new nsHtml5TreeOpExecutor())
|
2012-07-30 14:20:58 +00:00
|
|
|
, mTreeBuilder(new nsHtml5TreeBuilder(mExecutor, nullptr))
|
2011-11-01 11:33:11 +00:00
|
|
|
, mTokenizer(new nsHtml5Tokenizer(mTreeBuilder, false))
|
2009-10-28 13:48:37 +00:00
|
|
|
, mRootContextLineNumber(1)
|
2009-06-28 22:44:22 +00:00
|
|
|
{
|
2009-09-21 13:18:20 +00:00
|
|
|
mTokenizer->setInterner(&mAtomTable);
|
2009-06-28 22:44:22 +00:00
|
|
|
// There's a zeroing operator new for everything else
|
|
|
|
}
|
|
|
|
|
|
|
|
nsHtml5Parser::~nsHtml5Parser()
|
|
|
|
{
|
2009-09-21 13:18:20 +00:00
|
|
|
mTokenizer->end();
|
2010-11-18 08:23:48 +00:00
|
|
|
if (mDocWriteSpeculativeTokenizer) {
|
|
|
|
mDocWriteSpeculativeTokenizer->end();
|
|
|
|
}
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void)
|
|
|
|
nsHtml5Parser::SetContentSink(nsIContentSink* aSink)
|
|
|
|
{
|
2009-09-18 09:21:47 +00:00
|
|
|
NS_ASSERTION(aSink == static_cast<nsIContentSink*> (mExecutor),
|
2009-07-15 11:30:33 +00:00
|
|
|
"Attempt to set a foreign sink.");
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(nsIContentSink*)
|
2010-03-15 12:04:41 +00:00
|
|
|
nsHtml5Parser::GetContentSink()
|
2009-06-28 22:44:22 +00:00
|
|
|
{
|
2009-09-18 09:21:47 +00:00
|
|
|
return static_cast<nsIContentSink*> (mExecutor);
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void)
|
|
|
|
nsHtml5Parser::GetCommand(nsCString& aCommand)
|
|
|
|
{
|
2014-05-22 03:48:51 +00:00
|
|
|
aCommand.AssignLiteral("view");
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void)
|
|
|
|
nsHtml5Parser::SetCommand(const char* aCommand)
|
|
|
|
{
|
2011-11-16 07:38:51 +00:00
|
|
|
NS_ASSERTION(!strcmp(aCommand, "view") ||
|
|
|
|
!strcmp(aCommand, "view-source") ||
|
2011-11-30 13:11:38 +00:00
|
|
|
!strcmp(aCommand, "external-resource") ||
|
2014-05-21 17:08:12 +00:00
|
|
|
!strcmp(aCommand, "import") ||
|
2011-11-16 07:38:51 +00:00
|
|
|
!strcmp(aCommand, kLoadAsData),
|
|
|
|
"Unsupported parser command");
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void)
|
|
|
|
nsHtml5Parser::SetCommand(eParserCommands aParserCommand)
|
|
|
|
{
|
2009-07-15 11:30:33 +00:00
|
|
|
NS_ASSERTION(aParserCommand == eViewNormal,
|
|
|
|
"Parser command was not eViewNormal.");
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void)
|
2010-03-15 12:04:41 +00:00
|
|
|
nsHtml5Parser::SetDocumentCharset(const nsACString& aCharset,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aCharsetSource)
|
2009-06-28 22:44:22 +00:00
|
|
|
{
|
2009-10-12 13:08:04 +00:00
|
|
|
NS_PRECONDITION(!mExecutor->HasStarted(),
|
2009-09-18 09:21:47 +00:00
|
|
|
"Document charset set too late.");
|
2014-04-16 05:41:39 +00:00
|
|
|
NS_PRECONDITION(GetStreamParser(), "Setting charset on a script-only parser.");
|
2012-09-02 02:35:17 +00:00
|
|
|
nsAutoCString trimmed;
|
2011-01-12 08:05:09 +00:00
|
|
|
trimmed.Assign(aCharset);
|
|
|
|
trimmed.Trim(" \t\r\n\f");
|
2014-04-16 05:41:39 +00:00
|
|
|
GetStreamParser()->SetDocumentCharset(trimmed, aCharsetSource);
|
2011-01-12 08:05:09 +00:00
|
|
|
mExecutor->SetDocumentCharsetAndSource(trimmed,
|
2010-03-15 12:04:41 +00:00
|
|
|
aCharsetSource);
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHtml5Parser::GetChannel(nsIChannel** aChannel)
|
|
|
|
{
|
2014-04-16 05:41:39 +00:00
|
|
|
if (GetStreamParser()) {
|
|
|
|
return GetStreamParser()->GetChannel(aChannel);
|
2009-09-18 09:21:47 +00:00
|
|
|
} else {
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHtml5Parser::GetDTD(nsIDTD** aDTD)
|
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
*aDTD = nullptr;
|
2009-06-28 22:44:22 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-11-16 07:50:19 +00:00
|
|
|
nsIStreamListener*
|
|
|
|
nsHtml5Parser::GetStreamListener()
|
2009-09-18 09:21:47 +00:00
|
|
|
{
|
2014-04-16 05:41:39 +00:00
|
|
|
return mStreamListener;
|
2009-09-18 09:21:47 +00:00
|
|
|
}
|
|
|
|
|
2009-06-28 22:44:22 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHtml5Parser::ContinueInterruptedParsing()
|
|
|
|
{
|
2010-02-26 09:18:38 +00:00
|
|
|
NS_NOTREACHED("Don't call. For interface compat only.");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void)
|
|
|
|
nsHtml5Parser::BlockParser()
|
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
mBlocked = true;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void)
|
|
|
|
nsHtml5Parser::UnblockParser()
|
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
mBlocked = false;
|
2012-01-20 11:16:27 +00:00
|
|
|
mExecutor->ContinueInterruptedParsingAsync();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void)
|
|
|
|
nsHtml5Parser::ContinueInterruptedParsingAsync()
|
|
|
|
{
|
|
|
|
mExecutor->ContinueInterruptedParsingAsync();
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHODIMP_(bool)
|
2009-06-28 22:44:22 +00:00
|
|
|
nsHtml5Parser::IsParserEnabled()
|
|
|
|
{
|
|
|
|
return !mBlocked;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHODIMP_(bool)
|
2009-06-28 22:44:22 +00:00
|
|
|
nsHtml5Parser::IsComplete()
|
|
|
|
{
|
2009-09-18 09:21:47 +00:00
|
|
|
return mExecutor->IsComplete();
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-11-30 17:44:31 +00:00
|
|
|
nsHtml5Parser::Parse(nsIURI* aURL,
|
2009-06-28 22:44:22 +00:00
|
|
|
nsIRequestObserver* aObserver,
|
2012-01-20 11:16:27 +00:00
|
|
|
void* aKey, // legacy; ignored
|
2009-06-28 22:44:22 +00:00
|
|
|
nsDTDMode aMode) // legacy; ignored
|
|
|
|
{
|
2009-09-18 09:21:47 +00:00
|
|
|
/*
|
|
|
|
* Do NOT cause WillBuildModel to be called synchronously from here!
|
|
|
|
* The document won't be ready for it until OnStartRequest!
|
|
|
|
*/
|
2009-10-12 13:08:04 +00:00
|
|
|
NS_PRECONDITION(!mExecutor->HasStarted(),
|
2010-03-15 12:04:41 +00:00
|
|
|
"Tried to start parse without initializing the parser.");
|
2014-04-16 05:41:39 +00:00
|
|
|
NS_PRECONDITION(GetStreamParser(),
|
2010-03-15 12:04:41 +00:00
|
|
|
"Can't call this Parse() variant on script-created parser");
|
2014-04-16 05:41:39 +00:00
|
|
|
GetStreamParser()->SetObserver(aObserver);
|
|
|
|
GetStreamParser()->SetViewSourceTitle(aURL); // In case we're viewing source
|
|
|
|
mExecutor->SetStreamParser(GetStreamParser());
|
2009-09-18 09:21:47 +00:00
|
|
|
mExecutor->SetParser(this);
|
2009-06-28 22:44:22 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-01-06 20:11:44 +00:00
|
|
|
nsresult
|
2009-06-28 22:44:22 +00:00
|
|
|
nsHtml5Parser::Parse(const nsAString& aSourceBuffer,
|
|
|
|
void* aKey,
|
2011-11-01 15:27:36 +00:00
|
|
|
const nsACString& aContentType,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aLastCall,
|
2009-06-28 22:44:22 +00:00
|
|
|
nsDTDMode aMode) // ignored
|
|
|
|
{
|
2012-03-21 12:39:25 +00:00
|
|
|
nsresult rv;
|
|
|
|
if (NS_FAILED(rv = mExecutor->IsBroken())) {
|
|
|
|
return rv;
|
2011-09-28 12:45:17 +00:00
|
|
|
}
|
2012-09-28 06:57:33 +00:00
|
|
|
if (aSourceBuffer.Length() > INT32_MAX) {
|
2012-03-21 12:39:25 +00:00
|
|
|
return mExecutor->MarkAsBroken(NS_ERROR_OUT_OF_MEMORY);
|
2011-09-28 12:45:17 +00:00
|
|
|
}
|
2009-09-18 09:21:47 +00:00
|
|
|
|
|
|
|
// Maintain a reference to ourselves so we don't go away
|
|
|
|
// till we're completely done. The old parser grips itself in this method.
|
|
|
|
nsCOMPtr<nsIParser> kungFuDeathGrip(this);
|
|
|
|
|
|
|
|
// Gripping the other objects just in case, since the other old grip
|
|
|
|
// required grips to these, too.
|
2014-04-16 05:41:39 +00:00
|
|
|
nsRefPtr<nsHtml5StreamParser> streamKungFuDeathGrip(GetStreamParser());
|
2009-09-18 09:21:47 +00:00
|
|
|
nsRefPtr<nsHtml5TreeOpExecutor> treeOpKungFuDeathGrip(mExecutor);
|
|
|
|
|
2009-10-12 13:08:04 +00:00
|
|
|
if (!mExecutor->HasStarted()) {
|
2014-04-16 05:41:39 +00:00
|
|
|
NS_ASSERTION(!GetStreamParser(),
|
2009-10-12 13:08:04 +00:00
|
|
|
"Had stream parser but document.write started life cycle.");
|
2010-03-09 12:39:32 +00:00
|
|
|
// This is the first document.write() on a document.open()ed document
|
2009-10-12 13:08:04 +00:00
|
|
|
mExecutor->SetParser(this);
|
|
|
|
mTreeBuilder->setScriptingEnabled(mExecutor->IsScriptEnabled());
|
2013-06-29 03:13:23 +00:00
|
|
|
|
2013-09-10 17:40:50 +00:00
|
|
|
bool isSrcdoc = false;
|
|
|
|
nsCOMPtr<nsIChannel> channel;
|
|
|
|
rv = GetChannel(getter_AddRefs(channel));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
isSrcdoc = NS_IsSrcdocChannel(channel);
|
|
|
|
}
|
|
|
|
mTreeBuilder->setIsSrcdocDocument(isSrcdoc);
|
2013-06-29 03:13:23 +00:00
|
|
|
|
2009-10-12 13:08:04 +00:00
|
|
|
mTokenizer->start();
|
|
|
|
mExecutor->Start();
|
2011-11-01 15:27:36 +00:00
|
|
|
if (!aContentType.EqualsLiteral("text/html")) {
|
|
|
|
mTreeBuilder->StartPlainText();
|
|
|
|
mTokenizer->StartPlainText();
|
|
|
|
}
|
2009-10-12 13:08:04 +00:00
|
|
|
/*
|
|
|
|
* If you move the following line, be very careful not to cause
|
|
|
|
* WillBuildModel to be called before the document has had its
|
|
|
|
* script global object set.
|
|
|
|
*/
|
2014-11-05 15:44:37 +00:00
|
|
|
rv = mExecutor->WillBuildModel(eDTDMode_unknown);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2009-10-12 13:08:04 +00:00
|
|
|
}
|
2010-03-15 12:04:41 +00:00
|
|
|
|
|
|
|
// Return early if the parser has processed EOF
|
2009-10-12 13:08:04 +00:00
|
|
|
if (mExecutor->IsComplete()) {
|
|
|
|
return NS_OK;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
2010-03-15 12:04:41 +00:00
|
|
|
|
2012-01-20 11:16:27 +00:00
|
|
|
if (aLastCall && aSourceBuffer.IsEmpty() && !aKey) {
|
2009-06-28 22:44:22 +00:00
|
|
|
// document.close()
|
2014-04-16 05:41:39 +00:00
|
|
|
NS_ASSERTION(!GetStreamParser(),
|
2009-10-27 07:44:17 +00:00
|
|
|
"Had stream parser but got document.close().");
|
2012-01-20 11:16:26 +00:00
|
|
|
if (mDocumentClosed) {
|
|
|
|
// already closed
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
mDocumentClosed = true;
|
2011-10-29 20:14:31 +00:00
|
|
|
if (!mBlocked && !mInDocumentWrite) {
|
2014-11-05 15:44:37 +00:00
|
|
|
return ParseUntilBlocked();
|
2009-10-27 07:44:17 +00:00
|
|
|
}
|
2009-06-28 22:44:22 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-10-29 20:14:31 +00:00
|
|
|
// If we got this far, we are dealing with a document.write or
|
|
|
|
// document.writeln call--not document.close().
|
|
|
|
|
2010-03-15 12:04:41 +00:00
|
|
|
NS_ASSERTION(IsInsertionPointDefined(),
|
|
|
|
"Doc.write reached parser with undefined insertion point.");
|
2009-10-15 11:29:11 +00:00
|
|
|
|
2014-04-16 05:41:39 +00:00
|
|
|
NS_ASSERTION(!(GetStreamParser() && !aKey),
|
2010-03-15 12:04:41 +00:00
|
|
|
"Got a null key in a non-script-created parser");
|
2009-10-28 13:48:37 +00:00
|
|
|
|
2011-10-29 20:14:31 +00:00
|
|
|
// XXX is this optimization bogus?
|
2009-10-15 11:29:11 +00:00
|
|
|
if (aSourceBuffer.IsEmpty()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-10-29 20:14:31 +00:00
|
|
|
// This guard is here to prevent document.close from tokenizing synchronously
|
|
|
|
// while a document.write (that wrote the script that called document.close!)
|
|
|
|
// is still on the call stack.
|
2011-10-29 20:14:31 +00:00
|
|
|
mozilla::AutoRestore<bool> guard(mInDocumentWrite);
|
|
|
|
mInDocumentWrite = true;
|
|
|
|
|
2011-10-29 20:14:31 +00:00
|
|
|
// The script is identified by aKey. If there's nothing in the buffer
|
|
|
|
// chain for that key, we'll insert at the head of the queue.
|
|
|
|
// When the script leaves something in the queue, a zero-length
|
|
|
|
// key-holder "buffer" is inserted in the queue. If the same script
|
|
|
|
// leaves something in the chain again, it will be inserted immediately
|
|
|
|
// before the old key holder belonging to the same script.
|
|
|
|
//
|
|
|
|
// We don't do the actual data insertion yet in the hope that the data gets
|
|
|
|
// tokenized and there no data or less data to copy to the heap after
|
|
|
|
// tokenization. Also, this way, we avoid inserting one empty data buffer
|
|
|
|
// per document.write, which matters for performance when the parser isn't
|
|
|
|
// blocked and a badly-authored script calls document.write() once per
|
|
|
|
// input character. (As seen in a benchmark!)
|
|
|
|
//
|
|
|
|
// The insertion into the input stream happens conceptually before anything
|
|
|
|
// gets tokenized. To make sure multi-level document.write works right,
|
|
|
|
// it's necessary to establish the location of our parser key up front
|
|
|
|
// in case this is the first write with this key.
|
|
|
|
//
|
|
|
|
// In a document.open() case, the first write level has a null key, so that
|
|
|
|
// case is handled separately, because normal buffers containing data
|
|
|
|
// have null keys.
|
|
|
|
|
2011-10-31 14:28:23 +00:00
|
|
|
// These don't need to be owning references, because they always point to
|
|
|
|
// the buffer queue and buffers can't be removed from the buffer queue
|
|
|
|
// before document.write() returns. The buffer queue clean-up happens the
|
|
|
|
// next time ParseUntilBlocked() is called.
|
|
|
|
// However, they are made owning just in case the reasoning above is flawed
|
|
|
|
// and a flaw would lead to worse problems with plain pointers. If this
|
|
|
|
// turns out to be a perf problem, it's worthwhile to consider making
|
|
|
|
// prevSearchbuf a plain pointer again.
|
|
|
|
nsRefPtr<nsHtml5OwningUTF16Buffer> prevSearchBuf;
|
|
|
|
nsRefPtr<nsHtml5OwningUTF16Buffer> firstLevelMarker;
|
2011-10-29 20:14:31 +00:00
|
|
|
|
|
|
|
if (aKey) {
|
|
|
|
if (mFirstBuffer == mLastBuffer) {
|
|
|
|
nsHtml5OwningUTF16Buffer* keyHolder = new nsHtml5OwningUTF16Buffer(aKey);
|
|
|
|
keyHolder->next = mLastBuffer;
|
|
|
|
mFirstBuffer = keyHolder;
|
2011-10-31 14:28:23 +00:00
|
|
|
} else if (mFirstBuffer->key != aKey) {
|
2011-10-29 20:14:31 +00:00
|
|
|
prevSearchBuf = mFirstBuffer;
|
|
|
|
for (;;) {
|
|
|
|
if (prevSearchBuf->next == mLastBuffer) {
|
|
|
|
// key was not found
|
|
|
|
nsHtml5OwningUTF16Buffer* keyHolder =
|
|
|
|
new nsHtml5OwningUTF16Buffer(aKey);
|
|
|
|
keyHolder->next = mFirstBuffer;
|
|
|
|
mFirstBuffer = keyHolder;
|
2012-07-30 14:20:58 +00:00
|
|
|
prevSearchBuf = nullptr;
|
2011-10-29 20:14:31 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (prevSearchBuf->next->key == aKey) {
|
|
|
|
// found a key holder
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
prevSearchBuf = prevSearchBuf->next;
|
|
|
|
}
|
2011-10-31 14:28:23 +00:00
|
|
|
} // else mFirstBuffer is the keyholder
|
|
|
|
|
2011-10-29 20:14:31 +00:00
|
|
|
// prevSearchBuf is the previous buffer before the keyholder or null if
|
|
|
|
// there isn't one.
|
|
|
|
} else {
|
2012-04-13 17:46:07 +00:00
|
|
|
// We have a first-level write in the document.open() case. We insert before
|
|
|
|
// mLastBuffer, effectively, by making mLastBuffer be a new sentinel object
|
|
|
|
// and redesignating the previous mLastBuffer as our firstLevelMarker. We
|
|
|
|
// need to put a marker there, because otherwise additional document.writes
|
|
|
|
// from nested event loops would insert in the wrong place. Sigh.
|
2012-07-30 14:20:58 +00:00
|
|
|
mLastBuffer->next = new nsHtml5OwningUTF16Buffer((void*)nullptr);
|
2012-04-13 17:46:07 +00:00
|
|
|
firstLevelMarker = mLastBuffer;
|
|
|
|
mLastBuffer = mLastBuffer->next;
|
2011-10-29 20:14:31 +00:00
|
|
|
}
|
|
|
|
|
2011-09-28 12:45:17 +00:00
|
|
|
nsHtml5DependentUTF16Buffer stackBuffer(aSourceBuffer);
|
|
|
|
|
|
|
|
while (!mBlocked && stackBuffer.hasMore()) {
|
|
|
|
stackBuffer.adjust(mLastWasCR);
|
2011-10-17 14:59:28 +00:00
|
|
|
mLastWasCR = false;
|
2011-09-28 12:45:17 +00:00
|
|
|
if (stackBuffer.hasMore()) {
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t lineNumberSave;
|
2014-04-16 05:41:39 +00:00
|
|
|
bool inRootContext = (!GetStreamParser() && !aKey);
|
2011-09-28 12:45:17 +00:00
|
|
|
if (inRootContext) {
|
|
|
|
mTokenizer->setLineNumber(mRootContextLineNumber);
|
|
|
|
} else {
|
|
|
|
// we aren't the root context, so save the line number on the
|
|
|
|
// *stack* so that we can restore it.
|
|
|
|
lineNumberSave = mTokenizer->getLineNumber();
|
|
|
|
}
|
|
|
|
|
|
|
|
mLastWasCR = mTokenizer->tokenizeBuffer(&stackBuffer);
|
|
|
|
|
|
|
|
if (inRootContext) {
|
|
|
|
mRootContextLineNumber = mTokenizer->getLineNumber();
|
|
|
|
} else {
|
|
|
|
mTokenizer->setLineNumber(lineNumberSave);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mTreeBuilder->HasScript()) {
|
|
|
|
mTreeBuilder->Flush(); // Move ops to the executor
|
2014-11-05 15:44:37 +00:00
|
|
|
rv = mExecutor->FlushDocumentWrite(); // run the ops
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2011-10-29 20:14:31 +00:00
|
|
|
// Flushing tree ops can cause all sorts of things.
|
|
|
|
// Return early if the parser got terminated.
|
|
|
|
if (mExecutor->IsComplete()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2011-09-28 12:45:17 +00:00
|
|
|
}
|
|
|
|
// Ignore suspension requests
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<nsHtml5OwningUTF16Buffer> heapBuffer;
|
|
|
|
if (stackBuffer.hasMore()) {
|
|
|
|
// The buffer wasn't tokenized to completion. Create a copy of the tail
|
|
|
|
// on the heap.
|
|
|
|
heapBuffer = stackBuffer.FalliblyCopyAsOwningBuffer();
|
|
|
|
if (!heapBuffer) {
|
|
|
|
// Allocation failed. The parser is now broken.
|
2012-03-21 12:39:25 +00:00
|
|
|
return mExecutor->MarkAsBroken(NS_ERROR_OUT_OF_MEMORY);
|
2011-09-28 12:45:17 +00:00
|
|
|
}
|
|
|
|
}
|
2009-10-15 11:29:11 +00:00
|
|
|
|
2011-10-29 20:14:31 +00:00
|
|
|
if (heapBuffer) {
|
|
|
|
// We have something to insert before the keyholder holding in the non-null
|
|
|
|
// aKey case and we have something to swap into firstLevelMarker in the
|
|
|
|
// null aKey case.
|
|
|
|
if (aKey) {
|
|
|
|
NS_ASSERTION(mFirstBuffer != mLastBuffer,
|
|
|
|
"Where's the keyholder?");
|
|
|
|
// the key holder is still somewhere further down the list from
|
|
|
|
// prevSearchBuf (which may be null)
|
|
|
|
if (mFirstBuffer->key == aKey) {
|
|
|
|
NS_ASSERTION(!prevSearchBuf,
|
|
|
|
"Non-null prevSearchBuf when mFirstBuffer is the key holder?");
|
|
|
|
heapBuffer->next = mFirstBuffer;
|
2011-09-28 12:45:17 +00:00
|
|
|
mFirstBuffer = heapBuffer;
|
|
|
|
} else {
|
2011-10-29 20:14:31 +00:00
|
|
|
if (!prevSearchBuf) {
|
|
|
|
prevSearchBuf = mFirstBuffer;
|
|
|
|
}
|
|
|
|
// We created a key holder earlier, so we will find it without walking
|
|
|
|
// past the end of the list.
|
|
|
|
while (prevSearchBuf->next->key != aKey) {
|
|
|
|
prevSearchBuf = prevSearchBuf->next;
|
|
|
|
}
|
|
|
|
heapBuffer->next = prevSearchBuf->next;
|
|
|
|
prevSearchBuf->next = heapBuffer;
|
2011-09-28 12:45:17 +00:00
|
|
|
}
|
2010-01-18 13:39:17 +00:00
|
|
|
} else {
|
2011-10-29 20:14:31 +00:00
|
|
|
NS_ASSERTION(firstLevelMarker, "How come we don't have a marker.");
|
|
|
|
firstLevelMarker->Swap(heapBuffer);
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-15 11:29:11 +00:00
|
|
|
if (!mBlocked) { // buffer was tokenized to completion
|
2011-09-28 12:45:17 +00:00
|
|
|
NS_ASSERTION(!stackBuffer.hasMore(),
|
|
|
|
"Buffer wasn't tokenized to completion?");
|
2009-10-15 11:29:11 +00:00
|
|
|
// Scripting semantics require a forced tree builder flush here
|
|
|
|
mTreeBuilder->Flush(); // Move ops to the executor
|
2014-11-05 15:44:37 +00:00
|
|
|
rv = mExecutor->FlushDocumentWrite(); // run the ops
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2011-09-28 12:45:17 +00:00
|
|
|
} else if (stackBuffer.hasMore()) {
|
2010-11-18 08:23:48 +00:00
|
|
|
// The buffer wasn't tokenized to completion. Tokenize the untokenized
|
|
|
|
// content in order to preload stuff. This content will be retokenized
|
|
|
|
// later for normal parsing.
|
|
|
|
if (!mDocWriteSpeculatorActive) {
|
2011-10-17 14:59:28 +00:00
|
|
|
mDocWriteSpeculatorActive = true;
|
2010-11-18 08:23:48 +00:00
|
|
|
if (!mDocWriteSpeculativeTreeBuilder) {
|
|
|
|
// Lazily initialize if uninitialized
|
|
|
|
mDocWriteSpeculativeTreeBuilder =
|
2012-07-30 14:20:58 +00:00
|
|
|
new nsHtml5TreeBuilder(nullptr, mExecutor->GetStage());
|
2011-04-28 07:01:13 +00:00
|
|
|
mDocWriteSpeculativeTreeBuilder->setScriptingEnabled(
|
|
|
|
mTreeBuilder->isScriptingEnabled());
|
2010-11-18 08:23:48 +00:00
|
|
|
mDocWriteSpeculativeTokenizer =
|
2011-11-01 11:33:11 +00:00
|
|
|
new nsHtml5Tokenizer(mDocWriteSpeculativeTreeBuilder, false);
|
2010-11-18 08:23:48 +00:00
|
|
|
mDocWriteSpeculativeTokenizer->setInterner(&mAtomTable);
|
|
|
|
mDocWriteSpeculativeTokenizer->start();
|
|
|
|
}
|
|
|
|
mDocWriteSpeculativeTokenizer->resetToDataState();
|
|
|
|
mDocWriteSpeculativeTreeBuilder->loadState(mTreeBuilder, &mAtomTable);
|
2011-10-17 14:59:28 +00:00
|
|
|
mDocWriteSpeculativeLastWasCR = false;
|
2010-11-18 08:23:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Note that with multilevel document.write if we didn't just activate the
|
|
|
|
// speculator, it's possible that the speculator is now in the wrong state.
|
|
|
|
// That's OK for the sake of simplicity. The worst that can happen is
|
|
|
|
// that the speculative loads aren't exactly right. The content will be
|
|
|
|
// reparsed anyway for non-preload purposes.
|
|
|
|
|
2011-09-28 12:45:17 +00:00
|
|
|
// The buffer position for subsequent non-speculative parsing now lives
|
|
|
|
// in heapBuffer, so it's ok to let the buffer position of stackBuffer
|
|
|
|
// to be overwritten and not restored below.
|
|
|
|
while (stackBuffer.hasMore()) {
|
|
|
|
stackBuffer.adjust(mDocWriteSpeculativeLastWasCR);
|
|
|
|
if (stackBuffer.hasMore()) {
|
2010-11-18 08:23:48 +00:00
|
|
|
mDocWriteSpeculativeLastWasCR =
|
2011-09-28 12:45:17 +00:00
|
|
|
mDocWriteSpeculativeTokenizer->tokenizeBuffer(&stackBuffer);
|
2010-11-18 08:23:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mDocWriteSpeculativeTreeBuilder->Flush();
|
|
|
|
mDocWriteSpeculativeTreeBuilder->DropHandles();
|
|
|
|
mExecutor->FlushSpeculativeLoads();
|
2009-10-15 11:29:11 +00:00
|
|
|
}
|
|
|
|
|
2009-06-28 22:44:22 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-03-15 12:04:41 +00:00
|
|
|
nsHtml5Parser::Terminate()
|
2009-06-28 22:44:22 +00:00
|
|
|
{
|
|
|
|
// We should only call DidBuildModel once, so don't do anything if this is
|
|
|
|
// the second time that Terminate has been called.
|
2009-10-12 13:08:04 +00:00
|
|
|
if (mExecutor->IsComplete()) {
|
2009-06-28 22:44:22 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
// XXX - [ until we figure out a way to break parser-sink circularity ]
|
|
|
|
// Hack - Hold a reference until we are completely done...
|
|
|
|
nsCOMPtr<nsIParser> kungFuDeathGrip(this);
|
2014-04-16 05:41:39 +00:00
|
|
|
nsRefPtr<nsHtml5StreamParser> streamKungFuDeathGrip(GetStreamParser());
|
2009-09-18 09:21:47 +00:00
|
|
|
nsRefPtr<nsHtml5TreeOpExecutor> treeOpKungFuDeathGrip(mExecutor);
|
2014-04-16 05:41:39 +00:00
|
|
|
if (GetStreamParser()) {
|
|
|
|
GetStreamParser()->Terminate();
|
2009-09-21 13:18:20 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return mExecutor->DidBuildModel(true);
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHtml5Parser::ParseFragment(const nsAString& aSourceBuffer,
|
2011-08-01 07:48:24 +00:00
|
|
|
nsTArray<nsString>& aTagStack)
|
2010-11-16 07:47:10 +00:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2009-06-28 22:44:22 +00:00
|
|
|
NS_IMETHODIMP
|
2010-03-15 12:04:41 +00:00
|
|
|
nsHtml5Parser::BuildModel()
|
2009-06-28 22:44:22 +00:00
|
|
|
{
|
2009-09-21 13:18:20 +00:00
|
|
|
NS_NOTREACHED("Don't call this!");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHtml5Parser::CancelParsingEvents()
|
|
|
|
{
|
2009-10-27 08:00:22 +00:00
|
|
|
NS_NOTREACHED("Don't call this!");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHtml5Parser::Reset()
|
|
|
|
{
|
2012-01-20 11:16:27 +00:00
|
|
|
NS_NOTREACHED("Don't call this!");
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2009-10-15 11:29:11 +00:00
|
|
|
nsHtml5Parser::IsInsertionPointDefined()
|
|
|
|
{
|
|
|
|
return !mExecutor->IsFlushing() &&
|
2014-04-16 05:41:39 +00:00
|
|
|
(!GetStreamParser() || mParserInsertedScriptsBeingEvaluated);
|
2009-10-15 11:29:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHtml5Parser::BeginEvaluatingParserInsertedScript()
|
|
|
|
{
|
|
|
|
++mParserInsertedScriptsBeingEvaluated;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHtml5Parser::EndEvaluatingParserInsertedScript()
|
|
|
|
{
|
|
|
|
--mParserInsertedScriptsBeingEvaluated;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-07-30 10:15:38 +00:00
|
|
|
nsHtml5Parser::MarkAsNotScriptCreated(const char* aCommand)
|
2009-10-15 11:29:11 +00:00
|
|
|
{
|
2014-04-16 05:41:39 +00:00
|
|
|
NS_PRECONDITION(!mStreamListener, "Must not call this twice.");
|
2010-07-30 10:15:38 +00:00
|
|
|
eParserMode mode = NORMAL;
|
|
|
|
if (!nsCRT::strcmp(aCommand, "view-source")) {
|
|
|
|
mode = VIEW_SOURCE_HTML;
|
2011-11-01 11:33:11 +00:00
|
|
|
} else if (!nsCRT::strcmp(aCommand, "view-source-xml")) {
|
|
|
|
mode = VIEW_SOURCE_XML;
|
2011-11-30 17:44:31 +00:00
|
|
|
} else if (!nsCRT::strcmp(aCommand, "view-source-plain")) {
|
|
|
|
mode = VIEW_SOURCE_PLAIN;
|
2011-11-01 15:27:36 +00:00
|
|
|
} else if (!nsCRT::strcmp(aCommand, "plain-text")) {
|
|
|
|
mode = PLAIN_TEXT;
|
2011-11-16 07:38:51 +00:00
|
|
|
} else if (!nsCRT::strcmp(aCommand, kLoadAsData)) {
|
|
|
|
mode = LOAD_AS_DATA;
|
2010-07-30 10:15:38 +00:00
|
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
|
|
else {
|
2011-11-30 13:11:38 +00:00
|
|
|
NS_ASSERTION(!nsCRT::strcmp(aCommand, "view") ||
|
2014-05-21 17:08:12 +00:00
|
|
|
!nsCRT::strcmp(aCommand, "external-resource") ||
|
|
|
|
!nsCRT::strcmp(aCommand, "import"),
|
2011-11-30 13:11:38 +00:00
|
|
|
"Unsupported parser command!");
|
2010-07-30 10:15:38 +00:00
|
|
|
}
|
|
|
|
#endif
|
2014-04-16 05:41:39 +00:00
|
|
|
mStreamListener =
|
|
|
|
new nsHtml5StreamListener(new nsHtml5StreamParser(mExecutor, this, mode));
|
2009-10-15 11:29:11 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2009-10-15 11:29:11 +00:00
|
|
|
nsHtml5Parser::IsScriptCreated()
|
|
|
|
{
|
2014-04-16 05:41:39 +00:00
|
|
|
return !GetStreamParser();
|
2009-10-15 11:29:11 +00:00
|
|
|
}
|
|
|
|
|
2009-06-28 22:44:22 +00:00
|
|
|
/* End nsIParser */
|
|
|
|
|
|
|
|
// not from interface
|
2014-11-05 15:44:37 +00:00
|
|
|
nsresult
|
2009-10-27 07:44:17 +00:00
|
|
|
nsHtml5Parser::ParseUntilBlocked()
|
2009-06-28 22:44:22 +00:00
|
|
|
{
|
2014-11-05 15:44:37 +00:00
|
|
|
nsresult rv = mExecutor->IsBroken();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (mBlocked || mExecutor->IsComplete()) {
|
|
|
|
return NS_OK;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
2009-10-12 13:08:04 +00:00
|
|
|
NS_ASSERTION(mExecutor->HasStarted(), "Bad life cycle.");
|
2011-10-29 20:14:31 +00:00
|
|
|
NS_ASSERTION(!mInDocumentWrite,
|
|
|
|
"ParseUntilBlocked entered while in doc.write!");
|
2009-06-28 22:44:22 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
mDocWriteSpeculatorActive = false;
|
2010-11-18 08:23:48 +00:00
|
|
|
|
2009-06-28 22:44:22 +00:00
|
|
|
for (;;) {
|
|
|
|
if (!mFirstBuffer->hasMore()) {
|
|
|
|
if (mFirstBuffer == mLastBuffer) {
|
2009-10-12 13:08:04 +00:00
|
|
|
if (mExecutor->IsComplete()) {
|
|
|
|
// something like cache manisfests stopped the parse in mid-flight
|
2014-11-05 15:44:37 +00:00
|
|
|
return NS_OK;
|
2009-10-12 13:08:04 +00:00
|
|
|
}
|
|
|
|
if (mDocumentClosed) {
|
2014-04-16 05:41:39 +00:00
|
|
|
NS_ASSERTION(!GetStreamParser(),
|
2009-10-12 13:08:04 +00:00
|
|
|
"This should only happen with script-created parser.");
|
|
|
|
mTokenizer->eof();
|
|
|
|
mTreeBuilder->StreamEnded();
|
|
|
|
mTreeBuilder->Flush();
|
2010-02-26 09:18:38 +00:00
|
|
|
mExecutor->FlushDocumentWrite();
|
2014-11-05 15:44:37 +00:00
|
|
|
// The below call does memory cleanup, so call it even if the
|
|
|
|
// parser has been marked as broken.
|
2009-10-12 13:08:04 +00:00
|
|
|
mTokenizer->end();
|
2014-11-05 15:44:37 +00:00
|
|
|
return NS_OK;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
2010-03-15 12:04:41 +00:00
|
|
|
// never release the last buffer.
|
|
|
|
NS_ASSERTION(!mLastBuffer->getStart() && !mLastBuffer->getEnd(),
|
|
|
|
"Sentinel buffer had its indeces changed.");
|
2014-04-16 05:41:39 +00:00
|
|
|
if (GetStreamParser()) {
|
2010-11-16 07:48:30 +00:00
|
|
|
if (mReturnToStreamParserPermitted &&
|
|
|
|
!mExecutor->IsScriptExecuting()) {
|
|
|
|
mTreeBuilder->Flush();
|
2011-10-17 14:59:28 +00:00
|
|
|
mReturnToStreamParserPermitted = false;
|
2014-04-16 05:41:39 +00:00
|
|
|
GetStreamParser()->ContinueAfterScripts(mTokenizer,
|
2010-11-16 07:48:30 +00:00
|
|
|
mTreeBuilder,
|
|
|
|
mLastWasCR);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Script-created parser
|
2010-03-15 12:04:41 +00:00
|
|
|
mTreeBuilder->Flush();
|
2010-11-16 07:48:30 +00:00
|
|
|
// No need to flush the executor, because the executor is already
|
|
|
|
// in a flush
|
|
|
|
NS_ASSERTION(mExecutor->IsInFlushLoop(),
|
|
|
|
"How did we come here without being in the flush loop?");
|
2010-03-15 12:04:41 +00:00
|
|
|
}
|
2014-11-05 15:44:37 +00:00
|
|
|
return NS_OK; // no more data for now but expecting more
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
2010-03-15 12:04:41 +00:00
|
|
|
mFirstBuffer = mFirstBuffer->next;
|
|
|
|
continue;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 13:08:04 +00:00
|
|
|
if (mBlocked || mExecutor->IsComplete()) {
|
2014-11-05 15:44:37 +00:00
|
|
|
return NS_OK;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// now we have a non-empty buffer
|
|
|
|
mFirstBuffer->adjust(mLastWasCR);
|
2011-10-17 14:59:28 +00:00
|
|
|
mLastWasCR = false;
|
2009-06-28 22:44:22 +00:00
|
|
|
if (mFirstBuffer->hasMore()) {
|
2014-04-16 05:41:39 +00:00
|
|
|
bool inRootContext = (!GetStreamParser() && !mFirstBuffer->key);
|
2009-10-28 13:48:37 +00:00
|
|
|
if (inRootContext) {
|
|
|
|
mTokenizer->setLineNumber(mRootContextLineNumber);
|
|
|
|
}
|
2009-06-28 22:44:22 +00:00
|
|
|
mLastWasCR = mTokenizer->tokenizeBuffer(mFirstBuffer);
|
2009-10-28 13:48:37 +00:00
|
|
|
if (inRootContext) {
|
|
|
|
mRootContextLineNumber = mTokenizer->getLineNumber();
|
|
|
|
}
|
2009-09-21 13:18:20 +00:00
|
|
|
if (mTreeBuilder->HasScript()) {
|
|
|
|
mTreeBuilder->Flush();
|
2014-11-05 15:44:37 +00:00
|
|
|
nsresult rv = mExecutor->FlushDocumentWrite();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
2009-09-21 13:18:20 +00:00
|
|
|
if (mBlocked) {
|
2014-11-05 15:44:37 +00:00
|
|
|
return NS_OK;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
}
|
2009-07-15 11:30:33 +00:00
|
|
|
continue;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsHtml5Parser::Initialize(nsIDocument* aDoc,
|
|
|
|
nsIURI* aURI,
|
|
|
|
nsISupports* aContainer,
|
|
|
|
nsIChannel* aChannel)
|
|
|
|
{
|
2009-09-18 09:21:47 +00:00
|
|
|
return mExecutor->Init(aDoc, aURI, aContainer, aChannel);
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
2009-09-21 13:18:20 +00:00
|
|
|
void
|
2011-09-29 06:19:26 +00:00
|
|
|
nsHtml5Parser::StartTokenizer(bool aScriptingEnabled) {
|
2013-06-29 03:13:23 +00:00
|
|
|
|
2013-09-10 17:40:50 +00:00
|
|
|
bool isSrcdoc = false;
|
|
|
|
nsCOMPtr<nsIChannel> channel;
|
|
|
|
nsresult rv = GetChannel(getter_AddRefs(channel));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
isSrcdoc = NS_IsSrcdocChannel(channel);
|
|
|
|
}
|
|
|
|
mTreeBuilder->setIsSrcdocDocument(isSrcdoc);
|
2013-06-29 03:13:23 +00:00
|
|
|
|
2012-06-20 07:05:39 +00:00
|
|
|
mTreeBuilder->SetPreventScriptExecution(!aScriptingEnabled);
|
2009-09-21 13:18:20 +00:00
|
|
|
mTreeBuilder->setScriptingEnabled(aScriptingEnabled);
|
|
|
|
mTokenizer->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-03-15 12:04:41 +00:00
|
|
|
nsHtml5Parser::InitializeDocWriteParserState(nsAHtml5TreeBuilderState* aState,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aLine)
|
2009-09-21 13:18:20 +00:00
|
|
|
{
|
|
|
|
mTokenizer->resetToDataState();
|
2009-10-28 13:48:37 +00:00
|
|
|
mTokenizer->setLineNumber(aLine);
|
2009-09-21 13:18:20 +00:00
|
|
|
mTreeBuilder->loadState(aState, &mAtomTable);
|
2011-10-17 14:59:28 +00:00
|
|
|
mLastWasCR = false;
|
|
|
|
mReturnToStreamParserPermitted = true;
|
2009-09-21 13:18:20 +00:00
|
|
|
}
|
2009-10-21 12:12:50 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
nsHtml5Parser::ContinueAfterFailedCharsetSwitch()
|
|
|
|
{
|
2014-04-16 05:41:39 +00:00
|
|
|
NS_PRECONDITION(GetStreamParser(),
|
2009-10-21 12:12:50 +00:00
|
|
|
"Tried to continue after failed charset switch without a stream parser");
|
2014-04-16 05:41:39 +00:00
|
|
|
GetStreamParser()->ContinueAfterFailedCharsetSwitch();
|
2009-10-21 12:12:50 +00:00
|
|
|
}
|
2013-06-29 03:13:23 +00:00
|
|
|
|