Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: Source/wtf/ArrayBufferContents.cpp

Issue 1097773004: Sharing of SharedArrayBuffer via PostMessage transfer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: . Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 17 matching lines...) Expand all
28 #include "wtf/ArrayBufferContents.h" 28 #include "wtf/ArrayBufferContents.h"
29 29
30 #include "wtf/Assertions.h" 30 #include "wtf/Assertions.h"
31 #include "wtf/PartitionAlloc.h" 31 #include "wtf/PartitionAlloc.h"
32 #include "wtf/Partitions.h" 32 #include "wtf/Partitions.h"
33 #include <string.h> 33 #include <string.h>
34 34
35 namespace WTF { 35 namespace WTF {
36 36
37 ArrayBufferContents::ArrayBufferContents() 37 ArrayBufferContents::ArrayBufferContents()
38 : m_data(0) 38 : m_holder(adoptRef(new DataHolder())) { }
39 , m_sizeInBytes(0)
40 , m_deallocationObserver(0) { }
41 39
42 ArrayBufferContents::ArrayBufferContents(unsigned numElements, unsigned elementB yteSize, ArrayBufferContents::InitializationPolicy policy) 40 ArrayBufferContents::ArrayBufferContents(unsigned numElements, unsigned elementB yteSize, SharingType isShared, ArrayBufferContents::InitializationPolicy policy)
43 : m_data(0) 41 : m_holder(adoptRef(new DataHolder()))
44 , m_sizeInBytes(0)
45 , m_deallocationObserver(0)
46 { 42 {
47 // Do not allow 32-bit overflow of the total size. 43 // Do not allow 32-bit overflow of the total size.
44 unsigned totalSize = numElements * elementByteSize;
48 if (numElements) { 45 if (numElements) {
49 unsigned totalSize = numElements * elementByteSize;
50 if (totalSize / numElements != elementByteSize) { 46 if (totalSize / numElements != elementByteSize) {
51 m_data = 0;
52 return; 47 return;
53 } 48 }
54 } 49 }
55 allocateMemory(numElements * elementByteSize, policy, m_data); 50
56 m_sizeInBytes = numElements * elementByteSize; 51 m_holder->allocateNew(totalSize, isShared, policy, nullptr);
57 } 52 }
58 53
59 ArrayBufferContents::ArrayBufferContents( 54 ArrayBufferContents::ArrayBufferContents(
60 void* data, unsigned sizeInBytes, ArrayBufferDeallocationObserver* observer) 55 void* data, unsigned sizeInBytes, SharingType isShared, ArrayBufferDeallocat ionObserver* observer)
61 : m_data(data) 56 : m_holder(adoptRef(new DataHolder()))
62 , m_sizeInBytes(sizeInBytes)
63 , m_deallocationObserver(observer)
64 { 57 {
65 if (!m_data) { 58 if (!data) {
66 ASSERT(!m_sizeInBytes); 59 ASSERT(!sizeInBytes);
67 m_sizeInBytes = 0; 60 sizeInBytes = 0;
68 // Allow null data if size is 0 bytes, make sure m_data is valid pointer . 61 // Allow null data if size is 0 bytes, make sure data is valid pointer.
69 // (partitionAllocGeneric guarantees valid pointer for size 0) 62 // (partitionAllocGeneric guarantees valid pointer for size 0)
70 allocateMemory(0, ZeroInitialize, m_data); 63 m_holder->allocateNew(sizeInBytes, isShared, ZeroInitialize, observer);
64 } else {
65 m_holder->adopt(data, sizeInBytes, isShared, observer);
71 } 66 }
72 } 67 }
73 68
74 ArrayBufferContents::~ArrayBufferContents() 69 ArrayBufferContents::~ArrayBufferContents()
75 { 70 {
76 freeMemory(m_data, m_sizeInBytes);
77 clear(); 71 clear();
78 } 72 }
79 73
80 void ArrayBufferContents::clear() 74 void ArrayBufferContents::clear()
81 { 75 {
82 if (m_data && m_deallocationObserver) 76 m_holder.clear();
83 m_deallocationObserver->arrayBufferDeallocated(m_sizeInBytes);
84 m_data = 0;
85 m_sizeInBytes = 0;
86 m_deallocationObserver = 0;
87 } 77 }
88 78
89 void ArrayBufferContents::transfer(ArrayBufferContents& other) 79 void ArrayBufferContents::transfer(ArrayBufferContents& other)
90 { 80 {
91 ASSERT(!other.m_data); 81 ASSERT(!other.m_holder->data());
92 other.m_data = m_data; 82 other.m_holder = m_holder;
93 other.m_sizeInBytes = m_sizeInBytes; 83 if (!m_holder->isShared())
94 clear(); 84 clear();
95 } 85 }
96 86
97 void ArrayBufferContents::copyTo(ArrayBufferContents& other) 87 void ArrayBufferContents::copyTo(ArrayBufferContents& other)
98 { 88 {
99 ASSERT(!other.m_sizeInBytes); 89 // TODO(binji): where is this function used? It probably shouldn't be used
100 other.freeMemory(other.m_data, other.m_sizeInBytes); 90 // for shared array buffers.
101 allocateMemory(m_sizeInBytes, DontInitialize, other.m_data); 91 ASSERT(!m_holder->isShared() && !other.m_holder->isShared());
102 if (!other.m_data) 92
103 return; 93 ASSERT(!other.m_holder->sizeInBytes());
104 memcpy(other.m_data, m_data, m_sizeInBytes); 94
105 other.m_sizeInBytes = m_sizeInBytes; 95 other.m_holder = adoptRef(new DataHolder());
96 m_holder->copyTo(*other.m_holder);
106 } 97 }
107 98
108 void ArrayBufferContents::allocateMemory(size_t size, InitializationPolicy polic y, void*& data) 99 void ArrayBufferContents::allocateMemory(size_t size, InitializationPolicy polic y, void*& data)
109 { 100 {
110 data = partitionAllocGenericFlags(WTF::Partitions::getBufferPartition(), Par titionAllocReturnNull, size); 101 data = partitionAllocGenericFlags(WTF::Partitions::getBufferPartition(), Par titionAllocReturnNull, size);
111 if (policy == ZeroInitialize && data) 102 if (policy == ZeroInitialize && data)
112 memset(data, '\0', size); 103 memset(data, '\0', size);
113 } 104 }
114 105
115 void ArrayBufferContents::freeMemory(void* data, size_t) 106 void ArrayBufferContents::freeMemory(void* data, size_t)
116 { 107 {
117 partitionFreeGeneric(WTF::Partitions::getBufferPartition(), data); 108 partitionFreeGeneric(WTF::Partitions::getBufferPartition(), data);
118 } 109 }
119 110
111 ArrayBufferContents::DataHolder::DataHolder()
112 : m_data(nullptr)
113 , m_sizeInBytes(0)
114 , m_isShared(NotShared)
115 , m_deallocationObserver(nullptr) { }
116
117 ArrayBufferContents::DataHolder::~DataHolder()
118 {
119 ArrayBufferContents::freeMemory(m_data, m_sizeInBytes);
120
121 if (m_data && m_deallocationObserver)
122 m_deallocationObserver->arrayBufferDeallocated(m_sizeInBytes);
123
124 m_data = nullptr;
125 m_sizeInBytes = 0;
126 m_isShared = NotShared;
127 m_deallocationObserver = nullptr;
128 }
129
130 void ArrayBufferContents::DataHolder::allocateNew(unsigned sizeInBytes, SharingT ype isShared, InitializationPolicy policy, ArrayBufferDeallocationObserver* obse rver)
131 {
132 ASSERT(!m_data);
133 void* data = nullptr;
134 allocateMemory(sizeInBytes, policy, data);
135 m_data = data;
136 m_sizeInBytes = sizeInBytes;
137 m_isShared = isShared;
138 m_deallocationObserver = observer;
139 }
140
141 void ArrayBufferContents::DataHolder::adopt(void* data, unsigned sizeInBytes, Sh aringType isShared, ArrayBufferDeallocationObserver* observer)
142 {
143 ASSERT(!m_data);
144 m_data = data;
145 m_sizeInBytes = sizeInBytes;
146 m_isShared = isShared;
147 m_deallocationObserver = observer;
148 }
149
150 void ArrayBufferContents::DataHolder::copyTo(DataHolder& other)
151 {
152 other.allocateNew(m_sizeInBytes, m_isShared, DontInitialize, m_deallocationO bserver);
Yuki 2015/06/10 07:44:55 I'm concerned about the (implicit) change of the A
binji 2015/06/10 20:53:40 Yes, you're right. Done.
153 memcpy(other.data(), data(), sizeInBytes());
154 }
155
156 void ArrayBufferContents::DataHolder::setDeallocationObserver(ArrayBufferDealloc ationObserver& observer)
157 {
158 if (!m_deallocationObserver) {
159 m_deallocationObserver = &observer;
160 m_deallocationObserver->blinkAllocatedMemory(m_sizeInBytes);
161 }
162 }
163
164 void ArrayBufferContents::DataHolder::setDeallocationObserverWithoutAllocationNo tification(ArrayBufferDeallocationObserver& observer)
165 {
166 if (!m_deallocationObserver) {
167 m_deallocationObserver = &observer;
168 }
169 }
170
120 } // namespace WTF 171 } // namespace WTF
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698