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

Unified Diff: content/child/webblobregistry_impl.cc

Issue 821913004: [Storage] Consoliation of BlobItems with small size (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge and length calc fix Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/webblobregistry_impl.h ('k') | storage/common/data_element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/webblobregistry_impl.cc
diff --git a/content/child/webblobregistry_impl.cc b/content/child/webblobregistry_impl.cc
index ee5313b7e6b5f214091441f29ef85826dac599e1..81a1f4b643926cd86ff555365d7ac70f6f3a172d 100644
--- a/content/child/webblobregistry_impl.cc
+++ b/content/child/webblobregistry_impl.cc
@@ -43,58 +43,65 @@ void WebBlobRegistryImpl::registerBlobData(
const blink::WebString& uuid, const blink::WebBlobData& data) {
const std::string uuid_str(uuid.utf8());
+ storage::DataElement data_buffer;
+ data_buffer.SetToEmptyBytes();
+
sender_->Send(new BlobHostMsg_StartBuilding(uuid_str));
size_t i = 0;
WebBlobData::Item data_item;
while (data.itemAt(i++, data_item)) {
+ if (data_item.length == 0) {
+ continue;
+ }
+ if (data_item.type != WebBlobData::Item::TypeData &&
+ data_buffer.length() != 0) {
+ FlushBlobItemBuffer(uuid_str, &data_buffer);
+ }
+ storage::DataElement item;
switch (data_item.type) {
case WebBlobData::Item::TypeData: {
// WebBlobData does not allow partial data items.
DCHECK(!data_item.offset && data_item.length == -1);
- SendDataForBlob(uuid_str, data_item.data);
+ if (data_item.data.size() == 0) {
+ continue;
+ }
+ BufferBlobData(uuid_str, data_item.data, &data_buffer);
break;
}
case WebBlobData::Item::TypeFile:
- if (data_item.length) {
- storage::DataElement item;
- item.SetToFilePathRange(
- base::FilePath::FromUTF16Unsafe(data_item.filePath),
- static_cast<uint64>(data_item.offset),
- static_cast<uint64>(data_item.length),
- base::Time::FromDoubleT(data_item.expectedModificationTime));
- sender_->Send(
- new BlobHostMsg_AppendBlobDataItem(uuid_str, item));
- }
+ item.SetToFilePathRange(
+ base::FilePath::FromUTF16Unsafe(data_item.filePath),
+ static_cast<uint64>(data_item.offset),
+ static_cast<uint64>(data_item.length),
+ base::Time::FromDoubleT(data_item.expectedModificationTime));
+ sender_->Send(new BlobHostMsg_AppendBlobDataItem(uuid_str, item));
break;
case WebBlobData::Item::TypeBlob:
- if (data_item.length) {
- storage::DataElement item;
- item.SetToBlobRange(
- data_item.blobUUID.utf8(),
- static_cast<uint64>(data_item.offset),
- static_cast<uint64>(data_item.length));
- sender_->Send(
- new BlobHostMsg_AppendBlobDataItem(uuid_str, item));
- }
+ item.SetToBlobRange(
+ data_item.blobUUID.utf8(),
+ static_cast<uint64>(data_item.offset),
+ static_cast<uint64>(data_item.length));
+ sender_->Send(
+ new BlobHostMsg_AppendBlobDataItem(uuid_str, item));
break;
case WebBlobData::Item::TypeFileSystemURL:
- if (data_item.length) {
- // We only support filesystem URL as of now.
- DCHECK(GURL(data_item.fileSystemURL).SchemeIsFileSystem());
- storage::DataElement item;
- item.SetToFileSystemUrlRange(
- data_item.fileSystemURL,
- static_cast<uint64>(data_item.offset),
- static_cast<uint64>(data_item.length),
- base::Time::FromDoubleT(data_item.expectedModificationTime));
- sender_->Send(
- new BlobHostMsg_AppendBlobDataItem(uuid_str, item));
- }
+ // We only support filesystem URL as of now.
+ DCHECK(GURL(data_item.fileSystemURL).SchemeIsFileSystem());
+ item.SetToFileSystemUrlRange(
+ data_item.fileSystemURL,
+ static_cast<uint64>(data_item.offset),
+ static_cast<uint64>(data_item.length),
+ base::Time::FromDoubleT(data_item.expectedModificationTime));
+ sender_->Send(
+ new BlobHostMsg_AppendBlobDataItem(uuid_str, item));
break;
default:
NOTREACHED();
}
}
+ if (data_buffer.length() != 0) {
+ FlushBlobItemBuffer(uuid_str, &data_buffer);
+ }
sender_->Send(new BlobHostMsg_FinishBuilding(
uuid_str, data.contentType().utf8().data()));
}
@@ -116,37 +123,55 @@ void WebBlobRegistryImpl::revokePublicBlobURL(const WebURL& url) {
sender_->Send(new BlobHostMsg_RevokePublicURL(url));
}
-void WebBlobRegistryImpl::SendDataForBlob(const std::string& uuid_str,
- const WebThreadSafeData& data) {
+void WebBlobRegistryImpl::FlushBlobItemBuffer(
+ const std::string& uuid_str,
+ storage::DataElement* data_buffer) const {
+ DCHECK_NE(data_buffer->length(), 0ul);
+ DCHECK_LT(data_buffer->length(), kLargeThresholdBytes);
+ sender_->Send(new BlobHostMsg_AppendBlobDataItem(uuid_str, *data_buffer));
+ data_buffer->SetToEmptyBytes();
+}
- if (data.size() == 0)
- return;
- if (data.size() < kLargeThresholdBytes) {
- storage::DataElement item;
- item.SetToBytes(data.data(), data.size());
- sender_->Send(new BlobHostMsg_AppendBlobDataItem(uuid_str, item));
+void WebBlobRegistryImpl::BufferBlobData(const std::string& uuid_str,
+ const blink::WebThreadSafeData& data,
+ storage::DataElement* data_buffer) {
+ size_t buffer_size = data_buffer->length();
+ size_t data_size = data.size();
+ DCHECK_NE(data_size, 0ul);
+ if (buffer_size != 0 && buffer_size + data_size >= kLargeThresholdBytes) {
+ FlushBlobItemBuffer(uuid_str, data_buffer);
+ buffer_size = 0;
+ }
+ if (data_size >= kLargeThresholdBytes) {
+ SendOversizedDataForBlob(uuid_str, data);
} else {
- // We handle larger amounts of data via SharedMemory instead of
- // writing it directly to the IPC channel.
- size_t shared_memory_size = std::min(
- data.size(), kMaxSharedMemoryBytes);
- scoped_ptr<base::SharedMemory> shared_memory(
- ChildThread::AllocateSharedMemory(shared_memory_size,
- sender_.get()));
- CHECK(shared_memory.get());
- if (!shared_memory->Map(shared_memory_size))
- CHECK(false);
+ DCHECK_LT(buffer_size + data_size, kLargeThresholdBytes);
+ data_buffer->AppendBytes(data.data(), data_size);
+ }
+}
- size_t data_size = data.size();
- const char* data_ptr = data.data();
- while (data_size) {
- size_t chunk_size = std::min(data_size, shared_memory_size);
- memcpy(shared_memory->memory(), data_ptr, chunk_size);
- sender_->Send(new BlobHostMsg_SyncAppendSharedMemory(
- uuid_str, shared_memory->handle(), chunk_size));
- data_size -= chunk_size;
- data_ptr += chunk_size;
- }
+void WebBlobRegistryImpl::SendOversizedDataForBlob(
+ const std::string& uuid_str,
+ const blink::WebThreadSafeData& data) {
+ DCHECK_GE(data.size(), kLargeThresholdBytes);
+ // We handle larger amounts of data via SharedMemory instead of
+ // writing it directly to the IPC channel.
+ size_t shared_memory_size = std::min(data.size(), kMaxSharedMemoryBytes);
+ scoped_ptr<base::SharedMemory> shared_memory(
+ ChildThread::AllocateSharedMemory(shared_memory_size, sender_.get()));
+ CHECK(shared_memory.get());
+ if (!shared_memory->Map(shared_memory_size))
+ CHECK(false);
+
+ size_t data_size = data.size();
+ const char* data_ptr = data.data();
+ while (data_size) {
+ size_t chunk_size = std::min(data_size, shared_memory_size);
+ memcpy(shared_memory->memory(), data_ptr, chunk_size);
+ sender_->Send(new BlobHostMsg_SyncAppendSharedMemory(
+ uuid_str, shared_memory->handle(), chunk_size));
+ data_size -= chunk_size;
+ data_ptr += chunk_size;
}
}
« no previous file with comments | « content/child/webblobregistry_impl.h ('k') | storage/common/data_element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698