#ifndef XPathResult_h
#define XPathResult_h
#include "bindings/v8/ScriptWrappable.h"
#include "core/xml/XPathValue.h"
#include "heap/Handle.h"
#include "wtf/Forward.h"
#include "wtf/RefCounted.h"
namespace WebCore {
class Document;
class ExceptionState;
class Node;
class XPathResult : public RefCountedWillBeGarbageCollectedFinalized<XPathResult>, public ScriptWrappable {
public:
enum XPathResultType {
ANY_TYPE = 0,
NUMBER_TYPE = 1,
STRING_TYPE = 2,
BOOLEAN_TYPE = 3,
UNORDERED_NODE_ITERATOR_TYPE = 4,
ORDERED_NODE_ITERATOR_TYPE = 5,
UNORDERED_NODE_SNAPSHOT_TYPE = 6,
ORDERED_NODE_SNAPSHOT_TYPE = 7,
ANY_UNORDERED_NODE_TYPE = 8,
FIRST_ORDERED_NODE_TYPE = 9
};
static PassRefPtrWillBeRawPtr<XPathResult> create(Document* document, const XPath::Value& value)
{
return adoptRefWillBeNoop(new XPathResult(document, value));
}
~XPathResult();
void convertTo(unsigned short type, ExceptionState&);
unsigned short resultType() const;
double numberValue(ExceptionState&) const;
String stringValue(ExceptionState&) const;
bool booleanValue(ExceptionState&) const;
Node* singleNodeValue(ExceptionState&) const;
bool invalidIteratorState() const;
unsigned long snapshotLength(ExceptionState&) const;
Node* iterateNext(ExceptionState&);
Node* snapshotItem(unsigned long index, ExceptionState&);
const XPath::Value& value() const { return m_value; }
void trace(Visitor*) { }
private:
XPathResult(Document*, const XPath::Value&);
XPath::Value m_value;
unsigned m_nodeSetPosition;
XPath::NodeSet m_nodeSet;
unsigned short m_resultType;
RefPtr<Document> m_document;
uint64_t m_domTreeVersion;
};
}
#endif