mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 13:26:07 +00:00

Change buffer_unique_ostream's constructor to call raw_ostream::SetUnbuffered() on its owned stream. Otherwise, buffer_unique_ostream's destructor could cause the owned stream to temporarily allocate a buffer only to be immediately flushed. Also add some tests for buffer_ostream and buffer_unique_ostream. Use the same naming scheme as other raw_ostream-related tests (e.g., `raw_ostreamTest` for the fixture, `raw_ostream_test.cpp` for the filename). (I considered changing buffer_ostream in the same way (calling SetUnbuffered on the referenced stream), but that seemed like overreach since the client may have more things to write.) (I considered merging buffer_ostream and buffer_unique_ostream into a single class (with a `raw_ostream&` and a `std::unique_ptr` that is only sometimes used), but that makes the class bigger and the small amount of code deduplication seems uncompelling.) Differential Revision: https://reviews.llvm.org/D110369
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
//===- buffer_ostream_test.cpp - buffer_ostream tests ---------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace llvm;
|
|
|
|
namespace {
|
|
|
|
/// Naive version of raw_svector_ostream that is buffered (by default) and
|
|
/// doesn't support pwrite.
|
|
class NaiveSmallVectorStream : public raw_ostream {
|
|
public:
|
|
uint64_t current_pos() const override { return Vector.size(); }
|
|
void write_impl(const char *Ptr, size_t Size) override {
|
|
Vector.append(Ptr, Ptr + Size);
|
|
}
|
|
|
|
explicit NaiveSmallVectorStream(SmallVectorImpl<char> &Vector)
|
|
: Vector(Vector) {}
|
|
~NaiveSmallVectorStream() override { flush(); }
|
|
|
|
SmallVectorImpl<char> &Vector;
|
|
};
|
|
|
|
TEST(buffer_ostreamTest, Reference) {
|
|
SmallString<128> Dest;
|
|
{
|
|
NaiveSmallVectorStream DestOS(Dest);
|
|
buffer_ostream BufferOS(DestOS);
|
|
|
|
// Writing and flushing should have no effect on Dest.
|
|
BufferOS << "abcd";
|
|
static_cast<raw_ostream &>(BufferOS).flush();
|
|
EXPECT_EQ("", Dest);
|
|
DestOS.flush();
|
|
EXPECT_EQ("", Dest);
|
|
}
|
|
|
|
// Write should land when constructor is called.
|
|
EXPECT_EQ("abcd", Dest);
|
|
}
|
|
|
|
TEST(buffer_ostreamTest, Owned) {
|
|
SmallString<128> Dest;
|
|
{
|
|
auto DestOS = std::make_unique<NaiveSmallVectorStream>(Dest);
|
|
|
|
// Confirm that NaiveSmallVectorStream is buffered by default.
|
|
EXPECT_NE(0u, DestOS->GetBufferSize());
|
|
|
|
// Confirm that passing ownership to buffer_unique_ostream sets it to
|
|
// unbuffered. Also steal a reference to DestOS.
|
|
NaiveSmallVectorStream &DestOSRef = *DestOS;
|
|
buffer_unique_ostream BufferOS(std::move(DestOS));
|
|
EXPECT_EQ(0u, DestOSRef.GetBufferSize());
|
|
|
|
// Writing and flushing should have no effect on Dest.
|
|
BufferOS << "abcd";
|
|
static_cast<raw_ostream &>(BufferOS).flush();
|
|
EXPECT_EQ("", Dest);
|
|
DestOSRef.flush();
|
|
EXPECT_EQ("", Dest);
|
|
}
|
|
|
|
// Write should land when constructor is called.
|
|
EXPECT_EQ("abcd", Dest);
|
|
}
|
|
|
|
} // end namespace
|