260 lines
8.8 KiB
C++
260 lines
8.8 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
|
|
/* 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 "FOGIPC.h"
|
|
|
|
#include "mozilla/glean/fog_ffi_generated.h"
|
|
#include "mozilla/glean/GleanMetrics.h"
|
|
#include "mozilla/dom/ContentChild.h"
|
|
#include "mozilla/dom/ContentParent.h"
|
|
#include "mozilla/dom/Promise.h"
|
|
#include "mozilla/gfx/GPUChild.h"
|
|
#include "mozilla/gfx/GPUParent.h"
|
|
#include "mozilla/gfx/GPUProcessManager.h"
|
|
#include "mozilla/MozPromise.h"
|
|
#include "mozilla/net/SocketProcessChild.h"
|
|
#include "mozilla/net/SocketProcessParent.h"
|
|
#include "mozilla/ProcInfo.h"
|
|
#include "mozilla/RDDChild.h"
|
|
#include "mozilla/RDDParent.h"
|
|
#include "mozilla/RDDProcessManager.h"
|
|
#include "mozilla/Unused.h"
|
|
#include "GMPPlatform.h"
|
|
#include "GMPServiceParent.h"
|
|
#include "nsIXULRuntime.h"
|
|
#include "nsTArray.h"
|
|
#include "nsThreadUtils.h"
|
|
|
|
using mozilla::dom::ContentParent;
|
|
using mozilla::gfx::GPUChild;
|
|
using mozilla::gfx::GPUProcessManager;
|
|
using mozilla::ipc::ByteBuf;
|
|
using FlushFOGDataPromise = mozilla::dom::ContentParent::FlushFOGDataPromise;
|
|
|
|
namespace mozilla {
|
|
namespace glean {
|
|
|
|
static void RecordPowerMetrics() {
|
|
static uint64_t previousCpuTime = 0, previousGpuTime = 0;
|
|
|
|
uint64_t cpuTime;
|
|
if (NS_FAILED(GetCpuTimeSinceProcessStartInMs(&cpuTime))) {
|
|
return;
|
|
}
|
|
|
|
uint64_t newCpuTime = cpuTime - previousCpuTime;
|
|
previousCpuTime += newCpuTime;
|
|
|
|
if (newCpuTime) {
|
|
// The counters are reset at least once a day. Assuming all cores are used
|
|
// continuously, an int32 can hold the data for 24.85 cores.
|
|
// This should be fine for now, but may overflow in the future.
|
|
power::total_cpu_time_ms.Add(int32_t(newCpuTime));
|
|
}
|
|
|
|
uint64_t gpuTime;
|
|
if (NS_SUCCEEDED(GetGpuTimeSinceProcessStartInMs(&gpuTime))) {
|
|
uint64_t newGpuTime = gpuTime - previousGpuTime;
|
|
previousGpuTime += newGpuTime;
|
|
|
|
if (newGpuTime) {
|
|
power::total_gpu_time_ms.Add(int32_t(newGpuTime));
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Flush your data ASAP, either because the parent process is asking you to
|
|
* or because the process is about to shutdown.
|
|
*
|
|
* @param aResolver - The function you need to call with the bincoded,
|
|
* serialized payload that the Rust impl hands you.
|
|
*/
|
|
void FlushFOGData(std::function<void(ipc::ByteBuf&&)>&& aResolver) {
|
|
// Record power metrics right before data is sent to the parent.
|
|
RecordPowerMetrics();
|
|
|
|
ByteBuf buf;
|
|
uint32_t ipcBufferSize = impl::fog_serialize_ipc_buf();
|
|
bool ok = buf.Allocate(ipcBufferSize);
|
|
if (!ok) {
|
|
return;
|
|
}
|
|
uint32_t writtenLen = impl::fog_give_ipc_buf(buf.mData, buf.mLen);
|
|
if (writtenLen != ipcBufferSize) {
|
|
return;
|
|
}
|
|
aResolver(std::move(buf));
|
|
}
|
|
|
|
/**
|
|
* Called by FOG on the parent process when it wants to flush all its
|
|
* children's data.
|
|
* @param aResolver - The function that'll be called with the results.
|
|
*/
|
|
void FlushAllChildData(
|
|
std::function<void(nsTArray<ipc::ByteBuf>&&)>&& aResolver) {
|
|
auto timerId = fog_ipc::flush_durations.Start();
|
|
|
|
nsTArray<ContentParent*> parents;
|
|
ContentParent::GetAll(parents);
|
|
nsTArray<RefPtr<FlushFOGDataPromise>> promises;
|
|
for (auto* parent : parents) {
|
|
promises.EmplaceBack(parent->SendFlushFOGData());
|
|
}
|
|
|
|
if (GPUProcessManager* gpuManager = GPUProcessManager::Get()) {
|
|
if (GPUChild* gpuChild = gpuManager->GetGPUChild()) {
|
|
promises.EmplaceBack(gpuChild->SendFlushFOGData());
|
|
}
|
|
}
|
|
|
|
if (RDDProcessManager* rddManager = RDDProcessManager::Get()) {
|
|
if (RDDChild* rddChild = rddManager->GetRDDChild()) {
|
|
promises.EmplaceBack(rddChild->SendFlushFOGData());
|
|
}
|
|
}
|
|
|
|
if (net::SocketProcessParent* socketParent =
|
|
net::SocketProcessParent::GetSingleton()) {
|
|
promises.EmplaceBack(socketParent->SendFlushFOGData());
|
|
}
|
|
|
|
{
|
|
RefPtr<gmp::GeckoMediaPluginServiceParent> gmps(
|
|
gmp::GeckoMediaPluginServiceParent::GetSingleton());
|
|
// There can be multiple Gecko Media Plugin processes, but iterating
|
|
// through them requires locking a mutex and the IPCs need to be sent
|
|
// from a different thread, so it's better to let the
|
|
// GeckoMediaPluginServiceParent code do it for us.
|
|
gmps->SendFlushFOGData(promises);
|
|
}
|
|
|
|
if (promises.Length() == 0) {
|
|
// No child processes at the moment. Resolve synchronously.
|
|
fog_ipc::flush_durations.Cancel(std::move(timerId));
|
|
nsTArray<ipc::ByteBuf> results;
|
|
aResolver(std::move(results));
|
|
return;
|
|
}
|
|
|
|
// If fog.ipc.flush_failures ever gets too high:
|
|
// TODO: Don't throw away resolved data if some of the promises reject.
|
|
// (not sure how, but it'll mean not using ::All... maybe a custom copy of
|
|
// AllPromiseHolder? Might be impossible outside MozPromise.h)
|
|
FlushFOGDataPromise::All(GetCurrentSerialEventTarget(), promises)
|
|
->Then(GetCurrentSerialEventTarget(), __func__,
|
|
[aResolver = std::move(aResolver), timerId](
|
|
FlushFOGDataPromise::AllPromiseType::ResolveOrRejectValue&&
|
|
aValue) {
|
|
fog_ipc::flush_durations.StopAndAccumulate(std::move(timerId));
|
|
if (aValue.IsResolve()) {
|
|
aResolver(std::move(aValue.ResolveValue()));
|
|
} else {
|
|
fog_ipc::flush_failures.Add(1);
|
|
nsTArray<ipc::ByteBuf> results;
|
|
aResolver(std::move(results));
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* A child process has sent you this buf as a treat.
|
|
* @param buf - a bincoded serialized payload that the Rust impl understands.
|
|
*/
|
|
void FOGData(ipc::ByteBuf&& buf) {
|
|
fog_ipc::buffer_sizes.Accumulate(buf.mLen);
|
|
impl::fog_use_ipc_buf(buf.mData, buf.mLen);
|
|
}
|
|
|
|
/**
|
|
* Called by FOG on a child process when it wants to send a buf to the parent.
|
|
* @param buf - a bincoded serialized payload that the Rust impl understands.
|
|
*/
|
|
void SendFOGData(ipc::ByteBuf&& buf) {
|
|
switch (XRE_GetProcessType()) {
|
|
case GeckoProcessType_Content:
|
|
mozilla::dom::ContentChild::GetSingleton()->SendFOGData(std::move(buf));
|
|
break;
|
|
case GeckoProcessType_GMPlugin: {
|
|
gmp::SendFOGData(std::move(buf));
|
|
} break;
|
|
case GeckoProcessType_GPU:
|
|
Unused << mozilla::gfx::GPUParent::GetSingleton()->SendFOGData(
|
|
std::move(buf));
|
|
break;
|
|
case GeckoProcessType_RDD:
|
|
Unused << mozilla::RDDParent::GetSingleton()->SendFOGData(std::move(buf));
|
|
break;
|
|
case GeckoProcessType_Socket:
|
|
Unused << net::SocketProcessChild::GetSingleton()->SendFOGData(
|
|
std::move(buf));
|
|
break;
|
|
default:
|
|
MOZ_ASSERT_UNREACHABLE("Unsuppored process type");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Called on the parent process to ask all child processes for data,
|
|
* sending it all down into Rust to be used.
|
|
*/
|
|
RefPtr<GenericPromise> FlushAndUseFOGData() {
|
|
// Record power metrics on the parent before sending requests to child
|
|
// processes.
|
|
RecordPowerMetrics();
|
|
|
|
RefPtr<GenericPromise::Private> ret = new GenericPromise::Private(__func__);
|
|
std::function<void(nsTArray<ByteBuf> &&)> resolver =
|
|
[ret](nsTArray<ByteBuf>&& bufs) {
|
|
for (ByteBuf& buf : bufs) {
|
|
FOGData(std::move(buf));
|
|
}
|
|
ret->Resolve(true, __func__);
|
|
};
|
|
FlushAllChildData(std::move(resolver));
|
|
return ret;
|
|
}
|
|
|
|
void TestTriggerMetrics(uint32_t aProcessType,
|
|
const RefPtr<dom::Promise>& promise) {
|
|
switch (aProcessType) {
|
|
case nsIXULRuntime::PROCESS_TYPE_GMPLUGIN: {
|
|
RefPtr<gmp::GeckoMediaPluginServiceParent> gmps(
|
|
gmp::GeckoMediaPluginServiceParent::GetSingleton());
|
|
gmps->TestTriggerMetrics()->Then(
|
|
GetCurrentSerialEventTarget(), __func__,
|
|
[promise]() { promise->MaybeResolveWithUndefined(); },
|
|
[promise]() { promise->MaybeRejectWithUndefined(); });
|
|
} break;
|
|
case nsIXULRuntime::PROCESS_TYPE_GPU:
|
|
gfx::GPUProcessManager::Get()->TestTriggerMetrics()->Then(
|
|
GetCurrentSerialEventTarget(), __func__,
|
|
[promise]() { promise->MaybeResolveWithUndefined(); },
|
|
[promise]() { promise->MaybeRejectWithUndefined(); });
|
|
break;
|
|
case nsIXULRuntime::PROCESS_TYPE_RDD:
|
|
RDDProcessManager::Get()->TestTriggerMetrics()->Then(
|
|
GetCurrentSerialEventTarget(), __func__,
|
|
[promise]() { promise->MaybeResolveWithUndefined(); },
|
|
[promise]() { promise->MaybeRejectWithUndefined(); });
|
|
break;
|
|
case nsIXULRuntime::PROCESS_TYPE_SOCKET:
|
|
Unused << net::SocketProcessParent::GetSingleton()
|
|
->SendTestTriggerMetrics()
|
|
->Then(
|
|
GetCurrentSerialEventTarget(), __func__,
|
|
[promise]() { promise->MaybeResolveWithUndefined(); },
|
|
[promise]() { promise->MaybeRejectWithUndefined(); });
|
|
break;
|
|
default:
|
|
promise->MaybeRejectWithUndefined();
|
|
break;
|
|
}
|
|
}
|
|
|
|
} // namespace glean
|
|
} // namespace mozilla
|