This source file includes following definitions.
- AllocateSharedBitmap
- GetSharedBitmapFromId
- GetBitmapForSharedMemory
- FreeSharedMemory
- ReleaseSharedBitmap
#include "content/child/child_shared_bitmap_manager.h"
#include "content/child/child_thread.h"
#include "content/common/child_process_messages.h"
#include "ui/gfx/size.h"
namespace content {
ChildSharedBitmapManager::ChildSharedBitmapManager(
scoped_refptr<ThreadSafeSender> sender)
: sender_(sender) {}
ChildSharedBitmapManager::~ChildSharedBitmapManager() {}
scoped_ptr<cc::SharedBitmap> ChildSharedBitmapManager::AllocateSharedBitmap(
const gfx::Size& size) {
TRACE_EVENT2("renderer",
"ChildSharedBitmapManager::AllocateSharedMemory",
"width",
size.width(),
"height",
size.height());
size_t memory_size;
if (!cc::SharedBitmap::GetSizeInBytes(size, &memory_size))
return scoped_ptr<cc::SharedBitmap>();
cc::SharedBitmapId id = cc::SharedBitmap::GenerateId();
scoped_ptr<base::SharedMemory> memory;
#if defined(OS_POSIX)
base::SharedMemoryHandle handle;
sender_->Send(new ChildProcessHostMsg_SyncAllocateSharedBitmap(
memory_size, id, &handle));
memory = make_scoped_ptr(new base::SharedMemory(handle, false));
memory->Map(memory_size);
#else
memory.reset(ChildThread::AllocateSharedMemory(memory_size, sender_));
CHECK(memory);
base::SharedMemoryHandle handle_to_send = memory->handle();
sender_->Send(new ChildProcessHostMsg_AllocatedSharedBitmap(
memory_size, handle_to_send, id));
#endif
return scoped_ptr<cc::SharedBitmap>(new cc::SharedBitmap(
memory.release(),
id,
base::Bind(&ChildSharedBitmapManager::FreeSharedMemory,
base::Unretained(this))));
}
scoped_ptr<cc::SharedBitmap> ChildSharedBitmapManager::GetSharedBitmapFromId(
const gfx::Size&,
const cc::SharedBitmapId&) {
NOTREACHED();
return scoped_ptr<cc::SharedBitmap>();
}
scoped_ptr<cc::SharedBitmap> ChildSharedBitmapManager::GetBitmapForSharedMemory(
base::SharedMemory* mem) {
cc::SharedBitmapId id = cc::SharedBitmap::GenerateId();
base::SharedMemoryHandle handle_to_send = mem->handle();
#if defined(OS_POSIX)
if (!mem->ShareToProcess(base::GetCurrentProcessHandle(), &handle_to_send))
return scoped_ptr<cc::SharedBitmap>();
#endif
sender_->Send(new ChildProcessHostMsg_AllocatedSharedBitmap(
mem->mapped_size(), handle_to_send, id));
return scoped_ptr<cc::SharedBitmap>(new cc::SharedBitmap(
mem,
id,
base::Bind(&ChildSharedBitmapManager::ReleaseSharedBitmap,
base::Unretained(this))));
}
void ChildSharedBitmapManager::FreeSharedMemory(cc::SharedBitmap* bitmap) {
TRACE_EVENT0("renderer", "ChildSharedBitmapManager::FreeSharedMemory");
sender_->Send(new ChildProcessHostMsg_DeletedSharedBitmap(bitmap->id()));
delete bitmap->memory();
}
void ChildSharedBitmapManager::ReleaseSharedBitmap(cc::SharedBitmap* handle) {
TRACE_EVENT0("renderer", "ChildSharedBitmapManager::ReleaseSharedBitmap");
sender_->Send(new ChildProcessHostMsg_DeletedSharedBitmap(handle->id()));
}
}