1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "mojo/common/data_pipe_utils.h"
9 #include "base/file_util.h"
10 #include "base/files/file_path.h"
11 #include "base/files/scoped_file.h"
12 #include "base/message_loop/message_loop.h"
13 #include "base/task_runner_util.h"
14 #include "mojo/common/handle_watcher.h"
19 bool BlockingCopyToFile(ScopedDataPipeConsumerHandle source
,
20 const base::FilePath
& destination
) {
21 base::ScopedFILE
fp(base::OpenFile(destination
, "wb"));
28 MojoResult result
= BeginReadDataRaw(source
.get(), &buffer
, &num_bytes
,
29 MOJO_READ_DATA_FLAG_NONE
);
30 if (result
== MOJO_RESULT_OK
) {
31 size_t bytes_written
= fwrite(buffer
, 1, num_bytes
, fp
.get());
32 result
= EndReadDataRaw(source
.get(), num_bytes
);
33 if (bytes_written
< num_bytes
|| result
!= MOJO_RESULT_OK
)
35 } else if (result
== MOJO_RESULT_SHOULD_WAIT
) {
36 result
= Wait(source
.get(),
37 MOJO_HANDLE_SIGNAL_READABLE
,
38 MOJO_DEADLINE_INDEFINITE
);
39 if (result
!= MOJO_RESULT_OK
) {
40 // If the producer handle was closed, then treat as EOF.
41 return result
== MOJO_RESULT_FAILED_PRECONDITION
;
43 } else if (result
== MOJO_RESULT_FAILED_PRECONDITION
) {
44 // If the producer handle was closed, then treat as EOF.
47 // Some other error occurred.
55 void CompleteBlockingCopyToFile(const base::Callback
<void(bool)>& callback
,
60 void CopyToFile(ScopedDataPipeConsumerHandle source
,
61 const base::FilePath
& destination
,
62 base::TaskRunner
* task_runner
,
63 const base::Callback
<void(bool)>& callback
) {
64 base::PostTaskAndReplyWithResult(
67 base::Bind(&BlockingCopyToFile
, base::Passed(&source
), destination
),