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"
18 bool BlockingCopyToFile(ScopedDataPipeConsumerHandle source
,
19 const base::FilePath
& destination
) {
20 base::ScopedFILE
fp(base::OpenFile(destination
, "wb"));
27 MojoResult result
= BeginReadDataRaw(source
.get(), &buffer
, &num_bytes
,
28 MOJO_READ_DATA_FLAG_NONE
);
29 if (result
== MOJO_RESULT_OK
) {
30 size_t bytes_written
= fwrite(buffer
, 1, num_bytes
, fp
.get());
31 result
= EndReadDataRaw(source
.get(), num_bytes
);
32 if (bytes_written
< num_bytes
|| result
!= MOJO_RESULT_OK
)
34 } else if (result
== MOJO_RESULT_SHOULD_WAIT
) {
35 result
= Wait(source
.get(),
36 MOJO_HANDLE_SIGNAL_READABLE
,
37 MOJO_DEADLINE_INDEFINITE
);
38 if (result
!= MOJO_RESULT_OK
) {
39 // If the producer handle was closed, then treat as EOF.
40 return result
== MOJO_RESULT_FAILED_PRECONDITION
;
42 } else if (result
== MOJO_RESULT_FAILED_PRECONDITION
) {
43 // If the producer handle was closed, then treat as EOF.
46 // Some other error occurred.
54 void CompleteBlockingCopyToFile(const base::Callback
<void(bool)>& callback
,
59 void CopyToFile(ScopedDataPipeConsumerHandle source
,
60 const base::FilePath
& destination
,
61 base::TaskRunner
* task_runner
,
62 const base::Callback
<void(bool)>& callback
) {
63 base::PostTaskAndReplyWithResult(
66 base::Bind(&BlockingCopyToFile
, base::Passed(&source
), destination
),