blob: 5bb02bb3e4bcda6d4314414f890d0a54adc50920 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/command_buffer/service/shared_image_manager.h"
#include <inttypes.h>
#include <utility>
#include "base/logging.h"
#include "base/strings/stringprintf.h"
#include "base/trace_event/memory_dump_manager.h"
#include "base/trace_event/process_memory_dump.h"
#include "base/trace_event/trace_event.h"
#include "gpu/command_buffer/common/shared_image_trace_utils.h"
#include "gpu/command_buffer/service/shared_image_representation.h"
#include "ui/gl/trace_util.h"
#if DCHECK_IS_ON()
#define CALLED_ON_VALID_THREAD() \
do { \
if (!this->is_thread_safe()) \
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_); \
} while (false)
#else
#define CALLED_ON_VALID_THREAD()
#endif
namespace gpu {
// Overrides for flat_set lookups:
bool operator<(const std::unique_ptr<SharedImageBacking>& lhs,
const std::unique_ptr<SharedImageBacking>& rhs) {
return lhs->mailbox() < rhs->mailbox();
}
bool operator<(const Mailbox& lhs,
const std::unique_ptr<SharedImageBacking>& rhs) {
return lhs < rhs->mailbox();
}
bool operator<(const std::unique_ptr<SharedImageBacking>& lhs,
const Mailbox& rhs) {
return lhs->mailbox() < rhs;
}
class SharedImageManager::AutoLock {
public:
explicit AutoLock(SharedImageManager* manager) {
if (manager->is_thread_safe())
auto_lock_.emplace(manager->lock_.value());
}
~AutoLock() = default;
private:
base::Optional<base::AutoLock> auto_lock_;
DISALLOW_COPY_AND_ASSIGN(AutoLock);
};
SharedImageManager::SharedImageManager(bool thread_safe) {
if (thread_safe)
lock_.emplace();
CALLED_ON_VALID_THREAD();
}
SharedImageManager::~SharedImageManager() {
CALLED_ON_VALID_THREAD();
#if DCHECK_IS_ON()
AutoLock auto_lock(this);
#endif
DCHECK(images_.empty());
}
std::unique_ptr<SharedImageRepresentationFactoryRef>
SharedImageManager::Register(std::unique_ptr<SharedImageBacking> backing,
MemoryTypeTracker* tracker) {
CALLED_ON_VALID_THREAD();
DCHECK(backing->mailbox().IsSharedImage());
AutoLock autolock(this);
const auto lower_bound = images_.lower_bound(backing->mailbox());
if (lower_bound != images_.end() &&
(*lower_bound)->mailbox() == backing->mailbox()) {
LOG(ERROR) << "SharedImageManager::Register: Trying to register an "
"already registered mailbox.";
backing->Destroy();
return nullptr;
}
auto factory_ref = std::make_unique<SharedImageRepresentationFactoryRef>(
this, backing.get(), tracker);
images_.emplace_hint(lower_bound, std::move(backing));
return factory_ref;
}
void SharedImageManager::OnContextLost(const Mailbox& mailbox) {
CALLED_ON_VALID_THREAD();
AutoLock autolock(this);
auto found = images_.find(mailbox);
if (found == images_.end()) {
LOG(ERROR) << "SharedImageManager::OnContextLost: Trying to mark constext "
"lost on a non existent mailbox.";
return;
}
(*found)->OnContextLost();
}
std::unique_ptr<SharedImageRepresentationGLTexture>
SharedImageManager::ProduceGLTexture(const Mailbox& mailbox,
MemoryTypeTracker* tracker) {
CALLED_ON_VALID_THREAD();
AutoLock autolock(this);
auto found = images_.find(mailbox);
if (found == images_.end()) {
LOG(ERROR) << "SharedImageManager::ProduceGLTexture: Trying to produce a "
"representation from a non-existent mailbox.";
return nullptr;
}
auto representation = (*found)->ProduceGLTexture(this, tracker);
if (!representation) {
LOG(ERROR) << "SharedImageManager::ProduceGLTexture: Trying to produce a "
"representation from an incompatible mailbox.";
return nullptr;
}
return representation;
}
std::unique_ptr<SharedImageRepresentationGLTexture>
SharedImageManager::ProduceRGBEmulationGLTexture(const Mailbox& mailbox,
MemoryTypeTracker* tracker) {
auto found = images_.find(mailbox);
if (found == images_.end()) {
LOG(ERROR) << "SharedImageManager::ProduceRGBEmulationGLTexture: Trying to "
"produce a representation from a non-existent mailbox.";
return nullptr;
}
auto representation = (*found)->ProduceRGBEmulationGLTexture(this, tracker);
if (!representation) {
LOG(ERROR) << "SharedImageManager::ProduceRGBEmulationGLTexture: Trying to "
"produce a representation from an incompatible mailbox.";
return nullptr;
}
return representation;
}
std::unique_ptr<SharedImageRepresentationGLTexturePassthrough>
SharedImageManager::ProduceGLTexturePassthrough(const Mailbox& mailbox,
MemoryTypeTracker* tracker) {
CALLED_ON_VALID_THREAD();
AutoLock autolock(this);
auto found = images_.find(mailbox);
if (found == images_.end()) {
LOG(ERROR) << "SharedImageManager::ProduceGLTexturePassthrough: Trying to "
"produce a representation from a non-existent mailbox.";
return nullptr;
}
auto representation = (*found)->ProduceGLTexturePassthrough(this, tracker);
if (!representation) {
LOG(ERROR) << "SharedImageManager::ProduceGLTexturePassthrough: Trying to "
"produce a representation from an incompatible mailbox.";
return nullptr;
}
return representation;
}
std::unique_ptr<SharedImageRepresentationSkia> SharedImageManager::ProduceSkia(
const Mailbox& mailbox,
MemoryTypeTracker* tracker) {
CALLED_ON_VALID_THREAD();
AutoLock autolock(this);
auto found = images_.find(mailbox);
if (found == images_.end()) {
LOG(ERROR) << "SharedImageManager::ProduceSkia: Trying to Produce a "
"Skia representation from a non-existent mailbox.";
return nullptr;
}
auto representation = (*found)->ProduceSkia(this, tracker);
if (!representation) {
LOG(ERROR) << "SharedImageManager::ProduceSkia: Trying to produce a "
"Skia representation from an incompatible mailbox.";
return nullptr;
}
return representation;
}
void SharedImageManager::OnRepresentationDestroyed(
const Mailbox& mailbox,
SharedImageRepresentation* representation) {
CALLED_ON_VALID_THREAD();
AutoLock autolock(this);
auto found = images_.find(mailbox);
if (found == images_.end()) {
LOG(ERROR) << "SharedImageManager::OnRepresentationDestroyed: Trying to "
"destroy a non existent mailbox.";
return;
}
// TODO(piman): When the original (factory) representation is destroyed, we
// should treat the backing as pending destruction and prevent additional
// representations from being created. This will help avoid races due to a
// consumer getting lucky with timing due to a representation inadvertently
// extending a backing's lifetime.
(*found)->ReleaseRef(representation);
if (!(*found)->HasAnyRefs())
images_.erase(found);
}
void SharedImageManager::OnMemoryDump(const Mailbox& mailbox,
base::trace_event::ProcessMemoryDump* pmd,
int client_id,
uint64_t client_tracing_id) {
CALLED_ON_VALID_THREAD();
AutoLock autolock(this);
auto found = images_.find(mailbox);
if (found == images_.end()) {
LOG(ERROR) << "SharedImageManager::OnMemoryDump: Trying to dump memory for "
"a non existent mailbox.";
return;
}
auto* backing = found->get();
size_t estimated_size = backing->estimated_size();
if (estimated_size == 0)
return;
// Unique name in the process.
std::string dump_name =
base::StringPrintf("gpu/shared-images/client_0x%" PRIX32 "/mailbox_%s",
client_id, mailbox.ToDebugString().c_str());
base::trace_event::MemoryAllocatorDump* dump =
pmd->CreateAllocatorDump(dump_name);
dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize,
base::trace_event::MemoryAllocatorDump::kUnitsBytes,
estimated_size);
// Add a mailbox guid which expresses shared ownership with the client
// process.
// This must match the client-side.
auto client_guid = GetSharedImageGUIDForTracing(mailbox);
pmd->CreateSharedGlobalAllocatorDump(client_guid);
pmd->AddOwnershipEdge(dump->guid(), client_guid);
// Allow the SharedImageBacking to attach additional data to the dump
// or dump additional sub-paths.
backing->OnMemoryDump(dump_name, dump, pmd, client_tracing_id);
}
} // namespace gpu