gecko-dev/gfx/layers/ProfilerScreenshots.cpp

143 строки
4.4 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "mozilla/layers/ProfilerScreenshots.h"
#include "mozilla/TimeStamp.h"
#include "GeckoProfiler.h"
#include "gfxUtils.h"
#include "nsThreadUtils.h"
#ifdef MOZ_GECKO_PROFILER
#include "ProfilerMarkerPayload.h"
#endif
using namespace mozilla;
using namespace mozilla::layers;
ProfilerScreenshots::ProfilerScreenshots()
: mMutex("ProfilerScreenshots::mMutex")
, mLiveSurfaceCount(0)
{
}
ProfilerScreenshots::~ProfilerScreenshots()
{
if (mThread) {
mThread->Shutdown();
mThread = nullptr;
}
}
/* static */ bool
ProfilerScreenshots::IsEnabled()
{
#ifdef MOZ_GECKO_PROFILER
return profiler_feature_active(ProfilerFeature::Screenshots);
#else
return false;
#endif
}
void
ProfilerScreenshots::SubmitScreenshot(uintptr_t aWindowIdentifier,
const gfx::IntSize& aOriginalSize,
const IntSize& aScaledSize,
const TimeStamp& aTimeStamp,
const std::function<bool(DataSourceSurface*)>& aPopulateSurface)
{
#ifdef MOZ_GECKO_PROFILER
RefPtr<DataSourceSurface> backingSurface = TakeNextSurface();
if (!backingSurface) {
return;
}
MOZ_RELEASE_ASSERT(aScaledSize <= backingSurface->GetSize());
bool succeeded = aPopulateSurface(backingSurface);
if (!succeeded) {
PROFILER_ADD_MARKER("NoCompositorScreenshot because aPopulateSurface callback failed");
ReturnSurface(backingSurface);
return;
}
if (!mThread) {
nsresult rv =
NS_NewNamedThread("ProfScreenshot", getter_AddRefs(mThread));
if (NS_WARN_IF(NS_FAILED(rv))) {
PROFILER_ADD_MARKER("NoCompositorScreenshot because ProfilerScreenshots thread creation failed");
ReturnSurface(backingSurface);
return;
}
}
int sourceThread = profiler_current_thread_id();
uintptr_t windowIdentifier = aWindowIdentifier;
IntSize originalSize = aOriginalSize;
IntSize scaledSize = aScaledSize;
TimeStamp timeStamp = aTimeStamp;
mThread->Dispatch(
NS_NewRunnableFunction("ProfilerScreenshots::SubmitScreenshot",
[this, backingSurface, sourceThread, windowIdentifier,
originalSize, scaledSize, timeStamp]() {
// Create a new surface that wraps backingSurface's data but has the correct
// size.
{
DataSourceSurface::ScopedMap scopedMap(backingSurface, DataSourceSurface::READ);
RefPtr<DataSourceSurface> surf =
Factory::CreateWrappingDataSourceSurface(
scopedMap.GetData(), scopedMap.GetStride(), scaledSize, SurfaceFormat::B8G8R8A8);
// Encode surf to a JPEG data URL.
nsCString dataURL;
nsresult rv =
gfxUtils::EncodeSourceSurface(surf, NS_LITERAL_CSTRING("image/jpeg"),
NS_LITERAL_STRING("quality=85"),
gfxUtils::eDataURIEncode,
nullptr, &dataURL);
if (NS_SUCCEEDED(rv)) {
// Add a marker with the data URL.
profiler_add_marker_for_thread(
sourceThread,
"CompositorScreenshot",
MakeUnique<ScreenshotPayload>(timeStamp, Move(dataURL),
originalSize, windowIdentifier));
}
}
// Return backingSurface back to the surface pool.
ReturnSurface(backingSurface);
}));
#endif
}
already_AddRefed<DataSourceSurface>
ProfilerScreenshots::TakeNextSurface()
{
MutexAutoLock mon(mMutex);
if (!mAvailableSurfaces.IsEmpty()) {
RefPtr<DataSourceSurface> surf = mAvailableSurfaces[0];
mAvailableSurfaces.RemoveElementAt(0);
return surf.forget();
}
if (mLiveSurfaceCount >= 8) {
NS_WARNING("already 8 surfaces in flight, skipping capture for this composite");
return nullptr;
}
mLiveSurfaceCount++;
return Factory::CreateDataSourceSurface(ScreenshotSize(),
SurfaceFormat::B8G8R8A8);
}
void
ProfilerScreenshots::ReturnSurface(DataSourceSurface* aSurface)
{
MutexAutoLock mon(this->mMutex);
mAvailableSurfaces.AppendElement(aSurface);
}