2013-02-28 19:41:30 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
|
|
|
* 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/. */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Implementation of DOM Traversal's nsIDOMNodeIterator
|
|
|
|
*/
|
|
|
|
|
2013-02-28 17:56:41 +00:00
|
|
|
#ifndef mozilla_dom_NodeIterator_h
|
|
|
|
#define mozilla_dom_NodeIterator_h
|
2013-02-28 19:41:30 +00:00
|
|
|
|
|
|
|
#include "nsIDOMNodeIterator.h"
|
|
|
|
#include "nsTraversal.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsStubMutationObserver.h"
|
|
|
|
|
|
|
|
class nsINode;
|
|
|
|
class nsIDOMNode;
|
|
|
|
|
2013-02-28 17:56:41 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class NodeIterator final : public nsIDOMNodeIterator,
|
2015-03-27 18:52:19 +00:00
|
|
|
public nsTraversal,
|
|
|
|
public nsStubMutationObserver
|
2013-02-28 19:41:30 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_NSIDOMNODEITERATOR
|
|
|
|
|
2013-02-28 17:56:41 +00:00
|
|
|
NodeIterator(nsINode *aRoot,
|
|
|
|
uint32_t aWhatToShow,
|
2016-07-28 02:00:06 +00:00
|
|
|
NodeFilterHolder aFilter);
|
2013-02-28 19:41:30 +00:00
|
|
|
|
|
|
|
NS_DECL_NSIMUTATIONOBSERVER_CONTENTREMOVED
|
|
|
|
|
2013-02-28 17:56:41 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(NodeIterator, nsIDOMNodeIterator)
|
2013-02-28 19:41:30 +00:00
|
|
|
|
2013-02-28 17:56:42 +00:00
|
|
|
// WebIDL API
|
|
|
|
nsINode* Root() const
|
|
|
|
{
|
|
|
|
return mRoot;
|
|
|
|
}
|
|
|
|
nsINode* GetReferenceNode() const
|
|
|
|
{
|
|
|
|
return mPointer.mNode;
|
|
|
|
}
|
|
|
|
bool PointerBeforeReferenceNode() const
|
|
|
|
{
|
|
|
|
return mPointer.mBeforeNode;
|
|
|
|
}
|
|
|
|
uint32_t WhatToShow() const
|
|
|
|
{
|
|
|
|
return mWhatToShow;
|
|
|
|
}
|
|
|
|
already_AddRefed<NodeFilter> GetFilter()
|
|
|
|
{
|
|
|
|
return mFilter.ToWebIDLCallback();
|
|
|
|
}
|
|
|
|
already_AddRefed<nsINode> NextNode(ErrorResult& aResult)
|
|
|
|
{
|
|
|
|
return NextOrPrevNode(&NodePointer::MoveToNext, aResult);
|
|
|
|
}
|
|
|
|
already_AddRefed<nsINode> PreviousNode(ErrorResult& aResult)
|
|
|
|
{
|
|
|
|
return NextOrPrevNode(&NodePointer::MoveToPrevious, aResult);
|
|
|
|
}
|
|
|
|
// The XPCOM Detach() is fine for our purposes
|
|
|
|
|
Bug 1117172 part 2. Change the non-wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, Codegen.py, and
StructuredClone.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/WrapObject\((JSContext *\* *(?:aCx|cx)),(\s*)(JS::MutableHandle<JSObject\*> aReflector)/WrapObject(\1,\2JS::Handle<JSObject*> aGivenProto,\2\3/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx)), this, aReflector/\1, this, aGivenProto, aReflector/'
2015-03-19 14:13:32 +00:00
|
|
|
bool WrapObject(JSContext *cx, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector);
|
2013-02-28 17:56:42 +00:00
|
|
|
|
2013-02-28 19:41:30 +00:00
|
|
|
private:
|
2014-07-08 20:46:24 +00:00
|
|
|
virtual ~NodeIterator();
|
|
|
|
|
2013-02-28 19:41:30 +00:00
|
|
|
struct NodePointer {
|
|
|
|
NodePointer() : mNode(nullptr) {}
|
|
|
|
NodePointer(nsINode *aNode, bool aBeforeNode);
|
|
|
|
|
|
|
|
typedef bool (NodePointer::*MoveToMethodType)(nsINode*);
|
|
|
|
bool MoveToNext(nsINode *aRoot);
|
|
|
|
bool MoveToPrevious(nsINode *aRoot);
|
|
|
|
|
|
|
|
bool MoveForward(nsINode *aRoot, nsINode *aNode);
|
|
|
|
void MoveBackward(nsINode *aParent, nsINode *aNode);
|
|
|
|
|
|
|
|
void AdjustAfterRemoval(nsINode *aRoot, nsINode *aContainer, nsIContent *aChild, nsIContent *aPreviousSibling);
|
|
|
|
|
|
|
|
void Clear() { mNode = nullptr; }
|
|
|
|
|
|
|
|
nsINode *mNode;
|
|
|
|
bool mBeforeNode;
|
|
|
|
};
|
|
|
|
|
2013-02-28 17:56:42 +00:00
|
|
|
// Implementation for some of our XPCOM getters
|
|
|
|
typedef already_AddRefed<nsINode> (NodeIterator::*NodeGetter)(ErrorResult&);
|
|
|
|
inline nsresult ImplNodeGetter(NodeGetter aGetter, nsIDOMNode** aRetval)
|
|
|
|
{
|
|
|
|
mozilla::ErrorResult rv;
|
|
|
|
nsCOMPtr<nsINode> node = (this->*aGetter)(rv);
|
|
|
|
if (rv.Failed()) {
|
2015-04-27 13:18:51 +00:00
|
|
|
return rv.StealNSResult();
|
2013-02-28 17:56:42 +00:00
|
|
|
}
|
2014-03-15 19:00:15 +00:00
|
|
|
*aRetval = node ? node.forget().take()->AsDOMNode() : nullptr;
|
2013-02-28 17:56:42 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Have to return a strong ref, because the act of testing the node can
|
|
|
|
// remove it from the DOM so we're holding the only ref to it.
|
|
|
|
already_AddRefed<nsINode>
|
|
|
|
NextOrPrevNode(NodePointer::MoveToMethodType aMove, ErrorResult& aResult);
|
2013-02-28 19:41:30 +00:00
|
|
|
|
|
|
|
NodePointer mPointer;
|
|
|
|
NodePointer mWorkingPointer;
|
|
|
|
};
|
|
|
|
|
2013-02-28 17:56:41 +00:00
|
|
|
} // namespace dom
|
2014-06-25 02:09:15 +00:00
|
|
|
|
2013-02-28 17:56:41 +00:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_NodeIterator_h
|