blob: f7746e34d875ad6354327e1ca1ee8115fd4b0653 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// Copyright (c) 2009 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 <limits>
#include <windows.h>
#include "app/surface/transport_dib.h"
#include "base/logging.h"
#include "base/scoped_ptr.h"
#include "base/sys_info.h"
#include "skia/ext/platform_canvas.h"
TransportDIB::TransportDIB() {
}
TransportDIB::~TransportDIB() {
}
TransportDIB::TransportDIB(HANDLE handle)
: shared_memory_(handle, false /* read write */) {
}
// static
TransportDIB* TransportDIB::Create(size_t size, uint32 sequence_num) {
size_t allocation_granularity = base::SysInfo::VMAllocationGranularity();
size = size / allocation_granularity + 1;
size = size * allocation_granularity;
TransportDIB* dib = new TransportDIB;
if (!dib->shared_memory_.Create("", false /* read write */,
true /* open existing */, size)) {
delete dib;
return NULL;
}
dib->size_ = size;
dib->sequence_num_ = sequence_num;
return dib;
}
// static
TransportDIB* TransportDIB::Map(TransportDIB::Handle handle) {
TransportDIB* dib = new TransportDIB(handle);
if (!dib->shared_memory_.Map(0 /* map whole shared memory segment */)) {
LOG(ERROR) << "Failed to map transport DIB"
<< " handle:" << handle
<< " error:" << GetLastError();
delete dib;
return NULL;
}
// There doesn't seem to be any way to find the size of the shared memory
// region! GetFileSize indicates that the handle is invalid. Thus, we
// conservatively set the size to the maximum and hope that the renderer
// isn't about to ask us to read off the end of the array.
dib->size_ = std::numeric_limits<size_t>::max();
return dib;
}
bool TransportDIB::is_valid(Handle dib) {
return dib != NULL;
}
skia::PlatformCanvas* TransportDIB::GetPlatformCanvas(int w, int h) {
scoped_ptr<skia::PlatformCanvas> canvas(new skia::PlatformCanvas);
if (!canvas->initialize(w, h, true, handle()))
return NULL;
return canvas.release();
}
void* TransportDIB::memory() const {
return shared_memory_.memory();
}
TransportDIB::Handle TransportDIB::handle() const {
return shared_memory_.handle();
}
TransportDIB::Id TransportDIB::id() const {
return Id(shared_memory_.handle(), sequence_num_);
}
|