mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
402 lines
11 KiB
C++
402 lines
11 KiB
C++
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is HTML Parser Gecko integration code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Mozilla Foundation.
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Henri Sivonen <hsivonen@iki.fi>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#ifndef nsHtml5TreeOpExecutor_h__
|
|
#define nsHtml5TreeOpExecutor_h__
|
|
|
|
#include "prtypes.h"
|
|
#include "nsIAtom.h"
|
|
#include "nsINameSpaceManager.h"
|
|
#include "nsIContent.h"
|
|
#include "nsIDocument.h"
|
|
#include "nsTraceRefcnt.h"
|
|
#include "nsHtml5TreeOperation.h"
|
|
#include "nsHtml5PendingNotification.h"
|
|
#include "nsTArray.h"
|
|
#include "nsContentSink.h"
|
|
#include "nsNodeInfoManager.h"
|
|
#include "nsHtml5DocumentMode.h"
|
|
#include "nsITimer.h"
|
|
#include "nsIScriptElement.h"
|
|
#include "nsIParser.h"
|
|
|
|
class nsHtml5TreeBuilder;
|
|
class nsHtml5Tokenizer;
|
|
class nsHtml5StreamParser;
|
|
|
|
enum eHtml5ParserLifecycle {
|
|
/**
|
|
* The parser has told the tokenizer to start yet.
|
|
*/
|
|
NOT_STARTED = 0,
|
|
|
|
/**
|
|
* The parser has started the tokenizer and the stream hasn't ended yet.
|
|
*/
|
|
PARSING = 1,
|
|
|
|
/**
|
|
* The parser hasn't told the tokenizer to emit EOF yet, but the network
|
|
* stream has been exhausted or document.close() called.
|
|
*/
|
|
STREAM_ENDING = 2,
|
|
|
|
/**
|
|
* The parser has told the tokenizer to emit EOF.
|
|
*/
|
|
TERMINATED = 3
|
|
};
|
|
|
|
typedef nsIContent* nsIContentPtr;
|
|
|
|
class nsHtml5TreeOpExecutor : public nsIContentSink,
|
|
public nsContentSink
|
|
{
|
|
public:
|
|
NS_DECL_AND_IMPL_ZEROING_OPERATOR_NEW
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsHtml5TreeOpExecutor, nsContentSink)
|
|
|
|
private:
|
|
#ifdef DEBUG_hsivonen
|
|
static PRUint32 sInsertionBatchMaxLength;
|
|
static PRUint32 sAppendBatchMaxSize;
|
|
static PRUint32 sAppendBatchSlotsExamined;
|
|
static PRUint32 sAppendBatchExaminations;
|
|
#endif
|
|
static PRUint32 sTreeOpQueueMaxLength;
|
|
|
|
/**
|
|
* Whether EOF needs to be suppressed
|
|
*/
|
|
PRBool mSuppressEOF;
|
|
|
|
PRBool mHasProcessedBase;
|
|
PRBool mNeedsFlush;
|
|
nsCOMPtr<nsITimer> mFlushTimer;
|
|
nsTArray<nsHtml5TreeOperation> mOpQueue;
|
|
nsTArray<nsIContentPtr> mElementsSeenInThisAppendBatch;
|
|
nsTArray<nsHtml5PendingNotification> mPendingNotifications;
|
|
nsHtml5StreamParser* mStreamParser;
|
|
|
|
/**
|
|
* The character encoding to which to switch in a late <meta> renavigation
|
|
*/
|
|
nsCString mPendingCharset;
|
|
|
|
/**
|
|
* Call to PerformCharsetSwitch() needed
|
|
*/
|
|
PRBool mNeedsCharsetSwitch;
|
|
|
|
/**
|
|
* The current point on parser life cycle
|
|
*/
|
|
eHtml5ParserLifecycle mLifeCycle;
|
|
|
|
/**
|
|
* Script to run ASAP
|
|
*/
|
|
nsCOMPtr<nsIContent> mScriptElement;
|
|
|
|
nsHtml5TreeBuilder* mTreeBuilder;
|
|
|
|
public:
|
|
|
|
nsHtml5TreeOpExecutor();
|
|
virtual ~nsHtml5TreeOpExecutor();
|
|
|
|
// nsIContentSink
|
|
|
|
/**
|
|
* Unimplemented. For interface compat only.
|
|
*/
|
|
NS_IMETHOD WillParse();
|
|
|
|
/**
|
|
*
|
|
*/
|
|
NS_IMETHOD WillBuildModel(nsDTDMode aDTDMode) {
|
|
NS_ASSERTION(GetDocument()->GetScriptGlobalObject(),
|
|
"Script global object not ready");
|
|
WillBuildModelImpl();
|
|
GetDocument()->BeginLoad();
|
|
return NS_OK;
|
|
}
|
|
|
|
/**
|
|
* Emits EOF.
|
|
*/
|
|
NS_IMETHOD DidBuildModel(PRBool aTerminated);
|
|
|
|
/**
|
|
* Forwards to nsContentSink
|
|
*/
|
|
NS_IMETHOD WillInterrupt();
|
|
|
|
/**
|
|
* Unimplemented. For interface compat only.
|
|
*/
|
|
NS_IMETHOD WillResume();
|
|
|
|
/**
|
|
* Sets the parser.
|
|
*/
|
|
NS_IMETHOD SetParser(nsIParser* aParser);
|
|
|
|
/**
|
|
* No-op for backwards compat.
|
|
*/
|
|
virtual void FlushPendingNotifications(mozFlushType aType);
|
|
|
|
/**
|
|
* Sets mCharset
|
|
*/
|
|
NS_IMETHOD SetDocumentCharset(nsACString& aCharset);
|
|
|
|
/**
|
|
* Returns the document.
|
|
*/
|
|
virtual nsISupports *GetTarget();
|
|
|
|
// nsContentSink methods
|
|
virtual nsresult ProcessBASETag(nsIContent* aContent);
|
|
virtual void UpdateChildCounts();
|
|
virtual nsresult FlushTags();
|
|
virtual void PostEvaluateScript(nsIScriptElement *aElement);
|
|
/**
|
|
* Sets up style sheet load / parse
|
|
*/
|
|
void UpdateStyleSheet(nsIContent* aElement);
|
|
|
|
// Getters and setters for fields from nsContentSink
|
|
nsIDocument* GetDocument() {
|
|
return mDocument;
|
|
}
|
|
nsNodeInfoManager* GetNodeInfoManager() {
|
|
return mNodeInfoManager;
|
|
}
|
|
nsIDocShell* GetDocShell() {
|
|
return mDocShell;
|
|
}
|
|
|
|
PRBool IsScriptExecuting() {
|
|
return IsScriptExecutingImpl();
|
|
}
|
|
|
|
void AllowInterrupts() {
|
|
mCanInterruptParser = PR_TRUE;
|
|
}
|
|
|
|
void ProhibitInterrupts() {
|
|
mCanInterruptParser = PR_FALSE;
|
|
}
|
|
|
|
void SetBaseUriFromDocument() {
|
|
mDocumentBaseURI = mDocument->GetBaseURI();
|
|
mHasProcessedBase = PR_TRUE;
|
|
}
|
|
|
|
void SetNodeInfoManager(nsNodeInfoManager* aManager) {
|
|
mNodeInfoManager = aManager;
|
|
}
|
|
|
|
void SetStreamParser(nsHtml5StreamParser* aStreamParser) {
|
|
mStreamParser = aStreamParser;
|
|
}
|
|
|
|
/**
|
|
* Renavigates to the document with a different charset
|
|
*/
|
|
nsresult MaybePerformCharsetSwitch();
|
|
|
|
/**
|
|
* Runs mScriptElement
|
|
*/
|
|
void ExecuteScript();
|
|
|
|
PRBool IsScriptEnabled();
|
|
|
|
void PostPendingAppendNotification(nsIContent* aParent, nsIContent* aChild) {
|
|
PRBool newParent = PR_TRUE;
|
|
const nsIContentPtr* first = mElementsSeenInThisAppendBatch.Elements();
|
|
const nsIContentPtr* last = first + mElementsSeenInThisAppendBatch.Length() - 1;
|
|
for (const nsIContentPtr* iter = last; iter >= first; --iter) {
|
|
#ifdef DEBUG_hsivonen
|
|
sAppendBatchSlotsExamined++;
|
|
#endif
|
|
if (*iter == aParent) {
|
|
newParent = PR_FALSE;
|
|
break;
|
|
}
|
|
}
|
|
if (aChild->IsNodeOfType(nsINode::eELEMENT)) {
|
|
mElementsSeenInThisAppendBatch.AppendElement(aChild);
|
|
}
|
|
mElementsSeenInThisAppendBatch.AppendElement(aParent);
|
|
if (newParent) {
|
|
mPendingNotifications.AppendElement(aParent);
|
|
}
|
|
#ifdef DEBUG_hsivonen
|
|
sAppendBatchExaminations++;
|
|
#endif
|
|
}
|
|
|
|
void FlushPendingAppendNotifications() {
|
|
const nsHtml5PendingNotification* start = mPendingNotifications.Elements();
|
|
const nsHtml5PendingNotification* end = start + mPendingNotifications.Length();
|
|
for (nsHtml5PendingNotification* iter = (nsHtml5PendingNotification*)start; iter < end; ++iter) {
|
|
iter->Fire();
|
|
}
|
|
mPendingNotifications.Clear();
|
|
#ifdef DEBUG_hsivonen
|
|
if (mElementsSeenInThisAppendBatch.Length() > sAppendBatchMaxSize) {
|
|
sAppendBatchMaxSize = mElementsSeenInThisAppendBatch.Length();
|
|
}
|
|
#endif
|
|
mElementsSeenInThisAppendBatch.Clear();
|
|
}
|
|
|
|
inline PRBool HaveNotified(nsIContent* aElement) {
|
|
NS_PRECONDITION(aElement, "HaveNotified called with null argument.");
|
|
const nsHtml5PendingNotification* start = mPendingNotifications.Elements();
|
|
const nsHtml5PendingNotification* end = start + mPendingNotifications.Length();
|
|
for (;;) {
|
|
nsIContent* parent = aElement->GetParent();
|
|
if (!parent) {
|
|
return PR_TRUE;
|
|
}
|
|
for (nsHtml5PendingNotification* iter = (nsHtml5PendingNotification*)start; iter < end; ++iter) {
|
|
if (iter->Contains(parent)) {
|
|
return iter->HaveNotifiedIndex(parent->IndexOf(aElement));
|
|
}
|
|
}
|
|
aElement = parent;
|
|
}
|
|
}
|
|
|
|
void StartLayout() {
|
|
nsIDocument* doc = GetDocument();
|
|
if (doc) {
|
|
FlushPendingAppendNotifications();
|
|
nsContentSink::StartLayout(PR_FALSE);
|
|
}
|
|
}
|
|
|
|
void DocumentMode(nsHtml5DocumentMode m);
|
|
|
|
nsresult Init(nsIDocument* aDoc, nsIURI* aURI,
|
|
nsISupports* aContainer, nsIChannel* aChannel);
|
|
|
|
void Flush();
|
|
|
|
void MaybeSuspend();
|
|
|
|
void MaybeFlush() {
|
|
if (mNeedsFlush) {
|
|
Flush();
|
|
}
|
|
}
|
|
|
|
void DeferredTimerFlush();
|
|
|
|
void Start();
|
|
|
|
void End();
|
|
|
|
void NeedsCharsetSwitchTo(const nsACString& aEncoding);
|
|
|
|
void IgnoreCharsetSwitch() {
|
|
mNeedsCharsetSwitch = PR_FALSE;
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
PRBool NeedsCharsetSwitch() {
|
|
return mNeedsCharsetSwitch;
|
|
}
|
|
|
|
PRBool HasScriptElement() {
|
|
return !!mScriptElement;
|
|
}
|
|
#endif
|
|
|
|
PRBool IsComplete() {
|
|
return (mLifeCycle == TERMINATED);
|
|
}
|
|
|
|
eHtml5ParserLifecycle GetLifeCycle() {
|
|
return mLifeCycle;
|
|
}
|
|
|
|
void SetLifeCycle(eHtml5ParserLifecycle aLifeCycle) {
|
|
mLifeCycle = aLifeCycle;
|
|
}
|
|
|
|
void MaybeExecuteScript();
|
|
|
|
void MaybePreventExecution() {
|
|
if (mScriptElement) {
|
|
nsCOMPtr<nsIScriptElement> script = do_QueryInterface(mScriptElement);
|
|
NS_ASSERTION(script, "mScriptElement didn't QI to nsIScriptElement!");
|
|
script->PreventExecution();
|
|
mScriptElement = nsnull;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Request execution of the script element when the tokenizer returns
|
|
*/
|
|
void SetScriptElement(nsIContent* aScript) {
|
|
mScriptElement = aScript;
|
|
}
|
|
|
|
void SetTreeBuilder(nsHtml5TreeBuilder* aBuilder) {
|
|
mTreeBuilder = aBuilder;
|
|
}
|
|
|
|
void Reset();
|
|
|
|
private:
|
|
|
|
nsHtml5Tokenizer* GetTokenizer();
|
|
|
|
void FillQueue();
|
|
|
|
};
|
|
|
|
#endif // nsHtml5TreeOpExecutor_h__
|