2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-05-02 02:50:08 +04: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/. */
|
|
|
|
|
2013-07-02 02:09:37 +04:00
|
|
|
#include "mozilla/dom/XBLChildrenElement.h"
|
2013-05-02 02:50:08 +04:00
|
|
|
#include "nsCharSeparatedTokenizer.h"
|
|
|
|
#include "mozilla/dom/NodeListBinding.h"
|
2017-06-07 20:28:20 +03:00
|
|
|
#include "nsAttrValueOrString.h"
|
2013-05-02 02:50:08 +04:00
|
|
|
|
2013-07-02 02:09:37 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
XBLChildrenElement::~XBLChildrenElement()
|
2013-05-02 02:50:08 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-08-16 23:37:20 +03:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(XBLChildrenElement,
|
|
|
|
Element,
|
|
|
|
nsIDOMNode,
|
|
|
|
nsIDOMElement)
|
2013-05-02 02:50:08 +04:00
|
|
|
|
2013-07-02 02:09:37 +04:00
|
|
|
NS_IMPL_ELEMENT_CLONE(XBLChildrenElement)
|
2013-05-02 02:50:08 +04:00
|
|
|
|
|
|
|
nsresult
|
2017-10-03 01:05:19 +03:00
|
|
|
XBLChildrenElement::BeforeSetAttr(int32_t aNamespaceID, nsAtom* aName,
|
2017-06-07 20:28:20 +03:00
|
|
|
const nsAttrValueOrString* aValue,
|
|
|
|
bool aNotify)
|
2013-05-02 02:50:08 +04:00
|
|
|
{
|
2017-06-07 20:28:20 +03:00
|
|
|
if (aNamespaceID == kNameSpaceID_None) {
|
|
|
|
if (aName == nsGkAtoms::includes) {
|
|
|
|
mIncludes.Clear();
|
|
|
|
if (aValue) {
|
|
|
|
nsCharSeparatedTokenizer tok(aValue->String(), '|',
|
|
|
|
nsCharSeparatedTokenizer::SEPARATOR_OPTIONAL);
|
|
|
|
while (tok.hasMoreTokens()) {
|
|
|
|
mIncludes.AppendElement(NS_Atomize(tok.nextToken()));
|
|
|
|
}
|
|
|
|
}
|
2013-05-02 02:50:08 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-07 20:28:20 +03:00
|
|
|
return nsXMLElement::BeforeSetAttr(aNamespaceID, aName, aValue, aNotify);
|
2013-05-02 02:50:08 +04:00
|
|
|
}
|
|
|
|
|
2013-07-02 02:09:37 +04:00
|
|
|
} // namespace dom
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace mozilla
|
2013-07-02 02:09:37 +04:00
|
|
|
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
2014-04-29 12:57:00 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(nsAnonymousContentList, mParent)
|
2013-05-02 02:50:08 +04:00
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsAnonymousContentList)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsAnonymousContentList)
|
|
|
|
|
|
|
|
NS_INTERFACE_TABLE_HEAD(nsAnonymousContentList)
|
2014-08-26 03:21:35 +04:00
|
|
|
NS_WRAPPERCACHE_INTERFACE_TABLE_ENTRY
|
2017-08-16 23:37:20 +03:00
|
|
|
NS_INTERFACE_TABLE(nsAnonymousContentList, nsINodeList, nsIDOMNodeList)
|
|
|
|
NS_INTERFACE_TABLE_TO_MAP_SEGUE_CYCLE_COLLECTION(nsAnonymousContentList)
|
2013-05-02 02:50:08 +04:00
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAnonymousContentList::GetLength(uint32_t* aLength)
|
|
|
|
{
|
|
|
|
if (!mParent) {
|
|
|
|
*aLength = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t count = 0;
|
|
|
|
for (nsIContent* child = mParent->GetFirstChild();
|
|
|
|
child;
|
|
|
|
child = child->GetNextSibling()) {
|
|
|
|
if (child->NodeInfo()->Equals(nsGkAtoms::children, kNameSpaceID_XBL)) {
|
2013-07-02 02:09:37 +04:00
|
|
|
XBLChildrenElement* point = static_cast<XBLChildrenElement*>(child);
|
2014-06-22 15:53:01 +04:00
|
|
|
if (point->HasInsertedChildren()) {
|
|
|
|
count += point->InsertedChildrenLength();
|
2013-05-02 02:50:08 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
count += point->GetChildCount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*aLength = count;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAnonymousContentList::Item(uint32_t aIndex, nsIDOMNode** aReturn)
|
|
|
|
{
|
|
|
|
nsIContent* item = Item(aIndex);
|
|
|
|
if (!item) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CallQueryInterface(item, aReturn);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIContent*
|
|
|
|
nsAnonymousContentList::Item(uint32_t aIndex)
|
|
|
|
{
|
|
|
|
if (!mParent) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t remIndex = aIndex;
|
|
|
|
for (nsIContent* child = mParent->GetFirstChild();
|
|
|
|
child;
|
|
|
|
child = child->GetNextSibling()) {
|
|
|
|
if (child->NodeInfo()->Equals(nsGkAtoms::children, kNameSpaceID_XBL)) {
|
2013-07-02 02:09:37 +04:00
|
|
|
XBLChildrenElement* point = static_cast<XBLChildrenElement*>(child);
|
2014-06-22 15:53:01 +04:00
|
|
|
if (point->HasInsertedChildren()) {
|
|
|
|
if (remIndex < point->InsertedChildrenLength()) {
|
|
|
|
return point->InsertedChild(remIndex);
|
2013-05-02 02:50:08 +04:00
|
|
|
}
|
2014-06-22 15:53:01 +04:00
|
|
|
remIndex -= point->InsertedChildrenLength();
|
2013-05-02 02:50:08 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (remIndex < point->GetChildCount()) {
|
2018-01-03 15:59:54 +03:00
|
|
|
return point->GetChildAt_Deprecated(remIndex);
|
2013-05-02 02:50:08 +04:00
|
|
|
}
|
|
|
|
remIndex -= point->GetChildCount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (remIndex == 0) {
|
|
|
|
return child;
|
|
|
|
}
|
|
|
|
--remIndex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
nsAnonymousContentList::IndexOf(nsIContent* aContent)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!aContent->NodeInfo()->Equals(nsGkAtoms::children,
|
|
|
|
kNameSpaceID_XBL),
|
|
|
|
"Looking for insertion point");
|
|
|
|
|
|
|
|
if (!mParent) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-06-22 15:53:01 +04:00
|
|
|
int32_t index = 0;
|
2013-05-02 02:50:08 +04:00
|
|
|
for (nsIContent* child = mParent->GetFirstChild();
|
|
|
|
child;
|
|
|
|
child = child->GetNextSibling()) {
|
|
|
|
if (child->NodeInfo()->Equals(nsGkAtoms::children, kNameSpaceID_XBL)) {
|
2013-07-02 02:09:37 +04:00
|
|
|
XBLChildrenElement* point = static_cast<XBLChildrenElement*>(child);
|
2014-06-22 15:53:01 +04:00
|
|
|
if (point->HasInsertedChildren()) {
|
|
|
|
int32_t insIndex = point->IndexOfInsertedChild(aContent);
|
|
|
|
if (insIndex != -1) {
|
2013-05-02 02:50:08 +04:00
|
|
|
return index + insIndex;
|
|
|
|
}
|
2014-06-22 15:53:01 +04:00
|
|
|
index += point->InsertedChildrenLength();
|
2013-05-02 02:50:08 +04:00
|
|
|
}
|
|
|
|
else {
|
2018-01-23 16:30:18 +03:00
|
|
|
int32_t insIndex = point->ComputeIndexOf(aContent);
|
2013-05-02 02:50:08 +04:00
|
|
|
if (insIndex != -1) {
|
2014-06-22 15:53:01 +04:00
|
|
|
return index + insIndex;
|
2013-05-02 02:50:08 +04:00
|
|
|
}
|
|
|
|
index += point->GetChildCount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (child == aContent) {
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
++index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject*
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
nsAnonymousContentList::WrapObject(JSContext *cx, JS::Handle<JSObject*> aGivenProto)
|
2013-05-02 02:50:08 +04:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
return mozilla::dom::NodeListBinding::Wrap(cx, this, aGivenProto);
|
2013-05-02 02:50:08 +04:00
|
|
|
}
|