2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2018-11-30 18:39:55 +03:00
|
|
|
/* vim: set ts=4 et sw=2 tw=80: */
|
2013-02-28 23:41:30 +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/. */
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2013-02-28 23:41:30 +04:00
|
|
|
/*
|
2018-02-01 22:26:12 +03:00
|
|
|
* Implementation of DOM Traversal's TreeWalker
|
2013-02-28 23:41:30 +04:00
|
|
|
*/
|
|
|
|
|
2013-02-28 21:56:41 +04:00
|
|
|
#ifndef mozilla_dom_TreeWalker_h
|
|
|
|
#define mozilla_dom_TreeWalker_h
|
2013-02-28 23:41:30 +04:00
|
|
|
|
2018-02-01 22:26:12 +03:00
|
|
|
#include "nsISupports.h"
|
2013-02-28 23:41:30 +04:00
|
|
|
#include "nsTraversal.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
|
|
|
|
class nsINode;
|
|
|
|
|
2022-05-09 23:41:04 +03:00
|
|
|
namespace mozilla::dom {
|
2013-02-28 21:56:41 +04:00
|
|
|
|
2018-02-01 22:26:12 +03:00
|
|
|
class TreeWalker final : public nsISupports, public nsTraversal {
|
2014-06-25 06:09:15 +04:00
|
|
|
virtual ~TreeWalker();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-02-28 23:41:30 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-02-28 21:56:41 +04:00
|
|
|
TreeWalker(nsINode* aRoot, uint32_t aWhatToShow, NodeFilter* aFilter);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-02-28 21:56:41 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(TreeWalker)
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-02-28 21:56:42 +04:00
|
|
|
// WebIDL API
|
|
|
|
nsINode* Root() const { return mRoot; }
|
|
|
|
uint32_t WhatToShow() const { return mWhatToShow; }
|
2018-02-01 22:26:12 +03:00
|
|
|
NodeFilter* GetFilter() { return mFilter; }
|
2013-02-28 21:56:42 +04:00
|
|
|
nsINode* CurrentNode() const { return mCurrentNode; }
|
|
|
|
void SetCurrentNode(nsINode& aNode, ErrorResult& aResult);
|
|
|
|
// All our traversal methods return strong refs because filtering can
|
|
|
|
// remove nodes from the tree.
|
|
|
|
already_AddRefed<nsINode> ParentNode(ErrorResult& aResult);
|
|
|
|
already_AddRefed<nsINode> FirstChild(ErrorResult& aResult);
|
|
|
|
already_AddRefed<nsINode> LastChild(ErrorResult& aResult);
|
|
|
|
already_AddRefed<nsINode> PreviousSibling(ErrorResult& aResult);
|
|
|
|
already_AddRefed<nsINode> NextSibling(ErrorResult& aResult);
|
|
|
|
already_AddRefed<nsINode> PreviousNode(ErrorResult& aResult);
|
|
|
|
already_AddRefed<nsINode> NextNode(ErrorResult& aResult);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
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 17:13:32 +03:00
|
|
|
bool WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto,
|
|
|
|
JS::MutableHandle<JSObject*> aReflector);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-02-28 23:41:30 +04:00
|
|
|
private:
|
|
|
|
nsCOMPtr<nsINode> mCurrentNode;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-02-28 23:41:30 +04:00
|
|
|
/*
|
|
|
|
* Implements FirstChild and LastChild which only vary in which direction
|
|
|
|
* they search.
|
|
|
|
* @param aReversed Controls whether we search forwards or backwards
|
2013-02-28 21:56:42 +04:00
|
|
|
* @param aResult Whether we threw or not.
|
|
|
|
* @returns The desired node. Null if no child is found
|
2013-02-28 23:41:30 +04:00
|
|
|
*/
|
2013-02-28 21:56:42 +04:00
|
|
|
already_AddRefed<nsINode> FirstChildInternal(bool aReversed,
|
|
|
|
ErrorResult& aResult);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-02-28 23:41:30 +04:00
|
|
|
/*
|
|
|
|
* Implements NextSibling and PreviousSibling which only vary in which
|
|
|
|
* direction they search.
|
|
|
|
* @param aReversed Controls whether we search forwards or backwards
|
2013-02-28 21:56:42 +04:00
|
|
|
* @param aResult Whether we threw or not.
|
|
|
|
* @returns The desired node. Null if no child is found
|
2013-02-28 23:41:30 +04:00
|
|
|
*/
|
2013-02-28 21:56:42 +04:00
|
|
|
already_AddRefed<nsINode> NextSiblingInternal(bool aReversed,
|
|
|
|
ErrorResult& aResult);
|
2013-02-28 23:41:30 +04:00
|
|
|
};
|
|
|
|
|
2022-05-09 23:41:04 +03:00
|
|
|
} // namespace mozilla::dom
|
2013-02-28 23:41:30 +04:00
|
|
|
|
2013-02-28 21:56:41 +04:00
|
|
|
#endif // mozilla_dom_TreeWalker_h
|