gecko-dev/tools/profiler/core/PageInformation.cpp
Gerald Squelart 782cf5d3ad Bug 1657033 - Use Span<const char> in JSONWriter - r=froydnj
In most situations, JSONWriter users already know string lengths (either directly, or through `nsCString` and friends), so we should keep this information through JSONWriter and not recompute it again.
This also allows using JSONWriter with sub-strings (e.g., from a bigger buffer), without having to create null-terminated strings.

Public JSONWriter functions have overloads that accept literal strings.

Differential Revision: https://phabricator.services.mozilla.com/D86192
2020-09-14 02:33:20 +00:00

42 lines
1.8 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "PageInformation.h"
#include "mozilla/ProfileJSONWriter.h"
PageInformation::PageInformation(uint64_t aBrowsingContextID,
uint64_t aInnerWindowID, const nsCString& aUrl,
uint64_t aEmbedderInnerWindowID)
: mBrowsingContextID(aBrowsingContextID),
mInnerWindowID(aInnerWindowID),
mUrl(aUrl),
mEmbedderInnerWindowID(aEmbedderInnerWindowID) {}
bool PageInformation::Equals(PageInformation* aOtherPageInfo) const {
// It's enough to check inner window IDs because they are unique for each
// page. Therefore, we don't have to check browsing context ID or url.
return InnerWindowID() == aOtherPageInfo->InnerWindowID();
}
void PageInformation::StreamJSON(SpliceableJSONWriter& aWriter) const {
// Here, we are converting uint64_t to double. Both Browsing Context and Inner
// Window IDs are creating using `nsContentUtils::GenerateProcessSpecificId`,
// which is specifically designed to only use 53 of the 64 bits to be lossless
// when passed into and out of JS as a double.
aWriter.StartObjectElement();
aWriter.DoubleProperty("browsingContextID", BrowsingContextID());
aWriter.DoubleProperty("innerWindowID", InnerWindowID());
aWriter.StringProperty("url", Url());
aWriter.DoubleProperty("embedderInnerWindowID", EmbedderInnerWindowID());
aWriter.EndObject();
}
size_t PageInformation::SizeOfIncludingThis(
mozilla::MallocSizeOf aMallocSizeOf) const {
return aMallocSizeOf(this);
}