2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsXMLHttpRequest_h__
|
|
|
|
#define nsXMLHttpRequest_h__
|
|
|
|
|
|
|
|
#include "nsIXMLHttpRequest.h"
|
|
|
|
#include "nsISupportsUtils.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsIHttpChannel.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIStreamListener.h"
|
|
|
|
#include "nsWeakReference.h"
|
|
|
|
#include "jsapi.h"
|
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
#include "nsIChannelEventSink.h"
|
2010-08-04 19:15:55 -07:00
|
|
|
#include "nsIAsyncVerifyRedirectCallback.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIInterfaceRequestor.h"
|
|
|
|
#include "nsIHttpHeaderVisitor.h"
|
|
|
|
#include "nsIProgressEventSink.h"
|
|
|
|
#include "nsCOMArray.h"
|
|
|
|
#include "nsJSUtils.h"
|
|
|
|
#include "nsTArray.h"
|
2007-12-12 00:33:32 -08:00
|
|
|
#include "nsIJSNativeInitializer.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMLSProgressEvent.h"
|
2008-10-19 14:26:37 -07:00
|
|
|
#include "nsITimer.h"
|
2008-08-14 04:07:46 -07:00
|
|
|
#include "nsDOMProgressEvent.h"
|
2012-02-07 18:53:33 -08:00
|
|
|
#include "nsDOMEventTargetHelper.h"
|
2011-03-17 09:19:13 -07:00
|
|
|
#include "nsContentUtils.h"
|
2012-01-30 02:33:59 -08:00
|
|
|
#include "nsDOMFile.h"
|
|
|
|
#include "nsDOMBlobBuilder.h"
|
2012-03-30 21:42:20 -07:00
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "nsIScriptObjectPrincipal.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-04 10:05:15 -07:00
|
|
|
#include "mozilla/Assertions.h"
|
2012-08-04 00:44:00 -07:00
|
|
|
#include "mozilla/dom/BindingUtils.h"
|
2012-08-04 10:05:15 -07:00
|
|
|
#include "mozilla/dom/TypedArray.h"
|
2012-08-04 00:44:00 -07:00
|
|
|
#include "mozilla/dom/XMLHttpRequestBinding.h"
|
|
|
|
#include "mozilla/dom/XMLHttpRequestUploadBinding.h"
|
2012-08-04 10:05:15 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsILoadGroup;
|
2010-08-04 19:15:55 -07:00
|
|
|
class AsyncVerifyRedirectCallbackForwarder;
|
2011-09-23 18:57:36 -07:00
|
|
|
class nsIUnicodeDecoder;
|
2012-03-26 08:38:06 -07:00
|
|
|
class nsIDOMFormData;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
#define IMPL_EVENT_HANDLER(_lowercase, _capitalized) \
|
2012-05-31 11:16:48 -07:00
|
|
|
JSObject* GetOn##_lowercase(JSContext* /* unused */ ) \
|
2012-03-30 21:42:20 -07:00
|
|
|
{ \
|
|
|
|
return GetListenerAsJSObject(mOn##_capitalized##Listener); \
|
|
|
|
} \
|
2012-05-05 18:15:11 -07:00
|
|
|
void SetOn##_lowercase(JSContext* aCx, JSObject* aCallback, ErrorResult& aRv) \
|
2012-03-30 21:42:20 -07:00
|
|
|
{ \
|
|
|
|
aRv = SetJSObjectListener(aCx, NS_LITERAL_STRING(#_lowercase), \
|
|
|
|
mOn##_capitalized##Listener, \
|
|
|
|
aCallback); \
|
|
|
|
}
|
|
|
|
|
2012-02-07 18:53:33 -08:00
|
|
|
class nsXHREventTarget : public nsDOMEventTargetHelper,
|
2010-06-17 04:27:52 -07:00
|
|
|
public nsIXMLHttpRequestEventTarget
|
2008-08-14 04:07:46 -07:00
|
|
|
{
|
|
|
|
public:
|
2012-05-02 21:35:38 -07:00
|
|
|
typedef mozilla::dom::XMLHttpRequestResponseType
|
2012-03-30 21:42:20 -07:00
|
|
|
XMLHttpRequestResponseType;
|
|
|
|
|
2010-06-17 04:27:52 -07:00
|
|
|
virtual ~nsXHREventTarget() {}
|
2009-06-15 01:27:29 -07:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2010-06-17 04:27:52 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsXHREventTarget,
|
2012-02-07 18:53:33 -08:00
|
|
|
nsDOMEventTargetHelper)
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_DECL_NSIXMLHTTPREQUESTEVENTTARGET
|
2009-06-15 01:27:29 -07:00
|
|
|
NS_FORWARD_NSIDOMEVENTTARGET(nsDOMEventTargetHelper::)
|
2008-11-13 08:54:52 -08:00
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
IMPL_EVENT_HANDLER(loadstart, LoadStart)
|
|
|
|
IMPL_EVENT_HANDLER(progress, Progress)
|
|
|
|
IMPL_EVENT_HANDLER(abort, Abort)
|
|
|
|
IMPL_EVENT_HANDLER(error, Error)
|
|
|
|
IMPL_EVENT_HANDLER(load, Load)
|
|
|
|
IMPL_EVENT_HANDLER(timeout, Timeout)
|
|
|
|
IMPL_EVENT_HANDLER(loadend, Loadend)
|
|
|
|
|
2012-03-12 17:56:07 -07:00
|
|
|
virtual void DisconnectFromOwner();
|
2008-08-14 04:07:46 -07:00
|
|
|
protected:
|
2012-03-26 08:38:06 -07:00
|
|
|
static inline JSObject* GetListenerAsJSObject(nsDOMEventListenerWrapper* aWrapper)
|
|
|
|
{
|
2012-04-01 04:02:58 -07:00
|
|
|
if (!aWrapper) {
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2012-04-01 04:02:58 -07:00
|
|
|
}
|
|
|
|
|
2012-03-26 08:38:06 -07:00
|
|
|
nsCOMPtr<nsIXPConnectJSObjectHolder> holder =
|
|
|
|
do_QueryInterface(aWrapper->GetInner());
|
|
|
|
JSObject* obj;
|
2012-07-30 07:20:58 -07:00
|
|
|
return holder && NS_SUCCEEDED(holder->GetJSObject(&obj)) ? obj : nullptr;
|
2012-03-26 08:38:06 -07:00
|
|
|
}
|
2012-03-30 21:42:20 -07:00
|
|
|
inline nsresult SetJSObjectListener(JSContext* aCx,
|
|
|
|
const nsAString& aType,
|
2012-03-26 08:38:06 -07:00
|
|
|
nsRefPtr<nsDOMEventListenerWrapper>& aWrapper,
|
|
|
|
JSObject* aCallback)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMEventListener> listener;
|
|
|
|
if (aCallback) {
|
2012-03-30 21:42:20 -07:00
|
|
|
nsresult rv =
|
|
|
|
nsContentUtils::XPConnect()->WrapJS(aCx,
|
|
|
|
aCallback,
|
|
|
|
NS_GET_IID(nsIDOMEventListener),
|
|
|
|
getter_AddRefs(listener));
|
2012-03-26 08:38:06 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
return RemoveAddEventListener(aType, aWrapper, listener);
|
|
|
|
}
|
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnLoadListener;
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnErrorListener;
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnAbortListener;
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnLoadStartListener;
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnProgressListener;
|
2011-03-24 06:22:03 -07:00
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnLoadendListener;
|
2012-01-26 02:02:22 -08:00
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnTimeoutListener;
|
2008-08-14 04:07:46 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsXMLHttpRequestUpload : public nsXHREventTarget,
|
|
|
|
public nsIXMLHttpRequestUpload
|
|
|
|
{
|
|
|
|
public:
|
2012-03-12 17:56:07 -07:00
|
|
|
nsXMLHttpRequestUpload(nsDOMEventTargetHelper* aOwner)
|
2008-09-25 07:40:30 -07:00
|
|
|
{
|
2012-03-12 17:56:07 -07:00
|
|
|
BindToOwner(aOwner);
|
2012-03-30 21:42:20 -07:00
|
|
|
SetIsDOMBinding();
|
2012-03-12 17:56:07 -07:00
|
|
|
}
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_FORWARD_NSIXMLHTTPREQUESTEVENTTARGET(nsXHREventTarget::)
|
|
|
|
NS_FORWARD_NSIDOMEVENTTARGET(nsXHREventTarget::)
|
|
|
|
NS_DECL_NSIXMLHTTPREQUESTUPLOAD
|
2008-09-30 17:51:53 -07:00
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext *cx, JSObject *scope,
|
|
|
|
bool *triedToWrap)
|
|
|
|
{
|
2012-05-02 21:35:38 -07:00
|
|
|
return mozilla::dom::XMLHttpRequestUploadBinding::Wrap(cx, scope, this, triedToWrap);
|
2012-03-30 21:42:20 -07:00
|
|
|
}
|
|
|
|
nsISupports* GetParentObject()
|
|
|
|
{
|
|
|
|
return GetOwner();
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool HasListeners()
|
2008-09-30 17:51:53 -07:00
|
|
|
{
|
|
|
|
return mListenerManager && mListenerManager->HasListeners();
|
|
|
|
}
|
2008-08-14 04:07:46 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsXMLHttpRequest : public nsXHREventTarget,
|
|
|
|
public nsIXMLHttpRequest,
|
2007-03-22 10:30:00 -07:00
|
|
|
public nsIJSXMLHttpRequest,
|
|
|
|
public nsIStreamListener,
|
|
|
|
public nsIChannelEventSink,
|
|
|
|
public nsIProgressEventSink,
|
|
|
|
public nsIInterfaceRequestor,
|
2007-12-12 00:33:32 -08:00
|
|
|
public nsSupportsWeakReference,
|
2008-10-19 14:26:37 -07:00
|
|
|
public nsIJSNativeInitializer,
|
|
|
|
public nsITimerCallback
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-11-15 23:38:51 -08:00
|
|
|
friend class nsXHRParseEndListener;
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
|
|
|
nsXMLHttpRequest();
|
|
|
|
virtual ~nsXMLHttpRequest();
|
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext *cx, JSObject *scope,
|
|
|
|
bool *triedToWrap)
|
|
|
|
{
|
2012-05-02 21:35:38 -07:00
|
|
|
return mozilla::dom::XMLHttpRequestBinding::Wrap(cx, scope, this, triedToWrap);
|
2012-03-30 21:42:20 -07:00
|
|
|
}
|
|
|
|
nsISupports* GetParentObject()
|
|
|
|
{
|
|
|
|
return GetOwner();
|
|
|
|
}
|
|
|
|
|
2012-04-26 13:57:33 -07:00
|
|
|
// The WebIDL constructor.
|
2012-03-30 21:42:20 -07:00
|
|
|
static already_AddRefed<nsXMLHttpRequest>
|
2012-06-10 16:44:50 -07:00
|
|
|
Constructor(JSContext* aCx,
|
|
|
|
nsISupports* aGlobal,
|
2012-07-17 09:18:53 -07:00
|
|
|
const mozilla::dom::MozXMLHttpRequestParameters& aParams,
|
2012-06-10 16:44:50 -07:00
|
|
|
ErrorResult& aRv)
|
2012-03-30 21:42:20 -07:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsPIDOMWindow> window = do_QueryInterface(aGlobal);
|
|
|
|
nsCOMPtr<nsIScriptObjectPrincipal> principal = do_QueryInterface(aGlobal);
|
|
|
|
if (!window || ! principal) {
|
2012-05-05 18:15:11 -07:00
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
2012-03-30 21:42:20 -07:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<nsXMLHttpRequest> req = new nsXMLHttpRequest();
|
|
|
|
req->Construct(principal->GetPrincipal(), window);
|
2012-07-17 09:18:53 -07:00
|
|
|
req->InitParameters(aParams.mozAnon, aParams.mozSystem);
|
2012-03-30 21:42:20 -07:00
|
|
|
return req.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Construct(nsIPrincipal* aPrincipal,
|
|
|
|
nsPIDOMWindow* aOwnerWindow,
|
|
|
|
nsIURI* aBaseURI = NULL)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aPrincipal);
|
|
|
|
MOZ_ASSERT_IF(aOwnerWindow, aOwnerWindow->IsInnerWindow());
|
|
|
|
mPrincipal = aPrincipal;
|
|
|
|
BindToOwner(aOwnerWindow);
|
|
|
|
mBaseURI = aBaseURI;
|
|
|
|
}
|
|
|
|
|
2012-06-10 16:44:50 -07:00
|
|
|
// Initialize XMLHttpRequestParameter object.
|
|
|
|
nsresult InitParameters(JSContext* aCx, const jsval* aParams);
|
2012-06-21 00:21:55 -07:00
|
|
|
void InitParameters(bool aAnon, bool aSystem);
|
2012-06-10 16:44:50 -07:00
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsIXMLHttpRequest
|
|
|
|
NS_DECL_NSIXMLHTTPREQUEST
|
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_FORWARD_NSIXMLHTTPREQUESTEVENTTARGET(nsXHREventTarget::)
|
2008-08-14 04:04:43 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsIStreamListener
|
|
|
|
NS_DECL_NSISTREAMLISTENER
|
|
|
|
|
|
|
|
// nsIRequestObserver
|
|
|
|
NS_DECL_NSIREQUESTOBSERVER
|
|
|
|
|
|
|
|
// nsIChannelEventSink
|
|
|
|
NS_DECL_NSICHANNELEVENTSINK
|
|
|
|
|
|
|
|
// nsIProgressEventSink
|
|
|
|
NS_DECL_NSIPROGRESSEVENTSINK
|
|
|
|
|
|
|
|
// nsIInterfaceRequestor
|
|
|
|
NS_DECL_NSIINTERFACEREQUESTOR
|
|
|
|
|
2008-10-19 14:26:37 -07:00
|
|
|
// nsITimerCallback
|
|
|
|
NS_DECL_NSITIMERCALLBACK
|
|
|
|
|
2007-12-12 00:33:32 -08:00
|
|
|
// nsIJSNativeInitializer
|
|
|
|
NS_IMETHOD Initialize(nsISupports* aOwner, JSContext* cx, JSObject* obj,
|
|
|
|
PRUint32 argc, jsval* argv);
|
|
|
|
|
2009-06-15 01:27:29 -07:00
|
|
|
NS_FORWARD_NSIDOMEVENTTARGET(nsXHREventTarget::)
|
2008-08-14 04:04:43 -07:00
|
|
|
|
2012-03-26 08:38:06 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
void StaticAssertions();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// event handler
|
2012-03-30 21:42:20 -07:00
|
|
|
IMPL_EVENT_HANDLER(readystatechange, Readystatechange)
|
2012-03-26 08:38:06 -07:00
|
|
|
|
|
|
|
// states
|
|
|
|
uint16_t GetReadyState();
|
|
|
|
|
|
|
|
// request
|
|
|
|
void Open(const nsAString& aMethod, const nsAString& aUrl, bool aAsync,
|
2012-05-29 20:45:18 -07:00
|
|
|
const mozilla::dom::Optional<nsAString>& aUser,
|
|
|
|
const mozilla::dom::Optional<nsAString>& aPassword,
|
|
|
|
ErrorResult& aRv)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
|
|
|
aRv = Open(NS_ConvertUTF16toUTF8(aMethod), NS_ConvertUTF16toUTF8(aUrl),
|
|
|
|
aAsync, aUser, aPassword);
|
|
|
|
}
|
|
|
|
void SetRequestHeader(const nsAString& aHeader, const nsAString& aValue,
|
2012-05-05 18:15:11 -07:00
|
|
|
ErrorResult& aRv)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
|
|
|
aRv = SetRequestHeader(NS_ConvertUTF16toUTF8(aHeader),
|
|
|
|
NS_ConvertUTF16toUTF8(aValue));
|
|
|
|
}
|
|
|
|
uint32_t GetTimeout()
|
|
|
|
{
|
|
|
|
return mTimeoutMilliseconds;
|
|
|
|
}
|
2012-05-05 18:15:11 -07:00
|
|
|
void SetTimeout(uint32_t aTimeout, ErrorResult& aRv);
|
2012-03-26 08:38:06 -07:00
|
|
|
bool GetWithCredentials();
|
|
|
|
void SetWithCredentials(bool aWithCredentials, nsresult& aRv);
|
|
|
|
nsXMLHttpRequestUpload* GetUpload();
|
|
|
|
|
|
|
|
private:
|
|
|
|
class RequestBody
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RequestBody() : mType(Uninitialized)
|
|
|
|
{
|
|
|
|
}
|
2012-05-24 22:07:03 -07:00
|
|
|
RequestBody(mozilla::dom::ArrayBuffer* aArrayBuffer) : mType(ArrayBuffer)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
|
|
|
mValue.mArrayBuffer = aArrayBuffer;
|
|
|
|
}
|
|
|
|
RequestBody(nsIDOMBlob* aBlob) : mType(Blob)
|
|
|
|
{
|
|
|
|
mValue.mBlob = aBlob;
|
|
|
|
}
|
|
|
|
RequestBody(nsIDocument* aDocument) : mType(Document)
|
|
|
|
{
|
|
|
|
mValue.mDocument = aDocument;
|
|
|
|
}
|
|
|
|
RequestBody(const nsAString& aString) : mType(DOMString)
|
|
|
|
{
|
|
|
|
mValue.mString = &aString;
|
|
|
|
}
|
|
|
|
RequestBody(nsIDOMFormData* aFormData) : mType(FormData)
|
|
|
|
{
|
|
|
|
mValue.mFormData = aFormData;
|
|
|
|
}
|
|
|
|
RequestBody(nsIInputStream* aStream) : mType(InputStream)
|
|
|
|
{
|
|
|
|
mValue.mStream = aStream;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Type {
|
|
|
|
Uninitialized,
|
|
|
|
ArrayBuffer,
|
|
|
|
Blob,
|
|
|
|
Document,
|
|
|
|
DOMString,
|
|
|
|
FormData,
|
|
|
|
InputStream
|
|
|
|
};
|
|
|
|
union Value {
|
2012-05-24 22:07:03 -07:00
|
|
|
mozilla::dom::ArrayBuffer* mArrayBuffer;
|
2012-03-26 08:38:06 -07:00
|
|
|
nsIDOMBlob* mBlob;
|
|
|
|
nsIDocument* mDocument;
|
|
|
|
const nsAString* mString;
|
|
|
|
nsIDOMFormData* mFormData;
|
|
|
|
nsIInputStream* mStream;
|
|
|
|
};
|
|
|
|
|
|
|
|
Type GetType() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mType != Uninitialized);
|
|
|
|
return mType;
|
|
|
|
}
|
|
|
|
Value GetValue() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mType != Uninitialized);
|
|
|
|
return mValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Type mType;
|
|
|
|
Value mValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
static nsresult GetRequestBody(nsIVariant* aVariant,
|
2012-03-30 21:42:20 -07:00
|
|
|
const Nullable<RequestBody>& aBody,
|
2012-03-26 08:38:06 -07:00
|
|
|
nsIInputStream** aResult,
|
|
|
|
nsACString& aContentType,
|
|
|
|
nsACString& aCharset);
|
|
|
|
|
2012-06-20 03:18:39 -07:00
|
|
|
nsresult Send(nsIVariant* aVariant, const Nullable<RequestBody>& aBody);
|
|
|
|
nsresult Send(const Nullable<RequestBody>& aBody)
|
2012-03-30 21:42:20 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
return Send(nullptr, aBody);
|
2012-03-30 21:42:20 -07:00
|
|
|
}
|
2012-06-20 03:18:39 -07:00
|
|
|
nsresult Send(const RequestBody& aBody)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
2012-06-20 03:18:39 -07:00
|
|
|
return Send(Nullable<RequestBody>(aBody));
|
2012-03-26 08:38:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2012-06-20 03:18:39 -07:00
|
|
|
void Send(ErrorResult& aRv)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
2012-06-20 03:18:39 -07:00
|
|
|
aRv = Send(Nullable<RequestBody>());
|
2012-03-26 08:38:06 -07:00
|
|
|
}
|
2012-06-20 03:18:39 -07:00
|
|
|
void Send(mozilla::dom::ArrayBuffer& aArrayBuffer, ErrorResult& aRv)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
2012-06-20 03:18:39 -07:00
|
|
|
aRv = Send(RequestBody(&aArrayBuffer));
|
2012-03-26 08:38:06 -07:00
|
|
|
}
|
2012-06-20 03:18:39 -07:00
|
|
|
void Send(nsIDOMBlob* aBlob, ErrorResult& aRv)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aBlob, "Null should go to string version");
|
2012-06-20 03:18:39 -07:00
|
|
|
aRv = Send(RequestBody(aBlob));
|
2012-03-26 08:38:06 -07:00
|
|
|
}
|
2012-06-20 03:18:39 -07:00
|
|
|
void Send(nsIDocument* aDoc, ErrorResult& aRv)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aDoc, "Null should go to string version");
|
2012-06-20 03:18:39 -07:00
|
|
|
aRv = Send(RequestBody(aDoc));
|
2012-03-26 08:38:06 -07:00
|
|
|
}
|
2012-06-20 03:18:39 -07:00
|
|
|
void Send(const nsAString& aString, ErrorResult& aRv)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
|
|
|
if (DOMStringIsNull(aString)) {
|
2012-06-20 03:18:39 -07:00
|
|
|
Send(aRv);
|
2012-03-26 08:38:06 -07:00
|
|
|
}
|
|
|
|
else {
|
2012-06-20 03:18:39 -07:00
|
|
|
aRv = Send(RequestBody(aString));
|
2012-03-26 08:38:06 -07:00
|
|
|
}
|
|
|
|
}
|
2012-06-20 03:18:39 -07:00
|
|
|
void Send(nsIDOMFormData* aFormData, ErrorResult& aRv)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aFormData, "Null should go to string version");
|
2012-06-20 03:18:39 -07:00
|
|
|
aRv = Send(RequestBody(aFormData));
|
2012-03-26 08:38:06 -07:00
|
|
|
}
|
2012-06-20 03:18:39 -07:00
|
|
|
void Send(nsIInputStream* aStream, ErrorResult& aRv)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aStream, "Null should go to string version");
|
2012-06-20 03:18:39 -07:00
|
|
|
aRv = Send(RequestBody(aStream));
|
2012-03-26 08:38:06 -07:00
|
|
|
}
|
2012-06-20 03:18:39 -07:00
|
|
|
void SendAsBinary(const nsAString& aBody, ErrorResult& aRv);
|
2012-03-26 08:38:06 -07:00
|
|
|
|
|
|
|
void Abort();
|
|
|
|
|
|
|
|
// response
|
|
|
|
uint32_t GetStatus();
|
|
|
|
void GetStatusText(nsString& aStatusText);
|
|
|
|
void GetResponseHeader(const nsACString& aHeader, nsACString& aResult,
|
2012-05-05 18:15:11 -07:00
|
|
|
ErrorResult& aRv);
|
2012-03-26 08:38:06 -07:00
|
|
|
void GetResponseHeader(const nsAString& aHeader, nsString& aResult,
|
2012-05-05 18:15:11 -07:00
|
|
|
ErrorResult& aRv)
|
2012-03-26 08:38:06 -07:00
|
|
|
{
|
|
|
|
nsCString result;
|
|
|
|
GetResponseHeader(NS_ConvertUTF16toUTF8(aHeader), result, aRv);
|
|
|
|
if (result.IsVoid()) {
|
|
|
|
aResult.SetIsVoid(true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// We use UTF8ToNewUnicode here because it truncates after invalid UTF-8
|
|
|
|
// characters, CopyUTF8toUTF16 just doesn't copy in that case.
|
|
|
|
PRUint32 length;
|
|
|
|
PRUnichar* chars = UTF8ToNewUnicode(result, &length);
|
|
|
|
aResult.Adopt(chars, length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void GetAllResponseHeaders(nsString& aResponseHeaders);
|
|
|
|
void OverrideMimeType(const nsAString& aMimeType)
|
|
|
|
{
|
|
|
|
// XXX Should we do some validation here?
|
|
|
|
mOverrideMimeType = aMimeType;
|
|
|
|
}
|
2012-03-30 21:42:20 -07:00
|
|
|
XMLHttpRequestResponseType GetResponseType()
|
|
|
|
{
|
|
|
|
return XMLHttpRequestResponseType(mResponseType);
|
|
|
|
}
|
2012-05-05 18:15:11 -07:00
|
|
|
void SetResponseType(XMLHttpRequestResponseType aType, ErrorResult& aRv);
|
|
|
|
JS::Value GetResponse(JSContext* aCx, ErrorResult& aRv);
|
|
|
|
void GetResponseText(nsString& aResponseText, ErrorResult& aRv);
|
|
|
|
nsIDocument* GetResponseXML(ErrorResult& aRv);
|
2012-03-26 08:38:06 -07:00
|
|
|
|
|
|
|
bool GetMozBackgroundRequest();
|
|
|
|
void SetMozBackgroundRequest(bool aMozBackgroundRequest, nsresult& aRv);
|
|
|
|
bool GetMultipart();
|
|
|
|
void SetMultipart(bool aMultipart, nsresult& aRv);
|
|
|
|
|
2012-06-10 16:44:50 -07:00
|
|
|
bool GetMozAnon();
|
|
|
|
bool GetMozSystem();
|
|
|
|
|
2012-03-26 08:38:06 -07:00
|
|
|
nsIChannel* GetChannel()
|
|
|
|
{
|
|
|
|
return mChannel;
|
|
|
|
}
|
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
// We need a GetInterface callable from JS for chrome JS
|
2012-05-05 18:15:11 -07:00
|
|
|
JS::Value GetInterface(JSContext* aCx, nsIJSIID* aIID, ErrorResult& aRv);
|
2012-03-30 21:42:20 -07:00
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
// This creates a trusted readystatechange event, which is not cancelable and
|
|
|
|
// doesn't bubble.
|
|
|
|
static nsresult CreateReadystatechangeEvent(nsIDOMEvent** aDOMEvent);
|
|
|
|
// For backwards compatibility aPosition should contain the headers for upload
|
|
|
|
// and aTotalSize is LL_MAXUINT when unknown. Both those values are
|
|
|
|
// used by nsXMLHttpProgressEvent. Normal progress event should not use
|
|
|
|
// headers in aLoaded and aTotal is 0 when unknown.
|
2011-06-23 19:17:58 -07:00
|
|
|
void DispatchProgressEvent(nsDOMEventTargetHelper* aTarget,
|
2008-09-30 17:51:53 -07:00
|
|
|
const nsAString& aType,
|
|
|
|
// Whether to use nsXMLHttpProgressEvent,
|
|
|
|
// which implements LS Progress Event.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aUseLSEventWrapper,
|
|
|
|
bool aLengthComputable,
|
2008-09-30 17:51:53 -07:00
|
|
|
// For Progress Events
|
|
|
|
PRUint64 aLoaded, PRUint64 aTotal,
|
|
|
|
// For LS Progress Events
|
|
|
|
PRUint64 aPosition, PRUint64 aTotalSize);
|
2011-06-23 19:17:58 -07:00
|
|
|
void DispatchProgressEvent(nsDOMEventTargetHelper* aTarget,
|
2008-09-30 17:51:53 -07:00
|
|
|
const nsAString& aType,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aLengthComputable,
|
2008-09-30 17:51:53 -07:00
|
|
|
PRUint64 aLoaded, PRUint64 aTotal)
|
2008-08-14 04:07:46 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
DispatchProgressEvent(aTarget, aType, false,
|
2008-08-14 04:07:46 -07:00
|
|
|
aLengthComputable, aLoaded, aTotal,
|
|
|
|
aLoaded, aLengthComputable ? aTotal : LL_MAXUINT);
|
|
|
|
}
|
|
|
|
|
2011-09-23 18:57:22 -07:00
|
|
|
// Dispatch the "progress" event on the XHR or XHR.upload object if we've
|
|
|
|
// received data since the last "progress" event. Also dispatches
|
|
|
|
// "uploadprogress" as needed.
|
2011-09-28 23:19:26 -07:00
|
|
|
void MaybeDispatchProgressEvents(bool aFinalProgress);
|
2011-09-23 18:57:22 -07:00
|
|
|
|
2007-12-12 00:33:32 -08:00
|
|
|
// This is called by the factory constructor.
|
|
|
|
nsresult Init();
|
|
|
|
|
2008-09-30 16:56:57 -07:00
|
|
|
void SetRequestObserver(nsIRequestObserver* aObserver);
|
|
|
|
|
2012-01-26 07:55:30 -08:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_SCRIPT_HOLDER_CLASS_INHERITED(nsXMLHttpRequest,
|
|
|
|
nsXHREventTarget)
|
2011-09-28 23:19:26 -07:00
|
|
|
bool AllowUploadProgress();
|
2011-05-23 18:09:28 -07:00
|
|
|
void RootResultArrayBuffer();
|
2012-03-12 17:56:07 -07:00
|
|
|
|
|
|
|
virtual void DisconnectFromOwner();
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
2008-09-11 03:44:15 -07:00
|
|
|
friend class nsMultipartProxyListener;
|
|
|
|
|
2011-09-23 18:57:36 -07:00
|
|
|
nsresult DetectCharset();
|
|
|
|
nsresult AppendToResponseText(const char * aBuffer, PRUint32 aBufferLen);
|
2007-03-22 10:30:00 -07:00
|
|
|
static NS_METHOD StreamReaderFunc(nsIInputStream* in,
|
|
|
|
void* closure,
|
|
|
|
const char* fromRawSegment,
|
|
|
|
PRUint32 toOffset,
|
|
|
|
PRUint32 count,
|
|
|
|
PRUint32 *writeCount);
|
2011-09-08 15:12:18 -07:00
|
|
|
nsresult CreateResponseParsedJSON(JSContext* aCx);
|
2012-01-30 02:33:59 -08:00
|
|
|
nsresult CreatePartialBlob(void);
|
|
|
|
bool CreateDOMFile(nsIRequest *request);
|
2007-03-22 10:30:00 -07:00
|
|
|
// Change the state of the object with this. The broadcast argument
|
|
|
|
// determines if the onreadystatechange listener should be called.
|
2011-09-28 23:19:26 -07:00
|
|
|
nsresult ChangeState(PRUint32 aState, bool aBroadcast = true);
|
2011-08-24 10:46:53 -07:00
|
|
|
already_AddRefed<nsILoadGroup> GetLoadGroup() const;
|
2008-10-14 17:12:28 -07:00
|
|
|
nsIURI *GetBaseURI();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-08-14 04:04:43 -07:00
|
|
|
nsresult RemoveAddEventListener(const nsAString& aType,
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper>& aCurrent,
|
|
|
|
nsIDOMEventListener* aNew);
|
|
|
|
|
|
|
|
nsresult GetInnerEventListener(nsRefPtr<nsDOMEventListenerWrapper>& aWrapper,
|
|
|
|
nsIDOMEventListener** aListener);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
already_AddRefed<nsIHttpChannel> GetCurrentHttpChannel();
|
|
|
|
|
2011-08-11 06:29:50 -07:00
|
|
|
bool IsSystemXHR();
|
2011-03-17 09:19:13 -07:00
|
|
|
|
2011-11-15 23:38:51 -08:00
|
|
|
void ChangeStateToDone();
|
|
|
|
|
2007-07-26 19:49:18 -07:00
|
|
|
/**
|
2008-09-30 17:49:30 -07:00
|
|
|
* Check if aChannel is ok for a cross-site request by making sure no
|
2007-07-26 19:49:18 -07:00
|
|
|
* inappropriate headers are set, and no username/password is set.
|
|
|
|
*
|
|
|
|
* Also updates the XML_HTTP_REQUEST_USE_XSITE_AC bit.
|
|
|
|
*/
|
2008-09-30 17:49:30 -07:00
|
|
|
nsresult CheckChannelForCrossSiteRequest(nsIChannel* aChannel);
|
2007-07-26 19:49:18 -07:00
|
|
|
|
2008-10-19 14:26:37 -07:00
|
|
|
void StartProgressEventTimer();
|
|
|
|
|
2010-08-04 19:15:55 -07:00
|
|
|
friend class AsyncVerifyRedirectCallbackForwarder;
|
|
|
|
void OnRedirectVerifyCallback(nsresult result);
|
|
|
|
|
2012-03-26 08:38:06 -07:00
|
|
|
nsresult Open(const nsACString& method, const nsACString& url, bool async,
|
2012-05-29 20:45:18 -07:00
|
|
|
const mozilla::dom::Optional<nsAString>& user,
|
|
|
|
const mozilla::dom::Optional<nsAString>& password);
|
2012-03-26 08:38:06 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsISupports> mContext;
|
2007-07-02 06:20:01 -07:00
|
|
|
nsCOMPtr<nsIPrincipal> mPrincipal;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIChannel> mChannel;
|
2007-07-30 17:42:16 -07:00
|
|
|
// mReadRequest is different from mChannel for multipart requests
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIRequest> mReadRequest;
|
2012-03-26 08:38:06 -07:00
|
|
|
nsCOMPtr<nsIDocument> mResponseXML;
|
2011-03-28 13:18:45 -07:00
|
|
|
nsCOMPtr<nsIChannel> mCORSPreflightChannel;
|
|
|
|
nsTArray<nsCString> mCORSUnsafeHeaders;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-08-14 04:04:43 -07:00
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnReadystatechangeListener;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIStreamListener> mXMLParserStreamListener;
|
|
|
|
|
|
|
|
// used to implement getAllResponseHeaders()
|
|
|
|
class nsHeaderVisitor : public nsIHttpHeaderVisitor {
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIHTTPHEADERVISITOR
|
|
|
|
nsHeaderVisitor() { }
|
|
|
|
virtual ~nsHeaderVisitor() {}
|
|
|
|
const nsACString &Headers() { return mHeaders; }
|
|
|
|
private:
|
|
|
|
nsCString mHeaders;
|
|
|
|
};
|
|
|
|
|
2011-09-23 18:57:36 -07:00
|
|
|
// The bytes of our response body. Only used for DEFAULT, ARRAYBUFFER and
|
|
|
|
// BLOB responseTypes
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCString mResponseBody;
|
|
|
|
|
2011-09-23 18:57:36 -07:00
|
|
|
// The text version of our response body. This is incrementally decoded into
|
|
|
|
// as we receive network data. However for the DEFAULT responseType we
|
|
|
|
// lazily decode into this from mResponseBody only when .responseText is
|
|
|
|
// accessed.
|
|
|
|
// Only used for DEFAULT and TEXT responseTypes.
|
|
|
|
nsString mResponseText;
|
|
|
|
|
|
|
|
// For DEFAULT responseType we use this to keep track of how far we've
|
|
|
|
// lazily decoded from mResponseBody to mResponseText
|
|
|
|
PRUint32 mResponseBodyDecodedPos;
|
|
|
|
|
|
|
|
// Decoder used for decoding into mResponseText
|
|
|
|
// Only used for DEFAULT, TEXT and JSON responseTypes.
|
|
|
|
// In cases where we've only received half a surrogate, the decoder itself
|
|
|
|
// carries the state to remember this. Next time we receive more data we
|
|
|
|
// simply feed the new data into the decoder which will handle the second
|
|
|
|
// part of the surrogate.
|
|
|
|
nsCOMPtr<nsIUnicodeDecoder> mDecoder;
|
|
|
|
|
|
|
|
nsCString mResponseCharset;
|
2010-04-23 10:37:02 -07:00
|
|
|
|
2012-03-26 08:38:06 -07:00
|
|
|
enum ResponseType {
|
2011-05-10 16:18:55 -07:00
|
|
|
XML_HTTP_RESPONSE_TYPE_DEFAULT,
|
|
|
|
XML_HTTP_RESPONSE_TYPE_ARRAYBUFFER,
|
|
|
|
XML_HTTP_RESPONSE_TYPE_BLOB,
|
|
|
|
XML_HTTP_RESPONSE_TYPE_DOCUMENT,
|
2011-09-23 18:57:36 -07:00
|
|
|
XML_HTTP_RESPONSE_TYPE_JSON,
|
2012-03-26 08:38:06 -07:00
|
|
|
XML_HTTP_RESPONSE_TYPE_TEXT,
|
2011-09-23 18:57:36 -07:00
|
|
|
XML_HTTP_RESPONSE_TYPE_CHUNKED_TEXT,
|
2012-01-30 02:33:59 -08:00
|
|
|
XML_HTTP_RESPONSE_TYPE_CHUNKED_ARRAYBUFFER,
|
|
|
|
XML_HTTP_RESPONSE_TYPE_MOZ_BLOB
|
2012-03-26 08:38:06 -07:00
|
|
|
};
|
|
|
|
|
2012-05-05 18:15:11 -07:00
|
|
|
void SetResponseType(nsXMLHttpRequest::ResponseType aType, ErrorResult& aRv);
|
2012-03-26 08:38:06 -07:00
|
|
|
|
|
|
|
ResponseType mResponseType;
|
2011-05-10 16:18:55 -07:00
|
|
|
|
2012-01-30 02:33:59 -08:00
|
|
|
// It is either a cached blob-response from the last call to GetResponse,
|
|
|
|
// but is also explicitly set in OnStopRequest.
|
2011-05-10 16:18:55 -07:00
|
|
|
nsCOMPtr<nsIDOMBlob> mResponseBlob;
|
2012-01-30 02:33:59 -08:00
|
|
|
// Non-null only when we are able to get a os-file representation of the
|
|
|
|
// response, i.e. when loading from a file, or when the http-stream
|
|
|
|
// caches into a file or is reading from a cached file.
|
2012-06-03 09:33:52 -07:00
|
|
|
nsRefPtr<nsDOMFile> mDOMFile;
|
2012-01-30 02:33:59 -08:00
|
|
|
// We stream data to mBuilder when response type is "blob" or "moz-blob"
|
|
|
|
// and mDOMFile is null.
|
|
|
|
nsRefPtr<nsDOMBlobBuilder> mBuilder;
|
2011-05-10 16:18:55 -07:00
|
|
|
|
2012-03-26 08:38:06 -07:00
|
|
|
nsString mOverrideMimeType;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The notification callbacks the channel had when Send() was
|
|
|
|
* called. We want to forward things here as needed.
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIInterfaceRequestor> mNotificationCallbacks;
|
|
|
|
/**
|
|
|
|
* Sink interfaces that we implement that mNotificationCallbacks may
|
|
|
|
* want to also be notified for. These are inited lazily if we're
|
|
|
|
* asked for the relevant interface.
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIChannelEventSink> mChannelEventSink;
|
|
|
|
nsCOMPtr<nsIProgressEventSink> mProgressEventSink;
|
|
|
|
|
2008-09-30 16:56:57 -07:00
|
|
|
nsIRequestObserver* mRequestObserver;
|
|
|
|
|
2008-12-30 14:24:58 -08:00
|
|
|
nsCOMPtr<nsIURI> mBaseURI;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 mState;
|
2007-07-26 19:49:18 -07:00
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
nsRefPtr<nsXMLHttpRequestUpload> mUpload;
|
2008-10-21 02:06:53 -07:00
|
|
|
PRUint64 mUploadTransferred;
|
|
|
|
PRUint64 mUploadTotal;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mUploadLengthComputable;
|
|
|
|
bool mUploadComplete;
|
|
|
|
bool mProgressSinceLastProgressEvent;
|
2008-10-19 14:26:37 -07:00
|
|
|
PRUint64 mUploadProgress; // For legacy
|
|
|
|
PRUint64 mUploadProgressMax; // For legacy
|
2008-08-14 04:07:46 -07:00
|
|
|
|
2012-01-26 02:02:22 -08:00
|
|
|
// Timeout support
|
|
|
|
PRTime mRequestSentTime;
|
|
|
|
PRUint32 mTimeoutMilliseconds;
|
|
|
|
nsCOMPtr<nsITimer> mTimeoutTimer;
|
|
|
|
void StartTimeoutTimer();
|
|
|
|
void HandleTimeoutCallback();
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mErrorLoad;
|
2012-02-16 08:45:25 -08:00
|
|
|
bool mWaitingForOnStopRequest;
|
2012-01-26 02:02:22 -08:00
|
|
|
bool mProgressTimerIsActive;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mProgressEventWasDelayed;
|
2011-11-15 23:38:51 -08:00
|
|
|
bool mIsHtml;
|
|
|
|
bool mWarnAboutMultipartHtml;
|
|
|
|
bool mWarnAboutSyncHtml;
|
2012-01-26 02:02:22 -08:00
|
|
|
bool mLoadLengthComputable;
|
2008-10-23 10:16:45 -07:00
|
|
|
PRUint64 mLoadTotal; // 0 if not known.
|
2011-09-23 18:57:22 -07:00
|
|
|
PRUint64 mLoadTransferred;
|
2008-10-19 14:26:37 -07:00
|
|
|
nsCOMPtr<nsITimer> mProgressNotifier;
|
2012-01-26 02:02:22 -08:00
|
|
|
void HandleProgressTimerCallback();
|
|
|
|
|
2012-06-10 16:44:50 -07:00
|
|
|
bool mIsSystem;
|
|
|
|
bool mIsAnon;
|
|
|
|
|
2012-01-26 02:02:22 -08:00
|
|
|
/**
|
|
|
|
* Close the XMLHttpRequest's channels and dispatch appropriate progress
|
|
|
|
* events.
|
|
|
|
*
|
|
|
|
* @param aType The progress event type.
|
|
|
|
* @param aFlag A XML_HTTP_REQUEST_* state flag defined in
|
|
|
|
* nsXMLHttpRequest.cpp.
|
|
|
|
*/
|
|
|
|
void CloseRequestWithError(const nsAString& aType, const PRUint32 aFlag);
|
2008-10-19 14:26:37 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mFirstStartRequestSeen;
|
|
|
|
bool mInLoadProgressEvent;
|
2010-08-04 19:15:55 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAsyncVerifyRedirectCallback> mRedirectCallback;
|
|
|
|
nsCOMPtr<nsIChannel> mNewRedirectChannel;
|
2011-05-23 18:09:28 -07:00
|
|
|
|
2011-09-08 15:12:18 -07:00
|
|
|
jsval mResultJSON;
|
2011-05-23 18:09:28 -07:00
|
|
|
JSObject* mResultArrayBuffer;
|
2010-03-21 18:52:35 -07:00
|
|
|
|
2011-09-23 18:57:22 -07:00
|
|
|
void ResetResponse();
|
|
|
|
|
2010-03-21 18:52:35 -07:00
|
|
|
struct RequestHeader
|
|
|
|
{
|
|
|
|
nsCString header;
|
|
|
|
nsCString value;
|
|
|
|
};
|
|
|
|
nsTArray<RequestHeader> mModifiedRequestHeaders;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
#undef IMPL_EVENT_HANDLER
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// helper class to expose a progress DOM Event
|
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
class nsXMLHttpProgressEvent : public nsIDOMProgressEvent,
|
2012-08-04 00:44:00 -07:00
|
|
|
public nsIDOMLSProgressEvent
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2008-08-14 04:07:46 -07:00
|
|
|
nsXMLHttpProgressEvent(nsIDOMProgressEvent* aInner,
|
|
|
|
PRUint64 aCurrentProgress,
|
2011-10-01 09:14:40 -07:00
|
|
|
PRUint64 aMaxProgress,
|
|
|
|
nsPIDOMWindow* aWindow);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual ~nsXMLHttpProgressEvent();
|
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2012-08-04 00:44:00 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsXMLHttpProgressEvent, nsIDOMProgressEvent)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_FORWARD_NSIDOMEVENT(mInner->)
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_FORWARD_NSIDOMPROGRESSEVENT(mInner->)
|
|
|
|
NS_DECL_NSIDOMLSPROGRESSEVENT
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
2011-10-01 09:14:40 -07:00
|
|
|
void WarnAboutLSProgressEvent(nsIDocument::DeprecatedOperations);
|
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
// Use nsDOMProgressEvent so that we can forward
|
|
|
|
// most of the method calls easily.
|
|
|
|
nsRefPtr<nsDOMProgressEvent> mInner;
|
2011-10-01 09:14:40 -07:00
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint64 mCurProgress;
|
|
|
|
PRUint64 mMaxProgress;
|
|
|
|
};
|
|
|
|
|
2011-11-15 23:38:51 -08:00
|
|
|
class nsXHRParseEndListener : public nsIDOMEventListener
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_IMETHOD HandleEvent(nsIDOMEvent *event)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIXMLHttpRequest> xhr = do_QueryReferent(mXHR);
|
|
|
|
if (xhr) {
|
|
|
|
static_cast<nsXMLHttpRequest*>(xhr.get())->ChangeStateToDone();
|
|
|
|
}
|
2012-07-30 07:20:58 -07:00
|
|
|
mXHR = nullptr;
|
2011-11-15 23:38:51 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
nsXHRParseEndListener(nsIXMLHttpRequest* aXHR)
|
|
|
|
: mXHR(do_GetWeakReference(aXHR)) {}
|
|
|
|
virtual ~nsXHRParseEndListener() {}
|
|
|
|
private:
|
|
|
|
nsWeakPtr mXHR;
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|