OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2005 Frerich Raabe <raabe@kde.org> | 2 * Copyright (C) 2005 Frerich Raabe <raabe@kde.org> |
3 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved. | 3 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "core/xml/XPathNSResolver.h" | 33 #include "core/xml/XPathNSResolver.h" |
34 #include "core/xml/XPathParser.h" | 34 #include "core/xml/XPathParser.h" |
35 #include "core/xml/XPathResult.h" | 35 #include "core/xml/XPathResult.h" |
36 #include "core/xml/XPathUtil.h" | 36 #include "core/xml/XPathUtil.h" |
37 #include "wtf/text/WTFString.h" | 37 #include "wtf/text/WTFString.h" |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 | 40 |
41 using namespace XPath; | 41 using namespace XPath; |
42 | 42 |
43 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(XPathExpression); | |
44 | |
45 XPathExpression::XPathExpression() | 43 XPathExpression::XPathExpression() |
46 { | 44 { |
47 } | 45 } |
48 | 46 |
49 PassRefPtrWillBeRawPtr<XPathExpression> XPathExpression::createExpression(const
String& expression, PassRefPtrWillBeRawPtr<XPathNSResolver> resolver, ExceptionS
tate& exceptionState) | 47 XPathExpression* XPathExpression::createExpression(const String& expression, XPa
thNSResolver* resolver, ExceptionState& exceptionState) |
50 { | 48 { |
51 RefPtrWillBeRawPtr<XPathExpression> expr = XPathExpression::create(); | 49 XPathExpression* expr = XPathExpression::create(); |
52 Parser parser; | 50 Parser parser; |
53 | 51 |
54 expr->m_topExpression = parser.parseStatement(expression, resolver, exceptio
nState); | 52 expr->m_topExpression = parser.parseStatement(expression, resolver, exceptio
nState); |
55 if (!expr->m_topExpression) | 53 if (!expr->m_topExpression) |
56 return nullptr; | 54 return nullptr; |
57 | 55 |
58 return expr.release(); | 56 return expr; |
59 } | 57 } |
60 | 58 |
61 void XPathExpression::trace(Visitor* visitor) | 59 void XPathExpression::trace(Visitor* visitor) |
62 { | 60 { |
63 visitor->trace(m_topExpression); | 61 visitor->trace(m_topExpression); |
64 } | 62 } |
65 | 63 |
66 PassRefPtrWillBeRawPtr<XPathResult> XPathExpression::evaluate(Node* contextNode,
unsigned short type, XPathResult*, ExceptionState& exceptionState) | 64 XPathResult* XPathExpression::evaluate(Node* contextNode, unsigned short type, X
PathResult*, ExceptionState& exceptionState) |
67 { | 65 { |
68 if (!contextNode) { | 66 if (!contextNode) { |
69 exceptionState.throwDOMException(NotSupportedError, "The context node pr
ovided is null."); | 67 exceptionState.throwDOMException(NotSupportedError, "The context node pr
ovided is null."); |
70 return nullptr; | 68 return nullptr; |
71 } | 69 } |
72 | 70 |
73 if (!isValidContextNode(contextNode)) { | 71 if (!isValidContextNode(contextNode)) { |
74 exceptionState.throwDOMException(NotSupportedError, "The node provided i
s '" + contextNode->nodeName() + "', which is not a valid context node type."); | 72 exceptionState.throwDOMException(NotSupportedError, "The node provided i
s '" + contextNode->nodeName() + "', which is not a valid context node type."); |
75 return nullptr; | 73 return nullptr; |
76 } | 74 } |
77 | 75 |
78 EvaluationContext evaluationContext(*contextNode); | 76 EvaluationContext evaluationContext(*contextNode); |
79 RefPtrWillBeRawPtr<XPathResult> result = XPathResult::create(evaluationConte
xt, m_topExpression->evaluate(evaluationContext)); | 77 XPathResult* result = XPathResult::create(evaluationContext, m_topExpression
->evaluate(evaluationContext)); |
80 | 78 |
81 if (evaluationContext.hadTypeConversionError) { | 79 if (evaluationContext.hadTypeConversionError) { |
82 // It is not specified what to do if type conversion fails while evaluat
ing an expression. | 80 // It is not specified what to do if type conversion fails while evaluat
ing an expression. |
83 exceptionState.throwDOMException(SyntaxError, "Type conversion failed wh
ile evaluating the expression."); | 81 exceptionState.throwDOMException(SyntaxError, "Type conversion failed wh
ile evaluating the expression."); |
84 return nullptr; | 82 return nullptr; |
85 } | 83 } |
86 | 84 |
87 if (type != XPathResult::ANY_TYPE) { | 85 if (type != XPathResult::ANY_TYPE) { |
88 result->convertTo(type, exceptionState); | 86 result->convertTo(type, exceptionState); |
89 if (exceptionState.hadException()) | 87 if (exceptionState.hadException()) |
90 return nullptr; | 88 return nullptr; |
91 } | 89 } |
92 | 90 |
93 return result; | 91 return result; |
94 } | 92 } |
95 | 93 |
96 } | 94 } // namespace blink |
OLD | NEW |