-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[libc++] Implements filebuf unbuffered. #76629
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
120 changes: 120 additions & 0 deletions
120
libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/setbuf.pass.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
// <fstream> | ||
|
||
mordante marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// basic_streambuf<charT, traits>* setbuf(char_type* s, streamsize n) override; | ||
|
||
#include <fstream> | ||
#include <cstddef> | ||
#include <cassert> | ||
mordante marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#include "test_macros.h" | ||
|
||
template <class CharT> | ||
static std::size_t file_size(const char* filename) { | ||
FILE* f = std::fopen(filename, "rb"); | ||
std::fseek(f, 0, SEEK_END); | ||
long result = std::ftell(f); | ||
std::fclose(f); | ||
return result; | ||
} | ||
|
||
// Helper class to expose some protected std::basic_filebuf<CharT> members. | ||
template <class CharT> | ||
struct filebuf : public std::basic_filebuf<CharT> { | ||
CharT* base() { return this->pbase(); } | ||
CharT* ptr() { return this->pptr(); } | ||
}; | ||
|
||
template <class CharT> | ||
static void buffered_request() { | ||
filebuf<CharT> buffer; | ||
|
||
CharT b[10] = {0}; | ||
assert(buffer.pubsetbuf(b, 10) == &buffer); | ||
|
||
buffer.open("test.dat", std::ios_base::out); | ||
buffer.sputc(CharT('a')); | ||
assert(b[0] == 'a'); | ||
|
||
buffer.close(); | ||
assert(file_size<CharT>("test.dat") == 1); | ||
} | ||
|
||
template <class CharT> | ||
static void unbuffered_request_before_open() { | ||
filebuf<CharT> buffer; | ||
|
||
assert(buffer.pubsetbuf(nullptr, 0) == &buffer); | ||
assert(buffer.base() == nullptr); | ||
assert(buffer.ptr() == nullptr); | ||
|
||
buffer.open("test.dat", std::ios_base::out); | ||
assert(buffer.base() == nullptr); | ||
assert(buffer.ptr() == nullptr); | ||
|
||
buffer.sputc(CharT('a')); | ||
assert(buffer.base() == nullptr); | ||
assert(buffer.ptr() == nullptr); | ||
|
||
assert(file_size<CharT>("test.dat") == 1); | ||
} | ||
|
||
template <class CharT> | ||
static void unbuffered_request_after_open() { | ||
filebuf<CharT> buffer; | ||
|
||
buffer.open("test.dat", std::ios_base::out); | ||
|
||
assert(buffer.pubsetbuf(nullptr, 0) == &buffer); | ||
assert(buffer.base() == nullptr); | ||
assert(buffer.ptr() == nullptr); | ||
|
||
buffer.sputc(CharT('a')); | ||
assert(buffer.base() == nullptr); | ||
assert(buffer.ptr() == nullptr); | ||
|
||
assert(file_size<CharT>("test.dat") == 1); | ||
} | ||
|
||
template <class CharT> | ||
static void unbuffered_request_after_open_ate() { | ||
filebuf<CharT> buffer; | ||
|
||
buffer.open("test.dat", std::ios_base::out | std::ios_base::ate); | ||
|
||
assert(buffer.pubsetbuf(nullptr, 0) == &buffer); | ||
|
||
buffer.sputc(CharT('a')); | ||
assert(file_size<CharT>("test.dat") <= 1); | ||
// on libc++ buffering is used by default. | ||
LIBCPP_ASSERT(file_size<CharT>("test.dat") == 0); | ||
|
||
buffer.close(); | ||
assert(file_size<CharT>("test.dat") == 1); | ||
} | ||
|
||
template <class CharT> | ||
static void test() { | ||
buffered_request<CharT>(); | ||
|
||
unbuffered_request_before_open<CharT>(); | ||
unbuffered_request_after_open<CharT>(); | ||
unbuffered_request_after_open_ate<CharT>(); | ||
} | ||
|
||
int main(int, char**) { | ||
test<char>(); | ||
|
||
#ifndef TEST_HAS_NO_WIDE_CHARACTERS | ||
test<wchar_t>(); | ||
#endif | ||
|
||
return 0; | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.