2011-04-27 18:07:02 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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-04-27 18:07:02 +00:00
|
|
|
|
2012-08-21 21:14:38 +00:00
|
|
|
#include <algorithm>
|
2012-12-14 23:58:45 +00:00
|
|
|
|
2013-01-15 23:55:35 +00:00
|
|
|
#ifdef XP_MACOSX
|
2013-01-08 14:04:37 +00:00
|
|
|
#include <fstream>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <prio.h>
|
|
|
|
|
2012-12-14 23:58:45 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "mozilla/DebugOnly.h"
|
|
|
|
#include "mozilla/Likely.h"
|
|
|
|
|
2011-04-27 18:07:02 +00:00
|
|
|
#include "base/histogram.h"
|
2011-12-09 20:15:53 +00:00
|
|
|
#include "base/pickle.h"
|
2011-04-27 18:07:02 +00:00
|
|
|
#include "nsIComponentManager.h"
|
|
|
|
#include "nsIServiceManager.h"
|
2013-01-07 19:45:25 +00:00
|
|
|
#include "nsCOMArray.h"
|
2011-04-27 18:07:02 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2013-01-08 14:04:37 +00:00
|
|
|
#include "nsXPCOMPrivate.h"
|
2011-04-27 18:07:02 +00:00
|
|
|
#include "mozilla/ModuleUtils.h"
|
|
|
|
#include "nsIXPConnect.h"
|
|
|
|
#include "mozilla/Services.h"
|
2012-06-15 22:21:56 +00:00
|
|
|
#include "jsapi.h"
|
|
|
|
#include "jsfriendapi.h"
|
2011-04-27 18:07:02 +00:00
|
|
|
#include "nsStringGlue.h"
|
|
|
|
#include "nsITelemetry.h"
|
2011-12-09 20:15:53 +00:00
|
|
|
#include "nsIFile.h"
|
2012-10-05 16:19:14 +00:00
|
|
|
#include "nsIMemoryReporter.h"
|
2011-06-20 21:47:58 +00:00
|
|
|
#include "Telemetry.h"
|
2011-06-20 21:48:03 +00:00
|
|
|
#include "nsTHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsBaseHashtable.h"
|
2011-05-22 06:23:20 +00:00
|
|
|
#include "nsXULAppAPI.h"
|
2011-12-06 20:12:55 +00:00
|
|
|
#include "nsThreadUtils.h"
|
2012-12-14 04:13:03 +00:00
|
|
|
#include "nsNetCID.h"
|
2012-12-13 17:06:27 +00:00
|
|
|
#include "plstr.h"
|
|
|
|
#include "nsAppDirectoryServiceDefs.h"
|
2012-08-21 21:14:38 +00:00
|
|
|
#include "mozilla/ProcessedStack.h"
|
2011-12-06 20:12:55 +00:00
|
|
|
#include "mozilla/Mutex.h"
|
2011-12-09 20:15:53 +00:00
|
|
|
#include "mozilla/FileUtils.h"
|
2012-03-21 17:26:48 +00:00
|
|
|
#include "mozilla/Preferences.h"
|
2012-12-13 17:06:27 +00:00
|
|
|
#include "mozilla/mozPoisonWrite.h"
|
2011-04-27 18:07:02 +00:00
|
|
|
|
2011-05-20 02:33:05 +00:00
|
|
|
namespace {
|
|
|
|
|
2011-04-27 18:07:02 +00:00
|
|
|
using namespace base;
|
2011-06-20 21:47:58 +00:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2012-02-13 19:47:40 +00:00
|
|
|
template<class EntryType>
|
|
|
|
class AutoHashtable : public nsTHashtable<EntryType>
|
|
|
|
{
|
|
|
|
public:
|
2012-05-16 11:39:21 +00:00
|
|
|
AutoHashtable(uint32_t initSize = PL_DHASH_MIN_SIZE);
|
2012-02-13 19:47:40 +00:00
|
|
|
~AutoHashtable();
|
|
|
|
typedef bool (*ReflectEntryFunc)(EntryType *entry, JSContext *cx, JSObject *obj);
|
2012-06-18 20:20:52 +00:00
|
|
|
bool ReflectIntoJS(ReflectEntryFunc entryFunc, JSContext *cx, JSObject *obj);
|
2012-02-13 19:47:40 +00:00
|
|
|
private:
|
|
|
|
struct EnumeratorArgs {
|
|
|
|
JSContext *cx;
|
|
|
|
JSObject *obj;
|
|
|
|
ReflectEntryFunc entryFunc;
|
|
|
|
};
|
|
|
|
static PLDHashOperator ReflectEntryStub(EntryType *entry, void *arg);
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class EntryType>
|
2012-05-16 11:39:21 +00:00
|
|
|
AutoHashtable<EntryType>::AutoHashtable(uint32_t initSize)
|
2012-02-13 19:47:40 +00:00
|
|
|
{
|
|
|
|
this->Init(initSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class EntryType>
|
|
|
|
AutoHashtable<EntryType>::~AutoHashtable()
|
|
|
|
{
|
|
|
|
this->Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename EntryType>
|
|
|
|
PLDHashOperator
|
|
|
|
AutoHashtable<EntryType>::ReflectEntryStub(EntryType *entry, void *arg)
|
|
|
|
{
|
|
|
|
EnumeratorArgs *args = static_cast<EnumeratorArgs *>(arg);
|
|
|
|
if (!args->entryFunc(entry, args->cx, args->obj)) {
|
|
|
|
return PL_DHASH_STOP;
|
|
|
|
}
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reflect the individual entries of table into JS, usually by defining
|
|
|
|
* some property and value of obj. entryFunc is called for each entry.
|
|
|
|
*/
|
|
|
|
template<typename EntryType>
|
|
|
|
bool
|
2012-06-18 20:20:52 +00:00
|
|
|
AutoHashtable<EntryType>::ReflectIntoJS(ReflectEntryFunc entryFunc,
|
|
|
|
JSContext *cx, JSObject *obj)
|
2012-02-13 19:47:40 +00:00
|
|
|
{
|
|
|
|
EnumeratorArgs args = { cx, obj, entryFunc };
|
2012-05-16 11:39:21 +00:00
|
|
|
uint32_t num = this->EnumerateEntries(ReflectEntryStub, static_cast<void*>(&args));
|
2012-02-13 19:47:40 +00:00
|
|
|
return num == this->Count();
|
|
|
|
}
|
|
|
|
|
2012-11-05 18:45:19 +00:00
|
|
|
// This class is conceptually a list of ProcessedStack objects, but it represents them
|
|
|
|
// more efficiently by keeping a single global list of modules.
|
|
|
|
class CombinedStacks {
|
|
|
|
public:
|
|
|
|
typedef std::vector<Telemetry::ProcessedStack::Frame> Stack;
|
|
|
|
const Telemetry::ProcessedStack::Module& GetModule(unsigned aIndex) const;
|
|
|
|
size_t GetModuleCount() const;
|
|
|
|
const Stack& GetStack(unsigned aIndex) const;
|
|
|
|
void AddStack(const Telemetry::ProcessedStack& aStack);
|
|
|
|
size_t GetStackCount() const;
|
|
|
|
size_t SizeOfExcludingThis() const;
|
|
|
|
private:
|
|
|
|
std::vector<Telemetry::ProcessedStack::Module> mModules;
|
|
|
|
std::vector<Stack> mStacks;
|
|
|
|
};
|
|
|
|
|
2012-11-27 13:52:25 +00:00
|
|
|
static JSObject *
|
|
|
|
CreateJSStackObject(JSContext *cx, const CombinedStacks &stacks);
|
|
|
|
|
2012-11-05 18:45:19 +00:00
|
|
|
size_t
|
|
|
|
CombinedStacks::GetModuleCount() const {
|
|
|
|
return mModules.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
const Telemetry::ProcessedStack::Module&
|
|
|
|
CombinedStacks::GetModule(unsigned aIndex) const {
|
|
|
|
return mModules[aIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CombinedStacks::AddStack(const Telemetry::ProcessedStack& aStack) {
|
|
|
|
mStacks.resize(mStacks.size() + 1);
|
|
|
|
CombinedStacks::Stack& adjustedStack = mStacks.back();
|
|
|
|
|
|
|
|
size_t stackSize = aStack.GetStackSize();
|
2013-01-10 11:44:15 +00:00
|
|
|
for (size_t i = 0; i < stackSize; ++i) {
|
2012-11-05 18:45:19 +00:00
|
|
|
const Telemetry::ProcessedStack::Frame& frame = aStack.GetFrame(i);
|
|
|
|
uint16_t modIndex;
|
|
|
|
if (frame.mModIndex == std::numeric_limits<uint16_t>::max()) {
|
|
|
|
modIndex = frame.mModIndex;
|
|
|
|
} else {
|
|
|
|
const Telemetry::ProcessedStack::Module& module =
|
|
|
|
aStack.GetModule(frame.mModIndex);
|
|
|
|
std::vector<Telemetry::ProcessedStack::Module>::iterator modIterator =
|
|
|
|
std::find(mModules.begin(), mModules.end(), module);
|
|
|
|
if (modIterator == mModules.end()) {
|
|
|
|
mModules.push_back(module);
|
|
|
|
modIndex = mModules.size() - 1;
|
|
|
|
} else {
|
|
|
|
modIndex = modIterator - mModules.begin();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Telemetry::ProcessedStack::Frame adjustedFrame = { frame.mOffset, modIndex };
|
|
|
|
adjustedStack.push_back(adjustedFrame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const CombinedStacks::Stack&
|
|
|
|
CombinedStacks::GetStack(unsigned aIndex) const {
|
|
|
|
return mStacks[aIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
CombinedStacks::GetStackCount() const {
|
|
|
|
return mStacks.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
CombinedStacks::SizeOfExcludingThis() const {
|
|
|
|
// This is a crude approximation. We would like to do something like
|
|
|
|
// aMallocSizeOf(&mModules[0]), but on linux aMallocSizeOf will call
|
|
|
|
// malloc_usable_size which is only safe on the pointers returned by malloc.
|
|
|
|
// While it works on current libstdc++, it is better to be safe and not assume
|
|
|
|
// that &vec[0] points to one. We could use a custom allocator, but
|
|
|
|
// it doesn't seem worth it.
|
|
|
|
size_t n = 0;
|
|
|
|
n += mModules.capacity() * sizeof(Telemetry::ProcessedStack::Module);
|
|
|
|
n += mStacks.capacity() * sizeof(Stack);
|
|
|
|
for (std::vector<Stack>::const_iterator i = mStacks.begin(),
|
|
|
|
e = mStacks.end(); i != e; ++i) {
|
|
|
|
const Stack& s = *i;
|
|
|
|
n += s.capacity() * sizeof(Telemetry::ProcessedStack::Frame);
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
class HangReports {
|
|
|
|
public:
|
|
|
|
size_t SizeOfExcludingThis() const;
|
|
|
|
void AddHang(const Telemetry::ProcessedStack& aStack, uint32_t aDuration);
|
|
|
|
uint32_t GetDuration(unsigned aIndex) const;
|
2012-11-27 13:52:25 +00:00
|
|
|
const CombinedStacks& GetStacks() const;
|
2012-11-05 18:45:19 +00:00
|
|
|
private:
|
|
|
|
CombinedStacks mStacks;
|
|
|
|
std::vector<uint32_t> mDurations;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
HangReports::AddHang(const Telemetry::ProcessedStack& aStack, uint32_t aDuration) {
|
|
|
|
mStacks.AddStack(aStack);
|
|
|
|
mDurations.push_back(aDuration);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
HangReports::SizeOfExcludingThis() const {
|
|
|
|
size_t n = 0;
|
|
|
|
n += mStacks.SizeOfExcludingThis();
|
|
|
|
// This is a crude approximation. See comment on
|
|
|
|
// CombinedStacks::SizeOfExcludingThis.
|
|
|
|
n += mDurations.capacity() * sizeof(uint32_t);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2012-11-27 13:52:25 +00:00
|
|
|
const CombinedStacks&
|
|
|
|
HangReports::GetStacks() const {
|
|
|
|
return mStacks;
|
2012-11-05 18:45:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
HangReports::GetDuration(unsigned aIndex) const {
|
|
|
|
return mDurations[aIndex];
|
|
|
|
}
|
|
|
|
|
2012-07-18 16:12:55 +00:00
|
|
|
class TelemetryImpl MOZ_FINAL : public nsITelemetry
|
2011-04-27 18:07:02 +00:00
|
|
|
{
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSITELEMETRY
|
|
|
|
|
2011-05-20 02:33:05 +00:00
|
|
|
public:
|
2011-06-20 21:48:03 +00:00
|
|
|
TelemetryImpl();
|
|
|
|
~TelemetryImpl();
|
2011-06-28 23:57:44 +00:00
|
|
|
|
|
|
|
static bool CanRecord();
|
|
|
|
static already_AddRefed<nsITelemetry> CreateTelemetryInstance();
|
|
|
|
static void ShutdownTelemetry();
|
2012-03-21 17:26:48 +00:00
|
|
|
static void RecordSlowStatement(const nsACString &sql, const nsACString &dbName,
|
2012-08-21 19:29:28 +00:00
|
|
|
uint32_t delay);
|
2012-03-15 02:57:04 +00:00
|
|
|
#if defined(MOZ_ENABLE_PROFILER_SPS)
|
2012-05-16 11:39:21 +00:00
|
|
|
static void RecordChromeHang(uint32_t duration,
|
2012-08-21 21:14:38 +00:00
|
|
|
Telemetry::ProcessedStack &aStack);
|
2012-03-15 02:57:04 +00:00
|
|
|
#endif
|
2012-01-06 22:13:02 +00:00
|
|
|
static nsresult GetHistogramEnumId(const char *name, Telemetry::ID *id);
|
2012-10-05 16:19:14 +00:00
|
|
|
static int64_t GetTelemetryMemoryUsed();
|
|
|
|
size_t SizeOfIncludingThis(nsMallocSizeOfFun aMallocSizeOf);
|
2012-08-21 19:29:28 +00:00
|
|
|
struct Stat {
|
2012-05-16 11:39:21 +00:00
|
|
|
uint32_t hitCount;
|
|
|
|
uint32_t totalTime;
|
2012-08-21 19:29:28 +00:00
|
|
|
};
|
|
|
|
struct StmtStats {
|
|
|
|
struct Stat mainThread;
|
|
|
|
struct Stat otherThreads;
|
2011-12-06 20:12:55 +00:00
|
|
|
};
|
|
|
|
typedef nsBaseHashtableET<nsCStringHashKey, StmtStats> SlowSQLEntryType;
|
2011-06-20 21:47:58 +00:00
|
|
|
|
|
|
|
private:
|
2012-10-05 16:19:14 +00:00
|
|
|
// We don't need to poke inside any of our hashtables for more
|
|
|
|
// information, so we just have One Function To Size Them All.
|
|
|
|
template<typename EntryType>
|
|
|
|
struct impl {
|
|
|
|
static size_t SizeOfEntryExcludingThis(EntryType *,
|
|
|
|
nsMallocSizeOfFun,
|
|
|
|
void *) {
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2012-08-21 19:29:28 +00:00
|
|
|
static nsCString SanitizeSQL(const nsACString& sql);
|
|
|
|
|
|
|
|
enum SanitizedState { Sanitized, Unsanitized };
|
|
|
|
|
2012-05-16 11:39:21 +00:00
|
|
|
static void StoreSlowSQL(const nsACString &offender, uint32_t delay,
|
2012-08-21 19:29:28 +00:00
|
|
|
SanitizedState state);
|
2012-03-21 17:26:48 +00:00
|
|
|
|
2012-08-21 19:29:28 +00:00
|
|
|
static bool ReflectMainThreadSQL(SlowSQLEntryType *entry, JSContext *cx,
|
|
|
|
JSObject *obj);
|
|
|
|
static bool ReflectOtherThreadsSQL(SlowSQLEntryType *entry, JSContext *cx,
|
|
|
|
JSObject *obj);
|
|
|
|
static bool ReflectSQL(const SlowSQLEntryType *entry, const Stat *stat,
|
|
|
|
JSContext *cx, JSObject *obj);
|
2012-03-21 17:26:48 +00:00
|
|
|
|
|
|
|
bool AddSQLInfo(JSContext *cx, JSObject *rootObj, bool mainThread,
|
2012-08-21 19:29:28 +00:00
|
|
|
bool privateSQL);
|
2012-03-21 17:26:48 +00:00
|
|
|
bool GetSQLStats(JSContext *cx, jsval *ret, bool includePrivateSql);
|
2011-12-06 20:12:55 +00:00
|
|
|
|
2012-01-06 19:39:29 +00:00
|
|
|
// Like GetHistogramById, but returns the underlying C++ object, not the JS one.
|
|
|
|
nsresult GetHistogramByName(const nsACString &name, Histogram **ret);
|
2012-01-06 22:13:02 +00:00
|
|
|
bool ShouldReflectHistogram(Histogram *h);
|
|
|
|
void IdentifyCorruptHistograms(StatisticsRecorder::Histograms &hs);
|
|
|
|
typedef StatisticsRecorder::Histograms::iterator HistogramIterator;
|
2012-01-20 21:56:48 +00:00
|
|
|
|
|
|
|
struct AddonHistogramInfo {
|
2012-05-16 11:39:21 +00:00
|
|
|
uint32_t min;
|
|
|
|
uint32_t max;
|
|
|
|
uint32_t bucketCount;
|
|
|
|
uint32_t histogramType;
|
2012-01-20 21:56:48 +00:00
|
|
|
Histogram *h;
|
|
|
|
};
|
|
|
|
typedef nsBaseHashtableET<nsCStringHashKey, AddonHistogramInfo> AddonHistogramEntryType;
|
|
|
|
typedef AutoHashtable<AddonHistogramEntryType> AddonHistogramMapType;
|
|
|
|
typedef nsBaseHashtableET<nsCStringHashKey, AddonHistogramMapType *> AddonEntryType;
|
|
|
|
typedef AutoHashtable<AddonEntryType> AddonMapType;
|
|
|
|
static bool AddonHistogramReflector(AddonHistogramEntryType *entry,
|
|
|
|
JSContext *cx, JSObject *obj);
|
|
|
|
static bool AddonReflector(AddonEntryType *entry, JSContext *cx, JSObject *obj);
|
2012-03-02 14:59:38 +00:00
|
|
|
static bool CreateHistogramForAddon(const nsACString &name,
|
|
|
|
AddonHistogramInfo &info);
|
2013-01-08 14:04:37 +00:00
|
|
|
void ReadLateWritesStacks();
|
2012-01-20 21:56:48 +00:00
|
|
|
AddonMapType mAddonMap;
|
|
|
|
|
2012-01-06 22:13:02 +00:00
|
|
|
// This is used for speedy string->Telemetry::ID conversions
|
2011-06-20 21:48:03 +00:00
|
|
|
typedef nsBaseHashtableET<nsCharPtrHashKey, Telemetry::ID> CharPtrEntryType;
|
2012-02-13 19:47:40 +00:00
|
|
|
typedef AutoHashtable<CharPtrEntryType> HistogramMapType;
|
2011-06-20 21:48:03 +00:00
|
|
|
HistogramMapType mHistogramMap;
|
2011-06-28 23:57:44 +00:00
|
|
|
bool mCanRecord;
|
|
|
|
static TelemetryImpl *sTelemetry;
|
2012-08-21 19:29:28 +00:00
|
|
|
AutoHashtable<SlowSQLEntryType> mPrivateSQL;
|
|
|
|
AutoHashtable<SlowSQLEntryType> mSanitizedSQL;
|
2012-02-13 19:47:40 +00:00
|
|
|
// This gets marked immutable in debug builds, so we can't use
|
|
|
|
// AutoHashtable here.
|
2011-12-06 20:12:55 +00:00
|
|
|
nsTHashtable<nsCStringHashKey> mTrackedDBs;
|
|
|
|
Mutex mHashMutex;
|
2012-11-05 18:45:19 +00:00
|
|
|
HangReports mHangReports;
|
2012-03-12 11:07:05 +00:00
|
|
|
Mutex mHangReportsMutex;
|
2012-10-05 16:19:14 +00:00
|
|
|
nsIMemoryReporter *mMemoryReporter;
|
2012-12-13 17:06:27 +00:00
|
|
|
|
2013-01-08 14:04:37 +00:00
|
|
|
CombinedStacks mLateWritesStacks; // This is collected out of the main thread.
|
2012-12-19 15:29:08 +00:00
|
|
|
bool mCachedTelemetryData;
|
2012-12-13 17:06:27 +00:00
|
|
|
uint32_t mLastShutdownTime;
|
2013-01-07 19:45:25 +00:00
|
|
|
nsCOMArray<nsIFetchTelemetryDataCallback> mCallbacks;
|
2012-12-19 15:29:08 +00:00
|
|
|
friend class nsFetchTelemetryData;
|
2011-04-27 18:07:02 +00:00
|
|
|
};
|
|
|
|
|
2011-06-28 23:57:44 +00:00
|
|
|
TelemetryImpl* TelemetryImpl::sTelemetry = NULL;
|
|
|
|
|
2012-12-24 00:59:51 +00:00
|
|
|
NS_MEMORY_REPORTER_MALLOC_SIZEOF_FUN(TelemetryMallocSizeOf)
|
2012-10-05 16:19:14 +00:00
|
|
|
|
|
|
|
size_t
|
|
|
|
TelemetryImpl::SizeOfIncludingThis(nsMallocSizeOfFun aMallocSizeOf)
|
|
|
|
{
|
|
|
|
size_t n = 0;
|
|
|
|
n += aMallocSizeOf(this);
|
|
|
|
// Ignore the hashtables in mAddonMap; they are not significant.
|
|
|
|
n += mAddonMap.SizeOfExcludingThis(impl<AddonEntryType>::SizeOfEntryExcludingThis,
|
|
|
|
aMallocSizeOf);
|
|
|
|
n += mHistogramMap.SizeOfExcludingThis(impl<CharPtrEntryType>::SizeOfEntryExcludingThis,
|
|
|
|
aMallocSizeOf);
|
|
|
|
n += mPrivateSQL.SizeOfExcludingThis(impl<SlowSQLEntryType>::SizeOfEntryExcludingThis,
|
|
|
|
aMallocSizeOf);
|
|
|
|
n += mSanitizedSQL.SizeOfExcludingThis(impl<SlowSQLEntryType>::SizeOfEntryExcludingThis,
|
|
|
|
aMallocSizeOf);
|
|
|
|
n += mTrackedDBs.SizeOfExcludingThis(impl<nsCStringHashKey>::SizeOfEntryExcludingThis,
|
|
|
|
aMallocSizeOf);
|
2012-11-05 18:45:19 +00:00
|
|
|
n += mHangReports.SizeOfExcludingThis();
|
2012-10-05 16:19:14 +00:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t
|
|
|
|
TelemetryImpl::GetTelemetryMemoryUsed()
|
|
|
|
{
|
|
|
|
int64_t n = 0;
|
|
|
|
if (sTelemetry) {
|
|
|
|
n += sTelemetry->SizeOfIncludingThis(TelemetryMallocSizeOf);
|
|
|
|
}
|
|
|
|
|
|
|
|
StatisticsRecorder::Histograms hs;
|
|
|
|
StatisticsRecorder::GetHistograms(&hs);
|
|
|
|
|
|
|
|
for (HistogramIterator it = hs.begin(); it != hs.end(); ++it) {
|
|
|
|
Histogram *h = *it;
|
|
|
|
n += h->SizeOfIncludingThis(TelemetryMallocSizeOf);
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(Telemetry,
|
|
|
|
"explicit/telemetry",
|
|
|
|
KIND_HEAP,
|
|
|
|
UNITS_BYTES,
|
|
|
|
TelemetryImpl::GetTelemetryMemoryUsed,
|
|
|
|
"Memory used by the telemetry system.")
|
|
|
|
|
2011-05-20 02:33:05 +00:00
|
|
|
// A initializer to initialize histogram collection
|
|
|
|
StatisticsRecorder gStatisticsRecorder;
|
2011-04-27 18:07:02 +00:00
|
|
|
|
2011-06-20 21:47:58 +00:00
|
|
|
// Hardcoded probes
|
|
|
|
struct TelemetryHistogram {
|
2012-05-16 11:39:21 +00:00
|
|
|
uint32_t min;
|
|
|
|
uint32_t max;
|
|
|
|
uint32_t bucketCount;
|
|
|
|
uint32_t histogramType;
|
2012-08-28 16:55:32 +00:00
|
|
|
uint16_t id_offset;
|
|
|
|
uint16_t comment_offset;
|
|
|
|
|
|
|
|
const char *id() const;
|
|
|
|
const char *comment() const;
|
2011-06-20 21:47:58 +00:00
|
|
|
};
|
|
|
|
|
2012-08-24 19:54:55 +00:00
|
|
|
#include "TelemetryHistogramData.inc"
|
2012-01-06 22:13:02 +00:00
|
|
|
bool gCorruptHistograms[Telemetry::HistogramCount];
|
2011-06-20 21:47:58 +00:00
|
|
|
|
2012-08-28 16:55:32 +00:00
|
|
|
const char *
|
|
|
|
TelemetryHistogram::id() const
|
|
|
|
{
|
|
|
|
return &gHistogramStringTable[this->id_offset];
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
TelemetryHistogram::comment() const
|
|
|
|
{
|
|
|
|
return &gHistogramStringTable[this->comment_offset];
|
|
|
|
}
|
|
|
|
|
2012-01-06 19:40:04 +00:00
|
|
|
bool
|
2012-05-16 11:39:21 +00:00
|
|
|
TelemetryHistogramType(Histogram *h, uint32_t *result)
|
2012-01-06 19:40:04 +00:00
|
|
|
{
|
|
|
|
switch (h->histogram_type()) {
|
|
|
|
case Histogram::HISTOGRAM:
|
|
|
|
*result = nsITelemetry::HISTOGRAM_EXPONENTIAL;
|
|
|
|
break;
|
|
|
|
case Histogram::LINEAR_HISTOGRAM:
|
|
|
|
*result = nsITelemetry::HISTOGRAM_LINEAR;
|
|
|
|
break;
|
|
|
|
case Histogram::BOOLEAN_HISTOGRAM:
|
|
|
|
*result = nsITelemetry::HISTOGRAM_BOOLEAN;
|
|
|
|
break;
|
2012-03-02 14:59:38 +00:00
|
|
|
case Histogram::FLAG_HISTOGRAM:
|
|
|
|
*result = nsITelemetry::HISTOGRAM_FLAG;
|
2012-04-26 08:09:30 +00:00
|
|
|
break;
|
2012-01-06 19:40:04 +00:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-06-20 21:47:58 +00:00
|
|
|
nsresult
|
2012-05-16 11:39:21 +00:00
|
|
|
HistogramGet(const char *name, uint32_t min, uint32_t max, uint32_t bucketCount,
|
|
|
|
uint32_t histogramType, Histogram **result)
|
2011-06-20 21:47:58 +00:00
|
|
|
{
|
2012-03-02 14:59:38 +00:00
|
|
|
if (histogramType != nsITelemetry::HISTOGRAM_BOOLEAN
|
|
|
|
&& histogramType != nsITelemetry::HISTOGRAM_FLAG) {
|
2011-06-20 21:47:58 +00:00
|
|
|
// Sanity checks for histogram parameters.
|
|
|
|
if (min >= max)
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
|
|
|
|
if (bucketCount <= 2)
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
|
|
|
|
if (min < 1)
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (histogramType) {
|
|
|
|
case nsITelemetry::HISTOGRAM_EXPONENTIAL:
|
2011-06-30 21:58:00 +00:00
|
|
|
*result = Histogram::FactoryGet(name, min, max, bucketCount, Histogram::kUmaTargetedHistogramFlag);
|
2011-06-20 21:47:58 +00:00
|
|
|
break;
|
|
|
|
case nsITelemetry::HISTOGRAM_LINEAR:
|
2011-06-30 21:58:00 +00:00
|
|
|
*result = LinearHistogram::FactoryGet(name, min, max, bucketCount, Histogram::kUmaTargetedHistogramFlag);
|
2011-06-20 21:47:58 +00:00
|
|
|
break;
|
|
|
|
case nsITelemetry::HISTOGRAM_BOOLEAN:
|
2011-06-30 21:58:00 +00:00
|
|
|
*result = BooleanHistogram::FactoryGet(name, Histogram::kUmaTargetedHistogramFlag);
|
2011-06-20 21:47:58 +00:00
|
|
|
break;
|
2012-03-02 14:59:38 +00:00
|
|
|
case nsITelemetry::HISTOGRAM_FLAG:
|
|
|
|
*result = FlagHistogram::FactoryGet(name, Histogram::kUmaTargetedHistogramFlag);
|
|
|
|
break;
|
2011-06-20 21:47:58 +00:00
|
|
|
default:
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// O(1) histogram lookup by numeric id
|
|
|
|
nsresult
|
|
|
|
GetHistogramByEnumId(Telemetry::ID id, Histogram **ret)
|
|
|
|
{
|
|
|
|
static Histogram* knownHistograms[Telemetry::HistogramCount] = {0};
|
|
|
|
Histogram *h = knownHistograms[id];
|
|
|
|
if (h) {
|
|
|
|
*ret = h;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
const TelemetryHistogram &p = gHistograms[id];
|
2012-08-28 16:55:32 +00:00
|
|
|
nsresult rv = HistogramGet(p.id(), p.min, p.max, p.bucketCount, p.histogramType, &h);
|
2011-06-20 21:47:58 +00:00
|
|
|
if (NS_FAILED(rv))
|
2011-08-05 13:53:48 +00:00
|
|
|
return rv;
|
2011-06-20 21:47:58 +00:00
|
|
|
|
2012-08-27 20:47:32 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
// Check that the C++ Histogram code computes the same ranges as the
|
|
|
|
// Python histogram code.
|
|
|
|
const struct bounds &b = gBucketLowerBoundIndex[id];
|
|
|
|
if (b.length != 0) {
|
|
|
|
MOZ_ASSERT(size_t(b.length) == h->bucket_count(),
|
|
|
|
"C++/Python bucket # mismatch");
|
|
|
|
for (int i = 0; i < b.length; ++i) {
|
|
|
|
MOZ_ASSERT(gBucketLowerBounds[b.offset + i] == h->ranges(i),
|
|
|
|
"C++/Python bucket mismatch");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-06-20 21:47:58 +00:00
|
|
|
*ret = knownHistograms[id] = h;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-05-20 02:33:05 +00:00
|
|
|
bool
|
2011-04-27 18:07:02 +00:00
|
|
|
FillRanges(JSContext *cx, JSObject *array, Histogram *h)
|
|
|
|
{
|
2011-06-20 21:47:58 +00:00
|
|
|
for (size_t i = 0; i < h->bucket_count(); i++) {
|
2011-04-27 18:07:02 +00:00
|
|
|
if (!JS_DefineElement(cx, array, i, INT_TO_JSVAL(h->ranges(i)), NULL, NULL, JSPROP_ENUMERATE))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-01-06 22:13:02 +00:00
|
|
|
enum reflectStatus {
|
|
|
|
REFLECT_OK,
|
|
|
|
REFLECT_CORRUPT,
|
|
|
|
REFLECT_FAILURE
|
|
|
|
};
|
|
|
|
|
|
|
|
enum reflectStatus
|
2011-12-13 17:03:30 +00:00
|
|
|
ReflectHistogramAndSamples(JSContext *cx, JSObject *obj, Histogram *h,
|
|
|
|
const Histogram::SampleSet &ss)
|
2011-04-27 18:07:02 +00:00
|
|
|
{
|
2012-01-06 22:13:02 +00:00
|
|
|
// We don't want to reflect corrupt histograms.
|
|
|
|
if (h->FindCorruption(ss) != Histogram::NO_INCONSISTENCIES) {
|
|
|
|
return REFLECT_CORRUPT;
|
|
|
|
}
|
|
|
|
|
2012-03-02 04:36:59 +00:00
|
|
|
if (!(JS_DefineProperty(cx, obj, "min", INT_TO_JSVAL(h->declared_min()), NULL, NULL, JSPROP_ENUMERATE)
|
|
|
|
&& JS_DefineProperty(cx, obj, "max", INT_TO_JSVAL(h->declared_max()), NULL, NULL, JSPROP_ENUMERATE)
|
|
|
|
&& JS_DefineProperty(cx, obj, "histogram_type", INT_TO_JSVAL(h->histogram_type()), NULL, NULL, JSPROP_ENUMERATE)
|
2012-12-07 19:02:39 +00:00
|
|
|
&& JS_DefineProperty(cx, obj, "sum", DOUBLE_TO_JSVAL(ss.sum()), NULL, NULL, JSPROP_ENUMERATE))) {
|
2012-11-30 20:50:23 +00:00
|
|
|
return REFLECT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-12-07 19:02:39 +00:00
|
|
|
if (h->histogram_type() == Histogram::HISTOGRAM) {
|
|
|
|
if (!(JS_DefineProperty(cx, obj, "log_sum", DOUBLE_TO_JSVAL(ss.log_sum()), NULL, NULL, JSPROP_ENUMERATE)
|
|
|
|
&& JS_DefineProperty(cx, obj, "log_sum_squares", DOUBLE_TO_JSVAL(ss.log_sum_squares()), NULL, NULL, JSPROP_ENUMERATE))) {
|
|
|
|
return REFLECT_FAILURE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Export |sum_squares| as two separate 32-bit properties so that we
|
|
|
|
// can accurately reconstruct it on the analysis side.
|
|
|
|
uint64_t sum_squares = ss.sum_squares();
|
|
|
|
// Cast to avoid implicit truncation warnings.
|
|
|
|
uint32_t lo = static_cast<uint32_t>(sum_squares);
|
|
|
|
uint32_t hi = static_cast<uint32_t>(sum_squares >> 32);
|
|
|
|
if (!(JS_DefineProperty(cx, obj, "sum_squares_lo", INT_TO_JSVAL(lo), NULL, NULL, JSPROP_ENUMERATE)
|
|
|
|
&& JS_DefineProperty(cx, obj, "sum_squares_hi", INT_TO_JSVAL(hi), NULL, NULL, JSPROP_ENUMERATE))) {
|
|
|
|
return REFLECT_FAILURE;
|
|
|
|
}
|
2012-02-15 22:01:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const size_t count = h->bucket_count();
|
2012-07-30 14:20:58 +00:00
|
|
|
JSObject *rarray = JS_NewArrayObject(cx, count, nullptr);
|
2012-02-15 22:01:53 +00:00
|
|
|
if (!rarray) {
|
|
|
|
return REFLECT_FAILURE;
|
|
|
|
}
|
|
|
|
JS::AutoObjectRooter aroot(cx, rarray);
|
|
|
|
if (!(FillRanges(cx, rarray, h)
|
|
|
|
&& JS_DefineProperty(cx, obj, "ranges", OBJECT_TO_JSVAL(rarray),
|
|
|
|
NULL, NULL, JSPROP_ENUMERATE))) {
|
|
|
|
return REFLECT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject *counts_array = JS_NewArrayObject(cx, count, NULL);
|
|
|
|
if (!counts_array) {
|
|
|
|
return REFLECT_FAILURE;
|
|
|
|
}
|
|
|
|
JS::AutoObjectRooter croot(cx, counts_array);
|
|
|
|
if (!JS_DefineProperty(cx, obj, "counts", OBJECT_TO_JSVAL(counts_array),
|
|
|
|
NULL, NULL, JSPROP_ENUMERATE)) {
|
2012-01-06 22:13:02 +00:00
|
|
|
return REFLECT_FAILURE;
|
2011-04-27 18:07:02 +00:00
|
|
|
}
|
2011-06-20 21:47:58 +00:00
|
|
|
for (size_t i = 0; i < count; i++) {
|
2012-02-15 22:01:53 +00:00
|
|
|
if (!JS_DefineElement(cx, counts_array, i, INT_TO_JSVAL(ss.counts(i)),
|
|
|
|
NULL, NULL, JSPROP_ENUMERATE)) {
|
2012-01-06 22:13:02 +00:00
|
|
|
return REFLECT_FAILURE;
|
2011-04-27 18:07:02 +00:00
|
|
|
}
|
|
|
|
}
|
2012-02-15 22:01:53 +00:00
|
|
|
|
2012-01-06 22:13:02 +00:00
|
|
|
return REFLECT_OK;
|
2011-04-27 18:07:02 +00:00
|
|
|
}
|
|
|
|
|
2011-12-13 17:03:30 +00:00
|
|
|
enum reflectStatus
|
|
|
|
ReflectHistogramSnapshot(JSContext *cx, JSObject *obj, Histogram *h)
|
|
|
|
{
|
|
|
|
Histogram::SampleSet ss;
|
|
|
|
h->SnapshotSample(&ss);
|
|
|
|
return ReflectHistogramAndSamples(cx, obj, h, ss);
|
|
|
|
}
|
|
|
|
|
2012-05-08 14:58:20 +00:00
|
|
|
bool
|
|
|
|
IsEmpty(const Histogram *h)
|
|
|
|
{
|
|
|
|
Histogram::SampleSet ss;
|
|
|
|
h->SnapshotSample(&ss);
|
|
|
|
|
|
|
|
return ss.counts(0) == 0 && ss.sum() == 0;
|
|
|
|
}
|
|
|
|
|
2011-05-20 02:33:05 +00:00
|
|
|
JSBool
|
2012-02-28 23:11:11 +00:00
|
|
|
JSHistogram_Add(JSContext *cx, unsigned argc, jsval *vp)
|
2011-04-27 18:07:02 +00:00
|
|
|
{
|
2011-06-28 23:54:33 +00:00
|
|
|
if (!argc) {
|
|
|
|
JS_ReportError(cx, "Expected one argument");
|
2011-04-27 18:07:02 +00:00
|
|
|
return JS_FALSE;
|
2011-06-28 23:54:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
jsval v = JS_ARGV(cx, vp)[0];
|
|
|
|
|
|
|
|
if (!(JSVAL_IS_NUMBER(v) || JSVAL_IS_BOOLEAN(v))) {
|
|
|
|
JS_ReportError(cx, "Not a number");
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
2012-06-06 07:22:24 +00:00
|
|
|
int32_t value;
|
2011-06-28 23:54:33 +00:00
|
|
|
if (!JS_ValueToECMAInt32(cx, v, &value)) {
|
2011-04-27 18:07:02 +00:00
|
|
|
return JS_FALSE;
|
2011-06-28 23:54:33 +00:00
|
|
|
}
|
|
|
|
|
2011-06-28 23:57:44 +00:00
|
|
|
if (TelemetryImpl::CanRecord()) {
|
|
|
|
JSObject *obj = JS_THIS_OBJECT(cx, vp);
|
2011-12-01 21:30:28 +00:00
|
|
|
if (!obj) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
2012-02-05 20:07:23 +00:00
|
|
|
Histogram *h = static_cast<Histogram*>(JS_GetPrivate(obj));
|
2011-06-28 23:57:44 +00:00
|
|
|
if (h->histogram_type() == Histogram::BOOLEAN_HISTOGRAM)
|
|
|
|
h->Add(!!value);
|
|
|
|
else
|
|
|
|
h->Add(value);
|
|
|
|
}
|
2011-04-27 18:07:02 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2011-05-20 02:33:05 +00:00
|
|
|
JSBool
|
2012-02-28 23:11:11 +00:00
|
|
|
JSHistogram_Snapshot(JSContext *cx, unsigned argc, jsval *vp)
|
2011-04-27 18:07:02 +00:00
|
|
|
{
|
|
|
|
JSObject *obj = JS_THIS_OBJECT(cx, vp);
|
2011-12-01 21:30:28 +00:00
|
|
|
if (!obj) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
2012-02-05 20:07:23 +00:00
|
|
|
Histogram *h = static_cast<Histogram*>(JS_GetPrivate(obj));
|
2012-07-30 14:20:58 +00:00
|
|
|
JSObject *snapshot = JS_NewObject(cx, nullptr, nullptr, nullptr);
|
2011-04-27 18:07:02 +00:00
|
|
|
if (!snapshot)
|
Bug 671185 - Incorrect return of NS_ERROR_* codes in functions returning PRBool, r=mak,ehsan,taras,biesi,pike,khuey,dholbert,josh,bjacob,bsmith
2011-07-26 04:57:58 +00:00
|
|
|
return JS_FALSE;
|
2012-02-15 22:01:53 +00:00
|
|
|
JS::AutoObjectRooter sroot(cx, snapshot);
|
2012-01-06 22:13:02 +00:00
|
|
|
|
|
|
|
switch (ReflectHistogramSnapshot(cx, snapshot, h)) {
|
|
|
|
case REFLECT_FAILURE:
|
|
|
|
return JS_FALSE;
|
|
|
|
case REFLECT_CORRUPT:
|
|
|
|
JS_ReportError(cx, "Histogram is corrupt");
|
|
|
|
return JS_FALSE;
|
|
|
|
case REFLECT_OK:
|
|
|
|
JS_SET_RVAL(cx, vp, OBJECT_TO_JSVAL(snapshot));
|
|
|
|
return JS_TRUE;
|
|
|
|
default:
|
|
|
|
MOZ_NOT_REACHED("unhandled reflection status");
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
2011-04-27 18:07:02 +00:00
|
|
|
}
|
|
|
|
|
2012-05-08 19:39:24 +00:00
|
|
|
JSBool
|
|
|
|
JSHistogram_Clear(JSContext *cx, unsigned argc, jsval *vp)
|
|
|
|
{
|
|
|
|
JSObject *obj = JS_THIS_OBJECT(cx, vp);
|
|
|
|
if (!obj) {
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Histogram *h = static_cast<Histogram*>(JS_GetPrivate(obj));
|
|
|
|
h->Clear();
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2011-05-20 02:33:05 +00:00
|
|
|
nsresult
|
2011-04-27 18:07:02 +00:00
|
|
|
WrapAndReturnHistogram(Histogram *h, JSContext *cx, jsval *ret)
|
|
|
|
{
|
|
|
|
static JSClass JSHistogram_class = {
|
|
|
|
"JSHistogram", /* name */
|
|
|
|
JSCLASS_HAS_PRIVATE, /* flags */
|
|
|
|
JS_PropertyStub, JS_PropertyStub, JS_PropertyStub, JS_StrictPropertyStub,
|
2012-03-19 14:27:58 +00:00
|
|
|
JS_EnumerateStub, JS_ResolveStub, JS_ConvertStub
|
2011-04-27 18:07:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
JSObject *obj = JS_NewObject(cx, &JSHistogram_class, NULL, NULL);
|
|
|
|
if (!obj)
|
|
|
|
return NS_ERROR_FAILURE;
|
2012-02-15 22:01:53 +00:00
|
|
|
JS::AutoObjectRooter root(cx, obj);
|
2012-05-08 19:39:24 +00:00
|
|
|
if (!(JS_DefineFunction(cx, obj, "add", JSHistogram_Add, 1, 0)
|
|
|
|
&& JS_DefineFunction(cx, obj, "snapshot", JSHistogram_Snapshot, 0, 0)
|
|
|
|
&& JS_DefineFunction(cx, obj, "clear", JSHistogram_Clear, 0, 0))) {
|
2012-02-15 22:01:53 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2011-04-27 18:07:02 +00:00
|
|
|
*ret = OBJECT_TO_JSVAL(obj);
|
2012-02-05 20:07:23 +00:00
|
|
|
JS_SetPrivate(obj, h);
|
2012-02-15 22:01:53 +00:00
|
|
|
return NS_OK;
|
2011-04-27 18:07:02 +00:00
|
|
|
}
|
2011-06-20 21:47:58 +00:00
|
|
|
|
2012-12-14 04:13:03 +00:00
|
|
|
static uint32_t
|
|
|
|
ReadLastShutdownDuration(const char *filename) {
|
|
|
|
FILE *f = fopen(filename, "r");
|
|
|
|
if (!f) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int shutdownTime;
|
|
|
|
int r = fscanf(f, "%d\n", &shutdownTime);
|
|
|
|
fclose(f);
|
|
|
|
if (r != 1) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return shutdownTime;
|
|
|
|
}
|
|
|
|
|
2012-12-19 15:29:08 +00:00
|
|
|
class nsFetchTelemetryData : public nsRunnable
|
2012-12-14 04:13:03 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-01-10 22:21:48 +00:00
|
|
|
nsFetchTelemetryData(const char *aFilename) :
|
|
|
|
mFilename(aFilename), mTelemetry(TelemetryImpl::sTelemetry) {
|
2012-12-14 04:13:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-01-10 22:21:48 +00:00
|
|
|
const char *mFilename;
|
2012-12-14 04:13:03 +00:00
|
|
|
nsCOMPtr<TelemetryImpl> mTelemetry;
|
|
|
|
|
|
|
|
public:
|
|
|
|
void MainThread() {
|
2012-12-19 15:29:08 +00:00
|
|
|
mTelemetry->mCachedTelemetryData = true;
|
2013-01-07 19:45:25 +00:00
|
|
|
for (unsigned int i = 0, n = mTelemetry->mCallbacks.Count(); i < n; ++i) {
|
2012-12-14 04:13:03 +00:00
|
|
|
mTelemetry->mCallbacks[i]->Complete();
|
|
|
|
}
|
2013-01-07 19:45:25 +00:00
|
|
|
mTelemetry->mCallbacks.Clear();
|
2012-12-14 04:13:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD Run() {
|
2013-01-10 22:21:48 +00:00
|
|
|
mTelemetry->mLastShutdownTime = ReadLastShutdownDuration(mFilename);
|
2013-01-08 14:04:37 +00:00
|
|
|
mTelemetry->ReadLateWritesStacks();
|
2012-12-14 04:13:03 +00:00
|
|
|
nsCOMPtr<nsIRunnable> e =
|
2012-12-19 15:29:08 +00:00
|
|
|
NS_NewRunnableMethod(this, &nsFetchTelemetryData::MainThread);
|
2012-12-14 04:13:03 +00:00
|
|
|
NS_ENSURE_STATE(e);
|
|
|
|
NS_DispatchToMainThread(e, NS_DISPATCH_NORMAL);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-12-13 17:06:27 +00:00
|
|
|
static TimeStamp gRecordedShutdownStartTime;
|
|
|
|
static bool gAlreadyFreedShutdownTimeFileName = false;
|
|
|
|
static char *gRecordedShutdownTimeFileName = nullptr;
|
|
|
|
|
|
|
|
static char *
|
|
|
|
GetShutdownTimeFileName()
|
|
|
|
{
|
|
|
|
if (gAlreadyFreedShutdownTimeFileName) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gRecordedShutdownTimeFileName) {
|
|
|
|
nsCOMPtr<nsIFile> mozFile;
|
|
|
|
NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR, getter_AddRefs(mozFile));
|
|
|
|
if (!mozFile)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
mozFile->AppendNative(NS_LITERAL_CSTRING("Telemetry.ShutdownTime.txt"));
|
|
|
|
nsAutoCString nativePath;
|
|
|
|
nsresult rv = mozFile->GetNativePath(nativePath);
|
|
|
|
if (!NS_SUCCEEDED(rv))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
gRecordedShutdownTimeFileName = PL_strdup(nativePath.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
return gRecordedShutdownTimeFileName;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::GetLastShutdownDuration(uint32_t *aResult)
|
|
|
|
{
|
2012-12-19 15:29:08 +00:00
|
|
|
// The user must call AsyncFetchTelemetryData first. We return zero instead of
|
2012-12-14 04:13:03 +00:00
|
|
|
// reporting a failure so that the rest of telemetry can uniformly handle
|
|
|
|
// the read not being available yet.
|
2012-12-19 15:29:08 +00:00
|
|
|
if (!mCachedTelemetryData) {
|
2012-12-13 17:06:27 +00:00
|
|
|
*aResult = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-12-14 04:13:03 +00:00
|
|
|
*aResult = mLastShutdownTime;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-12-13 17:06:27 +00:00
|
|
|
|
2012-12-14 04:13:03 +00:00
|
|
|
NS_IMETHODIMP
|
2012-12-19 15:29:08 +00:00
|
|
|
TelemetryImpl::AsyncFetchTelemetryData(nsIFetchTelemetryDataCallback *aCallback)
|
2012-12-14 04:13:03 +00:00
|
|
|
{
|
|
|
|
// We have finished reading the data already, just call the callback.
|
2012-12-19 15:29:08 +00:00
|
|
|
if (mCachedTelemetryData) {
|
2012-12-14 04:13:03 +00:00
|
|
|
aCallback->Complete();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-12-13 17:06:27 +00:00
|
|
|
|
2012-12-14 04:13:03 +00:00
|
|
|
// We already have a read request running, just remember the callback.
|
2013-01-07 19:45:25 +00:00
|
|
|
if (mCallbacks.Count() != 0) {
|
|
|
|
mCallbacks.AppendObject(aCallback);
|
2012-12-14 04:13:03 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-12-13 17:06:27 +00:00
|
|
|
|
2012-12-14 04:13:03 +00:00
|
|
|
// We make this check so that GetShutdownTimeFileName() doesn't get
|
|
|
|
// called; calling that function without telemetry enabled violates
|
|
|
|
// assumptions that the write-the-shutdown-timestamp machinery makes.
|
|
|
|
if (!Telemetry::CanRecord()) {
|
2012-12-19 15:29:08 +00:00
|
|
|
mCachedTelemetryData = true;
|
2012-12-14 04:13:03 +00:00
|
|
|
aCallback->Complete();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-12-13 17:06:27 +00:00
|
|
|
|
2012-12-14 04:13:03 +00:00
|
|
|
// Send the read to a background thread provided by the stream transport
|
|
|
|
// service to avoid a read in the main thread.
|
|
|
|
nsCOMPtr<nsIEventTarget> targetThread =
|
|
|
|
do_GetService(NS_STREAMTRANSPORTSERVICE_CONTRACTID);
|
|
|
|
if (!targetThread) {
|
2012-12-19 15:29:08 +00:00
|
|
|
mCachedTelemetryData = true;
|
2012-12-14 04:13:03 +00:00
|
|
|
aCallback->Complete();
|
|
|
|
return NS_OK;
|
2012-12-13 17:06:27 +00:00
|
|
|
}
|
|
|
|
|
2012-12-14 04:13:03 +00:00
|
|
|
// We have to get the filename from the main thread.
|
2013-01-10 22:21:48 +00:00
|
|
|
const char *filename = GetShutdownTimeFileName();
|
|
|
|
if (!filename) {
|
2012-12-19 15:29:08 +00:00
|
|
|
mCachedTelemetryData = true;
|
2012-12-14 04:13:03 +00:00
|
|
|
aCallback->Complete();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-01-07 19:45:25 +00:00
|
|
|
mCallbacks.AppendObject(aCallback);
|
2013-01-10 22:21:48 +00:00
|
|
|
nsCOMPtr<nsIRunnable> event = new nsFetchTelemetryData(filename);
|
2012-12-14 04:13:03 +00:00
|
|
|
|
|
|
|
targetThread->Dispatch(event, NS_DISPATCH_NORMAL);
|
2012-12-13 17:06:27 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-06-28 23:57:44 +00:00
|
|
|
TelemetryImpl::TelemetryImpl():
|
2012-02-13 19:47:40 +00:00
|
|
|
mHistogramMap(Telemetry::HistogramCount),
|
2011-12-06 20:12:55 +00:00
|
|
|
mCanRecord(XRE_GetProcessType() == GeckoProcessType_Default),
|
2012-03-12 11:07:05 +00:00
|
|
|
mHashMutex("Telemetry::mHashMutex"),
|
2012-12-13 17:06:27 +00:00
|
|
|
mHangReportsMutex("Telemetry::mHangReportsMutex"),
|
2012-12-19 15:29:08 +00:00
|
|
|
mCachedTelemetryData(false),
|
2012-12-13 17:06:27 +00:00
|
|
|
mLastShutdownTime(0)
|
2011-06-28 23:57:44 +00:00
|
|
|
{
|
2011-12-06 20:12:55 +00:00
|
|
|
// A whitelist to prevent Telemetry reporting on Addon & Thunderbird DBs
|
|
|
|
const char *trackedDBs[] = {
|
2013-01-14 02:56:39 +00:00
|
|
|
"addons.sqlite", "content-prefs.sqlite", "cookies.sqlite",
|
|
|
|
"downloads.sqlite", "extensions.sqlite", "formhistory.sqlite",
|
|
|
|
"index.sqlite", "healthreport.sqlite", "permissions.sqlite",
|
|
|
|
"places.sqlite", "search.sqlite", "signons.sqlite", "urlclassifier3.sqlite",
|
2011-12-06 20:12:55 +00:00
|
|
|
"webappsstore.sqlite"
|
|
|
|
};
|
|
|
|
|
|
|
|
mTrackedDBs.Init();
|
2012-01-09 18:01:52 +00:00
|
|
|
for (size_t i = 0; i < ArrayLength(trackedDBs); i++)
|
2011-12-06 20:12:55 +00:00
|
|
|
mTrackedDBs.PutEntry(nsDependentCString(trackedDBs[i]));
|
|
|
|
|
2012-01-10 20:31:34 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
// Mark immutable to prevent asserts on simultaneous access from multiple threads
|
|
|
|
mTrackedDBs.MarkImmutable();
|
|
|
|
#endif
|
2012-10-05 16:19:14 +00:00
|
|
|
mMemoryReporter = new NS_MEMORY_REPORTER_NAME(Telemetry);
|
|
|
|
NS_RegisterMemoryReporter(mMemoryReporter);
|
2011-06-20 21:48:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TelemetryImpl::~TelemetryImpl() {
|
2012-10-05 16:19:14 +00:00
|
|
|
NS_UnregisterMemoryReporter(mMemoryReporter);
|
|
|
|
mMemoryReporter = nullptr;
|
2011-06-20 21:48:03 +00:00
|
|
|
}
|
|
|
|
|
2011-04-27 18:07:02 +00:00
|
|
|
NS_IMETHODIMP
|
2012-05-16 11:39:21 +00:00
|
|
|
TelemetryImpl::NewHistogram(const nsACString &name, uint32_t min, uint32_t max, uint32_t bucketCount, uint32_t histogramType, JSContext *cx, jsval *ret)
|
2011-04-27 18:07:02 +00:00
|
|
|
{
|
2011-05-20 02:33:05 +00:00
|
|
|
Histogram *h;
|
2011-06-20 21:47:58 +00:00
|
|
|
nsresult rv = HistogramGet(PromiseFlatCString(name).get(), min, max, bucketCount, histogramType, &h);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2011-06-30 21:58:00 +00:00
|
|
|
h->ClearFlags(Histogram::kUmaTargetedHistogramFlag);
|
2011-04-27 18:07:02 +00:00
|
|
|
return WrapAndReturnHistogram(h, cx, ret);
|
|
|
|
}
|
|
|
|
|
2012-02-13 19:47:40 +00:00
|
|
|
bool
|
2012-08-21 19:29:28 +00:00
|
|
|
TelemetryImpl::ReflectSQL(const SlowSQLEntryType *entry,
|
|
|
|
const Stat *stat,
|
|
|
|
JSContext *cx,
|
|
|
|
JSObject *obj)
|
2011-12-06 20:12:55 +00:00
|
|
|
{
|
2012-08-21 19:29:28 +00:00
|
|
|
if (stat->hitCount == 0)
|
|
|
|
return true;
|
|
|
|
|
2011-12-14 20:04:25 +00:00
|
|
|
const nsACString &sql = entry->GetKey();
|
2012-08-21 19:29:28 +00:00
|
|
|
jsval hitCount = UINT_TO_JSVAL(stat->hitCount);
|
|
|
|
jsval totalTime = UINT_TO_JSVAL(stat->totalTime);
|
2011-12-06 20:12:55 +00:00
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
JSObject *arrayObj = JS_NewArrayObject(cx, 0, nullptr);
|
2012-02-15 22:01:53 +00:00
|
|
|
if (!arrayObj) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
JS::AutoObjectRooter root(cx, arrayObj);
|
|
|
|
return (JS_SetElement(cx, arrayObj, 0, &hitCount)
|
2012-02-13 19:47:40 +00:00
|
|
|
&& JS_SetElement(cx, arrayObj, 1, &totalTime)
|
|
|
|
&& JS_DefineProperty(cx, obj,
|
|
|
|
sql.BeginReading(),
|
|
|
|
OBJECT_TO_JSVAL(arrayObj),
|
|
|
|
NULL, NULL, JSPROP_ENUMERATE));
|
2011-12-06 20:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-08-21 19:29:28 +00:00
|
|
|
TelemetryImpl::ReflectMainThreadSQL(SlowSQLEntryType *entry, JSContext *cx,
|
|
|
|
JSObject *obj)
|
2012-03-21 17:26:48 +00:00
|
|
|
{
|
2012-08-21 19:29:28 +00:00
|
|
|
return ReflectSQL(entry, &entry->mData.mainThread, cx, obj);
|
2012-03-21 17:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-08-21 19:29:28 +00:00
|
|
|
TelemetryImpl::ReflectOtherThreadsSQL(SlowSQLEntryType *entry, JSContext *cx,
|
|
|
|
JSObject *obj)
|
2012-03-21 17:26:48 +00:00
|
|
|
{
|
2012-08-21 19:29:28 +00:00
|
|
|
return ReflectSQL(entry, &entry->mData.otherThreads, cx, obj);
|
2012-03-21 17:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TelemetryImpl::AddSQLInfo(JSContext *cx, JSObject *rootObj, bool mainThread,
|
2012-08-21 19:29:28 +00:00
|
|
|
bool privateSQL)
|
2011-12-06 20:12:55 +00:00
|
|
|
{
|
|
|
|
JSObject *statsObj = JS_NewObject(cx, NULL, NULL, NULL);
|
2011-12-14 20:04:25 +00:00
|
|
|
if (!statsObj)
|
2011-12-06 20:12:55 +00:00
|
|
|
return false;
|
2012-02-15 22:01:53 +00:00
|
|
|
JS::AutoObjectRooter root(cx, statsObj);
|
2011-12-06 20:12:55 +00:00
|
|
|
|
2012-03-21 17:26:48 +00:00
|
|
|
AutoHashtable<SlowSQLEntryType> &sqlMap =
|
2012-08-21 19:29:28 +00:00
|
|
|
(privateSQL ? mPrivateSQL : mSanitizedSQL);
|
2012-03-21 17:26:48 +00:00
|
|
|
AutoHashtable<SlowSQLEntryType>::ReflectEntryFunc reflectFunction =
|
2012-08-21 19:29:28 +00:00
|
|
|
(mainThread ? ReflectMainThreadSQL : ReflectOtherThreadsSQL);
|
2012-06-18 20:20:52 +00:00
|
|
|
if(!sqlMap.ReflectIntoJS(reflectFunction, cx, statsObj)) {
|
2012-02-15 22:01:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return JS_DefineProperty(cx, rootObj,
|
|
|
|
mainThread ? "mainThread" : "otherThreads",
|
|
|
|
OBJECT_TO_JSVAL(statsObj),
|
|
|
|
NULL, NULL, JSPROP_ENUMERATE);
|
2011-12-06 20:12:55 +00:00
|
|
|
}
|
|
|
|
|
2012-01-06 19:39:29 +00:00
|
|
|
nsresult
|
2012-01-09 20:42:34 +00:00
|
|
|
TelemetryImpl::GetHistogramEnumId(const char *name, Telemetry::ID *id)
|
2012-01-06 19:39:29 +00:00
|
|
|
{
|
2012-01-09 20:42:34 +00:00
|
|
|
if (!sTelemetry) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-01-06 19:39:29 +00:00
|
|
|
// Cache names
|
|
|
|
// Note the histogram names are statically allocated
|
2012-01-09 20:42:34 +00:00
|
|
|
TelemetryImpl::HistogramMapType *map = &sTelemetry->mHistogramMap;
|
|
|
|
if (!map->Count()) {
|
2012-05-16 11:39:21 +00:00
|
|
|
for (uint32_t i = 0; i < Telemetry::HistogramCount; i++) {
|
2012-08-28 16:55:32 +00:00
|
|
|
CharPtrEntryType *entry = map->PutEntry(gHistograms[i].id());
|
2012-10-26 13:32:10 +00:00
|
|
|
if (MOZ_UNLIKELY(!entry)) {
|
2012-01-09 20:42:34 +00:00
|
|
|
map->Clear();
|
2012-01-06 19:39:29 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
entry->mData = (Telemetry::ID) i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-09 20:42:34 +00:00
|
|
|
CharPtrEntryType *entry = map->GetEntry(name);
|
|
|
|
if (!entry) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
*id = entry->mData;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
TelemetryImpl::GetHistogramByName(const nsACString &name, Histogram **ret)
|
|
|
|
{
|
|
|
|
Telemetry::ID id;
|
|
|
|
nsresult rv = GetHistogramEnumId(PromiseFlatCString(name).get(), &id);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2012-01-06 19:39:29 +00:00
|
|
|
|
2012-01-09 20:42:34 +00:00
|
|
|
rv = GetHistogramByEnumId(id, ret);
|
2012-01-06 19:39:29 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-01-06 19:40:04 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::HistogramFrom(const nsACString &name, const nsACString &existing_name,
|
|
|
|
JSContext *cx, jsval *ret)
|
|
|
|
{
|
|
|
|
Histogram *existing;
|
|
|
|
nsresult rv = GetHistogramByName(existing_name, &existing);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2012-05-16 11:39:21 +00:00
|
|
|
uint32_t histogramType;
|
2012-01-06 19:40:04 +00:00
|
|
|
bool success = TelemetryHistogramType(existing, &histogramType);
|
|
|
|
if (!success)
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
|
|
|
|
Histogram *clone;
|
|
|
|
rv = HistogramGet(PromiseFlatCString(name).get(), existing->declared_min(),
|
|
|
|
existing->declared_max(), existing->bucket_count(),
|
|
|
|
histogramType, &clone);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
Histogram::SampleSet ss;
|
|
|
|
existing->SnapshotSample(&ss);
|
|
|
|
clone->AddSampleSet(ss);
|
|
|
|
return WrapAndReturnHistogram(clone, cx, ret);
|
|
|
|
}
|
|
|
|
|
2012-01-06 22:13:02 +00:00
|
|
|
void
|
|
|
|
TelemetryImpl::IdentifyCorruptHistograms(StatisticsRecorder::Histograms &hs)
|
|
|
|
{
|
|
|
|
for (HistogramIterator it = hs.begin(); it != hs.end(); ++it) {
|
|
|
|
Histogram *h = *it;
|
|
|
|
|
|
|
|
Telemetry::ID id;
|
|
|
|
nsresult rv = GetHistogramEnumId(h->histogram_name().c_str(), &id);
|
|
|
|
// This histogram isn't a static histogram, just ignore it.
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gCorruptHistograms[id]) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Histogram::SampleSet ss;
|
|
|
|
h->SnapshotSample(&ss);
|
|
|
|
Histogram::Inconsistencies check = h->FindCorruption(ss);
|
|
|
|
bool corrupt = (check != Histogram::NO_INCONSISTENCIES);
|
|
|
|
|
|
|
|
if (corrupt) {
|
|
|
|
Telemetry::ID corruptID = Telemetry::HistogramCount;
|
|
|
|
if (check & Histogram::RANGE_CHECKSUM_ERROR) {
|
|
|
|
corruptID = Telemetry::RANGE_CHECKSUM_ERRORS;
|
|
|
|
} else if (check & Histogram::BUCKET_ORDER_ERROR) {
|
|
|
|
corruptID = Telemetry::BUCKET_ORDER_ERRORS;
|
|
|
|
} else if (check & Histogram::COUNT_HIGH_ERROR) {
|
|
|
|
corruptID = Telemetry::TOTAL_COUNT_HIGH_ERRORS;
|
|
|
|
} else if (check & Histogram::COUNT_LOW_ERROR) {
|
|
|
|
corruptID = Telemetry::TOTAL_COUNT_LOW_ERRORS;
|
|
|
|
}
|
|
|
|
Telemetry::Accumulate(corruptID, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
gCorruptHistograms[id] = corrupt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TelemetryImpl::ShouldReflectHistogram(Histogram *h)
|
|
|
|
{
|
|
|
|
const char *name = h->histogram_name().c_str();
|
|
|
|
Telemetry::ID id;
|
|
|
|
nsresult rv = GetHistogramEnumId(name, &id);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
// GetHistogramEnumId generally should not fail. But a lookup
|
|
|
|
// failure shouldn't prevent us from reflecting histograms into JS.
|
|
|
|
//
|
|
|
|
// However, these two histograms are created by Histogram itself for
|
|
|
|
// tracking corruption. We have our own histograms for that, so
|
|
|
|
// ignore these two.
|
|
|
|
if (strcmp(name, "Histogram.InconsistentCountHigh") == 0
|
|
|
|
|| strcmp(name, "Histogram.InconsistentCountLow") == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return !gCorruptHistograms[id];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-20 21:56:48 +00:00
|
|
|
// Compute the name to pass into Histogram for the addon histogram
|
|
|
|
// 'name' from the addon 'id'. We can't use 'name' directly because it
|
|
|
|
// might conflict with other histograms in other addons or even with our
|
|
|
|
// own.
|
|
|
|
void
|
|
|
|
AddonHistogramName(const nsACString &id, const nsACString &name,
|
|
|
|
nsACString &ret)
|
|
|
|
{
|
|
|
|
ret.Append(id);
|
|
|
|
ret.Append(NS_LITERAL_CSTRING(":"));
|
|
|
|
ret.Append(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::RegisterAddonHistogram(const nsACString &id,
|
|
|
|
const nsACString &name,
|
2012-05-16 11:39:21 +00:00
|
|
|
uint32_t min, uint32_t max,
|
|
|
|
uint32_t bucketCount,
|
|
|
|
uint32_t histogramType)
|
2012-01-20 21:56:48 +00:00
|
|
|
{
|
|
|
|
AddonEntryType *addonEntry = mAddonMap.GetEntry(id);
|
|
|
|
if (!addonEntry) {
|
|
|
|
addonEntry = mAddonMap.PutEntry(id);
|
2012-10-26 13:32:10 +00:00
|
|
|
if (MOZ_UNLIKELY(!addonEntry)) {
|
2012-01-20 21:56:48 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
addonEntry->mData = new AddonHistogramMapType();
|
|
|
|
}
|
|
|
|
|
|
|
|
AddonHistogramMapType *histogramMap = addonEntry->mData;
|
|
|
|
AddonHistogramEntryType *histogramEntry = histogramMap->GetEntry(name);
|
|
|
|
// Can't re-register the same histogram.
|
|
|
|
if (histogramEntry) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
histogramEntry = histogramMap->PutEntry(name);
|
2012-10-26 13:32:10 +00:00
|
|
|
if (MOZ_UNLIKELY(!histogramEntry)) {
|
2012-01-20 21:56:48 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
AddonHistogramInfo &info = histogramEntry->mData;
|
|
|
|
info.min = min;
|
|
|
|
info.max = max;
|
|
|
|
info.bucketCount = bucketCount;
|
|
|
|
info.histogramType = histogramType;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::GetAddonHistogram(const nsACString &id, const nsACString &name,
|
|
|
|
JSContext *cx, jsval *ret)
|
|
|
|
{
|
|
|
|
AddonEntryType *addonEntry = mAddonMap.GetEntry(id);
|
|
|
|
// The given id has not been registered.
|
|
|
|
if (!addonEntry) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
AddonHistogramMapType *histogramMap = addonEntry->mData;
|
|
|
|
AddonHistogramEntryType *histogramEntry = histogramMap->GetEntry(name);
|
|
|
|
// The given histogram name has not been registered.
|
|
|
|
if (!histogramEntry) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
AddonHistogramInfo &info = histogramEntry->mData;
|
2012-03-02 14:59:38 +00:00
|
|
|
if (!info.h) {
|
2012-09-02 02:35:17 +00:00
|
|
|
nsAutoCString actualName;
|
2012-01-20 21:56:48 +00:00
|
|
|
AddonHistogramName(id, name, actualName);
|
2012-03-02 14:59:38 +00:00
|
|
|
if (!CreateHistogramForAddon(actualName, info)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
2012-01-20 21:56:48 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-02 14:59:38 +00:00
|
|
|
return WrapAndReturnHistogram(info.h, cx, ret);
|
2012-01-20 21:56:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::UnregisterAddonHistograms(const nsACString &id)
|
|
|
|
{
|
|
|
|
AddonEntryType *addonEntry = mAddonMap.GetEntry(id);
|
|
|
|
if (addonEntry) {
|
|
|
|
// Histogram's destructor is private, so this is the best we can do.
|
|
|
|
// The histograms the addon created *will* stick around, but they
|
|
|
|
// will be deleted if and when the addon registers histograms with
|
|
|
|
// the same names.
|
|
|
|
delete addonEntry->mData;
|
|
|
|
mAddonMap.RemoveEntry(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-04-27 18:07:02 +00:00
|
|
|
NS_IMETHODIMP
|
2011-06-20 21:47:58 +00:00
|
|
|
TelemetryImpl::GetHistogramSnapshots(JSContext *cx, jsval *ret)
|
2011-04-27 18:07:02 +00:00
|
|
|
{
|
|
|
|
JSObject *root_obj = JS_NewObject(cx, NULL, NULL, NULL);
|
|
|
|
if (!root_obj)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
*ret = OBJECT_TO_JSVAL(root_obj);
|
|
|
|
|
2012-03-02 14:59:38 +00:00
|
|
|
// Ensure that all the HISTOGRAM_FLAG histograms have been created, so
|
|
|
|
// that their values are snapshotted.
|
|
|
|
for (size_t i = 0; i < Telemetry::HistogramCount; ++i) {
|
|
|
|
if (gHistograms[i].histogramType == nsITelemetry::HISTOGRAM_FLAG) {
|
|
|
|
Histogram *h;
|
|
|
|
DebugOnly<nsresult> rv = GetHistogramByEnumId(Telemetry::ID(i), &h);
|
|
|
|
MOZ_ASSERT(NS_SUCCEEDED(rv));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-01-06 22:13:02 +00:00
|
|
|
StatisticsRecorder::Histograms hs;
|
|
|
|
StatisticsRecorder::GetHistograms(&hs);
|
|
|
|
|
|
|
|
// We identify corrupt histograms first, rather than interspersing it
|
|
|
|
// in the loop below, to ensure that our corruption statistics don't
|
|
|
|
// depend on histogram enumeration order.
|
|
|
|
//
|
|
|
|
// Of course, we hope that all of these corruption-statistics
|
|
|
|
// histograms are not themselves corrupt...
|
|
|
|
IdentifyCorruptHistograms(hs);
|
|
|
|
|
|
|
|
// OK, now we can actually reflect things.
|
|
|
|
for (HistogramIterator it = hs.begin(); it != hs.end(); ++it) {
|
2011-04-27 18:07:02 +00:00
|
|
|
Histogram *h = *it;
|
2012-05-08 14:58:20 +00:00
|
|
|
if (!ShouldReflectHistogram(h) || IsEmpty(h)) {
|
2012-01-06 22:13:02 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-04-27 18:07:02 +00:00
|
|
|
JSObject *hobj = JS_NewObject(cx, NULL, NULL, NULL);
|
2012-01-06 22:13:02 +00:00
|
|
|
if (!hobj) {
|
2011-04-27 18:07:02 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2012-02-15 22:01:53 +00:00
|
|
|
JS::AutoObjectRooter root(cx, hobj);
|
2012-01-06 22:13:02 +00:00
|
|
|
switch (ReflectHistogramSnapshot(cx, hobj, h)) {
|
|
|
|
case REFLECT_CORRUPT:
|
|
|
|
// We can still hit this case even if ShouldReflectHistograms
|
|
|
|
// returns true. The histogram lies outside of our control
|
|
|
|
// somehow; just skip it.
|
|
|
|
continue;
|
|
|
|
case REFLECT_FAILURE:
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
case REFLECT_OK:
|
|
|
|
if (!JS_DefineProperty(cx, root_obj, h->histogram_name().c_str(),
|
|
|
|
OBJECT_TO_JSVAL(hobj), NULL, NULL, JSPROP_ENUMERATE)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
2011-04-27 18:07:02 +00:00
|
|
|
}
|
2011-12-14 20:04:25 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-03-02 14:59:38 +00:00
|
|
|
bool
|
|
|
|
TelemetryImpl::CreateHistogramForAddon(const nsACString &name,
|
|
|
|
AddonHistogramInfo &info)
|
|
|
|
{
|
|
|
|
Histogram *h;
|
|
|
|
nsresult rv = HistogramGet(PromiseFlatCString(name).get(),
|
|
|
|
info.min, info.max, info.bucketCount,
|
|
|
|
info.histogramType, &h);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Don't let this histogram be reported via the normal means
|
|
|
|
// (e.g. Telemetry.registeredHistograms); we'll make it available in
|
|
|
|
// other ways.
|
|
|
|
h->ClearFlags(Histogram::kUmaTargetedHistogramFlag);
|
|
|
|
info.h = h;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-01-20 21:56:48 +00:00
|
|
|
bool
|
|
|
|
TelemetryImpl::AddonHistogramReflector(AddonHistogramEntryType *entry,
|
|
|
|
JSContext *cx, JSObject *obj)
|
|
|
|
{
|
2012-03-02 14:59:38 +00:00
|
|
|
AddonHistogramInfo &info = entry->mData;
|
|
|
|
|
2012-01-20 21:56:48 +00:00
|
|
|
// Never even accessed the histogram.
|
2012-03-02 14:59:38 +00:00
|
|
|
if (!info.h) {
|
|
|
|
// Have to force creation of HISTOGRAM_FLAG histograms.
|
|
|
|
if (info.histogramType != nsITelemetry::HISTOGRAM_FLAG)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!CreateHistogramForAddon(entry->GetKey(), info)) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-01-20 21:56:48 +00:00
|
|
|
}
|
|
|
|
|
2012-05-08 14:58:20 +00:00
|
|
|
if (IsEmpty(info.h)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-01-20 21:56:48 +00:00
|
|
|
JSObject *snapshot = JS_NewObject(cx, NULL, NULL, NULL);
|
2012-02-15 22:01:53 +00:00
|
|
|
if (!snapshot) {
|
|
|
|
// Just consider this to be skippable.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
JS::AutoObjectRooter r(cx, snapshot);
|
2012-03-02 14:59:38 +00:00
|
|
|
switch (ReflectHistogramSnapshot(cx, snapshot, info.h)) {
|
2012-01-20 21:56:48 +00:00
|
|
|
case REFLECT_FAILURE:
|
|
|
|
case REFLECT_CORRUPT:
|
|
|
|
return false;
|
|
|
|
case REFLECT_OK:
|
|
|
|
const nsACString &histogramName = entry->GetKey();
|
|
|
|
if (!JS_DefineProperty(cx, obj,
|
|
|
|
PromiseFlatCString(histogramName).get(),
|
|
|
|
OBJECT_TO_JSVAL(snapshot), NULL, NULL,
|
|
|
|
JSPROP_ENUMERATE)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TelemetryImpl::AddonReflector(AddonEntryType *entry,
|
|
|
|
JSContext *cx, JSObject *obj)
|
|
|
|
{
|
|
|
|
const nsACString &addonId = entry->GetKey();
|
|
|
|
JSObject *subobj = JS_NewObject(cx, NULL, NULL, NULL);
|
|
|
|
if (!subobj) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-02-15 22:01:53 +00:00
|
|
|
JS::AutoObjectRooter r(cx, subobj);
|
2012-01-20 21:56:48 +00:00
|
|
|
|
|
|
|
AddonHistogramMapType *map = entry->mData;
|
2012-06-18 20:20:52 +00:00
|
|
|
if (!(map->ReflectIntoJS(AddonHistogramReflector, cx, subobj)
|
2012-01-20 21:56:48 +00:00
|
|
|
&& JS_DefineProperty(cx, obj,
|
|
|
|
PromiseFlatCString(addonId).get(),
|
|
|
|
OBJECT_TO_JSVAL(subobj), NULL, NULL,
|
|
|
|
JSPROP_ENUMERATE))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::GetAddonHistogramSnapshots(JSContext *cx, jsval *ret)
|
|
|
|
{
|
|
|
|
*ret = JSVAL_VOID;
|
|
|
|
JSObject *obj = JS_NewObject(cx, NULL, NULL, NULL);
|
|
|
|
if (!obj) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2012-02-15 22:01:53 +00:00
|
|
|
JS::AutoObjectRooter r(cx, obj);
|
2012-01-20 21:56:48 +00:00
|
|
|
|
2012-06-18 20:20:52 +00:00
|
|
|
if (!mAddonMap.ReflectIntoJS(AddonReflector, cx, obj)) {
|
2012-01-20 21:56:48 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
*ret = OBJECT_TO_JSVAL(obj);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-03-21 17:26:48 +00:00
|
|
|
bool
|
|
|
|
TelemetryImpl::GetSQLStats(JSContext *cx, jsval *ret, bool includePrivateSql)
|
2011-12-14 20:04:25 +00:00
|
|
|
{
|
|
|
|
JSObject *root_obj = JS_NewObject(cx, NULL, NULL, NULL);
|
|
|
|
if (!root_obj)
|
2012-03-21 17:26:48 +00:00
|
|
|
return false;
|
2011-12-14 20:04:25 +00:00
|
|
|
*ret = OBJECT_TO_JSVAL(root_obj);
|
2011-12-06 20:12:55 +00:00
|
|
|
|
|
|
|
MutexAutoLock hashMutex(mHashMutex);
|
|
|
|
// Add info about slow SQL queries on the main thread
|
2012-03-21 17:26:48 +00:00
|
|
|
if (!AddSQLInfo(cx, root_obj, true, includePrivateSql))
|
|
|
|
return false;
|
2011-12-06 20:12:55 +00:00
|
|
|
// Add info about slow SQL queries on other threads
|
2012-03-21 17:26:48 +00:00
|
|
|
if (!AddSQLInfo(cx, root_obj, false, includePrivateSql))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-12-06 20:12:55 +00:00
|
|
|
|
2012-03-21 17:26:48 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::GetSlowSQL(JSContext *cx, jsval *ret)
|
|
|
|
{
|
|
|
|
if (GetSQLStats(cx, ret, false))
|
|
|
|
return NS_OK;
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::GetDebugSlowSQL(JSContext *cx, jsval *ret)
|
|
|
|
{
|
|
|
|
bool revealPrivateSql =
|
|
|
|
Preferences::GetBool("toolkit.telemetry.debugSlowSql", false);
|
|
|
|
if (GetSQLStats(cx, ret, revealPrivateSql))
|
|
|
|
return NS_OK;
|
|
|
|
return NS_ERROR_FAILURE;
|
2011-04-27 18:07:02 +00:00
|
|
|
}
|
|
|
|
|
2012-03-12 11:07:05 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::GetChromeHangs(JSContext *cx, jsval *ret)
|
|
|
|
{
|
|
|
|
MutexAutoLock hangReportMutex(mHangReportsMutex);
|
2012-11-20 14:45:14 +00:00
|
|
|
|
2012-11-27 13:52:25 +00:00
|
|
|
const CombinedStacks& stacks = mHangReports.GetStacks();
|
|
|
|
JSObject *fullReportObj = CreateJSStackObject(cx, stacks);
|
2012-11-20 14:45:14 +00:00
|
|
|
if (!fullReportObj) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ret = OBJECT_TO_JSVAL(fullReportObj);
|
|
|
|
|
2012-11-27 13:52:25 +00:00
|
|
|
JSObject *durationArray = JS_NewArrayObject(cx, 0, nullptr);
|
|
|
|
if (!durationArray) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
JSBool ok = JS_DefineProperty(cx, fullReportObj, "durations",
|
|
|
|
OBJECT_TO_JSVAL(durationArray),
|
|
|
|
NULL, NULL, JSPROP_ENUMERATE);
|
|
|
|
if (!ok) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const size_t length = stacks.GetStackCount();
|
|
|
|
for (size_t i = 0; i < length; ++i) {
|
|
|
|
jsval duration = INT_TO_JSVAL(mHangReports.GetDuration(i));
|
|
|
|
if (!JS_SetElement(cx, durationArray, i, &duration)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSObject *
|
|
|
|
CreateJSStackObject(JSContext *cx, const CombinedStacks &stacks) {
|
|
|
|
JSObject *ret = JS_NewObject(cx, nullptr, nullptr, nullptr);
|
|
|
|
if (!ret) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2012-11-20 14:45:14 +00:00
|
|
|
JSObject *moduleArray = JS_NewArrayObject(cx, 0, nullptr);
|
|
|
|
if (!moduleArray) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-11-20 14:45:14 +00:00
|
|
|
}
|
2012-11-27 13:52:25 +00:00
|
|
|
JSBool ok = JS_DefineProperty(cx, ret, "memoryMap",
|
2012-11-20 14:45:14 +00:00
|
|
|
OBJECT_TO_JSVAL(moduleArray),
|
|
|
|
NULL, NULL, JSPROP_ENUMERATE);
|
|
|
|
if (!ok) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
|
|
|
|
2012-11-27 13:52:25 +00:00
|
|
|
const size_t moduleCount = stacks.GetModuleCount();
|
2012-11-20 14:45:14 +00:00
|
|
|
for (size_t moduleIndex = 0; moduleIndex < moduleCount; ++moduleIndex) {
|
|
|
|
// Current module
|
|
|
|
const Telemetry::ProcessedStack::Module& module =
|
2012-11-27 13:52:25 +00:00
|
|
|
stacks.GetModule(moduleIndex);
|
2012-11-20 14:45:14 +00:00
|
|
|
|
|
|
|
JSObject *moduleInfoArray = JS_NewArrayObject(cx, 0, nullptr);
|
|
|
|
if (!moduleInfoArray) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
2012-11-20 14:45:14 +00:00
|
|
|
jsval val = OBJECT_TO_JSVAL(moduleInfoArray);
|
|
|
|
if (!JS_SetElement(cx, moduleArray, moduleIndex, &val)) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
|
|
|
|
2012-11-20 14:45:14 +00:00
|
|
|
unsigned index = 0;
|
2012-03-12 11:07:05 +00:00
|
|
|
|
2012-11-20 14:45:14 +00:00
|
|
|
// Module name
|
|
|
|
JSString *str = JS_NewStringCopyZ(cx, module.mName.c_str());
|
|
|
|
if (!str) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
2012-11-20 14:45:14 +00:00
|
|
|
val = STRING_TO_JSVAL(str);
|
|
|
|
if (!JS_SetElement(cx, moduleInfoArray, index++, &val)) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
|
|
|
|
2013-01-09 20:05:00 +00:00
|
|
|
// Module breakpad identifier
|
|
|
|
JSString *id = JS_NewStringCopyZ(cx, module.mBreakpadId.c_str());
|
|
|
|
if (!id) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
2013-01-09 20:05:00 +00:00
|
|
|
val = STRING_TO_JSVAL(id);
|
2012-11-20 14:45:14 +00:00
|
|
|
if (!JS_SetElement(cx, moduleInfoArray, index++, &val)) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-11-20 14:45:14 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-12 11:07:05 +00:00
|
|
|
|
2012-11-20 14:45:14 +00:00
|
|
|
JSObject *reportArray = JS_NewArrayObject(cx, 0, nullptr);
|
|
|
|
if (!reportArray) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-11-20 14:45:14 +00:00
|
|
|
}
|
2012-11-27 13:52:25 +00:00
|
|
|
ok = JS_DefineProperty(cx, ret, "stacks",
|
2012-11-20 14:45:14 +00:00
|
|
|
OBJECT_TO_JSVAL(reportArray),
|
|
|
|
NULL, NULL, JSPROP_ENUMERATE);
|
|
|
|
if (!ok) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-11-20 14:45:14 +00:00
|
|
|
}
|
2012-03-12 11:07:05 +00:00
|
|
|
|
2012-11-27 13:52:25 +00:00
|
|
|
const size_t length = stacks.GetStackCount();
|
|
|
|
for (size_t i = 0; i < length; ++i) {
|
2012-11-20 14:45:14 +00:00
|
|
|
// Represent call stack PCs as (module index, offset) pairs.
|
|
|
|
JSObject *pcArray = JS_NewArrayObject(cx, 0, nullptr);
|
|
|
|
if (!pcArray) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-11-20 14:45:14 +00:00
|
|
|
}
|
2012-03-12 11:07:05 +00:00
|
|
|
|
2012-11-20 14:45:14 +00:00
|
|
|
jsval pcArrayVal = OBJECT_TO_JSVAL(pcArray);
|
|
|
|
if (!JS_SetElement(cx, reportArray, i, &pcArrayVal)) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-11-20 14:45:14 +00:00
|
|
|
}
|
2012-03-12 11:07:05 +00:00
|
|
|
|
2012-11-27 13:52:25 +00:00
|
|
|
const CombinedStacks::Stack& stack = stacks.GetStack(i);
|
2012-11-20 14:45:14 +00:00
|
|
|
const uint32_t pcCount = stack.size();
|
|
|
|
for (size_t pcIndex = 0; pcIndex < pcCount; ++pcIndex) {
|
|
|
|
const Telemetry::ProcessedStack::Frame& frame = stack[pcIndex];
|
|
|
|
JSObject *framePair = JS_NewArrayObject(cx, 0, nullptr);
|
|
|
|
if (!framePair) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
2012-11-20 14:45:14 +00:00
|
|
|
int modIndex = (std::numeric_limits<uint16_t>::max() == frame.mModIndex) ?
|
|
|
|
-1 : frame.mModIndex;
|
|
|
|
jsval modIndexVal = INT_TO_JSVAL(modIndex);
|
|
|
|
if (!JS_SetElement(cx, framePair, 0, &modIndexVal)) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
2012-11-20 14:45:14 +00:00
|
|
|
jsval mOffsetVal = INT_TO_JSVAL(frame.mOffset);
|
|
|
|
if (!JS_SetElement(cx, framePair, 1, &mOffsetVal)) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-03-19 23:05:25 +00:00
|
|
|
}
|
2012-11-20 14:45:14 +00:00
|
|
|
jsval framePairVal = OBJECT_TO_JSVAL(framePair);
|
|
|
|
if (!JS_SetElement(cx, pcArray, pcIndex, &framePairVal)) {
|
2012-11-27 13:52:25 +00:00
|
|
|
return nullptr;
|
2012-03-19 23:05:25 +00:00
|
|
|
}
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-27 13:52:25 +00:00
|
|
|
return ret;
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 23:55:35 +00:00
|
|
|
static bool
|
|
|
|
IsValidBreakpadId(const std::string &breakpadId) {
|
|
|
|
if (breakpadId.size() < 33) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (unsigned i = 0, n = breakpadId.size(); i < n; ++i) {
|
|
|
|
char c = breakpadId[i];
|
|
|
|
if ((c < '0' || c > '9') && (c < 'A' || c > 'F')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-08 14:04:37 +00:00
|
|
|
// Read a stack from the given file name. In case of any error, aStack is
|
|
|
|
// unchanged.
|
|
|
|
static void
|
|
|
|
ReadStack(const char *aFileName, Telemetry::ProcessedStack &aStack)
|
|
|
|
{
|
2013-01-15 23:55:35 +00:00
|
|
|
#ifdef XP_MACOSX
|
2013-01-08 14:04:37 +00:00
|
|
|
std::ifstream file(aFileName);
|
|
|
|
|
|
|
|
size_t numModules;
|
|
|
|
file >> numModules;
|
|
|
|
if (file.fail()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
char newline = file.get();
|
|
|
|
if (file.fail() || newline != '\n') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Telemetry::ProcessedStack stack;
|
|
|
|
for (size_t i = 0; i < numModules; ++i) {
|
2013-01-15 23:55:35 +00:00
|
|
|
std::string breakpadId;
|
|
|
|
file >> breakpadId;
|
|
|
|
if (file.fail() || !IsValidBreakpadId(breakpadId)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
char space = file.get();
|
|
|
|
if (file.fail() || space != ' ') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-08 14:04:37 +00:00
|
|
|
std::string moduleName;
|
|
|
|
getline(file, moduleName);
|
2013-01-15 23:55:35 +00:00
|
|
|
if (file.fail() || moduleName[0] == ' ') {
|
2013-01-08 14:04:37 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Telemetry::ProcessedStack::Module module = {
|
|
|
|
moduleName,
|
2013-01-15 23:55:35 +00:00
|
|
|
breakpadId
|
2013-01-08 14:04:37 +00:00
|
|
|
};
|
|
|
|
stack.AddModule(module);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t numFrames;
|
|
|
|
file >> numFrames;
|
|
|
|
if (file.fail()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
newline = file.get();
|
|
|
|
if (file.fail() || newline != '\n') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < numFrames; ++i) {
|
|
|
|
uint16_t index;
|
|
|
|
file >> index;
|
|
|
|
uintptr_t offset;
|
|
|
|
file >> std::hex >> offset >> std::dec;
|
|
|
|
if (file.fail()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Telemetry::ProcessedStack::Frame frame = {
|
|
|
|
offset,
|
|
|
|
index
|
|
|
|
};
|
|
|
|
stack.AddFrame(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
aStack = stack;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TelemetryImpl::ReadLateWritesStacks()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFile> profileDir;
|
|
|
|
nsresult rv = NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR,
|
|
|
|
getter_AddRefs(profileDir));
|
|
|
|
if (!profileDir || NS_FAILED(rv)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoCString nativePath;
|
|
|
|
rv = profileDir->GetNativePath(nativePath);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *name = nativePath.get();
|
|
|
|
PRDir *dir = PR_OpenDir(name);
|
|
|
|
if (!dir) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRDirEntry *ent;
|
|
|
|
const char *prefix = "Telemetry.LateWriteFinal-";
|
|
|
|
unsigned int prefixLen = strlen(prefix);
|
|
|
|
while ((ent = PR_ReadDir(dir, PR_SKIP_NONE))) {
|
|
|
|
if (strncmp(prefix, ent->name, prefixLen) != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoCString stackNativePath = nativePath;
|
|
|
|
stackNativePath += XPCOM_FILE_PATH_SEPARATOR;
|
|
|
|
stackNativePath += nsDependentCString(ent->name);
|
|
|
|
|
|
|
|
Telemetry::ProcessedStack stack;
|
|
|
|
ReadStack(stackNativePath.get(), stack);
|
|
|
|
if (stack.GetStackSize() != 0) {
|
|
|
|
mLateWritesStacks.AddStack(stack);
|
|
|
|
}
|
|
|
|
// Delete the file so that we don't report it again on the next run.
|
|
|
|
PR_Delete(stackNativePath.get());
|
|
|
|
}
|
|
|
|
PR_CloseDir(dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::GetLateWrites(JSContext *cx, jsval *ret)
|
|
|
|
{
|
|
|
|
// The user must call AsyncReadTelemetryData first. We return an empty list
|
|
|
|
// instead of reporting a failure so that the rest of telemetry can uniformly
|
|
|
|
// handle the read not being available yet.
|
|
|
|
|
|
|
|
// FIXME: we allocate the js object again and again in the getter. We should
|
|
|
|
// figure out a way to cache it. In order to do that we have to call
|
|
|
|
// JS_AddNamedObjectRoot. A natural place to do so is in the TelemetryImpl
|
|
|
|
// constructor, but it is not clear how to get a JSContext in there.
|
|
|
|
// Another option would be to call it in here when we first call
|
|
|
|
// CreateJSStackObject, but we would still need to figure out where to call
|
|
|
|
// JS_RemoveObjectRoot. Would it be ok to never call JS_RemoveObjectRoot
|
|
|
|
// and just set the pointer to nullptr is the telemetry destructor?
|
|
|
|
|
|
|
|
JSObject *report;
|
|
|
|
if (!mCachedTelemetryData) {
|
|
|
|
CombinedStacks empty;
|
|
|
|
report = CreateJSStackObject(cx, empty);
|
|
|
|
} else {
|
|
|
|
report = CreateJSStackObject(cx, mLateWritesStacks);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (report == nullptr) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ret = OBJECT_TO_JSVAL(report);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-01-06 19:40:45 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::GetRegisteredHistograms(JSContext *cx, jsval *ret)
|
|
|
|
{
|
|
|
|
size_t count = ArrayLength(gHistograms);
|
|
|
|
JSObject *info = JS_NewObject(cx, NULL, NULL, NULL);
|
|
|
|
if (!info)
|
|
|
|
return NS_ERROR_FAILURE;
|
2012-02-15 22:01:53 +00:00
|
|
|
JS::AutoObjectRooter root(cx, info);
|
2012-01-06 19:40:45 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < count; ++i) {
|
2012-08-28 16:55:32 +00:00
|
|
|
JSString *comment = JS_InternString(cx, gHistograms[i].comment());
|
2012-01-06 19:40:45 +00:00
|
|
|
|
|
|
|
if (!(comment
|
2012-08-28 16:55:32 +00:00
|
|
|
&& JS_DefineProperty(cx, info, gHistograms[i].id(),
|
2012-01-06 19:40:45 +00:00
|
|
|
STRING_TO_JSVAL(comment), NULL, NULL,
|
|
|
|
JSPROP_ENUMERATE))) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*ret = OBJECT_TO_JSVAL(info);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-11-16 20:33:18 +00:00
|
|
|
NS_IMETHODIMP
|
2011-12-03 09:13:14 +00:00
|
|
|
TelemetryImpl::GetHistogramById(const nsACString &name, JSContext *cx, jsval *ret)
|
2011-11-16 20:33:18 +00:00
|
|
|
{
|
2011-06-20 21:47:58 +00:00
|
|
|
Histogram *h;
|
2012-01-06 19:39:29 +00:00
|
|
|
nsresult rv = GetHistogramByName(name, &h);
|
2011-06-20 21:47:58 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return WrapAndReturnHistogram(h, cx, ret);
|
2011-04-27 18:07:02 +00:00
|
|
|
}
|
|
|
|
|
2011-06-28 23:57:44 +00:00
|
|
|
NS_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
TelemetryImpl::GetCanRecord(bool *ret) {
|
2011-06-28 23:57:44 +00:00
|
|
|
*ret = mCanRecord;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
TelemetryImpl::SetCanRecord(bool canRecord) {
|
2011-06-28 23:57:44 +00:00
|
|
|
mCanRecord = !!canRecord;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TelemetryImpl::CanRecord() {
|
|
|
|
return !sTelemetry || sTelemetry->mCanRecord;
|
|
|
|
}
|
2011-06-20 21:47:58 +00:00
|
|
|
|
2012-02-02 04:42:20 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TelemetryImpl::GetCanSend(bool *ret) {
|
|
|
|
#if defined(MOZILLA_OFFICIAL) && defined(MOZ_TELEMETRY_REPORTING)
|
|
|
|
*ret = true;
|
|
|
|
#else
|
|
|
|
*ret = false;
|
|
|
|
#endif
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-06-20 21:47:58 +00:00
|
|
|
already_AddRefed<nsITelemetry>
|
2011-06-28 23:57:44 +00:00
|
|
|
TelemetryImpl::CreateTelemetryInstance()
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(sTelemetry == NULL, "CreateTelemetryInstance may only be called once, via GetService()");
|
|
|
|
sTelemetry = new TelemetryImpl();
|
|
|
|
// AddRef for the local reference
|
|
|
|
NS_ADDREF(sTelemetry);
|
|
|
|
// AddRef for the caller
|
|
|
|
NS_ADDREF(sTelemetry);
|
|
|
|
return sTelemetry;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TelemetryImpl::ShutdownTelemetry()
|
2011-04-27 18:07:02 +00:00
|
|
|
{
|
2011-06-28 23:57:44 +00:00
|
|
|
NS_IF_RELEASE(sTelemetry);
|
2011-04-27 18:07:02 +00:00
|
|
|
}
|
|
|
|
|
2011-12-06 20:12:55 +00:00
|
|
|
void
|
2012-05-16 11:39:21 +00:00
|
|
|
TelemetryImpl::StoreSlowSQL(const nsACString &sql, uint32_t delay,
|
2012-08-21 19:29:28 +00:00
|
|
|
SanitizedState state)
|
2011-12-06 20:12:55 +00:00
|
|
|
{
|
2012-02-13 19:47:40 +00:00
|
|
|
AutoHashtable<SlowSQLEntryType> *slowSQLMap = NULL;
|
2012-08-21 19:29:28 +00:00
|
|
|
if (state == Sanitized)
|
|
|
|
slowSQLMap = &(sTelemetry->mSanitizedSQL);
|
2011-12-06 20:12:55 +00:00
|
|
|
else
|
2012-08-21 19:29:28 +00:00
|
|
|
slowSQLMap = &(sTelemetry->mPrivateSQL);
|
2011-12-06 20:12:55 +00:00
|
|
|
|
|
|
|
MutexAutoLock hashMutex(sTelemetry->mHashMutex);
|
2012-03-21 17:26:48 +00:00
|
|
|
|
|
|
|
SlowSQLEntryType *entry = slowSQLMap->GetEntry(sql);
|
2011-12-06 20:12:55 +00:00
|
|
|
if (!entry) {
|
2012-03-21 17:26:48 +00:00
|
|
|
entry = slowSQLMap->PutEntry(sql);
|
2012-10-26 13:32:10 +00:00
|
|
|
if (MOZ_UNLIKELY(!entry))
|
2011-12-06 20:12:55 +00:00
|
|
|
return;
|
2012-08-21 19:29:28 +00:00
|
|
|
entry->mData.mainThread.hitCount = 0;
|
|
|
|
entry->mData.mainThread.totalTime = 0;
|
|
|
|
entry->mData.otherThreads.hitCount = 0;
|
|
|
|
entry->mData.otherThreads.totalTime = 0;
|
|
|
|
}
|
2012-03-21 17:26:48 +00:00
|
|
|
|
2012-08-21 19:29:28 +00:00
|
|
|
if (NS_IsMainThread()) {
|
|
|
|
entry->mData.mainThread.hitCount++;
|
|
|
|
entry->mData.mainThread.totalTime += delay;
|
|
|
|
} else {
|
|
|
|
entry->mData.otherThreads.hitCount++;
|
|
|
|
entry->mData.otherThreads.totalTime += delay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method replaces string literals in SQL strings with the word :private
|
|
|
|
*
|
|
|
|
* States used in this state machine:
|
|
|
|
*
|
|
|
|
* NORMAL:
|
|
|
|
* - This is the active state when not iterating over a string literal or
|
|
|
|
* comment
|
|
|
|
*
|
|
|
|
* SINGLE_QUOTE:
|
|
|
|
* - Defined here: http://www.sqlite.org/lang_expr.html
|
|
|
|
* - This state represents iterating over a string literal opened with
|
|
|
|
* a single quote.
|
|
|
|
* - A single quote within the string can be encoded by putting 2 single quotes
|
|
|
|
* in a row, e.g. 'This literal contains an escaped quote '''
|
|
|
|
* - Any double quotes found within a single-quoted literal are ignored
|
|
|
|
* - This state covers BLOB literals, e.g. X'ABC123'
|
|
|
|
* - The string literal and the enclosing quotes will be replaced with
|
|
|
|
* the text :private
|
|
|
|
*
|
|
|
|
* DOUBLE_QUOTE:
|
|
|
|
* - Same rules as the SINGLE_QUOTE state.
|
|
|
|
* - According to http://www.sqlite.org/lang_keywords.html,
|
|
|
|
* SQLite interprets text in double quotes as an identifier unless it's used in
|
|
|
|
* a context where it cannot be resolved to an identifier and a string literal
|
|
|
|
* is allowed. This method removes text in double-quotes for safety.
|
|
|
|
*
|
|
|
|
* DASH_COMMENT:
|
|
|
|
* - http://www.sqlite.org/lang_comment.html
|
|
|
|
* - A dash comment starts with two dashes in a row,
|
|
|
|
* e.g. DROP TABLE foo -- a comment
|
|
|
|
* - Any text following two dashes in a row is interpreted as a comment until
|
|
|
|
* end of input or a newline character
|
|
|
|
* - Any quotes found within the comment are ignored and no replacements made
|
|
|
|
*
|
|
|
|
* C_STYLE_COMMENT:
|
|
|
|
* - http://www.sqlite.org/lang_comment.html
|
|
|
|
* - A C-style comment starts with a forward slash and an asterisk, and ends
|
|
|
|
* with an asterisk and a forward slash
|
|
|
|
* - Any text following comment start is interpreted as a comment up to end of
|
|
|
|
* input or comment end
|
|
|
|
* - Any quotes found within the comment are ignored and no replacements made
|
|
|
|
*/
|
|
|
|
nsCString
|
|
|
|
TelemetryImpl::SanitizeSQL(const nsACString &sql) {
|
|
|
|
nsCString output;
|
|
|
|
int length = sql.Length();
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
NORMAL,
|
|
|
|
SINGLE_QUOTE,
|
|
|
|
DOUBLE_QUOTE,
|
|
|
|
DASH_COMMENT,
|
|
|
|
C_STYLE_COMMENT,
|
|
|
|
} State;
|
|
|
|
|
|
|
|
State state = NORMAL;
|
|
|
|
int fragmentStart = 0;
|
|
|
|
for (int i = 0; i < length; i++) {
|
|
|
|
char character = sql[i];
|
|
|
|
char nextCharacter = (i + 1 < length) ? sql[i + 1] : '\0';
|
|
|
|
|
|
|
|
switch (character) {
|
|
|
|
case '\'':
|
|
|
|
case '"':
|
|
|
|
if (state == NORMAL) {
|
|
|
|
state = (character == '\'') ? SINGLE_QUOTE : DOUBLE_QUOTE;
|
|
|
|
output += nsDependentCSubstring(sql, fragmentStart, i - fragmentStart);
|
|
|
|
output += ":private";
|
|
|
|
fragmentStart = -1;
|
|
|
|
} else if ((state == SINGLE_QUOTE && character == '\'') ||
|
|
|
|
(state == DOUBLE_QUOTE && character == '"')) {
|
|
|
|
if (nextCharacter == character) {
|
|
|
|
// Two consecutive quotes within a string literal are a single escaped quote
|
|
|
|
i++;
|
|
|
|
} else {
|
|
|
|
state = NORMAL;
|
|
|
|
fragmentStart = i + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
if (state == NORMAL) {
|
|
|
|
if (nextCharacter == '-') {
|
|
|
|
state = DASH_COMMENT;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '\n':
|
|
|
|
if (state == DASH_COMMENT) {
|
|
|
|
state = NORMAL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '/':
|
|
|
|
if (state == NORMAL) {
|
|
|
|
if (nextCharacter == '*') {
|
|
|
|
state = C_STYLE_COMMENT;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '*':
|
|
|
|
if (state == C_STYLE_COMMENT) {
|
|
|
|
if (nextCharacter == '/') {
|
|
|
|
state = NORMAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
2011-12-06 20:12:55 +00:00
|
|
|
}
|
2012-03-21 17:26:48 +00:00
|
|
|
|
2012-08-21 19:29:28 +00:00
|
|
|
if ((fragmentStart >= 0) && fragmentStart < length)
|
|
|
|
output += nsDependentCSubstring(sql, fragmentStart, length - fragmentStart);
|
|
|
|
|
|
|
|
return output;
|
2011-12-06 20:12:55 +00:00
|
|
|
}
|
|
|
|
|
2012-03-21 17:26:48 +00:00
|
|
|
void
|
2012-08-21 19:29:28 +00:00
|
|
|
TelemetryImpl::RecordSlowStatement(const nsACString &sql,
|
|
|
|
const nsACString &dbName,
|
|
|
|
uint32_t delay)
|
2012-03-21 17:26:48 +00:00
|
|
|
{
|
2012-08-31 19:20:20 +00:00
|
|
|
if (!sTelemetry || !sTelemetry->mCanRecord)
|
2012-03-21 17:26:48 +00:00
|
|
|
return;
|
|
|
|
|
2012-09-02 02:35:17 +00:00
|
|
|
nsAutoCString fullSQL(sql);
|
2012-08-21 19:29:28 +00:00
|
|
|
fullSQL.AppendPrintf(" /* %s */", dbName.BeginReading());
|
|
|
|
|
|
|
|
bool isFirefoxDB = sTelemetry->mTrackedDBs.Contains(dbName);
|
|
|
|
if (isFirefoxDB) {
|
2012-09-02 02:35:17 +00:00
|
|
|
nsAutoCString sanitizedSQL(SanitizeSQL(fullSQL));
|
2012-08-21 19:29:28 +00:00
|
|
|
StoreSlowSQL(sanitizedSQL, delay, Sanitized);
|
|
|
|
} else {
|
|
|
|
// Report aggregate DB-level statistics for addon DBs
|
2012-09-02 02:35:17 +00:00
|
|
|
nsAutoCString aggregate;
|
2012-03-21 17:26:48 +00:00
|
|
|
aggregate.AppendPrintf("Untracked SQL for %s", dbName.BeginReading());
|
2012-08-21 19:29:28 +00:00
|
|
|
StoreSlowSQL(aggregate, delay, Sanitized);
|
2012-03-21 17:26:48 +00:00
|
|
|
}
|
|
|
|
|
2012-08-21 19:29:28 +00:00
|
|
|
StoreSlowSQL(fullSQL, delay, Unsanitized);
|
2012-03-21 17:26:48 +00:00
|
|
|
}
|
|
|
|
|
2012-03-15 02:57:04 +00:00
|
|
|
#if defined(MOZ_ENABLE_PROFILER_SPS)
|
2012-03-12 11:07:05 +00:00
|
|
|
void
|
2012-05-16 11:39:21 +00:00
|
|
|
TelemetryImpl::RecordChromeHang(uint32_t duration,
|
2012-08-21 21:14:38 +00:00
|
|
|
Telemetry::ProcessedStack &aStack)
|
2012-03-12 11:07:05 +00:00
|
|
|
{
|
2012-08-31 19:20:20 +00:00
|
|
|
if (!sTelemetry || !sTelemetry->mCanRecord)
|
2012-03-12 11:07:05 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
MutexAutoLock hangReportMutex(sTelemetry->mHangReportsMutex);
|
|
|
|
|
2012-11-05 18:45:19 +00:00
|
|
|
sTelemetry->mHangReports.AddHang(aStack, duration);
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
2012-03-15 02:57:04 +00:00
|
|
|
#endif
|
2012-03-12 11:07:05 +00:00
|
|
|
|
2011-06-28 23:57:44 +00:00
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS1(TelemetryImpl, nsITelemetry)
|
|
|
|
NS_GENERIC_FACTORY_SINGLETON_CONSTRUCTOR(nsITelemetry, TelemetryImpl::CreateTelemetryInstance)
|
2011-04-27 18:07:02 +00:00
|
|
|
|
|
|
|
#define NS_TELEMETRY_CID \
|
2011-05-20 02:33:05 +00:00
|
|
|
{0xaea477f2, 0xb3a2, 0x469c, {0xaa, 0x29, 0x0a, 0x82, 0xd1, 0x32, 0xb8, 0x29}}
|
2011-04-27 18:07:02 +00:00
|
|
|
NS_DEFINE_NAMED_CID(NS_TELEMETRY_CID);
|
|
|
|
|
2011-06-20 21:47:58 +00:00
|
|
|
const Module::CIDEntry kTelemetryCIDs[] = {
|
|
|
|
{ &kNS_TELEMETRY_CID, false, NULL, nsITelemetryConstructor },
|
2011-04-27 18:07:02 +00:00
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2011-06-20 21:47:58 +00:00
|
|
|
const Module::ContractIDEntry kTelemetryContracts[] = {
|
2011-04-27 18:07:02 +00:00
|
|
|
{ "@mozilla.org/base/telemetry;1", &kNS_TELEMETRY_CID },
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2011-06-20 21:47:58 +00:00
|
|
|
const Module kTelemetryModule = {
|
|
|
|
Module::kVersion,
|
2011-04-27 18:07:02 +00:00
|
|
|
kTelemetryCIDs,
|
|
|
|
kTelemetryContracts,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2011-06-28 23:57:44 +00:00
|
|
|
TelemetryImpl::ShutdownTelemetry
|
2011-04-27 18:07:02 +00:00
|
|
|
};
|
|
|
|
|
2011-05-20 02:33:05 +00:00
|
|
|
} // anonymous namespace
|
|
|
|
|
2011-06-20 21:47:58 +00:00
|
|
|
namespace mozilla {
|
2012-12-13 17:06:27 +00:00
|
|
|
void
|
|
|
|
RecordShutdownStartTimeStamp() {
|
2013-01-17 16:40:14 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static bool recorded = false;
|
|
|
|
MOZ_ASSERT(!recorded);
|
|
|
|
recorded = true;
|
|
|
|
#endif
|
|
|
|
|
2012-12-13 17:06:27 +00:00
|
|
|
if (!Telemetry::CanRecord())
|
|
|
|
return;
|
|
|
|
|
|
|
|
gRecordedShutdownStartTime = TimeStamp::Now();
|
|
|
|
|
|
|
|
GetShutdownTimeFileName();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RecordShutdownEndTimeStamp() {
|
|
|
|
if (!gRecordedShutdownTimeFileName || gAlreadyFreedShutdownTimeFileName)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsCString name(gRecordedShutdownTimeFileName);
|
|
|
|
PL_strfree(gRecordedShutdownTimeFileName);
|
|
|
|
gRecordedShutdownTimeFileName = nullptr;
|
|
|
|
gAlreadyFreedShutdownTimeFileName = true;
|
|
|
|
|
|
|
|
nsCString tmpName = name;
|
|
|
|
tmpName += ".tmp";
|
|
|
|
FILE *f = fopen(tmpName.get(), "w");
|
|
|
|
if (!f)
|
|
|
|
return;
|
|
|
|
// On a normal release build this should be called just before
|
|
|
|
// calling _exit, but on a debug build or when the user forces a full
|
|
|
|
// shutdown this is called as late as possible, so we have to
|
|
|
|
// white list this write as write poisoning will be enabled.
|
|
|
|
int fd = fileno(f);
|
|
|
|
MozillaRegisterDebugFD(fd);
|
|
|
|
|
|
|
|
TimeStamp now = TimeStamp::Now();
|
|
|
|
MOZ_ASSERT(now >= gRecordedShutdownStartTime);
|
|
|
|
TimeDuration diff = now - gRecordedShutdownStartTime;
|
|
|
|
uint32_t diff2 = diff.ToMilliseconds();
|
|
|
|
int written = fprintf(f, "%d\n", diff2);
|
|
|
|
MozillaUnRegisterDebugFILE(f);
|
|
|
|
int rv = fclose(f);
|
|
|
|
if (written < 0 || rv != 0) {
|
|
|
|
PR_Delete(tmpName.get());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
PR_Delete(name.get());
|
|
|
|
PR_Rename(tmpName.get(), name.get());
|
|
|
|
}
|
|
|
|
|
2011-06-20 21:47:58 +00:00
|
|
|
namespace Telemetry {
|
|
|
|
|
|
|
|
void
|
2012-05-16 11:39:21 +00:00
|
|
|
Accumulate(ID aHistogram, uint32_t aSample)
|
2011-06-20 21:47:58 +00:00
|
|
|
{
|
2011-06-28 23:57:44 +00:00
|
|
|
if (!TelemetryImpl::CanRecord()) {
|
|
|
|
return;
|
|
|
|
}
|
2011-06-20 21:47:58 +00:00
|
|
|
Histogram *h;
|
|
|
|
nsresult rv = GetHistogramByEnumId(aHistogram, &h);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
h->Add(aSample);
|
|
|
|
}
|
|
|
|
|
2011-10-10 17:04:57 +00:00
|
|
|
void
|
|
|
|
AccumulateTimeDelta(ID aHistogram, TimeStamp start, TimeStamp end)
|
|
|
|
{
|
|
|
|
Accumulate(aHistogram,
|
2012-05-16 11:39:21 +00:00
|
|
|
static_cast<uint32_t>((end - start).ToMilliseconds()));
|
2011-10-10 17:04:57 +00:00
|
|
|
}
|
|
|
|
|
2012-01-18 17:08:18 +00:00
|
|
|
bool
|
|
|
|
CanRecord()
|
|
|
|
{
|
|
|
|
return TelemetryImpl::CanRecord();
|
|
|
|
}
|
|
|
|
|
2011-08-05 13:53:48 +00:00
|
|
|
base::Histogram*
|
|
|
|
GetHistogramById(ID id)
|
|
|
|
{
|
|
|
|
Histogram *h = NULL;
|
|
|
|
GetHistogramByEnumId(id, &h);
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
2011-12-06 20:12:55 +00:00
|
|
|
void
|
|
|
|
RecordSlowSQLStatement(const nsACString &statement,
|
|
|
|
const nsACString &dbName,
|
2012-08-21 19:29:28 +00:00
|
|
|
uint32_t delay)
|
2011-12-06 20:12:55 +00:00
|
|
|
{
|
2012-08-21 19:29:28 +00:00
|
|
|
TelemetryImpl::RecordSlowStatement(statement, dbName, delay);
|
2011-12-06 20:12:55 +00:00
|
|
|
}
|
|
|
|
|
2012-01-10 20:29:58 +00:00
|
|
|
void Init()
|
|
|
|
{
|
|
|
|
// Make the service manager hold a long-lived reference to the service
|
|
|
|
nsCOMPtr<nsITelemetry> telemetryService =
|
|
|
|
do_GetService("@mozilla.org/base/telemetry;1");
|
|
|
|
MOZ_ASSERT(telemetryService);
|
|
|
|
}
|
|
|
|
|
2012-03-15 02:57:04 +00:00
|
|
|
#if defined(MOZ_ENABLE_PROFILER_SPS)
|
2012-05-16 11:39:21 +00:00
|
|
|
void RecordChromeHang(uint32_t duration,
|
2012-08-21 21:14:38 +00:00
|
|
|
ProcessedStack &aStack)
|
|
|
|
{
|
|
|
|
TelemetryImpl::RecordChromeHang(duration, aStack);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ProcessedStack::ProcessedStack()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t ProcessedStack::GetStackSize() const
|
|
|
|
{
|
|
|
|
return mStack.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
const ProcessedStack::Frame &ProcessedStack::GetFrame(unsigned aIndex) const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aIndex < mStack.size());
|
|
|
|
return mStack[aIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessedStack::AddFrame(const Frame &aFrame)
|
|
|
|
{
|
|
|
|
mStack.push_back(aFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t ProcessedStack::GetNumModules() const
|
|
|
|
{
|
|
|
|
return mModules.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
const ProcessedStack::Module &ProcessedStack::GetModule(unsigned aIndex) const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aIndex < mModules.size());
|
|
|
|
return mModules[aIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessedStack::AddModule(const Module &aModule)
|
|
|
|
{
|
|
|
|
mModules.push_back(aModule);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessedStack::Clear() {
|
|
|
|
mModules.clear();
|
|
|
|
mStack.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProcessedStack::Module::operator==(const Module& aOther) const {
|
|
|
|
return mName == aOther.mName &&
|
2013-01-09 20:05:00 +00:00
|
|
|
mBreakpadId == aOther.mBreakpadId;
|
2012-08-21 21:14:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct StackFrame
|
|
|
|
{
|
|
|
|
uintptr_t mPC; // The program counter at this position in the call stack.
|
|
|
|
uint16_t mIndex; // The number of this frame in the call stack.
|
|
|
|
uint16_t mModIndex; // The index of module that has this program counter.
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef MOZ_ENABLE_PROFILER_SPS
|
|
|
|
static bool CompareByPC(const StackFrame &a, const StackFrame &b)
|
2012-03-12 11:07:05 +00:00
|
|
|
{
|
2012-08-21 21:14:38 +00:00
|
|
|
return a.mPC < b.mPC;
|
2012-03-12 11:07:05 +00:00
|
|
|
}
|
2012-08-21 21:14:38 +00:00
|
|
|
|
|
|
|
static bool CompareByIndex(const StackFrame &a, const StackFrame &b)
|
|
|
|
{
|
|
|
|
return a.mIndex < b.mIndex;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-11-20 14:45:14 +00:00
|
|
|
ProcessedStack
|
|
|
|
GetStackAndModules(const std::vector<uintptr_t>& aPCs)
|
2012-08-21 21:14:38 +00:00
|
|
|
{
|
|
|
|
std::vector<StackFrame> rawStack;
|
|
|
|
for (std::vector<uintptr_t>::const_iterator i = aPCs.begin(),
|
|
|
|
e = aPCs.end(); i != e; ++i) {
|
|
|
|
uintptr_t aPC = *i;
|
|
|
|
StackFrame Frame = {aPC, static_cast<uint16_t>(rawStack.size()),
|
|
|
|
std::numeric_limits<uint16_t>::max()};
|
|
|
|
rawStack.push_back(Frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef MOZ_ENABLE_PROFILER_SPS
|
|
|
|
// Remove all modules not referenced by a PC on the stack
|
|
|
|
std::sort(rawStack.begin(), rawStack.end(), CompareByPC);
|
|
|
|
|
|
|
|
size_t moduleIndex = 0;
|
|
|
|
size_t stackIndex = 0;
|
|
|
|
size_t stackSize = rawStack.size();
|
|
|
|
|
|
|
|
SharedLibraryInfo rawModules = SharedLibraryInfo::GetInfoForSelf();
|
|
|
|
rawModules.SortByAddress();
|
|
|
|
|
|
|
|
while (moduleIndex < rawModules.GetSize()) {
|
|
|
|
const SharedLibrary& module = rawModules.GetEntry(moduleIndex);
|
|
|
|
uintptr_t moduleStart = module.GetStart();
|
|
|
|
uintptr_t moduleEnd = module.GetEnd() - 1;
|
|
|
|
// the interval is [moduleStart, moduleEnd)
|
|
|
|
|
|
|
|
bool moduleReferenced = false;
|
|
|
|
for (;stackIndex < stackSize; ++stackIndex) {
|
|
|
|
uintptr_t pc = rawStack[stackIndex].mPC;
|
|
|
|
if (pc >= moduleEnd)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (pc >= moduleStart) {
|
|
|
|
// If the current PC is within the current module, mark
|
|
|
|
// module as used
|
|
|
|
moduleReferenced = true;
|
2012-11-20 14:45:14 +00:00
|
|
|
rawStack[stackIndex].mPC -= moduleStart;
|
2012-08-21 21:14:38 +00:00
|
|
|
rawStack[stackIndex].mModIndex = moduleIndex;
|
|
|
|
} else {
|
|
|
|
// PC does not belong to any module. It is probably from
|
|
|
|
// the JIT. Use a fixed mPC so that we don't get different
|
|
|
|
// stacks on different runs.
|
|
|
|
rawStack[stackIndex].mPC =
|
|
|
|
std::numeric_limits<uintptr_t>::max();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (moduleReferenced) {
|
|
|
|
++moduleIndex;
|
|
|
|
} else {
|
|
|
|
// Remove module if no PCs within its address range
|
|
|
|
rawModules.RemoveEntries(moduleIndex, moduleIndex + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (;stackIndex < stackSize; ++stackIndex) {
|
|
|
|
// These PCs are past the last module.
|
|
|
|
rawStack[stackIndex].mPC = std::numeric_limits<uintptr_t>::max();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(rawStack.begin(), rawStack.end(), CompareByIndex);
|
2012-03-15 02:57:04 +00:00
|
|
|
#endif
|
2012-03-12 11:07:05 +00:00
|
|
|
|
2012-08-21 21:14:38 +00:00
|
|
|
// Copy the information to the return value.
|
|
|
|
ProcessedStack Ret;
|
|
|
|
for (std::vector<StackFrame>::iterator i = rawStack.begin(),
|
|
|
|
e = rawStack.end(); i != e; ++i) {
|
|
|
|
const StackFrame &rawFrame = *i;
|
|
|
|
ProcessedStack::Frame frame = { rawFrame.mPC, rawFrame.mModIndex };
|
|
|
|
Ret.AddFrame(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef MOZ_ENABLE_PROFILER_SPS
|
|
|
|
for (unsigned i = 0, n = rawModules.GetSize(); i != n; ++i) {
|
|
|
|
const SharedLibrary &info = rawModules.GetEntry(i);
|
2013-01-17 02:02:32 +00:00
|
|
|
const std::string &name = info.GetName();
|
|
|
|
std::string basename = name;
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
// FIXME: We want to use just the basename as the libname, but the
|
|
|
|
// current profiler addon needs the full path name, so we compute the
|
|
|
|
// basename in here.
|
|
|
|
size_t pos = name.rfind('/');
|
|
|
|
if (pos != std::string::npos) {
|
|
|
|
basename = name.substr(pos + 1);
|
|
|
|
}
|
|
|
|
#endif
|
2012-08-21 21:14:38 +00:00
|
|
|
ProcessedStack::Module module = {
|
2013-01-17 02:02:32 +00:00
|
|
|
basename,
|
2013-01-09 20:05:00 +00:00
|
|
|
info.GetBreakpadId()
|
2012-08-21 21:14:38 +00:00
|
|
|
};
|
|
|
|
Ret.AddModule(module);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return Ret;
|
|
|
|
}
|
|
|
|
|
2011-06-20 21:47:58 +00:00
|
|
|
} // namespace Telemetry
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2011-04-27 18:07:02 +00:00
|
|
|
NSMODULE_DEFN(nsTelemetryModule) = &kTelemetryModule;
|
2011-05-22 06:23:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The XRE_TelemetryAdd function is to be used by embedding applications
|
|
|
|
* that can't use mozilla::Telemetry::Accumulate() directly.
|
|
|
|
*/
|
|
|
|
void
|
2012-05-16 11:39:21 +00:00
|
|
|
XRE_TelemetryAccumulate(int aID, uint32_t aSample)
|
2011-05-22 06:23:20 +00:00
|
|
|
{
|
|
|
|
mozilla::Telemetry::Accumulate((mozilla::Telemetry::ID) aID, aSample);
|
|
|
|
}
|