2015-02-13 19:36:47 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2015-01-05 17:39:16 +00:00
|
|
|
* 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/. */
|
|
|
|
|
|
|
|
#ifndef TimelineMarker_h__
|
|
|
|
#define TimelineMarker_h__
|
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "GeckoProfiler.h"
|
|
|
|
#include "mozilla/dom/ProfileTimelineMarkerBinding.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "jsapi.h"
|
|
|
|
|
|
|
|
class nsDocShell;
|
|
|
|
|
|
|
|
// Objects of this type can be added to the timeline. The class can
|
|
|
|
// also be subclassed to let a given marker creator provide custom
|
|
|
|
// details.
|
|
|
|
class TimelineMarker
|
|
|
|
{
|
|
|
|
public:
|
2015-05-20 09:28:00 +00:00
|
|
|
enum TimelineStackRequest { STACK, NO_STACK };
|
|
|
|
|
2015-01-05 17:39:16 +00:00
|
|
|
TimelineMarker(nsDocShell* aDocShell, const char* aName,
|
|
|
|
TracingMetadata aMetaData);
|
|
|
|
|
|
|
|
TimelineMarker(nsDocShell* aDocShell, const char* aName,
|
|
|
|
TracingMetadata aMetaData,
|
2015-05-20 09:28:00 +00:00
|
|
|
const nsAString& aCause,
|
|
|
|
TimelineStackRequest aStackRequest = STACK);
|
2015-01-05 17:39:16 +00:00
|
|
|
|
|
|
|
virtual ~TimelineMarker();
|
|
|
|
|
|
|
|
// Check whether two markers should be considered the same,
|
|
|
|
// for the purpose of pairing start and end markers. Normally
|
|
|
|
// this definition suffices.
|
2015-03-27 12:42:00 +00:00
|
|
|
virtual bool Equals(const TimelineMarker& aOther)
|
2015-01-05 17:39:16 +00:00
|
|
|
{
|
2015-03-27 12:42:00 +00:00
|
|
|
return strcmp(mName, aOther.mName) == 0;
|
2015-01-05 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add details specific to this marker type to aMarker. The
|
|
|
|
// standard elements have already been set. This method is
|
|
|
|
// called on both the starting and ending markers of a pair.
|
|
|
|
// Ordinarily the ending marker doesn't need to do anything
|
|
|
|
// here.
|
2015-05-20 09:28:00 +00:00
|
|
|
virtual void AddDetails(JSContext* aCx,
|
|
|
|
mozilla::dom::ProfileTimelineMarker& aMarker)
|
|
|
|
{}
|
2015-01-05 17:39:16 +00:00
|
|
|
|
2015-02-13 19:36:37 +00:00
|
|
|
virtual void AddLayerRectangles(
|
|
|
|
mozilla::dom::Sequence<mozilla::dom::ProfileTimelineLayerRect>&)
|
2015-01-05 17:39:16 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT_UNREACHABLE("can only be called on layer markers");
|
|
|
|
}
|
|
|
|
|
2015-02-13 19:36:37 +00:00
|
|
|
const char* GetName() const { return mName; }
|
|
|
|
TracingMetadata GetMetaData() const { return mMetaData; }
|
|
|
|
DOMHighResTimeStamp GetTime() const { return mTime; }
|
|
|
|
const nsString& GetCause() const { return mCause; }
|
2015-01-05 17:39:16 +00:00
|
|
|
|
|
|
|
JSObject* GetStack()
|
|
|
|
{
|
2015-01-23 10:23:57 +00:00
|
|
|
if (mStackTrace.initialized()) {
|
|
|
|
return mStackTrace;
|
2015-01-05 17:39:16 +00:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void CaptureStack()
|
|
|
|
{
|
|
|
|
JSContext* ctx = nsContentUtils::GetCurrentJSContext();
|
|
|
|
if (ctx) {
|
|
|
|
JS::RootedObject stack(ctx);
|
|
|
|
if (JS::CaptureCurrentStack(ctx, &stack)) {
|
2015-01-23 10:23:57 +00:00
|
|
|
mStackTrace.init(ctx, stack.get());
|
2015-01-05 17:39:16 +00:00
|
|
|
} else {
|
|
|
|
JS_ClearPendingException(ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const char* mName;
|
|
|
|
TracingMetadata mMetaData;
|
|
|
|
DOMHighResTimeStamp mTime;
|
|
|
|
nsString mCause;
|
|
|
|
|
2015-01-05 18:00:00 +00:00
|
|
|
// While normally it is not a good idea to make a persistent root,
|
|
|
|
// in this case changing nsDocShell to participate in cycle
|
|
|
|
// collection was deemed too invasive, and the markers are only held
|
2015-01-05 17:39:16 +00:00
|
|
|
// here temporarily to boot.
|
2015-01-23 10:23:57 +00:00
|
|
|
JS::PersistentRooted<JSObject*> mStackTrace;
|
2015-01-05 17:39:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* TimelineMarker_h__ */
|