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

Unified Diff: chrome/browser/chromeos/arc/arc_print_bridge.cc

Issue 2115863002: Stub for ARC print Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move bridge code and run I/O on FILE thread. Created 4 years, 5 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
Index: chrome/browser/chromeos/arc/arc_print_bridge.cc
diff --git a/chrome/browser/chromeos/arc/arc_print_bridge.cc b/chrome/browser/chromeos/arc/arc_print_bridge.cc
new file mode 100644
index 0000000000000000000000000000000000000000..32d444d51fbcfcad8fb3dc03b44da92530a46466
--- /dev/null
+++ b/chrome/browser/chromeos/arc/arc_print_bridge.cc
@@ -0,0 +1,84 @@
+// Copyright 2016 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 "chrome/browser/chromeos/arc/arc_print_bridge.h"
+
+#include <utility>
+
+#include "ash/common/shell_delegate.h"
+#include "ash/common/wm_shell.h"
+#include "ash/new_window_delegate.h"
+#include "ash/shell.h"
+#include "base/files/file.h"
+#include "base/files/scoped_file.h"
+#include "base/logging.h"
+#include "base/strings/utf_string_conversions.h"
+#include "base/threading/thread_checker.h"
+#include "components/arc/arc_bridge_service.h"
+#include "content/public/browser/browser_thread.h"
+#include "mojo/edk/embedder/embedder.h"
+#include "url/gurl.h"
+
+namespace arc {
+
+ArcPrintBridge::ArcPrintBridge(ArcBridgeService* bridge_service)
+ : ArcService(bridge_service), binding_(this) {
+ arc_bridge_service()->AddObserver(this);
Luis Héctor Chávez 2016/07/14 16:29:43 arc_bridge_service()->print()->AddObserver(this);
Sergey Poromov 2016/07/19 16:32:09 Done.
+}
+
+ArcPrintBridge::~ArcPrintBridge() {
+ arc_bridge_service()->RemoveObserver(this);
+}
+
+void ArcPrintBridge::OnPrintInstanceReady() {
+ mojom::PrintInstance* print_instance = arc_bridge_service()->print_instance();
+ if (!print_instance) {
+ LOG(ERROR) << "OnPrintInstanceReady called, but no print instance found";
+ return;
+ }
+
+ print_instance->Init(binding_.CreateInterfacePtrAndBind());
+}
+
+void ArcPrintBridge::Print(mojo::ScopedHandle file) {
+ if (!file.is_valid()) {
+ LOG(ERROR) << "handle is invalid";
+ return;
+ }
+
+ mojo::edk::ScopedPlatformHandle scoped_platform_handle;
+ MojoResult mojo_result = mojo::edk::PassWrappedPlatformHandle(
+ file.release().value(), &scoped_platform_handle);
+ if (mojo_result != MOJO_RESULT_OK) {
+ LOG(ERROR) << "PassWrappedPlatformHandle failed: " << mojo_result;
+ return;
+ }
+
+ content::BrowserThread::PostTaskAndReply(
+ content::BrowserThread::FILE, FROM_HERE,
+ base::Bind(&ArcPrintBridge::SavePdf, this,
+ scoped_platform_handle.release().handle),
Luis Héctor Chávez 2016/07/14 16:29:43 Ideally, make the base::ScopedFD conversion in thi
Sergey Poromov 2016/07/19 16:32:09 Done.
+ base::Bind(&ArcPrintBridge::OpenPdf, this));
+}
+
+void ArcPrintBridge::SavePdf(int handle) {
Luis Héctor Chávez 2016/07/14 16:29:43 This doesn't really need to be a member function.
Sergey Poromov 2016/07/19 16:32:09 Done.
+ base::ScopedFD fd(handle);
Luis Héctor Chávez 2016/07/14 16:29:44 DCHECK_CURRENTLY_ON(content::BrowserThread::FILE);
Sergey Poromov 2016/07/19 16:32:09 Done.
+
+ base::CreateTemporaryFile(&file_path_);
+ base::File out(file_path_,
+ base::File::FLAG_CREATE_ALWAYS | base::File::FLAG_WRITE);
Luis Héctor Chávez 2016/07/14 16:29:43 CreateTemporaryfile() creates the file to avoid ra
Sergey Poromov 2016/07/19 16:32:09 Yes, it doesn't work without this flag.
+
+ char buf[8192];
+ size_t bytes;
+ while ((bytes = HANDLE_EINTR(read(fd.get(), buf, 8192))) > 0) {
+ out.WriteAtCurrentPos(buf, bytes);
+ }
+}
+
+void ArcPrintBridge::OpenPdf() {
Luis Héctor Chávez 2016/07/14 16:29:43 This method should receive the RAII-wrapped base::
Sergey Poromov 2016/07/19 16:32:09 Unfortunately we couldn't delete the file here rig
+ GURL gurl("file://" + file_path_.value());
Luis Héctor Chávez 2016/07/14 16:29:43 Can you also use the constants in https://cs.chrom
Luis Héctor Chávez 2016/07/14 16:29:44 DCHECK_CURRENTLY_ON(content::BrowserThread::FILE);
Sergey Poromov 2016/07/19 16:32:09 Done.
Sergey Poromov 2016/07/19 16:32:09 Done.
+ ash::WmShell::Get()->delegate()->OpenUrl(gurl);
+}
+
+} // namespace arc

Powered by Google App Engine
This is Rietveld 408576698