2016-08-24 17:18:06 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "MainThreadIdlePeriod.h"
|
|
|
|
|
|
|
|
#include "mozilla/Maybe.h"
|
|
|
|
#include "mozilla/Preferences.h"
|
2019-07-26 04:10:23 +03:00
|
|
|
#include "mozilla/StaticPrefs_idle_period.h"
|
2019-07-16 15:07:49 +03:00
|
|
|
#include "mozilla/dom/Document.h"
|
2016-08-24 17:18:06 +03:00
|
|
|
#include "nsRefreshDriver.h"
|
2017-05-25 04:12:55 +03:00
|
|
|
#include "nsThreadUtils.h"
|
2016-08-24 17:18:06 +03:00
|
|
|
|
2017-11-07 23:54:16 +03:00
|
|
|
// The amount of idle time (milliseconds) reserved for a long idle period.
|
|
|
|
static const double kLongIdlePeriodMS = 50.0;
|
2017-05-25 04:14:29 +03:00
|
|
|
|
2017-11-07 23:54:16 +03:00
|
|
|
// The minimum amount of time (milliseconds) required for an idle period to be
|
|
|
|
// scheduled on the main thread. N.B. layout.idle_period.time_limit adds
|
|
|
|
// padding at the end of the idle period, which makes the point in time that we
|
|
|
|
// expect to become busy again be:
|
2019-07-17 12:19:44 +03:00
|
|
|
// now + idle_period.min + layout.idle_period.time_limit
|
|
|
|
// or during page load
|
|
|
|
// now + idle_period.during_page_load.min + layout.idle_period.time_limit
|
2017-11-07 23:54:16 +03:00
|
|
|
|
|
|
|
static const uint32_t kMaxTimerThreadBound = 5; // milliseconds
|
|
|
|
static const uint32_t kMaxTimerThreadBoundClamp = 15; // milliseconds
|
2016-08-24 17:18:06 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
MainThreadIdlePeriod::GetIdlePeriodHint(TimeStamp* aIdleDeadline) {
|
2016-11-03 20:47:23 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2016-08-24 17:18:06 +03:00
|
|
|
MOZ_ASSERT(aIdleDeadline);
|
|
|
|
|
2017-05-25 04:11:12 +03:00
|
|
|
TimeStamp now = TimeStamp::Now();
|
|
|
|
TimeStamp currentGuess =
|
2017-11-07 23:54:16 +03:00
|
|
|
now + TimeDuration::FromMilliseconds(kLongIdlePeriodMS);
|
2017-05-25 04:11:12 +03:00
|
|
|
|
|
|
|
currentGuess = nsRefreshDriver::GetIdleDeadlineHint(currentGuess);
|
2017-11-07 23:54:16 +03:00
|
|
|
currentGuess = NS_GetTimerDeadlineHintOnCurrentThread(currentGuess,
|
|
|
|
kMaxTimerThreadBound);
|
2017-05-25 04:12:55 +03:00
|
|
|
|
2017-05-25 04:11:12 +03:00
|
|
|
// If the idle period is too small, then just return a null time
|
|
|
|
// to indicate we are busy. Otherwise return the actual deadline.
|
2019-07-17 12:19:44 +03:00
|
|
|
TimeDuration minIdlePeriod =
|
|
|
|
TimeDuration::FromMilliseconds(StaticPrefs::idle_period_min());
|
2017-05-25 04:11:12 +03:00
|
|
|
bool busySoon = currentGuess.IsNull() ||
|
|
|
|
(now >= (currentGuess - minIdlePeriod)) ||
|
2017-05-25 04:12:55 +03:00
|
|
|
currentGuess < mLastIdleDeadline;
|
2017-05-25 04:11:12 +03:00
|
|
|
|
2019-07-16 15:07:49 +03:00
|
|
|
// During page load use higher minimum idle period.
|
|
|
|
if (!busySoon && XRE_IsContentProcess() &&
|
|
|
|
mozilla::dom::Document::HasRecentlyStartedForegroundLoads()) {
|
2019-07-17 12:19:44 +03:00
|
|
|
TimeDuration minIdlePeriod = TimeDuration::FromMilliseconds(
|
|
|
|
StaticPrefs::idle_period_during_page_load_min());
|
2019-07-16 15:07:49 +03:00
|
|
|
busySoon = (now >= (currentGuess - minIdlePeriod));
|
|
|
|
}
|
|
|
|
|
2017-05-25 04:11:12 +03:00
|
|
|
if (!busySoon) {
|
2017-05-25 04:12:55 +03:00
|
|
|
*aIdleDeadline = mLastIdleDeadline = currentGuess;
|
2016-08-24 17:18:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:14:01 +03:00
|
|
|
/* static */
|
|
|
|
float MainThreadIdlePeriod::GetLongIdlePeriod() { return kLongIdlePeriodMS; }
|
2017-05-25 04:14:29 +03:00
|
|
|
|
2016-08-24 17:18:06 +03:00
|
|
|
} // namespace mozilla
|