1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
/* -*- 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 "GeckoViewStreamingTelemetry.h"
#include "mozilla/Assertions.h"
#include "mozilla/Services.h"
#include "mozilla/StaticMutex.h"
#include "mozilla/StaticPtr.h"
#include "mozilla/StaticPrefs_toolkit.h"
#include "mozilla/TimeStamp.h"
#include "nsTHashMap.h"
#include "nsIObserver.h"
#include "nsIObserverService.h"
#include "nsITimer.h"
#include "nsTArray.h"
#include "nsThreadUtils.h"
using mozilla::Runnable;
using mozilla::StaticMutex;
using mozilla::StaticMutexAutoLock;
using mozilla::StaticRefPtr;
using mozilla::TimeStamp;
// Batches and streams Telemetry samples to a JNI delegate which will
// (presumably) do something with the data. Expected to be used to route data
// up to the Android Components layer to be translated into Glean metrics.
namespace GeckoViewStreamingTelemetry {
class LifecycleObserver;
void SendBatch(const StaticMutexAutoLock& aLock);
// Topic on which we flush the batch.
static const char* const kApplicationBackgroundTopic = "application-background";
static StaticMutex gMutex MOZ_UNANNOTATED;
// -- The following state is accessed across threads.
// -- Do not touch these if you do not hold gMutex.
// The time the batch began.
TimeStamp gBatchBegan;
// The batch of histograms and samples.
typedef nsTHashMap<nsCStringHashKey, nsTArray<uint32_t>> HistogramBatch;
HistogramBatch gBatch;
HistogramBatch gCategoricalBatch;
// The batches of Scalars and their values.
typedef nsTHashMap<nsCStringHashKey, bool> BoolScalarBatch;
BoolScalarBatch gBoolScalars;
typedef nsTHashMap<nsCStringHashKey, nsCString> StringScalarBatch;
StringScalarBatch gStringScalars;
typedef nsTHashMap<nsCStringHashKey, uint32_t> UintScalarBatch;
UintScalarBatch gUintScalars;
// The delegate to receive the samples and values.
StaticRefPtr<StreamingTelemetryDelegate> gDelegate;
// Lifecycle observer used to flush the batch when backgrounded.
StaticRefPtr<LifecycleObserver> gObserver;
// -- End of gMutex-protected thread-unsafe-accessed data
// Timer that ensures data in the batch never gets too stale.
// This timer may only be manipulated on the Main Thread.
StaticRefPtr<nsITimer> gJICTimer;
class LifecycleObserver final : public nsIObserver {
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIOBSERVER
LifecycleObserver() = default;
protected:
~LifecycleObserver() = default;
};
NS_IMPL_ISUPPORTS(LifecycleObserver, nsIObserver);
NS_IMETHODIMP
LifecycleObserver::Observe(nsISupports* aSubject, const char* aTopic,
const char16_t* aData) {
if (!strcmp(aTopic, kApplicationBackgroundTopic)) {
StaticMutexAutoLock lock(gMutex);
SendBatch(lock);
}
return NS_OK;
}
void RegisterDelegate(const RefPtr<StreamingTelemetryDelegate>& aDelegate) {
StaticMutexAutoLock lock(gMutex);
gDelegate = aDelegate;
}
class SendBatchRunnable : public Runnable {
public:
explicit SendBatchRunnable(RefPtr<StreamingTelemetryDelegate> aDelegate,
HistogramBatch&& aBatch,
HistogramBatch&& aCategoricalBatch,
BoolScalarBatch&& aBoolScalars,
StringScalarBatch&& aStringScalars,
UintScalarBatch&& aUintScalars)
: Runnable("SendBatchRunnable"),
mDelegate(std::move(aDelegate)),
mBatch(std::move(aBatch)),
mCategoricalBatch(std::move(aCategoricalBatch)),
mBoolScalars(std::move(aBoolScalars)),
mStringScalars(std::move(aStringScalars)),
mUintScalars(std::move(aUintScalars)) {}
NS_IMETHOD Run() override {
MOZ_ASSERT(NS_IsMainThread());
MOZ_ASSERT(mDelegate);
if (gJICTimer) {
gJICTimer->Cancel();
}
for (const auto& entry : mBatch) {
const nsCString& histogramName = PromiseFlatCString(entry.GetKey());
const nsTArray<uint32_t>& samples = entry.GetData();
mDelegate->ReceiveHistogramSamples(histogramName, samples);
}
mBatch.Clear();
for (const auto& entry : mCategoricalBatch) {
const nsCString& histogramName = PromiseFlatCString(entry.GetKey());
const nsTArray<uint32_t>& samples = entry.GetData();
mDelegate->ReceiveCategoricalHistogramSamples(histogramName, samples);
}
mCategoricalBatch.Clear();
for (const auto& entry : mBoolScalars) {
const nsCString& scalarName = PromiseFlatCString(entry.GetKey());
mDelegate->ReceiveBoolScalarValue(scalarName, entry.GetData());
}
mBoolScalars.Clear();
for (const auto& entry : mStringScalars) {
const nsCString& scalarName = PromiseFlatCString(entry.GetKey());
const nsCString& scalarValue = PromiseFlatCString(entry.GetData());
mDelegate->ReceiveStringScalarValue(scalarName, scalarValue);
}
mStringScalars.Clear();
for (const auto& entry : mUintScalars) {
const nsCString& scalarName = PromiseFlatCString(entry.GetKey());
mDelegate->ReceiveUintScalarValue(scalarName, entry.GetData());
}
mUintScalars.Clear();
return NS_OK;
}
private:
RefPtr<StreamingTelemetryDelegate> mDelegate;
HistogramBatch mBatch;
HistogramBatch mCategoricalBatch;
BoolScalarBatch mBoolScalars;
StringScalarBatch mStringScalars;
UintScalarBatch mUintScalars;
}; // class SendBatchRunnable
// Can be called on any thread.
// NOTE: Pay special attention to what you call in this method as if it
// accumulates to a gv-streaming-enabled probe we will deadlock the calling
// thread.
void SendBatch(const StaticMutexAutoLock& aLock) {
if (!gDelegate) {
NS_WARNING(
"Being asked to send Streaming Telemetry with no registered Streaming "
"Telemetry Delegate. Will try again later.");
// Give us another full Batch Duration to register a delegate.
gBatchBegan = TimeStamp::Now();
return;
}
// To make it so accumulations within the delegation don't deadlock us,
// move the batches' contents into the Runner.
HistogramBatch histogramCopy;
gBatch.SwapElements(histogramCopy);
HistogramBatch categoricalCopy;
gCategoricalBatch.SwapElements(categoricalCopy);
BoolScalarBatch boolScalarCopy;
gBoolScalars.SwapElements(boolScalarCopy);
StringScalarBatch stringScalarCopy;
gStringScalars.SwapElements(stringScalarCopy);
UintScalarBatch uintScalarCopy;
gUintScalars.SwapElements(uintScalarCopy);
RefPtr<SendBatchRunnable> runnable = new SendBatchRunnable(
gDelegate, std::move(histogramCopy), std::move(categoricalCopy),
std::move(boolScalarCopy), std::move(stringScalarCopy),
std::move(uintScalarCopy));
// To make things easier for the delegate, dispatch to the main thread.
NS_DispatchToMainThread(runnable);
}
// Can be called on any thread.
void BatchCheck(const StaticMutexAutoLock& aLock) {
if (!gObserver) {
gObserver = new LifecycleObserver();
nsCOMPtr<nsIObserverService> os = mozilla::services::GetObserverService();
if (os) {
os->AddObserver(gObserver, kApplicationBackgroundTopic, false);
}
}
if (gBatchBegan.IsNull()) {
// Time to begin a new batch.
gBatchBegan = TimeStamp::Now();
// Set a just-in-case timer to enforce an upper-bound on batch staleness.
NS_DispatchToMainThread(NS_NewRunnableFunction(
"GeckoviewStreamingTelemetry::ArmTimer", []() -> void {
if (!gJICTimer) {
gJICTimer = NS_NewTimer().take();
}
if (gJICTimer) {
gJICTimer->InitWithNamedFuncCallback(
[](nsITimer*, void*) -> void {
StaticMutexAutoLock locker(gMutex);
SendBatch(locker);
},
nullptr,
mozilla::StaticPrefs::
toolkit_telemetry_geckoview_maxBatchStalenessMS(),
nsITimer::TYPE_ONE_SHOT_LOW_PRIORITY,
"GeckoviewStreamingTelemetry::SendBatch");
}
}));
}
double batchDurationMs = (TimeStamp::Now() - gBatchBegan).ToMilliseconds();
if (batchDurationMs >
mozilla::StaticPrefs::toolkit_telemetry_geckoview_batchDurationMS()) {
SendBatch(aLock);
gBatchBegan = TimeStamp();
}
}
// Can be called on any thread.
void HistogramAccumulate(const nsCString& aName, bool aIsCategorical,
uint32_t aValue) {
StaticMutexAutoLock lock(gMutex);
if (aIsCategorical) {
nsTArray<uint32_t>& samples = gCategoricalBatch.LookupOrInsert(aName);
samples.AppendElement(aValue);
} else {
nsTArray<uint32_t>& samples = gBatch.LookupOrInsert(aName);
samples.AppendElement(aValue);
}
BatchCheck(lock);
}
void BoolScalarSet(const nsCString& aName, bool aValue) {
StaticMutexAutoLock lock(gMutex);
gBoolScalars.InsertOrUpdate(aName, aValue);
BatchCheck(lock);
}
void StringScalarSet(const nsCString& aName, const nsCString& aValue) {
StaticMutexAutoLock lock(gMutex);
gStringScalars.InsertOrUpdate(aName, aValue);
BatchCheck(lock);
}
void UintScalarSet(const nsCString& aName, uint32_t aValue) {
StaticMutexAutoLock lock(gMutex);
gUintScalars.InsertOrUpdate(aName, aValue);
BatchCheck(lock);
}
} // namespace GeckoViewStreamingTelemetry
|