initial import
[vuplus_webkit] / Source / WebCore / bindings / js / JSCustomXPathNSResolver.cpp
1 /*
2  * Copyright (C) 2007 Alexey Proskuryakov (ap@nypop.com)
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
24  */
25
26 #include "config.h"
27
28 #if ENABLE(XPATH)
29
30 #include "JSCustomXPathNSResolver.h"
31
32 #include "Console.h"
33 #include "Document.h"
34 #include "ExceptionCode.h"
35 #include "Frame.h"
36 #include "JSDOMWindowCustom.h"
37 #include "SecurityOrigin.h"
38 #include <runtime/JSLock.h>
39
40 namespace WebCore {
41
42 using namespace JSC;
43
44 PassRefPtr<JSCustomXPathNSResolver> JSCustomXPathNSResolver::create(JSC::ExecState* exec, JSC::JSValue value)
45 {
46     if (value.isUndefinedOrNull())
47         return 0;
48
49     JSObject* resolverObject = value.getObject();
50     if (!resolverObject) {
51         setDOMException(exec, TYPE_MISMATCH_ERR);
52         return 0;
53     }
54
55     return adoptRef(new JSCustomXPathNSResolver(resolverObject, asJSDOMWindow(exec->dynamicGlobalObject())));
56 }
57
58 JSCustomXPathNSResolver::JSCustomXPathNSResolver(JSObject* customResolver, JSDOMWindow* globalObject)
59     : m_customResolver(customResolver)
60     , m_globalObject(globalObject)
61 {
62 }
63
64 JSCustomXPathNSResolver::~JSCustomXPathNSResolver()
65 {
66 }
67
68 String JSCustomXPathNSResolver::lookupNamespaceURI(const String& prefix)
69 {
70     ASSERT(m_customResolver);
71
72     JSLock lock(SilenceAssertionsOnly);
73
74     ExecState* exec = m_globalObject->globalExec();
75         
76     JSValue function = m_customResolver->get(exec, Identifier(exec, "lookupNamespaceURI"));
77     CallData callData;
78     CallType callType = getCallData(function, callData);
79     if (callType == CallTypeNone) {
80         callType = m_customResolver->getCallData(callData);
81         if (callType == CallTypeNone) {
82             // FIXME: Pass actual line number and source URL.
83             m_globalObject->impl()->console()->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, "XPathNSResolver does not have a lookupNamespaceURI method.", 0, String());
84             return String();
85         }
86         function = m_customResolver;
87     }
88
89     RefPtr<JSCustomXPathNSResolver> selfProtector(this);
90
91     MarkedArgumentBuffer args;
92     args.append(jsString(exec, prefix));
93
94     m_globalObject->globalData().timeoutChecker.start();
95     JSValue retval = JSC::call(exec, function, callType, callData, m_customResolver, args);
96     m_globalObject->globalData().timeoutChecker.stop();
97
98     String result;
99     if (exec->hadException())
100         reportCurrentException(exec);
101     else {
102         if (!retval.isUndefinedOrNull())
103             result = ustringToString(retval.toString(exec));
104     }
105
106     Document::updateStyleForAllDocuments();
107
108     return result;
109 }
110
111 } // namespace WebCore
112
113 #endif // ENABLE(XPATH)