2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** 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 Mozilla.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Vidur Apparao <vidur@netscape.com> (original author)
|
|
|
|
*
|
|
|
|
* 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 nsIScriptElement_h___
|
|
|
|
#define nsIScriptElement_h___
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIScriptLoaderObserver.h"
|
2009-10-15 04:29:11 -07:00
|
|
|
#include "nsWeakPtr.h"
|
|
|
|
#include "nsIParser.h"
|
2010-09-01 04:41:12 -07:00
|
|
|
#include "nsContentCreatorFunctions.h"
|
2010-10-27 05:04:09 -07:00
|
|
|
#include "nsIDOMHTMLScriptElement.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#define NS_ISCRIPTELEMENT_IID \
|
2010-01-15 03:44:12 -08:00
|
|
|
{ 0x6d625b30, 0xfac4, 0x11de, \
|
|
|
|
{ 0x8a, 0x39, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66 } }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal interface implemented by script elements
|
|
|
|
*/
|
|
|
|
class nsIScriptElement : public nsIScriptLoaderObserver {
|
|
|
|
public:
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCRIPTELEMENT_IID)
|
|
|
|
|
2010-10-25 05:17:38 -07:00
|
|
|
nsIScriptElement(mozilla::dom::FromParser aFromParser)
|
2007-03-22 10:30:00 -07:00
|
|
|
: mLineNumber(0),
|
2010-09-01 04:41:12 -07:00
|
|
|
mAlreadyStarted(PR_FALSE),
|
2007-03-22 10:30:00 -07:00
|
|
|
mMalformed(PR_FALSE),
|
2010-11-01 03:50:01 -07:00
|
|
|
mDoneAddingChildren(aFromParser == mozilla::dom::NOT_FROM_PARSER ||
|
|
|
|
aFromParser == mozilla::dom::FROM_PARSER_FRAGMENT),
|
2010-10-27 05:04:09 -07:00
|
|
|
mForceAsync(aFromParser == mozilla::dom::NOT_FROM_PARSER ||
|
|
|
|
aFromParser == mozilla::dom::FROM_PARSER_FRAGMENT),
|
2009-11-17 00:52:30 -08:00
|
|
|
mFrozen(PR_FALSE),
|
|
|
|
mDefer(PR_FALSE),
|
|
|
|
mAsync(PR_FALSE),
|
2010-10-27 00:03:10 -07:00
|
|
|
mExternal(PR_FALSE),
|
2010-10-27 00:18:24 -07:00
|
|
|
mParserCreated(aFromParser == mozilla::dom::FROM_PARSER_FRAGMENT ?
|
|
|
|
mozilla::dom::NOT_FROM_PARSER : aFromParser),
|
|
|
|
// Fragment parser-created scripts (if executable)
|
|
|
|
// behave like script-created scripts.
|
2009-10-15 04:29:11 -07:00
|
|
|
mCreatorParser(nsnull)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Content type identifying the scripting language. Can be empty, in
|
|
|
|
* which case javascript will be assumed.
|
|
|
|
*/
|
|
|
|
virtual void GetScriptType(nsAString& type) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Location of script source text. Can return null, in which case
|
|
|
|
* this is assumed to be an inline script element.
|
|
|
|
*/
|
2009-11-17 00:52:30 -08:00
|
|
|
nsIURI* GetScriptURI()
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(mFrozen, "Not ready for this call yet!");
|
|
|
|
return mUri;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Script source text for inline script elements.
|
|
|
|
*/
|
|
|
|
virtual void GetScriptText(nsAString& text) = 0;
|
|
|
|
|
|
|
|
virtual void GetScriptCharset(nsAString& charset) = 0;
|
2008-07-25 19:42:12 -07:00
|
|
|
|
2009-11-17 00:52:30 -08:00
|
|
|
/**
|
|
|
|
* Freezes the return values of GetScriptDeferred(), GetScriptAsync() and
|
|
|
|
* GetScriptURI() so that subsequent modifications to the attributes don't
|
|
|
|
* change execution behavior.
|
|
|
|
*/
|
|
|
|
virtual void FreezeUriAsyncDefer() = 0;
|
|
|
|
|
2008-07-25 19:42:12 -07:00
|
|
|
/**
|
|
|
|
* Is the script deferred. Currently only supported by HTML scripts.
|
|
|
|
*/
|
2009-11-17 00:52:30 -08:00
|
|
|
PRBool GetScriptDeferred()
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(mFrozen, "Not ready for this call yet!");
|
|
|
|
return mDefer;
|
|
|
|
}
|
2008-07-25 19:42:12 -07:00
|
|
|
|
2009-11-09 17:04:24 -08:00
|
|
|
/**
|
|
|
|
* Is the script async. Currently only supported by HTML scripts.
|
|
|
|
*/
|
2009-11-17 00:52:30 -08:00
|
|
|
PRBool GetScriptAsync()
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(mFrozen, "Not ready for this call yet!");
|
|
|
|
return mAsync;
|
|
|
|
}
|
2009-11-09 17:04:24 -08:00
|
|
|
|
2010-10-27 00:03:10 -07:00
|
|
|
/**
|
|
|
|
* Is the script an external script?
|
|
|
|
*/
|
|
|
|
PRBool GetScriptExternal()
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(mFrozen, "Not ready for this call yet!");
|
|
|
|
return mExternal;
|
|
|
|
}
|
|
|
|
|
2010-09-01 04:41:12 -07:00
|
|
|
/**
|
2010-10-25 05:17:38 -07:00
|
|
|
* Returns how the element was created.
|
2010-09-01 04:41:12 -07:00
|
|
|
*/
|
2010-10-25 05:17:38 -07:00
|
|
|
mozilla::dom::FromParser GetParserCreated()
|
2010-09-01 04:41:12 -07:00
|
|
|
{
|
|
|
|
return mParserCreated;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void SetScriptLineNumber(PRUint32 aLineNumber)
|
|
|
|
{
|
|
|
|
mLineNumber = aLineNumber;
|
|
|
|
}
|
|
|
|
PRUint32 GetScriptLineNumber()
|
|
|
|
{
|
|
|
|
return mLineNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetIsMalformed()
|
|
|
|
{
|
|
|
|
mMalformed = PR_TRUE;
|
|
|
|
}
|
|
|
|
PRBool IsMalformed()
|
|
|
|
{
|
|
|
|
return mMalformed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PreventExecution()
|
|
|
|
{
|
2010-09-01 04:41:12 -07:00
|
|
|
mAlreadyStarted = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LoseParserInsertedness()
|
|
|
|
{
|
|
|
|
mFrozen = PR_FALSE;
|
|
|
|
mUri = nsnull;
|
|
|
|
mCreatorParser = nsnull;
|
2010-10-25 05:17:38 -07:00
|
|
|
mParserCreated = mozilla::dom::NOT_FROM_PARSER;
|
2010-10-27 05:04:09 -07:00
|
|
|
PRBool async = PR_FALSE;
|
|
|
|
nsCOMPtr<nsIDOMHTMLScriptElement> htmlScript = do_QueryInterface(this);
|
|
|
|
if (htmlScript) {
|
|
|
|
htmlScript->GetAsync(&async);
|
|
|
|
}
|
|
|
|
mForceAsync = !async;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-10-15 04:29:11 -07:00
|
|
|
void SetCreatorParser(nsIParser* aParser)
|
|
|
|
{
|
|
|
|
mCreatorParser = getter_AddRefs(NS_GetWeakReference(aParser));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Informs the creator parser that the evaluation of this script is starting
|
|
|
|
*/
|
|
|
|
void BeginEvaluating()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIParser> parser = do_QueryReferent(mCreatorParser);
|
|
|
|
if (parser) {
|
|
|
|
parser->BeginEvaluatingParserInsertedScript();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Informs the creator parser that the evaluation of this script is ending
|
|
|
|
*/
|
|
|
|
void EndEvaluating()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIParser> parser = do_QueryReferent(mCreatorParser);
|
|
|
|
if (parser) {
|
|
|
|
parser->EndEvaluatingParserInsertedScript();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves a pointer to the creator parser if this has one or null if not
|
|
|
|
*/
|
|
|
|
already_AddRefed<nsIParser> GetCreatorParser()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIParser> parser = do_QueryReferent(mCreatorParser);
|
|
|
|
return parser.forget();
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
2009-11-17 00:52:30 -08:00
|
|
|
/**
|
|
|
|
* The start line number of the script.
|
|
|
|
*/
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 mLineNumber;
|
2009-11-17 00:52:30 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The "already started" flag per HTML5.
|
|
|
|
*/
|
2010-09-01 04:41:12 -07:00
|
|
|
PRPackedBool mAlreadyStarted;
|
2009-11-17 00:52:30 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The script didn't have an end tag.
|
|
|
|
*/
|
2007-03-22 10:30:00 -07:00
|
|
|
PRPackedBool mMalformed;
|
2009-11-17 00:52:30 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* False if parser-inserted but the parser hasn't triggered running yet.
|
|
|
|
*/
|
2007-03-22 10:30:00 -07:00
|
|
|
PRPackedBool mDoneAddingChildren;
|
2009-11-17 00:52:30 -08:00
|
|
|
|
2010-10-27 05:04:09 -07:00
|
|
|
/**
|
|
|
|
* If true, the .async property returns true instead of reflecting the
|
|
|
|
* content attribute.
|
|
|
|
*/
|
|
|
|
PRPackedBool mForceAsync;
|
|
|
|
|
2009-11-17 00:52:30 -08:00
|
|
|
/**
|
|
|
|
* Whether src, defer and async are frozen.
|
|
|
|
*/
|
|
|
|
PRPackedBool mFrozen;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The effective deferredness.
|
|
|
|
*/
|
|
|
|
PRPackedBool mDefer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The effective asyncness.
|
|
|
|
*/
|
|
|
|
PRPackedBool mAsync;
|
|
|
|
|
2010-10-27 00:03:10 -07:00
|
|
|
/**
|
|
|
|
* The effective externalness. A script can be external with mUri being null
|
|
|
|
* if the src attribute contained an invalid URL string.
|
|
|
|
*/
|
|
|
|
PRPackedBool mExternal;
|
|
|
|
|
2010-09-01 04:41:12 -07:00
|
|
|
/**
|
|
|
|
* Whether this element was parser-created.
|
|
|
|
*/
|
2010-10-25 05:17:38 -07:00
|
|
|
mozilla::dom::FromParser mParserCreated;
|
2010-09-01 04:41:12 -07:00
|
|
|
|
2009-11-17 00:52:30 -08:00
|
|
|
/**
|
|
|
|
* The effective src (or null if no src).
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIURI> mUri;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The creator parser of a non-defer, non-async parser-inserted script.
|
|
|
|
*/
|
|
|
|
nsWeakPtr mCreatorParser;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIScriptElement, NS_ISCRIPTELEMENT_IID)
|
|
|
|
|
|
|
|
#endif // nsIScriptElement_h___
|