1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
/*
* Copyright (C) 2008, 2009 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "JSXMLHttpRequest.h"
#include "Blob.h"
#include "DOMFormData.h"
#include "DOMWindow.h"
#include "Document.h"
#include "Event.h"
#include "Frame.h"
#include "FrameLoader.h"
#include "HTMLDocument.h"
#include "InspectorInstrumentation.h"
#include "JSBlob.h"
#include "JSDOMFormData.h"
#include "JSDOMWindowCustom.h"
#include "JSDocument.h"
#include "JSEvent.h"
#include "JSEventListener.h"
#include "XMLHttpRequest.h"
#include <interpreter/StackVisitor.h>
#include <runtime/ArrayBuffer.h>
#include <runtime/Error.h>
#include <runtime/JSArrayBuffer.h>
#include <runtime/JSArrayBufferView.h>
#include <runtime/JSONObject.h>
using namespace JSC;
namespace WebCore {
void JSXMLHttpRequest::visitAdditionalChildren(SlotVisitor& visitor)
{
if (XMLHttpRequestUpload* upload = impl().optionalUpload())
visitor.addOpaqueRoot(upload);
if (Document* responseDocument = impl().optionalResponseXML())
visitor.addOpaqueRoot(responseDocument);
if (ArrayBuffer* responseArrayBuffer = impl().optionalResponseArrayBuffer())
visitor.addOpaqueRoot(responseArrayBuffer);
if (Blob* responseBlob = impl().optionalResponseBlob())
visitor.addOpaqueRoot(responseBlob);
if (m_response)
visitor.append(&m_response);
}
// Custom functions
JSValue JSXMLHttpRequest::open(ExecState* exec)
{
if (exec->argumentCount() < 2)
return exec->vm().throwException(exec, createNotEnoughArgumentsError(exec));
const URL& url = impl().scriptExecutionContext()->completeURL(exec->uncheckedArgument(1).toString(exec)->value(exec));
String method = exec->uncheckedArgument(0).toString(exec)->value(exec);
ExceptionCode ec = 0;
if (exec->argumentCount() >= 3) {
bool async = exec->uncheckedArgument(2).toBoolean(exec);
if (!exec->argument(3).isUndefined()) {
String user = valueToStringWithNullCheck(exec, exec->uncheckedArgument(3));
if (!exec->argument(4).isUndefined()) {
String password = valueToStringWithNullCheck(exec, exec->uncheckedArgument(4));
impl().open(method, url, async, user, password, ec);
} else
impl().open(method, url, async, user, ec);
} else
impl().open(method, url, async, ec);
} else
impl().open(method, url, ec);
setDOMException(exec, ec);
return jsUndefined();
}
class SendFunctor {
public:
SendFunctor()
: m_hasSkippedFirstFrame(false)
, m_line(0)
, m_column(0)
{
}
unsigned line() const { return m_line; }
unsigned column() const { return m_column; }
String url() const { return m_url; }
StackVisitor::Status operator()(StackVisitor& visitor)
{
if (!m_hasSkippedFirstFrame) {
m_hasSkippedFirstFrame = true;
return StackVisitor::Continue;
}
unsigned line = 0;
unsigned column = 0;
visitor->computeLineAndColumn(line, column);
m_line = line;
m_column = column;
m_url = visitor->sourceURL();
return StackVisitor::Done;
}
private:
bool m_hasSkippedFirstFrame;
unsigned m_line;
unsigned m_column;
String m_url;
};
JSValue JSXMLHttpRequest::send(ExecState* exec)
{
InspectorInstrumentation::willSendXMLHttpRequest(impl().scriptExecutionContext(), impl().url());
ExceptionCode ec = 0;
JSValue val = exec->argument(0);
if (val.isUndefinedOrNull())
impl().send(ec);
else if (val.inherits(JSDocument::info()))
impl().send(toDocument(val), ec);
else if (val.inherits(JSBlob::info()))
impl().send(toBlob(val), ec);
else if (val.inherits(JSDOMFormData::info()))
impl().send(toDOMFormData(val), ec);
else if (val.inherits(JSArrayBuffer::info()))
impl().send(toArrayBuffer(val), ec);
else if (val.inherits(JSArrayBufferView::info())) {
RefPtr<ArrayBufferView> view = toArrayBufferView(val);
impl().send(view.get(), ec);
} else
impl().send(val.toString(exec)->value(exec), ec);
SendFunctor functor;
exec->iterate(functor);
impl().setLastSendLineAndColumnNumber(functor.line(), functor.column());
impl().setLastSendURL(functor.url());
setDOMException(exec, ec);
return jsUndefined();
}
JSValue JSXMLHttpRequest::responseText(ExecState* exec) const
{
ExceptionCode ec = 0;
String text = impl().responseText(ec);
if (ec) {
setDOMException(exec, ec);
return jsUndefined();
}
return jsOwnedStringOrNull(exec, text);
}
JSValue JSXMLHttpRequest::response(ExecState* exec) const
{
// FIXME: Use CachedAttribute for other types than JSON as well.
if (m_response && impl().responseCacheIsValid())
return m_response.get();
if (!impl().doneWithoutErrors() && impl().responseTypeCode() > XMLHttpRequest::ResponseTypeText)
return jsNull();
switch (impl().responseTypeCode()) {
case XMLHttpRequest::ResponseTypeDefault:
case XMLHttpRequest::ResponseTypeText:
return responseText(exec);
case XMLHttpRequest::ResponseTypeJSON:
{
JSValue value = JSONParse(exec, impl().responseTextIgnoringResponseType());
if (!value)
value = jsNull();
JSXMLHttpRequest* jsRequest = const_cast<JSXMLHttpRequest*>(this);
jsRequest->m_response.set(exec->vm(), jsRequest, value);
impl().didCacheResponseJSON();
return value;
}
case XMLHttpRequest::ResponseTypeDocument:
{
ExceptionCode ec = 0;
Document* document = impl().responseXML(ec);
if (ec) {
setDOMException(exec, ec);
return jsUndefined();
}
return toJS(exec, globalObject(), document);
}
case XMLHttpRequest::ResponseTypeBlob:
return toJS(exec, globalObject(), impl().responseBlob());
case XMLHttpRequest::ResponseTypeArrayBuffer:
return toJS(exec, globalObject(), impl().responseArrayBuffer());
}
return jsUndefined();
}
} // namespace WebCore
|