fmt/test/gtest-extra.cc

91 lines
2.2 KiB
C++
Raw Normal View History

2018-03-04 17:16:51 +00:00
// Formatting library for C++ - custom Google Test assertions
//
// Copyright (c) 2012 - present, Victor Zverovich
// All rights reserved.
//
// For the license information refer to format.h.
#include "gtest-extra.h"
#if FMT_USE_FILE_DESCRIPTORS
2018-05-19 17:32:53 +00:00
using fmt::file;
void OutputRedirect::flush() {
2014-05-04 16:01:18 +00:00
#if EOF != -1
# error "FMT_RETRY assumes return value of -1 indicating failure"
#endif
int result = 0;
FMT_RETRY(result, fflush(file_));
if (result != 0)
2017-02-19 16:41:38 +00:00
throw fmt::system_error(errno, "cannot flush stream");
2014-05-04 16:01:18 +00:00
}
void OutputRedirect::restore() {
2014-05-04 17:08:29 +00:00
if (original_.descriptor() == -1)
return; // Already restored.
flush();
2014-05-04 16:01:18 +00:00
// Restore the original file.
original_.dup2(FMT_POSIX(fileno(file_)));
2014-05-04 17:08:29 +00:00
original_.close();
2014-05-04 16:01:18 +00:00
}
2018-05-19 17:32:53 +00:00
OutputRedirect::OutputRedirect(FILE *f) : file_(f) {
flush();
2018-05-19 17:32:53 +00:00
int fd = FMT_POSIX(fileno(f));
// Create a file object referring to the original file.
original_ = file::dup(fd);
2014-05-03 23:47:00 +00:00
// Create a pipe.
2018-05-19 17:32:53 +00:00
file write_end;
file::pipe(read_end_, write_end);
2014-05-04 16:01:18 +00:00
// Connect the passed FILE object to the write end of the pipe.
2014-05-03 19:28:02 +00:00
write_end.dup2(fd);
}
OutputRedirect::~OutputRedirect() FMT_NOEXCEPT {
2014-05-03 23:47:00 +00:00
try {
restore();
2014-05-03 23:47:00 +00:00
} catch (const std::exception &e) {
2014-05-04 17:08:29 +00:00
std::fputs(e.what(), stderr);
2014-05-03 23:47:00 +00:00
}
}
std::string OutputRedirect::restore_and_read() {
// Restore output.
restore();
2014-05-03 18:26:46 +00:00
// Read everything from the pipe.
std::string content;
2014-05-04 17:08:29 +00:00
if (read_end_.descriptor() == -1)
return content; // Already read.
2014-05-03 18:26:46 +00:00
enum { BUFFER_SIZE = 4096 };
char buffer[BUFFER_SIZE];
2016-03-02 15:53:14 +00:00
std::size_t count = 0;
2014-05-03 18:26:46 +00:00
do {
2014-05-03 19:28:02 +00:00
count = read_end_.read(buffer, BUFFER_SIZE);
2016-03-02 15:53:14 +00:00
content.append(buffer, count);
2014-05-03 18:26:46 +00:00
} while (count != 0);
2014-05-04 17:08:29 +00:00
read_end_.close();
2014-05-03 18:26:46 +00:00
return content;
}
2018-05-19 17:32:53 +00:00
std::string read(file &f, std::size_t count) {
std::string buffer(count, '\0');
2016-03-02 15:53:14 +00:00
std::size_t n = 0, offset = 0;
do {
n = f.read(&buffer[offset], count - offset);
// We can't read more than size_t bytes since count has type size_t.
offset += n;
} while (offset < count && n != 0);
buffer.resize(offset);
return buffer;
}
#endif // FMT_USE_FILE_DESCRIPTORS
2014-05-06 13:11:39 +00:00
std::string format_system_error(int error_code, fmt::string_view message) {
fmt::memory_buffer out;
format_system_error(out, error_code, message);
return to_string(out);
2014-05-06 13:11:39 +00:00
}