blob: 0e3ae16ba08456e433b061c27395b5cd26eba473 [file] [log] [blame]
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Author: kenton@google.com (Kenton Varda)
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include "google/protobuf/io/zero_copy_stream.h"
#include <utility>
#include "google/protobuf/stubs/logging.h"
#include "google/protobuf/stubs/common.h"
#include "absl/strings/cord.h"
#include "absl/strings/cord_buffer.h"
#include "absl/strings/string_view.h"
#include "absl/types/span.h"
// Must be included last.
#include "google/protobuf/port_def.inc"
namespace google {
namespace protobuf {
namespace io {
bool ZeroCopyInputStream::ReadCord(absl::Cord* cord, int count) {
if (count <= 0) return true;
absl::CordBuffer cord_buffer = cord->GetAppendBuffer(count);
absl::Span<char> out = cord_buffer.available_up_to(count);
auto FetchNextChunk = [&]() -> absl::Span<const char> {
const void* buffer;
int size;
if (!Next(&buffer, &size)) return {};
if (size > count) {
BackUp(size - count);
size = count;
}
return absl::MakeConstSpan(static_cast<const char*>(buffer), size);
};
auto AppendFullBuffer = [&]() -> absl::Span<char> {
cord->Append(std::move(cord_buffer));
cord_buffer = absl::CordBuffer::CreateWithDefaultLimit(count);
return cord_buffer.available_up_to(count);
};
auto CopyBytes = [&](absl::Span<char>& dst, absl::Span<const char>& src,
size_t bytes) {
memcpy(dst.data(), src.data(), bytes);
dst.remove_prefix(bytes);
src.remove_prefix(bytes);
count -= bytes;
cord_buffer.IncreaseLengthBy(bytes);
};
do {
absl::Span<const char> in = FetchNextChunk();
if (in.empty()) {
// Append whatever we have pending so far.
cord->Append(std::move(cord_buffer));
return false;
}
if (out.empty()) out = AppendFullBuffer();
while (in.size() > out.size()) {
CopyBytes(out, in, out.size());
out = AppendFullBuffer();
}
CopyBytes(out, in, in.size());
} while (count > 0);
cord->Append(std::move(cord_buffer));
return true;
}
bool ZeroCopyOutputStream::WriteAliasedRaw(const void* /* data */,
int /* size */) {
GOOGLE_LOG(FATAL) << "This ZeroCopyOutputStream doesn't support aliasing. "
"Reaching here usually means a ZeroCopyOutputStream "
"implementation bug.";
return false;
}
} // namespace io
} // namespace protobuf
} // namespace google