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 Communicator client code .
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation .
* Portions created by the Initial Developer are Copyright ( C ) 1998
* the Initial Developer . All Rights Reserved .
*
* Contributor ( s ) :
* Original Author : David W . Hyatt ( hyatt @ netscape . com )
* - Brendan Eich ( brendan @ mozilla . org )
* - Mike Pinkerton ( pinkerton @ netscape . com )
* Mats Palmgren < mats . palmgren @ bredband . net >
*
* Alternatively , the contents of this file may be used under the terms of
* either of 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 * * * * * */
2011-10-10 22:50:08 -07:00
# include "mozilla/Util.h"
2007-03-22 10:30:00 -07:00
# include "nsCOMPtr.h"
# include "nsNetUtil.h"
# include "nsXBLService.h"
# include "nsXBLWindowKeyHandler.h"
# include "nsIInputStream.h"
# include "nsINameSpaceManager.h"
# include "nsHashtable.h"
# include "nsIURI.h"
# include "nsIDOMElement.h"
# include "nsIURL.h"
# include "nsIChannel.h"
# include "nsXPIDLString.h"
# include "nsIParser.h"
# include "nsParserCIID.h"
# include "nsNetUtil.h"
# include "plstr.h"
# include "nsIContent.h"
# include "nsIDOMElement.h"
# include "nsIDocument.h"
# include "nsIXMLContentSink.h"
# include "nsContentCID.h"
# include "nsXMLDocument.h"
2010-04-30 12:40:59 -07:00
# include "mozilla/FunctionTimer.h"
2007-03-22 10:30:00 -07:00
# include "nsGkAtoms.h"
# include "nsIMemory.h"
# include "nsIObserverService.h"
# include "nsIDOMNodeList.h"
# include "nsXBLContentSink.h"
# include "nsXBLBinding.h"
# include "nsXBLPrototypeBinding.h"
2010-07-14 18:53:11 -07:00
# include "nsXBLDocumentInfo.h"
2007-03-22 10:30:00 -07:00
# include "nsCRT.h"
# include "nsContentUtils.h"
# include "nsSyncLoadService.h"
# include "nsContentPolicyUtils.h"
2009-03-20 01:15:35 -07:00
# include "nsTArray.h"
2010-09-15 15:53:01 -07:00
# include "nsContentErrors.h"
2007-03-22 10:30:00 -07:00
# include "nsIPresShell.h"
# include "nsIDocumentObserver.h"
# include "nsFrameManager.h"
# include "nsStyleContext.h"
# include "nsIScriptSecurityManager.h"
# include "nsIScriptError.h"
# ifdef MOZ_XUL
# include "nsXULPrototypeCache.h"
# endif
2011-06-24 16:12:34 -07:00
# include "nsIDOMEventListener.h"
2011-05-28 16:42:57 -07:00
# include "mozilla/Preferences.h"
2011-07-20 12:18:54 -07:00
# include "mozilla/dom/Element.h"
2011-05-28 16:42:57 -07:00
using namespace mozilla ;
2007-03-22 10:30:00 -07:00
2007-04-01 05:19:44 -07:00
# define NS_MAX_XBL_BINDING_RECURSION 20
2011-09-28 23:19:26 -07:00
static bool IsChromeOrResourceURI ( nsIURI * aURI )
2007-03-22 10:30:00 -07:00
{
2011-09-28 23:19:26 -07:00
bool isChrome = false ;
bool isResource = false ;
2007-03-22 10:30:00 -07:00
if ( NS_SUCCEEDED ( aURI - > SchemeIs ( " chrome " , & isChrome ) ) & &
NS_SUCCEEDED ( aURI - > SchemeIs ( " resource " , & isResource ) ) )
return ( isChrome | | isResource ) ;
2011-10-17 07:59:28 -07:00
return false ;
2007-03-22 10:30:00 -07:00
}
2011-09-28 23:19:26 -07:00
static bool
2007-03-22 10:30:00 -07:00
IsAncestorBinding ( nsIDocument * aDocument ,
nsIURI * aChildBindingURI ,
nsIContent * aChild )
{
NS_ASSERTION ( aDocument , " expected a document " ) ;
NS_ASSERTION ( aChildBindingURI , " expected a binding URI " ) ;
NS_ASSERTION ( aChild , " expected a child content " ) ;
2007-04-01 05:19:44 -07:00
PRUint32 bindingRecursion = 0 ;
2007-03-22 10:30:00 -07:00
nsBindingManager * bindingManager = aDocument - > BindingManager ( ) ;
2008-07-22 21:50:20 -07:00
for ( nsIContent * bindingParent = aChild - > GetBindingParent ( ) ;
bindingParent ;
bindingParent = bindingParent - > GetBindingParent ( ) ) {
2007-03-22 10:30:00 -07:00
nsXBLBinding * binding = bindingManager - > GetBinding ( bindingParent ) ;
if ( ! binding ) {
continue ;
}
2008-09-21 16:40:02 -07:00
2009-11-03 13:45:10 -08:00
if ( binding - > PrototypeBinding ( ) - > CompareBindingURI ( aChildBindingURI ) ) {
2007-04-01 05:19:44 -07:00
+ + bindingRecursion ;
if ( bindingRecursion < NS_MAX_XBL_BINDING_RECURSION ) {
continue ;
}
2007-03-22 10:30:00 -07:00
nsCAutoString spec ;
aChildBindingURI - > GetSpec ( spec ) ;
NS_ConvertUTF8toUTF16 bindingURI ( spec ) ;
const PRUnichar * params [ ] = { bindingURI . get ( ) } ;
nsContentUtils : : ReportToConsole ( nsContentUtils : : eXBL_PROPERTIES ,
2007-04-01 05:19:44 -07:00
" TooDeepBindingRecursion " ,
2011-10-10 22:50:08 -07:00
params , ArrayLength ( params ) ,
2010-12-20 08:21:58 -08:00
nsnull ,
2007-03-22 10:30:00 -07:00
EmptyString ( ) , 0 , 0 ,
nsIScriptError : : warningFlag ,
2010-12-20 08:21:58 -08:00
" XBL " , aDocument ) ;
2011-10-17 07:59:28 -07:00
return true ;
2007-03-22 10:30:00 -07:00
}
}
2011-10-17 07:59:28 -07:00
return false ;
2007-03-22 10:30:00 -07:00
}
2011-09-28 23:19:26 -07:00
bool CheckTagNameWhiteList ( PRInt32 aNameSpaceID , nsIAtom * aTagName )
2008-07-17 09:46:51 -07:00
{
static nsIContent : : AttrValuesArray kValidXULTagNames [ ] = {
& nsGkAtoms : : autorepeatbutton , & nsGkAtoms : : box , & nsGkAtoms : : browser ,
& nsGkAtoms : : button , & nsGkAtoms : : hbox , & nsGkAtoms : : image , & nsGkAtoms : : menu ,
& nsGkAtoms : : menubar , & nsGkAtoms : : menuitem , & nsGkAtoms : : menupopup ,
& nsGkAtoms : : row , & nsGkAtoms : : slider , & nsGkAtoms : : spacer ,
& nsGkAtoms : : splitter , & nsGkAtoms : : text , & nsGkAtoms : : tree , nsnull } ;
PRUint32 i ;
if ( aNameSpaceID = = kNameSpaceID_XUL ) {
for ( i = 0 ; kValidXULTagNames [ i ] ; + + i ) {
if ( aTagName = = * ( kValidXULTagNames [ i ] ) ) {
2011-10-17 07:59:28 -07:00
return true ;
2008-07-17 09:46:51 -07:00
}
}
}
else if ( aNameSpaceID = = kNameSpaceID_SVG & &
aTagName = = nsGkAtoms : : generic ) {
2011-10-17 07:59:28 -07:00
return true ;
2008-07-17 09:46:51 -07:00
}
2011-10-17 07:59:28 -07:00
return false ;
2008-07-17 09:46:51 -07:00
}
2007-03-22 10:30:00 -07:00
// Individual binding requests.
class nsXBLBindingRequest
{
public :
nsCOMPtr < nsIURI > mBindingURI ;
nsCOMPtr < nsIContent > mBoundElement ;
static nsXBLBindingRequest *
Create ( nsFixedSizeAllocator & aPool , nsIURI * aURI , nsIContent * aBoundElement ) {
void * place = aPool . Alloc ( sizeof ( nsXBLBindingRequest ) ) ;
return place ? : : new ( place ) nsXBLBindingRequest ( aURI , aBoundElement ) : nsnull ;
}
static void
Destroy ( nsFixedSizeAllocator & aPool , nsXBLBindingRequest * aRequest ) {
aRequest - > ~ nsXBLBindingRequest ( ) ;
aPool . Free ( aRequest , sizeof ( * aRequest ) ) ;
}
void DocumentLoaded ( nsIDocument * aBindingDoc )
{
// We only need the document here to cause frame construction, so
// we need the current doc, not the owner doc.
nsIDocument * doc = mBoundElement - > GetCurrentDoc ( ) ;
if ( ! doc )
return ;
// Get the binding.
2011-09-28 23:19:26 -07:00
bool ready = false ;
2007-03-22 10:30:00 -07:00
gXBLService - > BindingReady ( mBoundElement , mBindingURI , & ready ) ;
if ( ! ready )
return ;
// If |mBoundElement| is (in addition to having binding |mBinding|)
// also a descendant of another element with binding |mBinding|,
// then we might have just constructed it due to the
// notification of its parent. (We can know about both if the
// binding loads were triggered from the DOM rather than frame
// construction.) So we have to check both whether the element
// has a primary frame and whether it's in the undisplayed map
// before sending a ContentInserted notification, or bad things
// will happen.
2010-06-25 06:59:57 -07:00
nsIPresShell * shell = doc - > GetShell ( ) ;
2007-03-22 10:30:00 -07:00
if ( shell ) {
2009-12-24 13:20:05 -08:00
nsIFrame * childFrame = mBoundElement - > GetPrimaryFrame ( ) ;
2007-03-22 10:30:00 -07:00
if ( ! childFrame ) {
// Check to see if it's in the undisplayed content map.
nsStyleContext * sc =
shell - > FrameManager ( ) - > GetUndisplayedContent ( mBoundElement ) ;
if ( ! sc ) {
shell - > RecreateFramesFor ( mBoundElement ) ;
}
}
}
}
static nsIXBLService * gXBLService ;
static int gRefCnt ;
protected :
nsXBLBindingRequest ( nsIURI * aURI , nsIContent * aBoundElement )
: mBindingURI ( aURI ) ,
mBoundElement ( aBoundElement )
{
gRefCnt + + ;
if ( gRefCnt = = 1 ) {
CallGetService ( " @mozilla.org/xbl;1 " , & gXBLService ) ;
}
}
~ nsXBLBindingRequest ( )
{
gRefCnt - - ;
if ( gRefCnt = = 0 ) {
NS_IF_RELEASE ( gXBLService ) ;
}
}
private :
// Hide so that only Create() and Destroy() can be used to
// allocate and deallocate from the heap
static void * operator new ( size_t ) CPP_THROW_NEW { return 0 ; }
static void operator delete ( void * , size_t ) { }
} ;
static const size_t kBucketSizes [ ] = {
sizeof ( nsXBLBindingRequest )
} ;
static const PRInt32 kNumBuckets = sizeof ( kBucketSizes ) / sizeof ( size_t ) ;
static const PRInt32 kNumElements = 64 ;
static const PRInt32 kInitialSize = ( NS_SIZE_IN_HEAP ( sizeof ( nsXBLBindingRequest ) ) ) * kNumElements ;
nsIXBLService * nsXBLBindingRequest : : gXBLService = nsnull ;
int nsXBLBindingRequest : : gRefCnt = 0 ;
// nsXBLStreamListener, a helper class used for
// asynchronous parsing of URLs
/* Header file */
2011-06-24 16:12:34 -07:00
class nsXBLStreamListener : public nsIStreamListener , public nsIDOMEventListener
2007-03-22 10:30:00 -07:00
{
public :
NS_DECL_ISUPPORTS
NS_DECL_NSISTREAMLISTENER
NS_DECL_NSIREQUESTOBSERVER
2011-06-24 16:12:34 -07:00
NS_DECL_NSIDOMEVENTLISTENER
2007-03-22 10:30:00 -07:00
2009-01-14 03:24:26 -08:00
nsXBLStreamListener ( nsXBLService * aXBLService ,
nsIDocument * aBoundDocument ,
nsIXMLContentSink * aSink ,
nsIDocument * aBindingDocument ) ;
2007-11-07 16:05:03 -08:00
~ nsXBLStreamListener ( ) ;
2007-04-23 07:21:53 -07:00
void AddRequest ( nsXBLBindingRequest * aRequest ) { mBindingRequests . AppendElement ( aRequest ) ; }
2011-09-28 23:19:26 -07:00
bool HasRequest ( nsIURI * aURI , nsIContent * aBoundElement ) ;
2007-03-22 10:30:00 -07:00
private :
nsXBLService * mXBLService ; // [WEAK]
nsCOMPtr < nsIStreamListener > mInner ;
2009-03-20 01:15:35 -07:00
nsAutoTArray < nsXBLBindingRequest * , 8 > mBindingRequests ;
2007-03-22 10:30:00 -07:00
2009-01-14 03:24:26 -08:00
nsCOMPtr < nsIWeakReference > mBoundDocument ;
nsCOMPtr < nsIXMLContentSink > mSink ; // Only set until OnStartRequest
nsCOMPtr < nsIDocument > mBindingDocument ; // Only set until OnStartRequest
2007-03-22 10:30:00 -07:00
} ;
/* Implementation file */
2011-06-24 16:12:34 -07:00
NS_IMPL_ISUPPORTS3 ( nsXBLStreamListener ,
nsIStreamListener ,
nsIRequestObserver ,
nsIDOMEventListener )
2007-03-22 10:30:00 -07:00
nsXBLStreamListener : : nsXBLStreamListener ( nsXBLService * aXBLService ,
2009-01-14 03:24:26 -08:00
nsIDocument * aBoundDocument ,
nsIXMLContentSink * aSink ,
nsIDocument * aBindingDocument )
: mSink ( aSink ) , mBindingDocument ( aBindingDocument )
2007-03-22 10:30:00 -07:00
{
/* member initializers and constructor code */
mXBLService = aXBLService ;
2009-01-14 03:24:26 -08:00
mBoundDocument = do_GetWeakReference ( aBoundDocument ) ;
2007-11-07 16:05:03 -08:00
}
nsXBLStreamListener : : ~ nsXBLStreamListener ( )
{
2009-06-27 18:42:50 -07:00
for ( PRUint32 i = 0 ; i < mBindingRequests . Length ( ) ; i + + ) {
2009-03-20 01:15:35 -07:00
nsXBLBindingRequest * req = mBindingRequests . ElementAt ( i ) ;
2007-11-07 16:05:03 -08:00
nsXBLBindingRequest : : Destroy ( mXBLService - > mPool , req ) ;
}
2007-03-22 10:30:00 -07:00
}
NS_IMETHODIMP
nsXBLStreamListener : : OnDataAvailable ( nsIRequest * request , nsISupports * aCtxt , nsIInputStream * aInStr ,
PRUint32 aSourceOffset , PRUint32 aCount )
{
if ( mInner )
return mInner - > OnDataAvailable ( request , aCtxt , aInStr , aSourceOffset , aCount ) ;
return NS_ERROR_FAILURE ;
}
NS_IMETHODIMP
nsXBLStreamListener : : OnStartRequest ( nsIRequest * request , nsISupports * aCtxt )
{
2009-01-14 03:24:26 -08:00
// Make sure we don't hold on to the sink and binding document past this point
nsCOMPtr < nsIXMLContentSink > sink ;
mSink . swap ( sink ) ;
nsCOMPtr < nsIDocument > doc ;
mBindingDocument . swap ( doc ) ;
nsCOMPtr < nsIChannel > channel = do_QueryInterface ( request ) ;
NS_ENSURE_TRUE ( channel , NS_ERROR_UNEXPECTED ) ;
nsCOMPtr < nsILoadGroup > group ;
request - > GetLoadGroup ( getter_AddRefs ( group ) ) ;
nsresult rv = doc - > StartDocumentLoad ( " loadAsInteractiveData " ,
channel ,
group ,
nsnull ,
getter_AddRefs ( mInner ) ,
2011-10-17 07:59:28 -07:00
true ,
2009-01-14 03:24:26 -08:00
sink ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
// Make sure to add ourselves as a listener after StartDocumentLoad,
// since that resets the event listners on the document.
nsCOMPtr < nsIDOMEventTarget > target ( do_QueryInterface ( doc ) ) ;
2011-10-17 07:59:28 -07:00
target - > AddEventListener ( NS_LITERAL_STRING ( " load " ) , this , false ) ;
2009-01-14 03:24:26 -08:00
return mInner - > OnStartRequest ( request , aCtxt ) ;
2007-03-22 10:30:00 -07:00
}
NS_IMETHODIMP
nsXBLStreamListener : : OnStopRequest ( nsIRequest * request , nsISupports * aCtxt , nsresult aStatus )
{
nsresult rv = NS_OK ;
if ( mInner ) {
rv = mInner - > OnStopRequest ( request , aCtxt , aStatus ) ;
}
2007-11-07 16:05:03 -08:00
// Don't hold onto the inner listener; holding onto it can create a cycle
// with the document
mInner = nsnull ;
2007-03-22 10:30:00 -07:00
return rv ;
}
2011-09-28 23:19:26 -07:00
bool
2007-03-22 10:30:00 -07:00
nsXBLStreamListener : : HasRequest ( nsIURI * aURI , nsIContent * aElt )
{
// XXX Could be more efficient.
2009-03-20 01:15:35 -07:00
PRUint32 count = mBindingRequests . Length ( ) ;
2007-03-22 10:30:00 -07:00
for ( PRUint32 i = 0 ; i < count ; i + + ) {
2009-03-20 01:15:35 -07:00
nsXBLBindingRequest * req = mBindingRequests . ElementAt ( i ) ;
2011-09-28 23:19:26 -07:00
bool eq ;
2007-03-22 10:30:00 -07:00
if ( req - > mBoundElement = = aElt & &
NS_SUCCEEDED ( req - > mBindingURI - > Equals ( aURI , & eq ) ) & & eq )
2011-10-17 07:59:28 -07:00
return true ;
2007-03-22 10:30:00 -07:00
}
2011-10-17 07:59:28 -07:00
return false ;
2007-03-22 10:30:00 -07:00
}
nsresult
2011-06-24 16:12:34 -07:00
nsXBLStreamListener : : HandleEvent ( nsIDOMEvent * aEvent )
2007-03-22 10:30:00 -07:00
{
nsresult rv = NS_OK ;
PRUint32 i ;
2009-03-20 01:15:35 -07:00
PRUint32 count = mBindingRequests . Length ( ) ;
2007-11-07 16:05:03 -08:00
// Get the binding document; note that we don't hold onto it in this object
// to avoid creating a cycle
nsCOMPtr < nsIDOMEventTarget > target ;
aEvent - > GetCurrentTarget ( getter_AddRefs ( target ) ) ;
nsCOMPtr < nsIDocument > bindingDocument = do_QueryInterface ( target ) ;
NS_ASSERTION ( bindingDocument , " Event not targeted at document?! " ) ;
2007-03-22 10:30:00 -07:00
// See if we're still alive.
2009-01-14 03:24:26 -08:00
nsCOMPtr < nsIDocument > doc ( do_QueryReferent ( mBoundDocument ) ) ;
2007-03-22 10:30:00 -07:00
if ( ! doc ) {
NS_WARNING ( " XBL load did not complete until after document went away! Modal dialog bug? \n " ) ;
}
else {
// We have to do a flush prior to notification of the document load.
// This has to happen since the HTML content sink can be holding on
// to notifications related to our children (e.g., if you bind to the
// <body> tag) that result in duplication of content.
// We need to get the sink's notifications flushed and then make the binding
// ready.
if ( count > 0 ) {
2009-03-20 01:15:35 -07:00
nsXBLBindingRequest * req = mBindingRequests . ElementAt ( 0 ) ;
2007-03-22 10:30:00 -07:00
nsIDocument * document = req - > mBoundElement - > GetCurrentDoc ( ) ;
if ( document )
document - > FlushPendingNotifications ( Flush_ContentAndNotify ) ;
}
// Remove ourselves from the set of pending docs.
nsBindingManager * bindingManager = doc - > BindingManager ( ) ;
2007-11-07 16:05:03 -08:00
nsIURI * documentURI = bindingDocument - > GetDocumentURI ( ) ;
2007-03-22 10:30:00 -07:00
bindingManager - > RemoveLoadingDocListener ( documentURI ) ;
2010-04-30 06:12:05 -07:00
if ( ! bindingDocument - > GetRootElement ( ) ) {
2010-05-04 21:28:19 -07:00
// FIXME: How about an error console warning?
2007-03-22 10:30:00 -07:00
NS_WARNING ( " *** XBL doc with no root element! Something went horribly wrong! *** " ) ;
return NS_ERROR_FAILURE ;
}
// Put our doc info in the doc table.
2007-11-07 16:05:03 -08:00
nsBindingManager * xblDocBindingManager = bindingDocument - > BindingManager ( ) ;
2010-07-14 18:53:11 -07:00
nsRefPtr < nsXBLDocumentInfo > info =
2007-03-22 10:30:00 -07:00
xblDocBindingManager - > GetXBLDocumentInfo ( documentURI ) ;
xblDocBindingManager - > RemoveXBLDocumentInfo ( info ) ; // Break the self-imposed cycle.
if ( ! info ) {
2010-05-04 21:28:19 -07:00
if ( IsChromeOrResourceURI ( documentURI ) ) {
NS_WARNING ( " An XBL file is malformed. Did you forget the XBL namespace on the bindings tag? " ) ;
}
nsContentUtils : : ReportToConsole ( nsContentUtils : : eXBL_PROPERTIES ,
" MalformedXBL " ,
nsnull , 0 , documentURI ,
EmptyString ( ) , 0 , 0 ,
nsIScriptError : : warningFlag ,
" XBL " ) ;
2007-03-22 10:30:00 -07:00
return NS_ERROR_FAILURE ;
}
// If the doc is a chrome URI, then we put it into the XUL cache.
# ifdef MOZ_XUL
if ( IsChromeOrResourceURI ( documentURI ) ) {
nsXULPrototypeCache * cache = nsXULPrototypeCache : : GetInstance ( ) ;
if ( cache & & cache - > IsEnabled ( ) )
cache - > PutXBLDocumentInfo ( info ) ;
}
# endif
bindingManager - > PutXBLDocumentInfo ( info ) ;
// Notify all pending requests that their bindings are
// ready and can be installed.
for ( i = 0 ; i < count ; i + + ) {
2009-03-20 01:15:35 -07:00
nsXBLBindingRequest * req = mBindingRequests . ElementAt ( i ) ;
2007-11-07 16:05:03 -08:00
req - > DocumentLoaded ( bindingDocument ) ;
2007-03-22 10:30:00 -07:00
}
}
2011-10-17 07:59:28 -07:00
target - > RemoveEventListener ( NS_LITERAL_STRING ( " load " ) , this , false ) ;
2007-03-22 10:30:00 -07:00
return rv ;
}
// Implementation /////////////////////////////////////////////////////////////////
// Static member variable initialization
PRUint32 nsXBLService : : gRefCnt = 0 ;
2011-09-28 23:19:26 -07:00
bool nsXBLService : : gAllowDataURIs = false ;
2008-04-28 16:56:07 -07:00
2007-03-22 10:30:00 -07:00
nsHashtable * nsXBLService : : gClassTable = nsnull ;
JSCList nsXBLService : : gClassLRUList = JS_INIT_STATIC_CLIST ( & nsXBLService : : gClassLRUList ) ;
PRUint32 nsXBLService : : gClassLRUListLength = 0 ;
PRUint32 nsXBLService : : gClassLRUListQuota = 64 ;
// Implement our nsISupports methods
NS_IMPL_ISUPPORTS3 ( nsXBLService , nsIXBLService , nsIObserver , nsISupportsWeakReference )
// Constructors/Destructors
nsXBLService : : nsXBLService ( void )
{
mPool . Init ( " XBL Binding Requests " , kBucketSizes , kNumBuckets , kInitialSize ) ;
gRefCnt + + ;
if ( gRefCnt = = 1 ) {
gClassTable = new nsHashtable ( ) ;
}
2011-05-28 16:42:57 -07:00
Preferences : : AddBoolVarCache ( & gAllowDataURIs , " layout.debug.enable_data_xbl " ) ;
2007-03-22 10:30:00 -07:00
}
nsXBLService : : ~ nsXBLService ( void )
{
gRefCnt - - ;
if ( gRefCnt = = 0 ) {
// Walk the LRU list removing and deleting the nsXBLJSClasses.
FlushMemory ( ) ;
// Any straggling nsXBLJSClass instances held by unfinalized JS objects
// created for bindings will be deleted when those objects are finalized
// (and not put on gClassLRUList, because length >= quota).
gClassLRUListLength = gClassLRUListQuota = 0 ;
// At this point, the only hash table entries should be for referenced
// XBL class structs held by unfinalized JS binding objects.
delete gClassTable ;
gClassTable = nsnull ;
}
}
// This function loads a particular XBL file and installs all of the bindings
// onto the element.
NS_IMETHODIMP
2007-07-18 14:56:57 -07:00
nsXBLService : : LoadBindings ( nsIContent * aContent , nsIURI * aURL ,
2011-09-28 23:19:26 -07:00
nsIPrincipal * aOriginPrincipal , bool aAugmentFlag ,
nsXBLBinding * * aBinding , bool * aResolveStyle )
2007-07-18 14:56:57 -07:00
{
NS_PRECONDITION ( aOriginPrincipal , " Must have an origin principal " ) ;
2007-03-22 10:30:00 -07:00
* aBinding = nsnull ;
2011-10-17 07:59:28 -07:00
* aResolveStyle = false ;
2007-03-22 10:30:00 -07:00
nsresult rv ;
2011-10-18 03:53:36 -07:00
nsCOMPtr < nsIDocument > document = aContent - > OwnerDoc ( ) ;
2007-03-22 10:30:00 -07:00
2008-11-13 16:00:11 -08:00
nsCAutoString urlspec ;
if ( nsContentUtils : : GetWrapperSafeScriptFilename ( document , aURL , urlspec ) ) {
// Block an attempt to load a binding that has special wrapper
// automation needs.
return NS_OK ;
}
2007-03-22 10:30:00 -07:00
nsBindingManager * bindingManager = document - > BindingManager ( ) ;
nsXBLBinding * binding = bindingManager - > GetBinding ( aContent ) ;
if ( binding & & ! aAugmentFlag ) {
nsXBLBinding * styleBinding = binding - > GetFirstStyleBinding ( ) ;
if ( styleBinding ) {
if ( binding - > MarkedForDeath ( ) ) {
FlushStyleBindings ( aContent ) ;
binding = nsnull ;
}
else {
// See if the URIs match.
2009-11-03 13:45:10 -08:00
if ( styleBinding - > PrototypeBinding ( ) - > CompareBindingURI ( aURL ) )
2007-03-22 10:30:00 -07:00
return NS_OK ;
FlushStyleBindings ( aContent ) ;
binding = nsnull ;
}
}
}
2011-09-28 23:19:26 -07:00
bool ready ;
2007-03-22 10:30:00 -07:00
nsRefPtr < nsXBLBinding > newBinding ;
2011-10-17 07:59:28 -07:00
if ( NS_FAILED ( rv = GetBinding ( aContent , aURL , false , aOriginPrincipal ,
2007-07-18 14:56:57 -07:00
& ready , getter_AddRefs ( newBinding ) ) ) ) {
2007-03-22 10:30:00 -07:00
return rv ;
}
if ( ! newBinding ) {
# ifdef DEBUG
nsCAutoString spec ;
aURL - > GetSpec ( spec ) ;
nsCAutoString str ( NS_LITERAL_CSTRING ( " Failed to locate XBL binding. XBL is now using id instead of name to reference bindings. Make sure you have switched over. The invalid binding name is: " ) + spec ) ;
NS_ERROR ( str . get ( ) ) ;
# endif
return NS_OK ;
}
if ( : : IsAncestorBinding ( document , aURL , aContent ) ) {
return NS_ERROR_ILLEGAL_VALUE ;
}
if ( aAugmentFlag ) {
nsXBLBinding * baseBinding ;
nsXBLBinding * nextBinding = newBinding ;
do {
baseBinding = nextBinding ;
nextBinding = baseBinding - > GetBaseBinding ( ) ;
2011-10-17 07:59:28 -07:00
baseBinding - > SetIsStyleBinding ( false ) ;
2007-03-22 10:30:00 -07:00
} while ( nextBinding ) ;
// XXX Handle adjusting the prototype chain! We need to somehow indicate to
// InstallImplementation that the whole chain should just be whacked and rebuilt.
// We are becoming the new binding.
baseBinding - > SetBaseBinding ( binding ) ;
bindingManager - > SetBinding ( aContent , newBinding ) ;
}
else {
// We loaded a style binding. It goes on the end.
if ( binding ) {
// Get the last binding that is in the append layer.
binding - > RootBinding ( ) - > SetBaseBinding ( newBinding ) ;
}
else {
// Install the binding on the content node.
bindingManager - > SetBinding ( aContent , newBinding ) ;
}
}
2009-11-18 07:14:14 -08:00
{
nsAutoScriptBlocker scriptBlocker ;
2007-03-22 10:30:00 -07:00
2009-11-18 07:14:14 -08:00
// Set the binding's bound element.
newBinding - > SetBoundElement ( aContent ) ;
2007-03-22 10:30:00 -07:00
2009-11-18 07:14:14 -08:00
// Tell the binding to build the anonymous content.
newBinding - > GenerateAnonymousContent ( ) ;
2008-03-14 16:08:57 -07:00
2009-11-18 07:14:14 -08:00
// Tell the binding to install event handlers
newBinding - > InstallEventHandlers ( ) ;
2008-03-14 16:08:57 -07:00
2009-11-18 07:14:14 -08:00
// Set up our properties
rv = newBinding - > InstallImplementation ( ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
// Figure out if we have any scoped sheets. If so, we do a second resolve.
* aResolveStyle = newBinding - > HasStyleSheets ( ) ;
2007-03-22 10:30:00 -07:00
2009-11-18 07:14:14 -08:00
newBinding . swap ( * aBinding ) ;
}
2007-10-26 17:14:43 -07:00
2007-03-22 10:30:00 -07:00
return NS_OK ;
}
nsresult
nsXBLService : : FlushStyleBindings ( nsIContent * aContent )
{
2011-10-18 03:53:36 -07:00
nsCOMPtr < nsIDocument > document = aContent - > OwnerDoc ( ) ;
2007-03-22 10:30:00 -07:00
nsBindingManager * bindingManager = document - > BindingManager ( ) ;
nsXBLBinding * binding = bindingManager - > GetBinding ( aContent ) ;
if ( binding ) {
nsXBLBinding * styleBinding = binding - > GetFirstStyleBinding ( ) ;
if ( styleBinding ) {
// Clear out the script references.
styleBinding - > ChangeDocument ( document , nsnull ) ;
}
if ( styleBinding = = binding )
bindingManager - > SetBinding ( aContent , nsnull ) ; // Flush old style bindings
}
return NS_OK ;
}
NS_IMETHODIMP
nsXBLService : : ResolveTag ( nsIContent * aContent , PRInt32 * aNameSpaceID ,
nsIAtom * * aResult )
{
2011-10-18 03:53:36 -07:00
nsIDocument * document = aContent - > OwnerDoc ( ) ;
2011-10-18 04:19:44 -07:00
* aResult = document - > BindingManager ( ) - > ResolveTag ( aContent , aNameSpaceID ) ;
NS_IF_ADDREF ( * aResult ) ;
2007-03-22 10:30:00 -07:00
return NS_OK ;
}
//
// AttachGlobalKeyHandler
//
// Creates a new key handler and prepares to listen to key events on the given
// event receiver (either a document or an content node). If the receiver is content,
// then extra work needs to be done to hook it up to the document (XXX WHY??)
//
NS_IMETHODIMP
2011-06-23 19:18:00 -07:00
nsXBLService : : AttachGlobalKeyHandler ( nsIDOMEventTarget * aTarget )
2007-03-22 10:30:00 -07:00
{
// check if the receiver is a content node (not a document), and hook
// it to the document if that is the case.
2011-06-23 19:18:00 -07:00
nsCOMPtr < nsIDOMEventTarget > piTarget = aTarget ;
2007-05-14 02:11:38 -07:00
nsCOMPtr < nsIContent > contentNode ( do_QueryInterface ( aTarget ) ) ;
2007-03-22 10:30:00 -07:00
if ( contentNode ) {
// Only attach if we're really in a document
nsCOMPtr < nsIDocument > doc = contentNode - > GetCurrentDoc ( ) ;
if ( doc )
2011-06-23 19:18:02 -07:00
piTarget = doc ; // We're a XUL keyset. Attach to our document.
2007-03-22 10:30:00 -07:00
}
2011-06-23 19:18:02 -07:00
2011-10-17 07:59:28 -07:00
nsEventListenerManager * manager = piTarget - > GetListenerManager ( true ) ;
2007-03-22 10:30:00 -07:00
2011-06-23 19:18:02 -07:00
if ( ! piTarget | | ! manager )
2007-03-22 10:30:00 -07:00
return NS_ERROR_FAILURE ;
2008-08-06 07:32:09 -07:00
// the listener already exists, so skip this
if ( contentNode & & contentNode - > GetProperty ( nsGkAtoms : : listener ) )
return NS_OK ;
2007-03-22 10:30:00 -07:00
nsCOMPtr < nsIDOMElement > elt ( do_QueryInterface ( contentNode ) ) ;
// Create the key handler
nsXBLWindowKeyHandler * handler ;
2007-05-14 02:11:38 -07:00
NS_NewXBLWindowKeyHandler ( elt , piTarget , & handler ) ; // This addRef's
2007-03-22 10:30:00 -07:00
if ( ! handler )
return NS_ERROR_FAILURE ;
// listen to these events
2011-06-23 19:18:02 -07:00
manager - > AddEventListenerByType ( handler , NS_LITERAL_STRING ( " keydown " ) ,
NS_EVENT_FLAG_BUBBLE |
2011-06-23 19:18:02 -07:00
NS_EVENT_FLAG_SYSTEM_EVENT ) ;
2011-06-23 19:18:02 -07:00
manager - > AddEventListenerByType ( handler , NS_LITERAL_STRING ( " keyup " ) ,
NS_EVENT_FLAG_BUBBLE |
2011-06-23 19:18:02 -07:00
NS_EVENT_FLAG_SYSTEM_EVENT ) ;
2011-06-23 19:18:02 -07:00
manager - > AddEventListenerByType ( handler , NS_LITERAL_STRING ( " keypress " ) ,
NS_EVENT_FLAG_BUBBLE |
2011-06-23 19:18:02 -07:00
NS_EVENT_FLAG_SYSTEM_EVENT ) ;
2007-03-22 10:30:00 -07:00
2008-08-06 07:32:09 -07:00
if ( contentNode )
return contentNode - > SetProperty ( nsGkAtoms : : listener , handler ,
2011-10-17 07:59:28 -07:00
nsPropertyTable : : SupportsDtorFunc , true ) ;
2008-08-06 07:32:09 -07:00
// release the handler. The reference will be maintained by the event target,
// and, if there is a content node, the property.
2007-03-22 10:30:00 -07:00
NS_RELEASE ( handler ) ;
2008-08-06 07:32:09 -07:00
return NS_OK ;
}
//
// DetachGlobalKeyHandler
//
// Removes a key handler added by DeatchGlobalKeyHandler.
//
NS_IMETHODIMP
2011-06-23 19:18:00 -07:00
nsXBLService : : DetachGlobalKeyHandler ( nsIDOMEventTarget * aTarget )
2008-08-06 07:32:09 -07:00
{
2011-06-23 19:18:00 -07:00
nsCOMPtr < nsIDOMEventTarget > piTarget = aTarget ;
2008-08-06 07:32:09 -07:00
nsCOMPtr < nsIContent > contentNode ( do_QueryInterface ( aTarget ) ) ;
if ( ! contentNode ) // detaching is only supported for content nodes
return NS_ERROR_FAILURE ;
// Only attach if we're really in a document
nsCOMPtr < nsIDocument > doc = contentNode - > GetCurrentDoc ( ) ;
if ( doc )
piTarget = do_QueryInterface ( doc ) ;
2011-06-23 19:18:02 -07:00
2011-10-17 07:59:28 -07:00
nsEventListenerManager * manager = piTarget - > GetListenerManager ( true ) ;
2011-06-23 19:18:02 -07:00
if ( ! piTarget | | ! manager )
2008-08-06 07:32:09 -07:00
return NS_ERROR_FAILURE ;
nsIDOMEventListener * handler =
static_cast < nsIDOMEventListener * > ( contentNode - > GetProperty ( nsGkAtoms : : listener ) ) ;
if ( ! handler )
return NS_ERROR_FAILURE ;
2011-06-23 19:18:02 -07:00
manager - > RemoveEventListenerByType ( handler , NS_LITERAL_STRING ( " keydown " ) ,
NS_EVENT_FLAG_BUBBLE |
2011-06-23 19:18:02 -07:00
NS_EVENT_FLAG_SYSTEM_EVENT ) ;
2011-06-23 19:18:02 -07:00
manager - > RemoveEventListenerByType ( handler , NS_LITERAL_STRING ( " keyup " ) ,
NS_EVENT_FLAG_BUBBLE |
2011-06-23 19:18:02 -07:00
NS_EVENT_FLAG_SYSTEM_EVENT ) ;
2011-06-23 19:18:02 -07:00
manager - > RemoveEventListenerByType ( handler , NS_LITERAL_STRING ( " keypress " ) ,
NS_EVENT_FLAG_BUBBLE |
2011-06-23 19:18:02 -07:00
NS_EVENT_FLAG_SYSTEM_EVENT ) ;
2008-08-06 07:32:09 -07:00
contentNode - > DeleteProperty ( nsGkAtoms : : listener ) ;
2007-03-22 10:30:00 -07:00
return NS_OK ;
}
NS_IMETHODIMP
nsXBLService : : Observe ( nsISupports * aSubject , const char * aTopic , const PRUnichar * aSomeData )
{
if ( nsCRT : : strcmp ( aTopic , " memory-pressure " ) = = 0 )
FlushMemory ( ) ;
return NS_OK ;
}
nsresult
nsXBLService : : FlushMemory ( )
{
while ( ! JS_CLIST_IS_EMPTY ( & gClassLRUList ) ) {
JSCList * lru = gClassLRUList . next ;
2007-07-08 00:08:04 -07:00
nsXBLJSClass * c = static_cast < nsXBLJSClass * > ( lru ) ;
2007-03-22 10:30:00 -07:00
JS_REMOVE_AND_INIT_LINK ( lru ) ;
delete c ;
gClassLRUListLength - - ;
}
return NS_OK ;
}
// Internal helper methods ////////////////////////////////////////////////////////////////
NS_IMETHODIMP nsXBLService : : BindingReady ( nsIContent * aBoundElement ,
nsIURI * aURI ,
2011-09-28 23:19:26 -07:00
bool * aIsReady )
2007-03-22 10:30:00 -07:00
{
2007-07-18 14:56:57 -07:00
// Don't do a security check here; we know this binding is set to go.
2011-10-17 07:59:28 -07:00
return GetBinding ( aBoundElement , aURI , true , nsnull , aIsReady , nsnull ) ;
2007-03-22 10:30:00 -07:00
}
nsresult
nsXBLService : : GetBinding ( nsIContent * aBoundElement , nsIURI * aURI ,
2011-09-28 23:19:26 -07:00
bool aPeekOnly , nsIPrincipal * aOriginPrincipal ,
bool * aIsReady , nsXBLBinding * * aResult )
2007-03-22 10:30:00 -07:00
{
// More than 6 binding URIs are rare, see bug 55070 comment 18.
2007-12-12 20:17:14 -08:00
nsAutoTArray < nsIURI * , 6 > uris ;
2007-07-18 14:56:57 -07:00
return GetBinding ( aBoundElement , aURI , aPeekOnly , aOriginPrincipal , aIsReady ,
aResult , uris ) ;
2007-03-22 10:30:00 -07:00
}
nsresult
nsXBLService : : GetBinding ( nsIContent * aBoundElement , nsIURI * aURI ,
2011-09-28 23:19:26 -07:00
bool aPeekOnly , nsIPrincipal * aOriginPrincipal ,
bool * aIsReady , nsXBLBinding * * aResult ,
2007-03-22 10:30:00 -07:00
nsTArray < nsIURI * > & aDontExtendURIs )
{
NS_ASSERTION ( aPeekOnly | | aResult ,
" Must have non-null out param if not just peeking to see "
" whether the binding is ready " ) ;
if ( aResult )
* aResult = nsnull ;
if ( ! aURI )
return NS_ERROR_FAILURE ;
nsCAutoString ref ;
2011-05-21 18:12:46 -07:00
aURI - > GetRef ( ref ) ;
2007-03-22 10:30:00 -07:00
2011-10-18 03:53:36 -07:00
nsCOMPtr < nsIDocument > boundDocument = aBoundElement - > OwnerDoc ( ) ;
2007-03-22 10:30:00 -07:00
2010-07-14 18:53:11 -07:00
nsRefPtr < nsXBLDocumentInfo > docInfo ;
2007-07-18 14:56:57 -07:00
nsresult rv = LoadBindingDocumentInfo ( aBoundElement , boundDocument , aURI ,
aOriginPrincipal ,
2011-10-17 07:59:28 -07:00
false , getter_AddRefs ( docInfo ) ) ;
2007-07-18 14:56:57 -07:00
NS_ENSURE_SUCCESS ( rv , rv ) ;
2007-03-22 10:30:00 -07:00
if ( ! docInfo )
return NS_ERROR_FAILURE ;
// Get our doc info and determine our script access.
2010-07-14 18:55:54 -07:00
nsCOMPtr < nsIDocument > doc = docInfo - > GetDocument ( ) ;
2007-03-22 10:30:00 -07:00
2010-07-14 18:55:54 -07:00
nsXBLPrototypeBinding * protoBinding = docInfo - > GetPrototypeBinding ( ref ) ;
2007-03-22 10:30:00 -07:00
2011-04-29 16:56:05 -07:00
NS_WARN_IF_FALSE ( protoBinding , " Unable to locate an XBL binding " ) ;
2007-03-22 10:30:00 -07:00
if ( ! protoBinding )
return NS_ERROR_FAILURE ;
2009-11-03 13:45:10 -08:00
NS_ENSURE_TRUE ( aDontExtendURIs . AppendElement ( protoBinding - > BindingURI ( ) ) ,
NS_ERROR_OUT_OF_MEMORY ) ;
nsCOMPtr < nsIURI > altBindingURI = protoBinding - > AlternateBindingURI ( ) ;
if ( altBindingURI ) {
NS_ENSURE_TRUE ( aDontExtendURIs . AppendElement ( altBindingURI ) ,
NS_ERROR_OUT_OF_MEMORY ) ;
}
2007-03-22 10:30:00 -07:00
nsCOMPtr < nsIContent > child = protoBinding - > GetBindingElement ( ) ;
// Our prototype binding must have all its resources loaded.
2011-09-28 23:19:26 -07:00
bool ready = protoBinding - > LoadResources ( ) ;
2007-03-22 10:30:00 -07:00
if ( ! ready ) {
// Add our bound element to the protos list of elts that should
// be notified when the stylesheets and scripts finish loading.
protoBinding - > AddResourceListener ( aBoundElement ) ;
return NS_ERROR_FAILURE ; // The binding isn't ready yet.
}
// If our prototype already has a base, then don't check for an "extends" attribute.
nsRefPtr < nsXBLBinding > baseBinding ;
2011-09-28 23:19:26 -07:00
bool hasBase = protoBinding - > HasBasePrototype ( ) ;
2007-03-22 10:30:00 -07:00
nsXBLPrototypeBinding * baseProto = protoBinding - > GetBasePrototype ( ) ;
if ( baseProto ) {
2007-07-18 14:56:57 -07:00
// Use the NodePrincipal() of the <binding> element in question
// for the security check.
rv = GetBinding ( aBoundElement , baseProto - > BindingURI ( ) , aPeekOnly ,
child - > NodePrincipal ( ) , aIsReady ,
getter_AddRefs ( baseBinding ) , aDontExtendURIs ) ;
2007-03-22 10:30:00 -07:00
if ( NS_FAILED ( rv ) )
return rv ; // We aren't ready yet.
}
else if ( hasBase ) {
// Check for the presence of 'extends' and 'display' attributes
nsAutoString display , extends ;
child - > GetAttr ( kNameSpaceID_None , nsGkAtoms : : display , display ) ;
child - > GetAttr ( kNameSpaceID_None , nsGkAtoms : : extends , extends ) ;
2011-09-28 23:19:26 -07:00
bool hasDisplay = ! display . IsEmpty ( ) ;
bool hasExtends = ! extends . IsEmpty ( ) ;
2007-03-22 10:30:00 -07:00
nsAutoString value ( extends ) ;
if ( ! hasExtends )
2011-10-17 07:59:28 -07:00
protoBinding - > SetHasBasePrototype ( false ) ;
2007-03-22 10:30:00 -07:00
else {
// Now slice 'em up to see what we've got.
nsAutoString prefix ;
PRInt32 offset ;
if ( hasDisplay ) {
offset = display . FindChar ( ' : ' ) ;
if ( - 1 ! = offset ) {
display . Left ( prefix , offset ) ;
display . Cut ( 0 , offset + 1 ) ;
}
}
else if ( hasExtends ) {
offset = extends . FindChar ( ' : ' ) ;
if ( - 1 ! = offset ) {
extends . Left ( prefix , offset ) ;
extends . Cut ( 0 , offset + 1 ) ;
display = extends ;
}
}
nsAutoString nameSpace ;
if ( ! prefix . IsEmpty ( ) ) {
2011-06-14 00:56:48 -07:00
child - > LookupNamespaceURI ( prefix , nameSpace ) ;
if ( ! nameSpace . IsEmpty ( ) ) {
if ( ! hasDisplay ) {
// We extend some widget/frame. We don't really have a
// base binding.
2011-10-17 07:59:28 -07:00
protoBinding - > SetHasBasePrototype ( false ) ;
//child->UnsetAttr(kNameSpaceID_None, nsGkAtoms::extends, false);
2007-03-22 10:30:00 -07:00
}
2011-06-14 00:56:48 -07:00
PRInt32 nameSpaceID =
nsContentUtils : : NameSpaceManager ( ) - > GetNameSpaceID ( nameSpace ) ;
nsCOMPtr < nsIAtom > tagName = do_GetAtom ( display ) ;
// Check the white list
if ( ! CheckTagNameWhiteList ( nameSpaceID , tagName ) ) {
const PRUnichar * params [ ] = { display . get ( ) } ;
nsContentUtils : : ReportToConsole ( nsContentUtils : : eXBL_PROPERTIES ,
" InvalidExtendsBinding " ,
2011-10-10 22:50:08 -07:00
params , ArrayLength ( params ) ,
2011-06-14 00:56:48 -07:00
nsnull ,
EmptyString ( ) , 0 , 0 ,
nsIScriptError : : errorFlag ,
" XBL " , doc ) ;
NS_ASSERTION ( ! IsChromeOrResourceURI ( aURI ) ,
" Invalid extends value " ) ;
return NS_ERROR_ILLEGAL_VALUE ;
}
protoBinding - > SetBaseTag ( nameSpaceID , tagName ) ;
2007-03-22 10:30:00 -07:00
}
}
if ( hasExtends & & ( hasDisplay | | nameSpace . IsEmpty ( ) ) ) {
// Look up the prefix.
// We have a base class binding. Load it right now.
nsCOMPtr < nsIURI > bindingURI ;
2007-07-18 14:56:57 -07:00
rv = NS_NewURI ( getter_AddRefs ( bindingURI ) , value ,
doc - > GetDocumentCharacterSet ( ) . get ( ) ,
2010-04-19 08:40:15 -07:00
doc - > GetDocBaseURI ( ) ) ;
2007-03-22 10:30:00 -07:00
NS_ENSURE_SUCCESS ( rv , rv ) ;
PRUint32 count = aDontExtendURIs . Length ( ) ;
for ( PRUint32 index = 0 ; index < count ; + + index ) {
2011-09-28 23:19:26 -07:00
bool equal ;
2007-03-22 10:30:00 -07:00
rv = aDontExtendURIs [ index ] - > Equals ( bindingURI , & equal ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
if ( equal ) {
nsCAutoString spec ;
protoBinding - > BindingURI ( ) - > GetSpec ( spec ) ;
NS_ConvertUTF8toUTF16 protoSpec ( spec ) ;
const PRUnichar * params [ ] = { protoSpec . get ( ) , value . get ( ) } ;
nsContentUtils : : ReportToConsole ( nsContentUtils : : eXBL_PROPERTIES ,
" CircularExtendsBinding " ,
2011-10-10 22:50:08 -07:00
params , ArrayLength ( params ) ,
2010-12-20 08:21:58 -08:00
nsnull ,
2007-03-22 10:30:00 -07:00
EmptyString ( ) , 0 , 0 ,
nsIScriptError : : warningFlag ,
2010-12-20 08:21:58 -08:00
" XBL " , boundDocument ) ;
2007-03-22 10:30:00 -07:00
return NS_ERROR_ILLEGAL_VALUE ;
}
}
2007-07-18 14:56:57 -07:00
// Use the NodePrincipal() of the <binding> element in question
// for the security check.
rv = GetBinding ( aBoundElement , bindingURI , aPeekOnly ,
child - > NodePrincipal ( ) , aIsReady ,
2007-03-22 10:30:00 -07:00
getter_AddRefs ( baseBinding ) , aDontExtendURIs ) ;
if ( NS_FAILED ( rv ) )
return rv ; // Binding not yet ready or an error occurred.
if ( ! aPeekOnly ) {
// Make sure to set the base prototype.
baseProto = baseBinding - > PrototypeBinding ( ) ;
protoBinding - > SetBasePrototype ( baseProto ) ;
2011-10-17 07:59:28 -07:00
child - > UnsetAttr ( kNameSpaceID_None , nsGkAtoms : : extends , false ) ;
child - > UnsetAttr ( kNameSpaceID_None , nsGkAtoms : : display , false ) ;
2007-03-22 10:30:00 -07:00
}
}
}
}
2011-10-17 07:59:28 -07:00
* aIsReady = true ;
2007-03-22 10:30:00 -07:00
if ( ! aPeekOnly ) {
// Make a new binding
nsXBLBinding * newBinding = new nsXBLBinding ( protoBinding ) ;
NS_ENSURE_TRUE ( newBinding , NS_ERROR_OUT_OF_MEMORY ) ;
if ( baseBinding )
newBinding - > SetBaseBinding ( baseBinding ) ;
NS_ADDREF ( * aResult = newBinding ) ;
}
return NS_OK ;
}
2011-09-28 23:19:26 -07:00
static bool SchemeIs ( nsIURI * aURI , const char * aScheme )
2009-03-10 01:35:00 -07:00
{
nsCOMPtr < nsIURI > baseURI = NS_GetInnermostURI ( aURI ) ;
2011-10-17 07:59:28 -07:00
NS_ENSURE_TRUE ( baseURI , false ) ;
2009-03-10 01:35:00 -07:00
2011-09-28 23:19:26 -07:00
bool isScheme = false ;
2009-03-10 01:35:00 -07:00
return NS_SUCCEEDED ( baseURI - > SchemeIs ( aScheme , & isScheme ) ) & & isScheme ;
}
2011-09-28 23:19:26 -07:00
static bool
2010-08-19 16:12:46 -07:00
IsSystemOrChromeURLPrincipal ( nsIPrincipal * aPrincipal )
{
if ( nsContentUtils : : IsSystemPrincipal ( aPrincipal ) ) {
2011-10-17 07:59:28 -07:00
return true ;
2010-08-19 16:12:46 -07:00
}
nsCOMPtr < nsIURI > uri ;
aPrincipal - > GetURI ( getter_AddRefs ( uri ) ) ;
2011-10-17 07:59:28 -07:00
NS_ENSURE_TRUE ( uri , false ) ;
2010-08-19 16:12:46 -07:00
2011-09-28 23:19:26 -07:00
bool isChrome = false ;
2010-08-19 16:12:46 -07:00
return NS_SUCCEEDED ( uri - > SchemeIs ( " chrome " , & isChrome ) ) & & isChrome ;
}
2007-03-22 10:30:00 -07:00
NS_IMETHODIMP
nsXBLService : : LoadBindingDocumentInfo ( nsIContent * aBoundElement ,
nsIDocument * aBoundDocument ,
nsIURI * aBindingURI ,
2007-07-18 14:56:57 -07:00
nsIPrincipal * aOriginPrincipal ,
2011-09-28 23:19:26 -07:00
bool aForceSyncLoad ,
2010-07-14 18:53:11 -07:00
nsXBLDocumentInfo * * aResult )
2007-03-22 10:30:00 -07:00
{
NS_PRECONDITION ( aBindingURI , " Must have a binding URI " ) ;
2007-07-18 14:56:57 -07:00
NS_PRECONDITION ( ! aOriginPrincipal | | aBoundDocument ,
" If we're doing a security check, we better have a document! " ) ;
2007-03-22 10:30:00 -07:00
2007-06-12 14:56:06 -07:00
nsresult rv ;
2007-07-18 14:56:57 -07:00
if ( aOriginPrincipal ) {
// Security check - Enforce same-origin policy, except to chrome.
// We have to be careful to not pass aContent as the context here.
// Otherwise, if there is a JS-implemented content policy, we will attempt
// to wrap the content node, which will try to load XBL bindings for it, if
// any. Since we're not done loading this binding yet, that will reenter
// this method and we'll end up creating a binding and then immediately
// clobbering it in our table. That makes things very confused, leading to
// misbehavior and crashes.
2007-06-12 14:56:06 -07:00
rv = nsContentUtils : :
2007-07-18 14:56:57 -07:00
CheckSecurityBeforeLoad ( aBindingURI , aOriginPrincipal ,
2007-06-12 14:56:06 -07:00
nsIScriptSecurityManager : : ALLOW_CHROME ,
2008-04-28 16:56:07 -07:00
gAllowDataURIs ,
2007-06-17 06:50:50 -07:00
nsIContentPolicy : : TYPE_XBL ,
2007-06-12 14:56:06 -07:00
aBoundDocument ) ;
2010-09-15 15:53:01 -07:00
NS_ENSURE_SUCCESS ( rv , NS_ERROR_XBL_BLOCKED ) ;
2009-03-09 23:15:06 -07:00
2010-08-19 16:12:46 -07:00
if ( ! IsSystemOrChromeURLPrincipal ( aOriginPrincipal ) ) {
// Also make sure that we're same-origin with the bound document
// except if the stylesheet has the system principal.
if ( ! ( gAllowDataURIs & & SchemeIs ( aBindingURI , " data " ) ) & &
! SchemeIs ( aBindingURI , " chrome " ) ) {
rv = aBoundDocument - > NodePrincipal ( ) - > CheckMayLoad ( aBindingURI ,
2011-10-17 07:59:28 -07:00
true ) ;
2010-09-15 15:53:01 -07:00
NS_ENSURE_SUCCESS ( rv , NS_ERROR_XBL_BLOCKED ) ;
2010-08-19 16:12:46 -07:00
}
2009-03-09 23:15:06 -07:00
2010-08-19 16:12:46 -07:00
// Finally check if this document is allowed to use XBL at all.
NS_ENSURE_TRUE ( aBoundDocument - > AllowXULXBL ( ) ,
2010-09-15 15:53:01 -07:00
NS_ERROR_XBL_BLOCKED ) ;
2009-03-09 23:15:06 -07:00
}
2007-06-12 14:56:06 -07:00
}
2007-03-22 10:30:00 -07:00
* aResult = nsnull ;
2010-07-14 18:53:11 -07:00
nsRefPtr < nsXBLDocumentInfo > info ;
2007-03-22 10:30:00 -07:00
nsCOMPtr < nsIURI > documentURI ;
2011-05-21 18:12:46 -07:00
rv = aBindingURI - > CloneIgnoringRef ( getter_AddRefs ( documentURI ) ) ;
2007-03-22 10:30:00 -07:00
NS_ENSURE_SUCCESS ( rv , rv ) ;
# ifdef MOZ_XUL
// We've got a file. Check our XBL document cache.
nsXULPrototypeCache * cache = nsXULPrototypeCache : : GetInstance ( ) ;
2011-09-28 23:19:26 -07:00
bool useXULCache = cache & & cache - > IsEnabled ( ) ;
2007-03-22 10:30:00 -07:00
if ( useXULCache ) {
// The first line of defense is the chrome cache.
// This cache crosses the entire product, so that any XBL bindings that are
// part of chrome will be reused across all XUL documents.
info = cache - > GetXBLDocumentInfo ( documentURI ) ;
}
# endif
if ( ! info ) {
// The second line of defense is the binding manager's document table.
nsBindingManager * bindingManager = nsnull ;
if ( aBoundDocument ) {
bindingManager = aBoundDocument - > BindingManager ( ) ;
info = bindingManager - > GetXBLDocumentInfo ( documentURI ) ;
}
nsINodeInfo * ni = nsnull ;
if ( aBoundElement )
ni = aBoundElement - > NodeInfo ( ) ;
if ( ! info & & bindingManager & &
( ! ni | | ! ( ni - > Equals ( nsGkAtoms : : scrollbar , kNameSpaceID_XUL ) | |
ni - > Equals ( nsGkAtoms : : thumb , kNameSpaceID_XUL ) | |
( ( ni - > Equals ( nsGkAtoms : : input ) | |
ni - > Equals ( nsGkAtoms : : select ) ) & &
2009-08-24 13:02:07 -07:00
aBoundElement - > IsHTML ( ) ) ) ) & & ! aForceSyncLoad ) {
2007-03-22 10:30:00 -07:00
// The third line of defense is to investigate whether or not the
// document is currently being loaded asynchronously. If so, there's no
// document yet, but we need to glom on our request so that it will be
// processed whenever the doc does finish loading.
nsCOMPtr < nsIStreamListener > listener ;
if ( bindingManager )
listener = bindingManager - > GetLoadingDocListener ( documentURI ) ;
if ( listener ) {
nsXBLStreamListener * xblListener =
2007-07-08 00:08:04 -07:00
static_cast < nsXBLStreamListener * > ( listener . get ( ) ) ;
2007-03-22 10:30:00 -07:00
// Create a new load observer.
if ( ! xblListener - > HasRequest ( aBindingURI , aBoundElement ) ) {
nsXBLBindingRequest * req = nsXBLBindingRequest : : Create ( mPool , aBindingURI , aBoundElement ) ;
xblListener - > AddRequest ( req ) ;
}
return NS_OK ;
}
}
if ( ! info ) {
// Finally, if all lines of defense fail, we go and fetch the binding
// document.
// Always load chrome synchronously
2011-09-28 23:19:26 -07:00
bool chrome ;
2007-03-22 10:30:00 -07:00
if ( NS_SUCCEEDED ( documentURI - > SchemeIs ( " chrome " , & chrome ) ) & & chrome )
2011-10-17 07:59:28 -07:00
aForceSyncLoad = true ;
2007-03-22 10:30:00 -07:00
nsCOMPtr < nsIDocument > document ;
FetchBindingDocument ( aBoundElement , aBoundDocument , documentURI ,
aBindingURI , aForceSyncLoad , getter_AddRefs ( document ) ) ;
if ( document ) {
nsBindingManager * xblDocBindingManager = document - > BindingManager ( ) ;
info = xblDocBindingManager - > GetXBLDocumentInfo ( documentURI ) ;
if ( ! info ) {
NS_ERROR ( " An XBL file is malformed. Did you forget the XBL namespace on the bindings tag? " ) ;
return NS_ERROR_FAILURE ;
}
xblDocBindingManager - > RemoveXBLDocumentInfo ( info ) ; // Break the self-imposed cycle.
// If the doc is a chrome URI, then we put it into the XUL cache.
# ifdef MOZ_XUL
if ( useXULCache & & IsChromeOrResourceURI ( documentURI ) ) {
cache - > PutXBLDocumentInfo ( info ) ;
}
# endif
if ( bindingManager ) {
// Also put it in our binding manager's document table.
bindingManager - > PutXBLDocumentInfo ( info ) ;
}
}
}
}
if ( ! info )
return NS_OK ;
* aResult = info ;
NS_IF_ADDREF ( * aResult ) ;
return NS_OK ;
}
nsresult
nsXBLService : : FetchBindingDocument ( nsIContent * aBoundElement , nsIDocument * aBoundDocument ,
nsIURI * aDocumentURI , nsIURI * aBindingURI ,
2011-09-28 23:19:26 -07:00
bool aForceSyncLoad , nsIDocument * * aResult )
2007-03-22 10:30:00 -07:00
{
2010-04-30 12:40:59 -07:00
NS_TIME_FUNCTION ;
2007-03-22 10:30:00 -07:00
nsresult rv = NS_OK ;
// Initialize our out pointer to nsnull
* aResult = nsnull ;
2009-01-13 14:53:04 -08:00
// Now we have to synchronously load the binding file.
// Create an XML content sink and a parser.
2007-03-22 10:30:00 -07:00
nsCOMPtr < nsILoadGroup > loadGroup ;
if ( aBoundDocument )
loadGroup = aBoundDocument - > GetDocumentLoadGroup ( ) ;
// We really shouldn't have to force a sync load for anything here... could
// we get away with not doing that? Not sure.
if ( IsChromeOrResourceURI ( aDocumentURI ) )
2011-10-17 07:59:28 -07:00
aForceSyncLoad = true ;
2007-03-22 10:30:00 -07:00
// Create document and contentsink and set them up.
nsCOMPtr < nsIDocument > doc ;
rv = NS_NewXMLDocument ( getter_AddRefs ( doc ) ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
nsCOMPtr < nsIXMLContentSink > xblSink ;
rv = NS_NewXBLContentSink ( getter_AddRefs ( xblSink ) , doc , aDocumentURI , nsnull ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
// Open channel
nsCOMPtr < nsIChannel > channel ;
rv = NS_NewChannel ( getter_AddRefs ( channel ) , aDocumentURI , nsnull , loadGroup ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
2008-09-07 18:13:02 -07:00
nsCOMPtr < nsIInterfaceRequestor > sameOriginChecker = nsContentUtils : : GetSameOriginChecker ( ) ;
2007-06-12 14:56:06 -07:00
NS_ENSURE_TRUE ( sameOriginChecker , NS_ERROR_OUT_OF_MEMORY ) ;
channel - > SetNotificationCallbacks ( sameOriginChecker ) ;
2007-03-22 10:30:00 -07:00
if ( ! aForceSyncLoad ) {
// We can be asynchronous
2009-01-14 03:24:26 -08:00
nsXBLStreamListener * xblListener =
new nsXBLStreamListener ( this , aBoundDocument , xblSink , doc ) ;
2007-03-22 10:30:00 -07:00
NS_ENSURE_TRUE ( xblListener , NS_ERROR_OUT_OF_MEMORY ) ;
// Add ourselves to the list of loading docs.
nsBindingManager * bindingManager ;
if ( aBoundDocument )
bindingManager = aBoundDocument - > BindingManager ( ) ;
else
bindingManager = nsnull ;
if ( bindingManager )
bindingManager - > PutLoadingDocListener ( aDocumentURI , xblListener ) ;
// Add our request.
nsXBLBindingRequest * req = nsXBLBindingRequest : : Create ( mPool ,
aBindingURI ,
aBoundElement ) ;
xblListener - > AddRequest ( req ) ;
// Now kick off the async read.
2008-12-12 11:46:59 -08:00
rv = channel - > AsyncOpen ( xblListener , nsnull ) ;
if ( NS_FAILED ( rv ) ) {
// Well, we won't be getting a load. Make sure to clean up our stuff!
if ( bindingManager ) {
bindingManager - > RemoveLoadingDocListener ( aDocumentURI ) ;
}
}
2007-03-22 10:30:00 -07:00
return NS_OK ;
}
2009-01-14 03:24:26 -08:00
nsCOMPtr < nsIStreamListener > listener ;
rv = doc - > StartDocumentLoad ( " loadAsInteractiveData " ,
channel ,
loadGroup ,
nsnull ,
getter_AddRefs ( listener ) ,
2011-10-17 07:59:28 -07:00
true ,
2009-01-14 03:24:26 -08:00
xblSink ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
2007-03-22 10:30:00 -07:00
// Now do a blocking synchronous parse of the file.
nsCOMPtr < nsIInputStream > in ;
rv = channel - > Open ( getter_AddRefs ( in ) ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
rv = nsSyncLoadService : : PushSyncStreamToListener ( in , listener , channel ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
doc . swap ( * aResult ) ;
return NS_OK ;
}
// Creation Routine ///////////////////////////////////////////////////////////////////////
nsresult NS_NewXBLService ( nsIXBLService * * aResult ) ;
nsresult
NS_NewXBLService ( nsIXBLService * * aResult )
{
nsXBLService * result = new nsXBLService ;
if ( ! result )
return NS_ERROR_OUT_OF_MEMORY ;
NS_ADDREF ( * aResult = result ) ;
// Register the first (and only) nsXBLService as a memory pressure observer
// so it can flush the LRU list in low-memory situations.
Bug 560095 - Use mozilla::services::GetObserverService(). r=biesi,dveditz,gavin,josh,jst,mrbkap,roc,sdwilsh,shaver,sicking,smontagu,surkov
2010-04-29 09:59:13 -07:00
nsCOMPtr < nsIObserverService > os = mozilla : : services : : GetObserverService ( ) ;
2007-03-22 10:30:00 -07:00
if ( os )
2011-10-17 07:59:28 -07:00
os - > AddObserver ( result , " memory-pressure " , true ) ;
2007-03-22 10:30:00 -07:00
return NS_OK ;
}