2011-07-17 19:09:13 +00:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2011-01-07 06:21:26 +00:00
|
|
|
|
2013-11-05 14:16:26 +00:00
|
|
|
#ifndef mozilla_dom_workerscope_h__
|
|
|
|
#define mozilla_dom_workerscope_h__
|
2011-07-17 19:09:13 +00:00
|
|
|
|
|
|
|
#include "Workers.h"
|
2013-11-05 14:16:26 +00:00
|
|
|
#include "nsDOMEventTargetHelper.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class Function;
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2011-07-17 19:09:13 +00:00
|
|
|
|
|
|
|
BEGIN_WORKERS_NAMESPACE
|
|
|
|
|
2013-11-05 14:16:26 +00:00
|
|
|
class WorkerPrivate;
|
|
|
|
class WorkerLocation;
|
|
|
|
class WorkerNavigator;
|
|
|
|
|
|
|
|
class WorkerGlobalScope : public nsDOMEventTargetHelper,
|
|
|
|
public nsIGlobalObject
|
|
|
|
{
|
|
|
|
nsRefPtr<WorkerLocation> mLocation;
|
|
|
|
nsRefPtr<WorkerNavigator> mNavigator;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
WorkerPrivate* mWorkerPrivate;
|
|
|
|
|
|
|
|
WorkerGlobalScope(WorkerPrivate* aWorkerPrivate);
|
|
|
|
virtual ~WorkerGlobalScope();
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual JSObject*
|
2013-11-11 08:04:41 +00:00
|
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
2013-11-05 14:16:26 +00:00
|
|
|
|
|
|
|
virtual JSObject*
|
2013-12-10 11:43:16 +00:00
|
|
|
WrapGlobalObject(JSContext* aCx) = 0;
|
2013-11-05 14:16:26 +00:00
|
|
|
|
|
|
|
virtual JSObject*
|
|
|
|
GetGlobalJSObject(void) MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
return GetWrapper();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(WorkerGlobalScope,
|
|
|
|
nsDOMEventTargetHelper)
|
|
|
|
|
|
|
|
already_AddRefed<WorkerGlobalScope>
|
|
|
|
Self()
|
|
|
|
{
|
|
|
|
return nsRefPtr<WorkerGlobalScope>(this).forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<WorkerLocation>
|
|
|
|
Location();
|
2013-11-19 23:08:50 +00:00
|
|
|
|
2013-11-05 14:16:26 +00:00
|
|
|
already_AddRefed<WorkerNavigator>
|
|
|
|
Navigator();
|
2013-11-19 23:08:50 +00:00
|
|
|
|
|
|
|
already_AddRefed<WorkerNavigator>
|
|
|
|
GetExistingNavigator() const;
|
|
|
|
|
2013-11-05 14:16:26 +00:00
|
|
|
void
|
|
|
|
Close(JSContext* aCx);
|
|
|
|
|
|
|
|
OnErrorEventHandlerNonNull*
|
|
|
|
GetOnerror();
|
|
|
|
void
|
|
|
|
SetOnerror(OnErrorEventHandlerNonNull* aHandler);
|
|
|
|
|
|
|
|
void
|
|
|
|
ImportScripts(JSContext* aCx, const Sequence<nsString>& aScriptURLs,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
SetTimeout(JSContext* aCx, Function& aHandler, const int32_t aTimeout,
|
|
|
|
const Sequence<JS::Value>& aArguments, ErrorResult& aRv);
|
|
|
|
int32_t
|
|
|
|
SetTimeout(const nsAString& aHandler, const int32_t aTimeout,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
void
|
|
|
|
ClearTimeout(int32_t aHandle, ErrorResult& aRv);
|
|
|
|
int32_t
|
|
|
|
SetInterval(JSContext* aCx, Function& aHandler,
|
|
|
|
const Optional<int32_t>& aTimeout,
|
|
|
|
const Sequence<JS::Value>& aArguments, ErrorResult& aRv);
|
|
|
|
int32_t
|
|
|
|
SetInterval(const nsAString& aHandler, const Optional<int32_t>& aTimeout,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
void
|
|
|
|
ClearInterval(int32_t aHandle, ErrorResult& aRv);
|
|
|
|
|
|
|
|
void
|
|
|
|
Atob(const nsAString& aAtob, nsAString& aOutput, ErrorResult& aRv) const;
|
|
|
|
void
|
|
|
|
Btoa(const nsAString& aBtoa, nsAString& aOutput, ErrorResult& aRv) const;
|
|
|
|
|
2013-11-19 23:08:50 +00:00
|
|
|
IMPL_EVENT_HANDLER(online)
|
|
|
|
IMPL_EVENT_HANDLER(offline)
|
2013-11-05 14:16:26 +00:00
|
|
|
IMPL_EVENT_HANDLER(close)
|
|
|
|
|
|
|
|
void
|
|
|
|
Dump(const Optional<nsAString>& aString) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DedicatedWorkerGlobalScope MOZ_FINAL : public WorkerGlobalScope
|
|
|
|
{
|
|
|
|
~DedicatedWorkerGlobalScope() { }
|
|
|
|
|
|
|
|
public:
|
|
|
|
DedicatedWorkerGlobalScope(WorkerPrivate* aWorkerPrivate);
|
|
|
|
|
|
|
|
static bool
|
|
|
|
Visible(JSContext* aCx, JSObject* aObj);
|
|
|
|
|
|
|
|
virtual JSObject*
|
2013-12-10 11:43:16 +00:00
|
|
|
WrapGlobalObject(JSContext* aCx) MOZ_OVERRIDE;
|
2013-11-05 14:16:26 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
PostMessage(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
|
|
|
const Optional<Sequence<JS::Value>>& aTransferable,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
IMPL_EVENT_HANDLER(message)
|
|
|
|
};
|
|
|
|
|
|
|
|
class SharedWorkerGlobalScope MOZ_FINAL : public WorkerGlobalScope
|
|
|
|
{
|
|
|
|
const nsString mName;
|
|
|
|
|
|
|
|
~SharedWorkerGlobalScope() { }
|
|
|
|
|
|
|
|
public:
|
|
|
|
SharedWorkerGlobalScope(WorkerPrivate* aWorkerPrivate, const nsString& aName);
|
|
|
|
|
|
|
|
static bool
|
|
|
|
Visible(JSContext* aCx, JSObject* aObj);
|
|
|
|
|
|
|
|
virtual JSObject*
|
2013-12-10 11:43:16 +00:00
|
|
|
WrapGlobalObject(JSContext* aCx) MOZ_OVERRIDE;
|
2013-11-05 14:16:26 +00:00
|
|
|
|
|
|
|
void GetName(DOMString& aName) const {
|
|
|
|
aName.AsAString() = mName;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPL_EVENT_HANDLER(connect)
|
|
|
|
};
|
|
|
|
|
2011-07-17 19:09:13 +00:00
|
|
|
JSObject*
|
2013-06-05 14:04:23 +00:00
|
|
|
CreateGlobalScope(JSContext* aCx);
|
2012-01-18 18:05:38 +00:00
|
|
|
|
2011-07-17 19:09:13 +00:00
|
|
|
END_WORKERS_NAMESPACE
|
|
|
|
|
2013-11-05 14:16:26 +00:00
|
|
|
#endif /* mozilla_dom_workerscope_h__ */
|