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

Unified Diff: content/browser/devtools/protocol/io_handler.cc

Issue 1307073002: DevTools: provide an option to return traces as streams (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: work around MSVC compiler error due to missing Client definition Created 5 years, 4 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/browser/devtools/protocol/io_handler.h ('k') | content/browser/devtools/protocol/tracing_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/protocol/io_handler.cc
diff --git a/content/browser/devtools/protocol/io_handler.cc b/content/browser/devtools/protocol/io_handler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c6525608194b079250de9c013aa534b17c6a485c
--- /dev/null
+++ b/content/browser/devtools/protocol/io_handler.cc
@@ -0,0 +1,60 @@
+// Copyright 2015 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 "content/browser/devtools/protocol/io_handler.h"
+
+#include <stdint.h>
+
+#include "base/bind.h"
+#include "base/files/file.h"
+#include "base/files/file_util.h"
+#include "base/memory/ref_counted_delete_on_message_loop.h"
+#include "base/memory/ref_counted_memory.h"
+#include "base/strings/string_number_conversions.h"
+#include "content/browser/devtools/devtools_io_context.h"
+#include "content/public/browser/browser_thread.h"
+
+namespace content {
+namespace devtools {
+namespace io {
+
+using Response = DevToolsProtocolClient::Response;
+
+IOHandler::IOHandler(DevToolsIOContext* io_context)
+ : io_context_(io_context)
+ , weak_factory_(this) {}
+
+IOHandler::~IOHandler() {}
+
+void IOHandler::SetClient(const scoped_ptr<Client>& client) {
+}
+
+Response IOHandler::Read(DevToolsCommandId command_id,
+ const std::string& handle, const int* offset, const int* max_size) {
+ static const size_t kDefaultChunkSize = 10 * 1024 * 1024;
+
+ scoped_refptr<DevToolsIOContext::Stream> stream =
+ io_context_->GetByHandle(handle);
+ if (!stream)
+ return Response::InvalidParams("Invalid stream handle");
+ stream->Read(offset ? *offset : -1,
+ max_size && *max_size ? *max_size : kDefaultChunkSize,
+ base::Bind(&IOHandler::ReadComplete,
+ weak_factory_.GetWeakPtr(), command_id));
+ return Response::OK();
+}
+
+void IOHandler::ReadComplete(DevToolsCommandId command_id,
+ const scoped_refptr<base::RefCountedString>& data,
+ int status) {
+}
+
+Response IOHandler::Close(const std::string& handle) {
+ return io_context_->Close(handle) ? Response::OK()
+ : Response::InvalidParams("Invalid stream handle");
+}
+
+} // namespace io
+} // namespace devtools
+} // namespace content
« no previous file with comments | « content/browser/devtools/protocol/io_handler.h ('k') | content/browser/devtools/protocol/tracing_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698