blob: 07066b76acace051ab7af0dd4d6c7e826b9f9e77 [file] [log] [blame]
Brian Carlstromc6dfdac2013-08-26 18:57:31 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "buffered_output_stream.h"
18
19#include <string.h>
20
21namespace art {
Vladimir Marko74527972016-11-29 15:57:32 +000022namespace linker {
Brian Carlstromc6dfdac2013-08-26 18:57:31 -070023
Vladimir Marko10c13562015-11-25 14:33:36 +000024BufferedOutputStream::BufferedOutputStream(std::unique_ptr<OutputStream> out)
25 : OutputStream(out->GetLocation()), // Before out is moved to out_.
26 out_(std::move(out)),
27 used_(0) {}
28
29BufferedOutputStream::~BufferedOutputStream() {
30 FlushBuffer();
31}
Brian Carlstromc6dfdac2013-08-26 18:57:31 -070032
Ian Rogersef7d42f2014-01-06 12:55:46 -080033bool BufferedOutputStream::WriteFully(const void* buffer, size_t byte_count) {
Brian Carlstromc6dfdac2013-08-26 18:57:31 -070034 if (byte_count > kBufferSize) {
Vladimir Marko10c13562015-11-25 14:33:36 +000035 if (!FlushBuffer()) {
David Srbecky6d8c8f02015-10-26 10:57:09 +000036 return false;
37 }
Brian Carlstromc6dfdac2013-08-26 18:57:31 -070038 return out_->WriteFully(buffer, byte_count);
39 }
40 if (used_ + byte_count > kBufferSize) {
Vladimir Marko10c13562015-11-25 14:33:36 +000041 if (!FlushBuffer()) {
Brian Carlstromc6dfdac2013-08-26 18:57:31 -070042 return false;
43 }
44 }
45 const uint8_t* src = reinterpret_cast<const uint8_t*>(buffer);
46 memcpy(&buffer_[used_], src, byte_count);
47 used_ += byte_count;
48 return true;
49}
50
51bool BufferedOutputStream::Flush() {
Vladimir Marko10c13562015-11-25 14:33:36 +000052 return FlushBuffer() && out_->Flush();
53}
54
55bool BufferedOutputStream::FlushBuffer() {
Brian Carlstromc6dfdac2013-08-26 18:57:31 -070056 bool success = true;
57 if (used_ > 0) {
58 success = out_->WriteFully(&buffer_[0], used_);
59 used_ = 0;
60 }
61 return success;
62}
63
64off_t BufferedOutputStream::Seek(off_t offset, Whence whence) {
Vladimir Marko10c13562015-11-25 14:33:36 +000065 if (!FlushBuffer()) {
Brian Carlstromc6dfdac2013-08-26 18:57:31 -070066 return -1;
67 }
68 return out_->Seek(offset, whence);
69}
70
Vladimir Marko74527972016-11-29 15:57:32 +000071} // namespace linker
Brian Carlstromc6dfdac2013-08-26 18:57:31 -070072} // namespace art