2001-09-25 01:32:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +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/. */
|
2000-05-28 04:10:50 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-11-20 01:05:34 +00:00
|
|
|
#ifndef nsXBLService_h_
|
|
|
|
#define nsXBLService_h_
|
|
|
|
|
2012-05-23 18:46:04 +00:00
|
|
|
#include "nsString.h"
|
2000-09-20 05:44:19 +00:00
|
|
|
#include "nsWeakReference.h"
|
2006-11-09 01:58:12 +00:00
|
|
|
#include "nsTArray.h"
|
2014-03-18 21:25:39 +00:00
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
2000-07-01 02:36:18 +00:00
|
|
|
|
2005-02-25 22:07:01 +00:00
|
|
|
class nsXBLBinding;
|
2010-07-15 01:53:11 +00:00
|
|
|
class nsXBLDocumentInfo;
|
2000-05-28 04:10:50 +00:00
|
|
|
class nsIContent;
|
|
|
|
class nsIDocument;
|
|
|
|
class nsString;
|
|
|
|
class nsIURI;
|
2012-05-23 18:46:04 +00:00
|
|
|
class nsIPrincipal;
|
2013-04-06 00:44:26 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class EventTarget;
|
|
|
|
}
|
|
|
|
}
|
2000-05-28 04:10:50 +00:00
|
|
|
|
2014-04-11 14:59:47 +00:00
|
|
|
class nsXBLService MOZ_FINAL : public nsSupportsWeakReference
|
2000-05-28 04:10:50 +00:00
|
|
|
{
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2012-05-23 18:46:04 +00:00
|
|
|
static nsXBLService* gInstance;
|
|
|
|
|
|
|
|
static void Init();
|
|
|
|
|
|
|
|
static void Shutdown() {
|
|
|
|
NS_IF_RELEASE(gInstance);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsXBLService* GetInstance() { return gInstance; }
|
|
|
|
|
2011-11-03 20:39:07 +00:00
|
|
|
static bool IsChromeOrResourceURI(nsIURI* aURI);
|
|
|
|
|
2000-05-28 04:10:50 +00:00
|
|
|
// This function loads a particular XBL file and installs all of the bindings
|
2007-07-18 21:56:57 +00:00
|
|
|
// onto the element. aOriginPrincipal must not be null here.
|
2012-05-23 18:46:04 +00:00
|
|
|
nsresult LoadBindings(nsIContent* aContent, nsIURI* aURL,
|
2013-01-24 17:45:50 +00:00
|
|
|
nsIPrincipal* aOriginPrincipal,
|
2012-05-23 18:46:04 +00:00
|
|
|
nsXBLBinding** aBinding, bool* aResolveStyle);
|
2000-05-28 04:10:50 +00:00
|
|
|
|
2000-08-14 04:04:18 +00:00
|
|
|
// Indicates whether or not a binding is fully loaded.
|
2012-05-23 18:46:04 +00:00
|
|
|
nsresult BindingReady(nsIContent* aBoundElement, nsIURI* aURI, bool* aIsReady);
|
2000-05-28 04:10:50 +00:00
|
|
|
|
2007-07-18 21:56:57 +00:00
|
|
|
// This method checks the hashtable and then calls FetchBindingDocument on a
|
|
|
|
// miss. aOriginPrincipal or aBoundDocument may be null to bypass security
|
|
|
|
// checks.
|
2012-05-23 18:46:04 +00:00
|
|
|
nsresult LoadBindingDocumentInfo(nsIContent* aBoundElement,
|
|
|
|
nsIDocument* aBoundDocument,
|
|
|
|
nsIURI* aBindingURI,
|
|
|
|
nsIPrincipal* aOriginPrincipal,
|
|
|
|
bool aForceSyncLoad,
|
|
|
|
nsXBLDocumentInfo** aResult);
|
2000-08-17 08:11:11 +00:00
|
|
|
|
2000-09-22 05:02:20 +00:00
|
|
|
// Used by XUL key bindings and for window XBL.
|
2013-04-06 00:44:26 +00:00
|
|
|
static nsresult AttachGlobalKeyHandler(mozilla::dom::EventTarget* aTarget);
|
|
|
|
static nsresult DetachGlobalKeyHandler(mozilla::dom::EventTarget* aTarget);
|
2000-09-22 05:02:20 +00:00
|
|
|
|
2012-05-23 18:46:04 +00:00
|
|
|
private:
|
2000-05-28 04:10:50 +00:00
|
|
|
nsXBLService();
|
|
|
|
virtual ~nsXBLService();
|
|
|
|
|
2005-02-25 22:07:01 +00:00
|
|
|
protected:
|
2003-03-04 01:04:27 +00:00
|
|
|
// This function clears out the bindings on a given content node.
|
|
|
|
nsresult FlushStyleBindings(nsIContent* aContent);
|
|
|
|
|
2000-05-28 04:10:50 +00:00
|
|
|
// This method synchronously loads and parses an XBL file.
|
2003-03-04 01:04:27 +00:00
|
|
|
nsresult FetchBindingDocument(nsIContent* aBoundElement, nsIDocument* aBoundDocument,
|
2014-03-18 21:25:39 +00:00
|
|
|
nsIURI* aDocumentURI, nsIURI* aBindingURI,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aForceSyncLoad, nsIDocument** aResult);
|
2003-03-04 01:04:27 +00:00
|
|
|
|
2006-11-09 01:58:12 +00:00
|
|
|
/**
|
|
|
|
* This method calls the one below with an empty |aDontExtendURIs| array.
|
|
|
|
*/
|
2005-02-25 22:07:01 +00:00
|
|
|
nsresult GetBinding(nsIContent* aBoundElement, nsIURI* aURI,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aPeekFlag, nsIPrincipal* aOriginPrincipal,
|
|
|
|
bool* aIsReady, nsXBLBinding** aResult);
|
2000-08-14 04:04:18 +00:00
|
|
|
|
2006-11-09 01:58:12 +00:00
|
|
|
/**
|
|
|
|
* This method loads a binding doc and then builds the specific binding
|
|
|
|
* required. It can also peek without building.
|
|
|
|
* @param aBoundElement the element to get a binding for
|
|
|
|
* @param aURI the binding URI
|
|
|
|
* @param aPeekFlag if true then just peek to see if the binding is ready
|
|
|
|
* @param aIsReady [out] if the binding is ready or not
|
|
|
|
* @param aResult [out] where to store the resulting binding (not used if
|
|
|
|
* aPeekFlag is true, otherwise it must be non-null)
|
|
|
|
* @param aDontExtendURIs a set of URIs that are already bound to this
|
|
|
|
* element. If a binding extends any of these then further loading
|
|
|
|
* is aborted (because it would lead to the binding extending itself)
|
|
|
|
* and NS_ERROR_ILLEGAL_VALUE is returned.
|
2007-07-18 21:56:57 +00:00
|
|
|
*
|
|
|
|
* @note This method always calls LoadBindingDocumentInfo(), so it's
|
|
|
|
* enough to funnel all security checks through that function.
|
2006-11-09 01:58:12 +00:00
|
|
|
*/
|
|
|
|
nsresult GetBinding(nsIContent* aBoundElement, nsIURI* aURI,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aPeekFlag, nsIPrincipal* aOriginPrincipal,
|
|
|
|
bool* aIsReady, nsXBLBinding** aResult,
|
2006-11-09 01:58:12 +00:00
|
|
|
nsTArray<nsIURI*>& aDontExtendURIs);
|
|
|
|
|
2000-05-28 04:10:50 +00:00
|
|
|
// MEMBER VARIABLES
|
2000-07-01 02:36:18 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool gDisableChromeCache;
|
|
|
|
static bool gAllowDataURIs; // Whether we should allow data
|
2008-04-28 23:56:07 +00:00
|
|
|
// urls in -moz-binding. Needed for
|
|
|
|
// testing.
|
2000-05-28 04:10:50 +00:00
|
|
|
};
|
|
|
|
|
2012-11-20 01:05:34 +00:00
|
|
|
#endif
|