2012-08-04 22:09:39 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set sw=2 ts=8 et ft=cpp : */
|
|
|
|
/* 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/. */
|
|
|
|
|
2013-01-03 15:39:25 -08:00
|
|
|
#include "mozilla/ClearOnShutdown.h"
|
2012-08-04 22:09:39 -07:00
|
|
|
#include "mozilla/dom/ipc/ProcessPriorityManager.h"
|
2012-12-18 18:37:35 -08:00
|
|
|
#include "mozilla/dom/ContentChild.h"
|
|
|
|
#include "mozilla/dom/TabChild.h"
|
2012-08-04 22:09:39 -07:00
|
|
|
#include "mozilla/Hal.h"
|
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
#include "mozilla/Services.h"
|
|
|
|
#include "mozilla/HalTypes.h"
|
|
|
|
#include "mozilla/TimeStamp.h"
|
2013-01-04 21:03:51 -08:00
|
|
|
#include "AudioChannelService.h"
|
2012-08-04 22:09:39 -07:00
|
|
|
#include "prlog.h"
|
2013-01-26 13:14:01 -08:00
|
|
|
#include "nsPrintfCString.h"
|
2012-08-04 22:09:39 -07:00
|
|
|
#include "nsWeakPtr.h"
|
|
|
|
#include "nsXULAppAPI.h"
|
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
|
|
|
#include "nsITimer.h"
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "nsIObserverService.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDOMEventListener.h"
|
|
|
|
#include "nsIDOMWindow.h"
|
|
|
|
#include "nsIDOMEvent.h"
|
|
|
|
#include "nsIDOMEventTarget.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsPIDOMWindow.h"
|
2013-01-03 15:39:25 -08:00
|
|
|
#include "StaticPtr.h"
|
2012-08-04 22:09:39 -07:00
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
#include <process.h>
|
|
|
|
#define getpid _getpid
|
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using namespace mozilla::hal;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace ipc {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
static bool sInitialized = false;
|
2013-01-03 15:39:25 -08:00
|
|
|
class ProcessPriorityManager;
|
|
|
|
static StaticRefPtr<ProcessPriorityManager> sManager;
|
2012-08-04 22:09:39 -07:00
|
|
|
|
|
|
|
// Some header defines a LOG macro, but we don't want it here.
|
|
|
|
#ifdef LOG
|
|
|
|
#undef LOG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Enable logging by setting
|
|
|
|
//
|
|
|
|
// NSPR_LOG_MODULES=ProcessPriorityManager:5
|
|
|
|
//
|
2013-02-08 06:32:23 -08:00
|
|
|
// in your environment. Or just comment out the "&& 0" below, if you're on
|
|
|
|
// Android/B2G.
|
2012-08-04 22:09:39 -07:00
|
|
|
|
2013-02-08 06:32:23 -08:00
|
|
|
#if defined(ANDROID) && 0
|
|
|
|
#include <android/log.h>
|
|
|
|
#define LOG(fmt, ...) \
|
|
|
|
__android_log_print(ANDROID_LOG_INFO, \
|
|
|
|
"Gecko:ProcessPriorityManager", \
|
|
|
|
fmt, ## __VA_ARGS__)
|
|
|
|
#elif defined(PR_LOGGING)
|
2012-10-29 16:32:10 -07:00
|
|
|
static PRLogModuleInfo*
|
|
|
|
GetPPMLog()
|
|
|
|
{
|
|
|
|
static PRLogModuleInfo *sLog;
|
|
|
|
if (!sLog)
|
|
|
|
sLog = PR_NewLogModule("ProcessPriorityManager");
|
|
|
|
return sLog;
|
|
|
|
}
|
2012-08-04 22:09:39 -07:00
|
|
|
#define LOG(fmt, ...) \
|
2012-10-29 16:32:10 -07:00
|
|
|
PR_LOG(GetPPMLog(), PR_LOG_DEBUG, \
|
2012-08-04 22:09:39 -07:00
|
|
|
("[%d] ProcessPriorityManager - " fmt, getpid(), ##__VA_ARGS__))
|
|
|
|
#else
|
|
|
|
#define LOG(fmt, ...)
|
|
|
|
#endif
|
|
|
|
|
2012-12-18 18:37:35 -08:00
|
|
|
/**
|
|
|
|
* Get the appropriate backround priority for this process.
|
|
|
|
*/
|
|
|
|
ProcessPriority
|
|
|
|
GetBackgroundPriority()
|
|
|
|
{
|
2013-01-04 21:03:51 -08:00
|
|
|
AudioChannelService* service = AudioChannelService::GetAudioChannelService();
|
2013-01-28 03:47:18 -08:00
|
|
|
if (service->ContentOrNormalChannelIsActive()) {
|
2013-01-04 21:03:51 -08:00
|
|
|
return PROCESS_PRIORITY_BACKGROUND_PERCEIVABLE;
|
|
|
|
}
|
|
|
|
|
2012-12-18 18:37:35 -08:00
|
|
|
bool isHomescreen = false;
|
|
|
|
|
|
|
|
ContentChild* contentChild = ContentChild::GetSingleton();
|
|
|
|
if (contentChild) {
|
|
|
|
const InfallibleTArray<PBrowserChild*>& browsers =
|
|
|
|
contentChild->ManagedPBrowserChild();
|
|
|
|
for (uint32_t i = 0; i < browsers.Length(); i++) {
|
|
|
|
nsAutoString appType;
|
|
|
|
static_cast<TabChild*>(browsers[i])->GetAppType(appType);
|
|
|
|
if (appType.EqualsLiteral("homescreen")) {
|
|
|
|
isHomescreen = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return isHomescreen ?
|
|
|
|
PROCESS_PRIORITY_BACKGROUND_HOMESCREEN :
|
|
|
|
PROCESS_PRIORITY_BACKGROUND;
|
|
|
|
}
|
|
|
|
|
2013-01-04 21:03:51 -08:00
|
|
|
/**
|
|
|
|
* Determine if the priority is a backround priority.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
IsBackgroundPriority(ProcessPriority aPriority)
|
|
|
|
{
|
|
|
|
return (aPriority == PROCESS_PRIORITY_BACKGROUND ||
|
|
|
|
aPriority == PROCESS_PRIORITY_BACKGROUND_HOMESCREEN ||
|
|
|
|
aPriority == PROCESS_PRIORITY_BACKGROUND_PERCEIVABLE);
|
|
|
|
}
|
|
|
|
|
2012-08-04 22:09:39 -07:00
|
|
|
/**
|
|
|
|
* This class listens to window creation and visibilitychange events and
|
|
|
|
* informs the hal back-end when this process transitions between having no
|
|
|
|
* visible top-level windows, and when it has at least one visible top-level
|
|
|
|
* window.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* An important heuristic here is that we don't mark a process as background
|
|
|
|
* until it's had no visible top-level windows for some amount of time.
|
|
|
|
*
|
|
|
|
* We do this because the notion of visibility is tied to inner windows
|
|
|
|
* (actually, to documents). When we navigate a page with outer window W, we
|
|
|
|
* first destroy W's inner window and document, then insert a new inner window
|
|
|
|
* and document into W. If not for our grace period, this transition could
|
|
|
|
* cause us to inform hal that this process quickly transitioned from
|
|
|
|
* foreground to background to foreground again.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class ProcessPriorityManager MOZ_FINAL
|
|
|
|
: public nsIObserver
|
|
|
|
, public nsIDOMEventListener
|
2013-01-26 13:14:01 -08:00
|
|
|
, public nsITimerCallback
|
2012-08-04 22:09:39 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessPriorityManager();
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2013-01-26 13:14:01 -08:00
|
|
|
NS_DECL_NSITIMERCALLBACK
|
2012-08-04 22:09:39 -07:00
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
NS_DECL_NSIDOMEVENTLISTENER
|
|
|
|
|
2013-01-03 15:39:25 -08:00
|
|
|
ProcessPriority GetPriority() const { return mProcessPriority; }
|
|
|
|
|
2013-01-26 13:14:01 -08:00
|
|
|
/**
|
|
|
|
* If this process is not already in the foreground, move it into the
|
|
|
|
* foreground and set a timer to call ResetPriorityNow() in a few seconds.
|
|
|
|
*/
|
|
|
|
void TemporarilySetIsForeground();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recompute this process's priority and apply it, potentially after a brief
|
|
|
|
* delay.
|
|
|
|
*
|
|
|
|
* If the new priority is FOREGROUND, it takes effect immediately.
|
|
|
|
*
|
|
|
|
* If the new priority is a BACKGROUND* priority and this process's priority
|
|
|
|
* is currently a BACKGROUND* priority, the new priority takes effect
|
|
|
|
* immediately.
|
|
|
|
*
|
|
|
|
* But if the new priority is a BACKGROUND* priority and this process is not
|
|
|
|
* currently in the background, we schedule a timer and run
|
|
|
|
* ResetPriorityNow() after a short period of time.
|
|
|
|
*/
|
|
|
|
void ResetPriority();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recompute this process's priority and apply it immediately.
|
|
|
|
*/
|
|
|
|
void ResetPriorityNow();
|
|
|
|
|
2012-08-04 22:09:39 -07:00
|
|
|
private:
|
|
|
|
void OnContentDocumentGlobalCreated(nsISupports* aOuterWindow);
|
2013-01-26 13:14:01 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Compute whether this process is in the foreground and return the result.
|
|
|
|
*/
|
|
|
|
bool ComputeIsInForeground();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set this process's priority to FOREGROUND immediately.
|
|
|
|
*/
|
|
|
|
void SetIsForeground();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set this process's priority to the appropriate BACKGROUND* priority
|
|
|
|
* immediately.
|
|
|
|
*/
|
|
|
|
void SetIsBackgroundNow();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If mResetPriorityTimer is null (i.e., not running), create a timer and set
|
|
|
|
* it to invoke ResetPriorityNow() after
|
|
|
|
* dom.ipc.processPriorityManager.aTimeoutPref ms.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ScheduleResetPriority(const char* aTimeoutPref);
|
|
|
|
|
|
|
|
// mProcessPriority tracks the priority we've given this process in hal.
|
2012-08-04 22:09:39 -07:00
|
|
|
ProcessPriority mProcessPriority;
|
|
|
|
|
|
|
|
nsTArray<nsWeakPtr> mWindows;
|
2013-01-26 13:14:01 -08:00
|
|
|
|
|
|
|
// When this timer expires, we set mResetPriorityTimer to null and run
|
|
|
|
// ResetPriorityNow().
|
|
|
|
nsCOMPtr<nsITimer> mResetPriorityTimer;
|
|
|
|
|
2012-12-11 10:13:29 -08:00
|
|
|
nsWeakPtr mMemoryMinimizerRunnable;
|
2012-08-04 22:09:39 -07:00
|
|
|
};
|
|
|
|
|
2013-01-31 11:44:12 -08:00
|
|
|
NS_IMPL_ISUPPORTS3(ProcessPriorityManager, nsIObserver,
|
|
|
|
nsIDOMEventListener, nsITimerCallback)
|
2012-08-04 22:09:39 -07:00
|
|
|
|
|
|
|
ProcessPriorityManager::ProcessPriorityManager()
|
2013-01-26 13:14:01 -08:00
|
|
|
: mProcessPriority(ProcessPriority(-1))
|
2012-08-04 22:09:39 -07:00
|
|
|
{
|
2013-01-26 13:14:01 -08:00
|
|
|
// When our parent process forked us, it set our priority either to
|
|
|
|
// FOREGROUND (if our parent launched this process to meet an immediate need)
|
|
|
|
// or one of the BACKGROUND priorities (if our parent launched this process
|
|
|
|
// to meet a future need).
|
|
|
|
//
|
|
|
|
// We don't know which situation we're in, so we set mProcessPriority to -1
|
|
|
|
// so that the next time ResetPriorityNow is run, we'll definitely call into
|
|
|
|
// hal and set our priority.
|
2012-08-04 22:09:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ProcessPriorityManager::Init()
|
|
|
|
{
|
|
|
|
LOG("Starting up.");
|
|
|
|
|
|
|
|
// We can't do this in the constructor because we need to hold a strong ref
|
|
|
|
// to |this| before calling these methods.
|
|
|
|
nsCOMPtr<nsIObserverService> os = services::GetObserverService();
|
|
|
|
os->AddObserver(this, "content-document-global-created", /* ownsWeak = */ false);
|
|
|
|
os->AddObserver(this, "inner-window-destroyed", /* ownsWeak = */ false);
|
2013-01-04 21:03:51 -08:00
|
|
|
os->AddObserver(this, "audio-channel-agent-changed", /* ownsWeak = */ false);
|
2012-08-04 22:09:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ProcessPriorityManager::Observe(
|
|
|
|
nsISupports* aSubject,
|
|
|
|
const char* aTopic,
|
|
|
|
const PRUnichar* aData)
|
|
|
|
{
|
|
|
|
if (!strcmp(aTopic, "content-document-global-created")) {
|
|
|
|
OnContentDocumentGlobalCreated(aSubject);
|
2013-01-26 13:14:01 -08:00
|
|
|
} else if (!strcmp(aTopic, "inner-window-destroyed") ||
|
|
|
|
!strcmp(aTopic, "audio-channel-agent-changed")) {
|
|
|
|
ResetPriority();
|
2012-08-04 22:09:39 -07:00
|
|
|
} else {
|
|
|
|
MOZ_ASSERT(false);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ProcessPriorityManager::HandleEvent(
|
|
|
|
nsIDOMEvent* aEvent)
|
|
|
|
{
|
|
|
|
LOG("Got visibilitychange.");
|
2013-01-26 13:14:01 -08:00
|
|
|
ResetPriority();
|
2012-08-04 22:09:39 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ProcessPriorityManager::OnContentDocumentGlobalCreated(
|
|
|
|
nsISupports* aOuterWindow)
|
|
|
|
{
|
2013-01-26 13:14:01 -08:00
|
|
|
LOG("DocumentGlobalCreated");
|
2012-08-04 22:09:39 -07:00
|
|
|
// Get the inner window (the topic of content-document-global-created is
|
|
|
|
// the /outer/ window!).
|
|
|
|
nsCOMPtr<nsPIDOMWindow> outerWindow = do_QueryInterface(aOuterWindow);
|
2012-09-14 03:00:31 -07:00
|
|
|
NS_ENSURE_TRUE_VOID(outerWindow);
|
2012-08-04 22:09:39 -07:00
|
|
|
nsCOMPtr<nsPIDOMWindow> innerWindow = outerWindow->GetCurrentInnerWindow();
|
2012-09-14 03:00:31 -07:00
|
|
|
NS_ENSURE_TRUE_VOID(innerWindow);
|
2012-08-04 22:09:39 -07:00
|
|
|
|
|
|
|
// We're only interested in top-level windows.
|
|
|
|
nsCOMPtr<nsIDOMWindow> parentOuterWindow;
|
|
|
|
innerWindow->GetScriptableParent(getter_AddRefs(parentOuterWindow));
|
2012-09-14 03:00:31 -07:00
|
|
|
NS_ENSURE_TRUE_VOID(parentOuterWindow);
|
2012-08-04 22:09:39 -07:00
|
|
|
if (parentOuterWindow != outerWindow) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMEventTarget> target = do_QueryInterface(innerWindow);
|
2012-09-14 03:00:31 -07:00
|
|
|
NS_ENSURE_TRUE_VOID(target);
|
2012-08-04 22:09:39 -07:00
|
|
|
|
|
|
|
nsWeakPtr weakWin = do_GetWeakReference(innerWindow);
|
2012-09-14 03:00:31 -07:00
|
|
|
NS_ENSURE_TRUE_VOID(weakWin);
|
2012-08-04 22:09:39 -07:00
|
|
|
|
|
|
|
if (mWindows.Contains(weakWin)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-16 14:22:56 -08:00
|
|
|
target->AddSystemEventListener(NS_LITERAL_STRING("visibilitychange"),
|
2012-08-04 22:09:39 -07:00
|
|
|
this,
|
|
|
|
/* useCapture = */ false,
|
|
|
|
/* wantsUntrusted = */ false);
|
|
|
|
|
|
|
|
mWindows.AppendElement(weakWin);
|
2013-01-26 13:14:01 -08:00
|
|
|
ResetPriority();
|
2012-08-04 22:09:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-26 13:14:01 -08:00
|
|
|
ProcessPriorityManager::ResetPriority()
|
2012-08-04 22:09:39 -07:00
|
|
|
{
|
2013-01-26 13:14:01 -08:00
|
|
|
if (ComputeIsInForeground()) {
|
|
|
|
SetIsForeground();
|
|
|
|
} else if (IsBackgroundPriority(mProcessPriority)) {
|
|
|
|
// If we're already in the background, recompute our background priority
|
|
|
|
// and set it immediately.
|
|
|
|
SetIsBackgroundNow();
|
|
|
|
} else {
|
|
|
|
ScheduleResetPriority("backgroundGracePeriodMS");
|
|
|
|
}
|
2012-08-04 22:09:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-26 13:14:01 -08:00
|
|
|
ProcessPriorityManager::ResetPriorityNow()
|
|
|
|
{
|
|
|
|
if (ComputeIsInForeground()) {
|
|
|
|
SetIsForeground();
|
|
|
|
} else {
|
|
|
|
SetIsBackgroundNow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ProcessPriorityManager::ComputeIsInForeground()
|
2012-08-04 22:09:39 -07:00
|
|
|
{
|
|
|
|
// We could try to be clever and count the number of visible windows, instead
|
|
|
|
// of iterating over mWindows every time one window's visibility state changes.
|
|
|
|
// But experience suggests that iterating over the windows is prone to fewer
|
|
|
|
// errors (and one mistake doesn't mess you up for the entire session).
|
|
|
|
// Moreover, mWindows should be a very short list, since it contains only
|
|
|
|
// top-level content windows.
|
|
|
|
|
|
|
|
bool allHidden = true;
|
2012-08-22 08:56:38 -07:00
|
|
|
for (uint32_t i = 0; i < mWindows.Length(); i++) {
|
2012-08-04 22:09:39 -07:00
|
|
|
nsCOMPtr<nsIDOMWindow> window = do_QueryReferent(mWindows[i]);
|
|
|
|
if (!window) {
|
|
|
|
mWindows.RemoveElementAt(i);
|
|
|
|
i--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocument> doc;
|
|
|
|
window->GetDocument(getter_AddRefs(doc));
|
|
|
|
if (!doc) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hidden = false;
|
2012-11-16 14:22:56 -08:00
|
|
|
doc->GetHidden(&hidden);
|
2012-08-04 22:09:39 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
nsAutoString spec;
|
|
|
|
doc->GetDocumentURI(spec);
|
|
|
|
LOG("Document at %s has visibility %d.", NS_ConvertUTF16toUTF8(spec).get(), !hidden);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
allHidden = allHidden && hidden;
|
|
|
|
|
|
|
|
// We could break out early from this loop if
|
|
|
|
// !hidden && mProcessPriority == BACKGROUND,
|
|
|
|
// but then we might not clean up all the weak refs.
|
|
|
|
}
|
|
|
|
|
2013-01-26 13:14:01 -08:00
|
|
|
return !allHidden;
|
2012-08-04 22:09:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-26 13:14:01 -08:00
|
|
|
ProcessPriorityManager::SetIsForeground()
|
2012-08-04 22:09:39 -07:00
|
|
|
{
|
2013-01-26 13:14:01 -08:00
|
|
|
if (mProcessPriority == PROCESS_PRIORITY_FOREGROUND) {
|
2012-08-04 22:09:39 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-26 13:14:01 -08:00
|
|
|
// Cancel the memory minimization procedure we might have started.
|
|
|
|
nsCOMPtr<nsICancelableRunnable> runnable =
|
|
|
|
do_QueryReferent(mMemoryMinimizerRunnable);
|
|
|
|
if (runnable) {
|
|
|
|
runnable->Cancel();
|
2012-08-04 22:09:39 -07:00
|
|
|
}
|
2013-01-26 13:14:01 -08:00
|
|
|
|
|
|
|
mProcessPriority = PROCESS_PRIORITY_FOREGROUND;
|
2013-02-08 06:32:23 -08:00
|
|
|
LOG("Setting priority to %s.", ProcessPriorityToString(mProcessPriority));
|
2013-01-26 13:14:01 -08:00
|
|
|
hal::SetProcessPriority(getpid(), PROCESS_PRIORITY_FOREGROUND);
|
2012-08-04 22:09:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-26 13:14:01 -08:00
|
|
|
ProcessPriorityManager::SetIsBackgroundNow()
|
2012-08-04 22:09:39 -07:00
|
|
|
{
|
2013-01-26 13:14:01 -08:00
|
|
|
ProcessPriority backgroundPriority = GetBackgroundPriority();
|
|
|
|
if (mProcessPriority == backgroundPriority) {
|
|
|
|
return;
|
|
|
|
}
|
2012-08-04 22:09:39 -07:00
|
|
|
|
2013-01-26 13:14:01 -08:00
|
|
|
mProcessPriority = backgroundPriority;
|
2013-02-08 06:32:23 -08:00
|
|
|
LOG("Setting priority to %s", ProcessPriorityToString(mProcessPriority));
|
2012-12-18 18:37:35 -08:00
|
|
|
hal::SetProcessPriority(getpid(), mProcessPriority);
|
2012-10-22 12:40:19 -07:00
|
|
|
|
|
|
|
// We're in the background; dump as much memory as we can.
|
|
|
|
nsCOMPtr<nsIMemoryReporterManager> mgr =
|
|
|
|
do_GetService("@mozilla.org/memory-reporter-manager;1");
|
|
|
|
if (mgr) {
|
2012-12-11 10:13:29 -08:00
|
|
|
nsCOMPtr<nsICancelableRunnable> runnable =
|
|
|
|
do_QueryReferent(mMemoryMinimizerRunnable);
|
|
|
|
|
|
|
|
// Cancel the previous task if it's still pending
|
|
|
|
if (runnable) {
|
|
|
|
runnable->Cancel();
|
|
|
|
}
|
|
|
|
|
|
|
|
mgr->MinimizeMemoryUsage(/* callback = */ nullptr,
|
|
|
|
getter_AddRefs(runnable));
|
|
|
|
mMemoryMinimizerRunnable = do_GetWeakReference(runnable);
|
2012-10-22 12:40:19 -07:00
|
|
|
}
|
2012-08-04 22:09:39 -07:00
|
|
|
}
|
|
|
|
|
2013-01-26 13:14:01 -08:00
|
|
|
void
|
|
|
|
ProcessPriorityManager::ScheduleResetPriority(const char* aTimeoutPref)
|
|
|
|
{
|
|
|
|
if (mResetPriorityTimer) {
|
|
|
|
// The timer is already running.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t timeout = Preferences::GetUint(
|
|
|
|
nsPrintfCString("dom.ipc.processPriorityManager.%s", aTimeoutPref).get());
|
|
|
|
LOG("Scheduling reset timer to fire in %dms.", timeout);
|
|
|
|
mResetPriorityTimer = do_CreateInstance("@mozilla.org/timer;1");
|
|
|
|
mResetPriorityTimer->InitWithCallback(this, timeout, nsITimer::TYPE_ONE_SHOT);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ProcessPriorityManager::Notify(nsITimer* aTimer)
|
|
|
|
{
|
|
|
|
LOG("Reset priority timer callback; about to ResetPriorityNow.");
|
|
|
|
ResetPriorityNow();
|
|
|
|
mResetPriorityTimer = nullptr;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ProcessPriorityManager::TemporarilySetIsForeground()
|
|
|
|
{
|
|
|
|
LOG("TemporarilySetIsForeground");
|
|
|
|
SetIsForeground();
|
|
|
|
|
|
|
|
// Each call to TemporarilySetIsForeground guarantees us temporaryPriorityMS
|
|
|
|
// in the foreground. So cancel our timer if it's running (which is due to a
|
|
|
|
// previous call to either TemporarilySetIsForeground() or ResetPriority()).
|
|
|
|
if (mResetPriorityTimer) {
|
|
|
|
mResetPriorityTimer->Cancel();
|
|
|
|
mResetPriorityTimer = nullptr;
|
|
|
|
}
|
|
|
|
ScheduleResetPriority("temporaryPriorityMS");
|
|
|
|
}
|
|
|
|
|
2012-08-04 22:09:39 -07:00
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
void
|
|
|
|
InitProcessPriorityManager()
|
|
|
|
{
|
|
|
|
if (sInitialized) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If IPC tabs aren't enabled at startup, don't bother with any of this.
|
|
|
|
if (!Preferences::GetBool("dom.ipc.processPriorityManager.enabled") ||
|
|
|
|
Preferences::GetBool("dom.ipc.tabs.disabled")) {
|
2013-01-26 13:14:01 -08:00
|
|
|
LOG("InitProcessPriorityManager bailing due to prefs.");
|
2012-08-04 22:09:39 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sInitialized = true;
|
|
|
|
|
|
|
|
// If we're the master process, mark ourselves as such and don't create a
|
|
|
|
// ProcessPriorityManager (we never want to mark the master process as
|
|
|
|
// backgrounded).
|
|
|
|
if (XRE_GetProcessType() == GeckoProcessType_Default) {
|
|
|
|
LOG("This is the master process.");
|
|
|
|
hal::SetProcessPriority(getpid(), PROCESS_PRIORITY_MASTER);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-03 15:39:25 -08:00
|
|
|
sManager = new ProcessPriorityManager();
|
|
|
|
sManager->Init();
|
|
|
|
ClearOnShutdown(&sManager);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CurrentProcessIsForeground()
|
|
|
|
{
|
2013-01-07 00:44:22 -08:00
|
|
|
// The process priority manager is the only thing which changes our priority,
|
|
|
|
// so if the manager does not exist, then we must be in the foreground.
|
|
|
|
if (!sManager) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-03 15:39:25 -08:00
|
|
|
return sManager->GetPriority() >= PROCESS_PRIORITY_FOREGROUND;
|
2012-08-04 22:09:39 -07:00
|
|
|
}
|
|
|
|
|
2013-01-26 13:14:01 -08:00
|
|
|
void
|
|
|
|
TemporarilySetProcessPriorityToForeground()
|
|
|
|
{
|
|
|
|
if (sManager) {
|
|
|
|
sManager->TemporarilySetIsForeground();
|
|
|
|
} else {
|
|
|
|
LOG("TemporarilySetProcessPriorityToForeground called before "
|
|
|
|
"InitProcessPriorityManager. Bailing.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-04 22:09:39 -07:00
|
|
|
} // namespace ipc
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|