2011-07-17 19:09:13 +00:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
2011-08-16 03:40:38 +00:00
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
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-07-17 19:09:13 +00:00
|
|
|
|
|
|
|
#ifndef mozilla_dom_workers_runtimeservice_h__
|
|
|
|
#define mozilla_dom_workers_runtimeservice_h__
|
|
|
|
|
|
|
|
#include "Workers.h"
|
|
|
|
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
|
|
|
|
#include "jsapi.h"
|
2013-05-16 22:49:43 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2011-07-17 19:09:13 +00:00
|
|
|
#include "mozilla/Mutex.h"
|
2011-07-26 01:49:16 +00:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2011-07-17 19:09:13 +00:00
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsClassHashtable.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsStringGlue.h"
|
|
|
|
#include "nsTArray.h"
|
|
|
|
|
|
|
|
class nsIThread;
|
2011-07-26 01:49:16 +00:00
|
|
|
class nsITimer;
|
2011-07-17 19:09:13 +00:00
|
|
|
class nsPIDOMWindow;
|
|
|
|
|
|
|
|
BEGIN_WORKERS_NAMESPACE
|
|
|
|
|
|
|
|
class WorkerPrivate;
|
|
|
|
|
2012-06-15 02:31:55 +00:00
|
|
|
class RuntimeService MOZ_FINAL : public nsIObserver
|
2011-07-17 19:09:13 +00:00
|
|
|
{
|
|
|
|
struct WorkerDomainInfo
|
|
|
|
{
|
|
|
|
nsCString mDomain;
|
|
|
|
nsTArray<WorkerPrivate*> mActiveWorkers;
|
|
|
|
nsTArray<WorkerPrivate*> mQueuedWorkers;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mChildWorkerCount;
|
2011-07-17 19:09:13 +00:00
|
|
|
|
|
|
|
WorkerDomainInfo() : mActiveWorkers(1), mChildWorkerCount(0) { }
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t
|
2011-07-17 19:09:13 +00:00
|
|
|
ActiveWorkerCount() const
|
|
|
|
{
|
|
|
|
return mActiveWorkers.Length() + mChildWorkerCount;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-07-26 01:49:16 +00:00
|
|
|
struct IdleThreadInfo
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIThread> mThread;
|
|
|
|
mozilla::TimeStamp mExpirationTime;
|
|
|
|
};
|
|
|
|
|
|
|
|
mozilla::Mutex mMutex;
|
|
|
|
|
|
|
|
// Protected by mMutex.
|
2011-07-17 19:09:13 +00:00
|
|
|
nsClassHashtable<nsCStringHashKey, WorkerDomainInfo> mDomainMap;
|
|
|
|
|
2011-07-26 01:49:16 +00:00
|
|
|
// Protected by mMutex.
|
|
|
|
nsTArray<IdleThreadInfo> mIdleThreadArray;
|
|
|
|
|
|
|
|
// *Not* protected by mMutex.
|
2012-03-21 18:07:31 +00:00
|
|
|
nsClassHashtable<nsPtrHashKey<nsPIDOMWindow>, nsTArray<WorkerPrivate*> > mWindowMap;
|
2011-07-17 19:09:13 +00:00
|
|
|
|
2011-07-26 01:49:16 +00:00
|
|
|
// Only used on the main thread.
|
|
|
|
nsCOMPtr<nsITimer> mIdleThreadTimer;
|
|
|
|
|
2011-08-16 03:40:38 +00:00
|
|
|
nsCString mDetectorName;
|
|
|
|
nsCString mSystemCharset;
|
|
|
|
|
2013-05-16 22:49:43 +00:00
|
|
|
static JSSettings sDefaultJSSettings;
|
2011-07-17 19:09:13 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
struct NavigatorStrings
|
|
|
|
{
|
|
|
|
nsString mAppName;
|
|
|
|
nsString mAppVersion;
|
|
|
|
nsString mPlatform;
|
|
|
|
nsString mUserAgent;
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
NavigatorStrings mNavigatorStrings;
|
|
|
|
|
|
|
|
// True when the observer service holds a reference to this object.
|
|
|
|
bool mObserved;
|
|
|
|
bool mShuttingDown;
|
|
|
|
bool mNavigatorStringsLoaded;
|
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
|
|
|
static RuntimeService*
|
|
|
|
GetOrCreateService();
|
|
|
|
|
|
|
|
static RuntimeService*
|
|
|
|
GetService();
|
|
|
|
|
|
|
|
bool
|
|
|
|
RegisterWorker(JSContext* aCx, WorkerPrivate* aWorkerPrivate);
|
|
|
|
|
|
|
|
void
|
|
|
|
UnregisterWorker(JSContext* aCx, WorkerPrivate* aWorkerPrivate);
|
|
|
|
|
|
|
|
void
|
|
|
|
CancelWorkersForWindow(JSContext* aCx, nsPIDOMWindow* aWindow);
|
|
|
|
|
|
|
|
void
|
|
|
|
SuspendWorkersForWindow(JSContext* aCx, nsPIDOMWindow* aWindow);
|
|
|
|
|
|
|
|
void
|
2013-06-06 17:28:47 +00:00
|
|
|
ResumeWorkersForWindow(nsIScriptContext* aCx, nsPIDOMWindow* aWindow);
|
2011-07-17 19:09:13 +00:00
|
|
|
|
2011-08-16 03:40:38 +00:00
|
|
|
const nsACString&
|
|
|
|
GetDetectorName() const
|
|
|
|
{
|
|
|
|
return mDetectorName;
|
|
|
|
}
|
|
|
|
|
|
|
|
const nsACString&
|
|
|
|
GetSystemCharset() const
|
|
|
|
{
|
|
|
|
return mSystemCharset;
|
|
|
|
}
|
|
|
|
|
2011-07-17 19:09:13 +00:00
|
|
|
const NavigatorStrings&
|
|
|
|
GetNavigatorStrings() const
|
|
|
|
{
|
|
|
|
return mNavigatorStrings;
|
|
|
|
}
|
|
|
|
|
2011-07-26 01:49:16 +00:00
|
|
|
void
|
|
|
|
NoteIdleThread(nsIThread* aThread);
|
|
|
|
|
2013-05-16 22:49:43 +00:00
|
|
|
static void
|
|
|
|
GetDefaultJSSettings(JSSettings& aSettings)
|
2011-07-17 19:09:13 +00:00
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
2013-05-16 22:49:43 +00:00
|
|
|
aSettings = sDefaultJSSettings;
|
2011-07-17 19:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-05-16 22:49:43 +00:00
|
|
|
SetDefaultJSContextOptions(uint32_t aContentOptions, uint32_t aChromeOptions)
|
2011-07-17 19:09:13 +00:00
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
2013-05-16 22:49:43 +00:00
|
|
|
sDefaultJSSettings.content.options = aContentOptions;
|
|
|
|
sDefaultJSSettings.chrome.options = aChromeOptions;
|
2011-07-17 19:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UpdateAllWorkerJSContextOptions();
|
|
|
|
|
2012-01-04 19:11:32 +00:00
|
|
|
static void
|
2013-05-16 22:49:43 +00:00
|
|
|
SetDefaultJSGCSettings(JSGCParamKey aKey, uint32_t aValue)
|
2012-01-04 19:11:32 +00:00
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
2013-05-16 22:49:43 +00:00
|
|
|
sDefaultJSSettings.ApplyGCSetting(aKey, aValue);
|
2012-01-04 19:11:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-05-16 22:49:43 +00:00
|
|
|
UpdateAllWorkerMemoryParameter(JSGCParamKey aKey, uint32_t aValue);
|
2012-01-04 19:11:32 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
static uint32_t
|
2013-05-16 22:49:43 +00:00
|
|
|
GetContentCloseHandlerTimeoutSeconds()
|
2011-07-17 19:09:13 +00:00
|
|
|
{
|
2013-05-16 22:49:43 +00:00
|
|
|
return sDefaultJSSettings.content.maxScriptRuntime;
|
2011-07-17 19:09:13 +00:00
|
|
|
}
|
|
|
|
|
2013-05-16 22:49:43 +00:00
|
|
|
static uint32_t
|
|
|
|
GetChromeCloseHandlerTimeoutSeconds()
|
2011-07-17 19:09:13 +00:00
|
|
|
{
|
2013-05-16 22:49:43 +00:00
|
|
|
return sDefaultJSSettings.chrome.maxScriptRuntime;
|
2011-07-17 19:09:13 +00:00
|
|
|
}
|
|
|
|
|
2013-05-16 22:49:43 +00:00
|
|
|
#ifdef JS_GC_ZEAL
|
2011-07-17 19:09:13 +00:00
|
|
|
static void
|
2013-05-16 22:49:43 +00:00
|
|
|
SetDefaultGCZeal(uint8_t aGCZeal, uint32_t aFrequency)
|
2011-07-17 19:09:13 +00:00
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
2013-05-16 22:49:43 +00:00
|
|
|
sDefaultJSSettings.gcZeal = aGCZeal;
|
|
|
|
sDefaultJSSettings.gcZealFrequency = aFrequency;
|
2011-07-17 19:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UpdateAllWorkerGCZeal();
|
|
|
|
#endif
|
|
|
|
|
2013-05-16 22:49:43 +00:00
|
|
|
static void
|
|
|
|
SetDefaultJITHardening(bool aJITHardening)
|
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
sDefaultJSSettings.jitHardening = aJITHardening;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UpdateAllWorkerJITHardening(bool aJITHardening);
|
|
|
|
|
2012-01-17 20:05:25 +00:00
|
|
|
void
|
|
|
|
GarbageCollectAllWorkers(bool aShrinking);
|
|
|
|
|
2011-07-17 19:09:13 +00:00
|
|
|
private:
|
|
|
|
RuntimeService();
|
|
|
|
~RuntimeService();
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
Init();
|
|
|
|
|
|
|
|
void
|
|
|
|
Cleanup();
|
|
|
|
|
|
|
|
static PLDHashOperator
|
|
|
|
AddAllTopLevelWorkersToArray(const nsACString& aKey,
|
|
|
|
WorkerDomainInfo* aData,
|
|
|
|
void* aUserArg);
|
|
|
|
|
|
|
|
void
|
|
|
|
GetWorkersForWindow(nsPIDOMWindow* aWindow,
|
|
|
|
nsTArray<WorkerPrivate*>& aWorkers);
|
|
|
|
|
|
|
|
bool
|
|
|
|
ScheduleWorker(JSContext* aCx, WorkerPrivate* aWorkerPrivate);
|
2011-07-26 01:49:16 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
ShutdownIdleThreads(nsITimer* aTimer, void* aClosure);
|
2011-07-17 19:09:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
END_WORKERS_NAMESPACE
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_workers_runtimeservice_h__ */
|