2014-06-28 01:07:44 +04: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/. */
|
|
|
|
|
2013-07-04 19:40:10 +04:00
|
|
|
#ifndef mozilla_dom_XPathExpression_h
|
|
|
|
#define mozilla_dom_XPathExpression_h
|
2014-06-28 01:07:44 +04:00
|
|
|
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2014-06-26 17:32:20 +04:00
|
|
|
#include "nsIWeakReferenceUtils.h"
|
2014-06-28 01:07:44 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2014-06-27 23:39:50 +04:00
|
|
|
#include "mozilla/dom/NonRefcountedDOMObject.h"
|
|
|
|
#include "mozilla/dom/XPathExpressionBinding.h"
|
2014-06-28 01:07:44 +04:00
|
|
|
|
|
|
|
class Expr;
|
2014-06-27 23:39:50 +04:00
|
|
|
class nsIDocument;
|
|
|
|
class nsINode;
|
|
|
|
class txResultRecycler;
|
2014-06-28 01:07:44 +04:00
|
|
|
|
2013-07-04 19:40:10 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-06-27 23:39:50 +04:00
|
|
|
class XPathResult;
|
|
|
|
|
2014-06-28 01:07:44 +04:00
|
|
|
/**
|
|
|
|
* A class for evaluating an XPath expression string
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
class XPathExpression final : public NonRefcountedDOMObject
|
2014-06-28 01:07:44 +04:00
|
|
|
{
|
|
|
|
public:
|
2013-07-04 19:40:10 +04:00
|
|
|
XPathExpression(nsAutoPtr<Expr>&& aExpression, txResultRecycler* aRecycler,
|
2014-06-27 23:39:50 +04:00
|
|
|
nsIDocument *aDocument);
|
|
|
|
~XPathExpression();
|
2014-06-28 01:07:44 +04: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)
|
2014-06-27 23:39:50 +04: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
|
|
|
return XPathExpressionBinding::Wrap(aCx, this, aGivenProto, aReflector);
|
2014-06-27 23:39:50 +04:00
|
|
|
}
|
2014-06-28 01:07:44 +04:00
|
|
|
|
2014-06-27 23:39:50 +04:00
|
|
|
already_AddRefed<XPathResult>
|
|
|
|
Evaluate(JSContext* aCx, nsINode& aContextNode, uint16_t aType,
|
|
|
|
JS::Handle<JSObject*> aInResult, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
return EvaluateWithContext(aCx, aContextNode, 1, 1, aType, aInResult,
|
|
|
|
aRv);
|
|
|
|
}
|
|
|
|
already_AddRefed<XPathResult>
|
|
|
|
EvaluateWithContext(JSContext* aCx, nsINode& aContextNode,
|
|
|
|
uint32_t aContextPosition, uint32_t aContextSize,
|
|
|
|
uint16_t aType, JS::Handle<JSObject*> aInResult,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
already_AddRefed<XPathResult>
|
|
|
|
Evaluate(nsINode& aContextNode, uint16_t aType, XPathResult* aInResult,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
return EvaluateWithContext(aContextNode, 1, 1, aType, aInResult, aRv);
|
|
|
|
}
|
|
|
|
already_AddRefed<XPathResult>
|
|
|
|
EvaluateWithContext(nsINode& aContextNode, uint32_t aContextPosition,
|
|
|
|
uint32_t aContextSize, uint16_t aType,
|
|
|
|
XPathResult* aInResult, ErrorResult& aRv);
|
2014-06-28 01:07:44 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsAutoPtr<Expr> mExpression;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<txResultRecycler> mRecycler;
|
2014-06-26 17:32:20 +04:00
|
|
|
nsWeakPtr mDocument;
|
|
|
|
bool mCheckDocument;
|
2014-06-28 01:07:44 +04:00
|
|
|
};
|
|
|
|
|
2013-07-04 19:40:10 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_XPathExpression_h */
|