mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
304 lines
6.7 KiB
C++
304 lines
6.7 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_workers_xmlhttprequest_h__
|
|
#define mozilla_dom_workers_xmlhttprequest_h__
|
|
|
|
#include "mozilla/dom/workers/bindings/XMLHttpRequestEventTarget.h"
|
|
#include "mozilla/dom/workers/bindings/WorkerFeature.h"
|
|
|
|
// Need this for XMLHttpRequestResponseType.
|
|
#include "mozilla/dom/XMLHttpRequestBinding.h"
|
|
|
|
#include "mozilla/dom/BindingUtils.h"
|
|
#include "mozilla/dom/TypedArray.h"
|
|
|
|
BEGIN_WORKERS_NAMESPACE
|
|
|
|
class Proxy;
|
|
class XMLHttpRequestUpload;
|
|
class WorkerPrivate;
|
|
|
|
class XMLHttpRequest : public XMLHttpRequestEventTarget,
|
|
public WorkerFeature
|
|
{
|
|
public:
|
|
struct StateData
|
|
{
|
|
nsString mResponseText;
|
|
uint32_t mStatus;
|
|
nsString mStatusText;
|
|
uint16_t mReadyState;
|
|
jsval mResponse;
|
|
nsresult mResponseTextResult;
|
|
nsresult mStatusResult;
|
|
nsresult mResponseResult;
|
|
|
|
StateData()
|
|
: mStatus(0), mReadyState(0), mResponse(JSVAL_VOID),
|
|
mResponseTextResult(NS_OK), mStatusResult(NS_OK),
|
|
mResponseResult(NS_OK)
|
|
{ }
|
|
};
|
|
|
|
private:
|
|
JSObject* mJSObject;
|
|
XMLHttpRequestUpload* mUpload;
|
|
WorkerPrivate* mWorkerPrivate;
|
|
nsRefPtr<Proxy> mProxy;
|
|
XMLHttpRequestResponseType mResponseType;
|
|
StateData mStateData;
|
|
|
|
uint32_t mTimeout;
|
|
|
|
bool mJSObjectRooted;
|
|
bool mMultipart;
|
|
bool mBackgroundRequest;
|
|
bool mWithCredentials;
|
|
bool mCanceled;
|
|
|
|
protected:
|
|
XMLHttpRequest(JSContext* aCx, WorkerPrivate* aWorkerPrivate);
|
|
virtual ~XMLHttpRequest();
|
|
|
|
public:
|
|
virtual void
|
|
_trace(JSTracer* aTrc) MOZ_OVERRIDE;
|
|
|
|
virtual void
|
|
_finalize(JSFreeOp* aFop) MOZ_OVERRIDE;
|
|
|
|
static XMLHttpRequest*
|
|
Constructor(JSContext* aCx, JSObject* aGlobal,
|
|
const Nullable<MozXMLHttpRequestParametersWorkers>& aParams,
|
|
ErrorResult& aRv);
|
|
void
|
|
Unpin();
|
|
|
|
bool
|
|
Notify(JSContext* aCx, Status aStatus) MOZ_OVERRIDE;
|
|
|
|
#define IMPL_GETTER_AND_SETTER(_type) \
|
|
JSObject* \
|
|
GetOn##_type(JSContext* /* unused */, ErrorResult& aRv) \
|
|
{ \
|
|
return GetEventListener(NS_LITERAL_STRING(#_type), aRv); \
|
|
} \
|
|
\
|
|
void \
|
|
SetOn##_type(JSContext* /* unused */, JSObject* aListener, ErrorResult& aRv) \
|
|
{ \
|
|
SetEventListener(NS_LITERAL_STRING(#_type), aListener, aRv); \
|
|
}
|
|
|
|
IMPL_GETTER_AND_SETTER(readystatechange)
|
|
|
|
#undef IMPL_GETTER_AND_SETTER
|
|
|
|
JSObject*
|
|
GetOnuploadprogress(JSContext* /* unused */, ErrorResult& aRv)
|
|
{
|
|
aRv = NS_ERROR_NOT_IMPLEMENTED;
|
|
return NULL;
|
|
}
|
|
void
|
|
SetOnuploadprogress(JSContext* /* unused */, JSObject* aListener, ErrorResult& aRv)
|
|
{
|
|
aRv = NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
uint16_t
|
|
GetReadyState() const
|
|
{
|
|
return mStateData.mReadyState;
|
|
}
|
|
|
|
void
|
|
Open(const nsAString& aMethod, const nsAString& aUrl, bool aAsync,
|
|
const Optional<nsAString>& aUser, const Optional<nsAString>& aPassword,
|
|
ErrorResult& aRv);
|
|
|
|
void
|
|
SetRequestHeader(const nsAString& aHeader, const nsAString& aValue,
|
|
ErrorResult& aRv);
|
|
|
|
uint32_t
|
|
GetTimeout() const
|
|
{
|
|
return mTimeout;
|
|
}
|
|
|
|
void
|
|
SetTimeout(uint32_t aTimeout, ErrorResult& aRv);
|
|
|
|
bool
|
|
GetWithCredentials() const
|
|
{
|
|
return mWithCredentials;
|
|
}
|
|
|
|
void
|
|
SetWithCredentials(bool aWithCredentials, ErrorResult& aRv);
|
|
|
|
bool
|
|
GetMultipart() const
|
|
{
|
|
return mMultipart;
|
|
}
|
|
|
|
void
|
|
SetMultipart(bool aMultipart, ErrorResult& aRv);
|
|
|
|
bool
|
|
GetMozBackgroundRequest() const
|
|
{
|
|
return mBackgroundRequest;
|
|
}
|
|
|
|
void
|
|
SetMozBackgroundRequest(bool aBackgroundRequest, ErrorResult& aRv);
|
|
|
|
XMLHttpRequestUpload*
|
|
GetUpload(ErrorResult& aRv);
|
|
|
|
void
|
|
Send(ErrorResult& aRv);
|
|
|
|
void
|
|
Send(const nsAString& aBody, ErrorResult& aRv);
|
|
|
|
void
|
|
Send(JSObject* aBody, ErrorResult& aRv);
|
|
|
|
void
|
|
Send(ArrayBuffer& aBody, ErrorResult& aRv) {
|
|
return Send(aBody.mObj, aRv);
|
|
}
|
|
|
|
void
|
|
SendAsBinary(const nsAString& aBody, ErrorResult& aRv);
|
|
|
|
void
|
|
Abort(ErrorResult& aRv);
|
|
|
|
uint16_t
|
|
GetStatus(ErrorResult& aRv) const
|
|
{
|
|
aRv = mStateData.mStatusResult;
|
|
return mStateData.mStatus;
|
|
}
|
|
|
|
void
|
|
GetStatusText(nsAString& aStatusText) const
|
|
{
|
|
aStatusText = mStateData.mStatusText;
|
|
}
|
|
|
|
void
|
|
GetResponseHeader(const nsAString& aHeader, nsAString& aResponseHeader,
|
|
ErrorResult& aRv);
|
|
|
|
void
|
|
GetAllResponseHeaders(nsAString& aResponseHeaders, ErrorResult& aRv);
|
|
|
|
void
|
|
OverrideMimeType(const nsAString& aMimeType, ErrorResult& aRv);
|
|
|
|
XMLHttpRequestResponseType
|
|
GetResponseType() const
|
|
{
|
|
return mResponseType;
|
|
}
|
|
|
|
void
|
|
SetResponseType(XMLHttpRequestResponseType aResponseType, ErrorResult& aRv);
|
|
|
|
jsval
|
|
GetResponse(JSContext* /* unused */, ErrorResult& aRv);
|
|
|
|
void
|
|
GetResponseText(nsAString& aResponseText, ErrorResult& aRv);
|
|
|
|
JSObject*
|
|
GetResponseXML() const
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
JSObject*
|
|
GetChannel() const
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
JS::Value
|
|
GetInterface(JSContext* cx, JSObject* aIID, ErrorResult& aRv)
|
|
{
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
return JSVAL_NULL;
|
|
}
|
|
|
|
XMLHttpRequestUpload*
|
|
GetUploadObjectNoCreate() const
|
|
{
|
|
return mUpload;
|
|
}
|
|
|
|
void
|
|
UpdateState(const StateData& aStateData)
|
|
{
|
|
mStateData = aStateData;
|
|
}
|
|
|
|
void
|
|
NullResponseText()
|
|
{
|
|
mStateData.mResponseText.SetIsVoid(true);
|
|
mStateData.mResponse = JSVAL_NULL;
|
|
}
|
|
|
|
bool GetMozAnon() {
|
|
// TODO: bug 761227
|
|
return false;
|
|
}
|
|
|
|
bool GetMozSystem() {
|
|
// TODO: bug 761227
|
|
return false;
|
|
}
|
|
|
|
private:
|
|
enum ReleaseType { Default, XHRIsGoingAway, WorkerIsGoingAway };
|
|
|
|
void
|
|
ReleaseProxy(ReleaseType aType = Default);
|
|
|
|
void
|
|
MaybePin(ErrorResult& aRv);
|
|
|
|
void
|
|
MaybeDispatchPrematureAbortEvents(ErrorResult& aRv);
|
|
|
|
void
|
|
DispatchPrematureAbortEvent(JSObject* aTarget, uint8_t aEventType,
|
|
bool aUploadTarget, ErrorResult& aRv);
|
|
|
|
bool
|
|
SendInProgress() const
|
|
{
|
|
return mJSObjectRooted;
|
|
}
|
|
|
|
void
|
|
SendInternal(const nsAString& aStringBody,
|
|
JSAutoStructuredCloneBuffer& aBody,
|
|
nsTArray<nsCOMPtr<nsISupports> >& aClonedObjects,
|
|
ErrorResult& aRv);
|
|
};
|
|
|
|
END_WORKERS_NAMESPACE
|
|
|
|
#endif // mozilla_dom_workers_xmlhttprequest_h__
|