mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 08:03:41 +08:00
e3033a2240
2003-05-15 Paolo Carlini <pcarlini@unitus.it> Nathan Myers <ncm@cantrip.org> * include/bits/fstream.tcc (_M_overflow): Rewrote to call _M_convert_to_external only once (_M_buf_size is now the size of the put area + 1 for the overflow char of a full area); call _M_set_buffer instead of _M_set_indeterminate. (setbuf): Don't accept a buffer smaller than 2 chars. (_M_underflow): Refill _M_buf_size - 1 chars; call _M_set_buffer, instead of _M_set_determinate. (open): Call _M_set_buffer, instead of _M_set_indeterminate. (seekoff): Likewise. * include/ext/stdio_filebuf.h (stdio_filebuf(int, std::ios_base::openmode, bool, size_t), stdio_filebuf(std::__c_file*, std::ios_base::openmode, size_t): Likewise. * include/std/std_fstream.h (_M_set_indeterminate): Remove. (_M_set_determinate): Rename as _M_set_buffer, _M_buf_size -> _M_buf_size - 1. * include/std/std_streambuf.h: Tweak _M_out_lim comment. * testsuite/27_io/basic_filebuf/sgetn/char/1.cc: Tweak, taking into account that, for _M_buf_size == BUFSIZ == 8192, the size of the put area is now BUFSIZ - 1. * testsuite/ext/stdio_filebuf_2.cc: Tweak, taking into account that now the smallest _M_buf_size is 2 (still fails, for the same reason, with 3.2.3) Co-Authored-By: Nathan Myers <ncm@cantrip.org> From-SVN: r66848
60 lines
1.6 KiB
C++
60 lines
1.6 KiB
C++
// 2003-04-12 Paolo Carlini <pcarlini at unitus dot it>
|
|
|
|
// Copyright (C) 2003 Free Software Foundation, Inc.
|
|
//
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
// software; you can redistribute it and/or modify it under the
|
|
// terms of the GNU General Public License as published by the
|
|
// Free Software Foundation; either version 2, or (at your option)
|
|
// any later version.
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this library; see the file COPYING. If not, write to the Free
|
|
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
// USA.
|
|
|
|
// stdio_filebuf.h
|
|
|
|
#include <ext/stdio_filebuf.h>
|
|
#include <cstdio>
|
|
#include <fstream>
|
|
#include <testsuite_hooks.h>
|
|
|
|
// Small stack-based buffers (i.e., using _M_unbuf) were not flushed
|
|
// out by _M_really_overflow upon overflow.
|
|
void test01()
|
|
{
|
|
using namespace std;
|
|
bool test = true;
|
|
|
|
const char* name = "tmp_file1";
|
|
FILE* file = fopen(name, "w");
|
|
{
|
|
using namespace __gnu_cxx;
|
|
stdio_filebuf<char> sbuf(file, ios_base::out, 2);
|
|
sbuf.sputc('T');
|
|
sbuf.sputc('S');
|
|
sbuf.sputc('P');
|
|
}
|
|
fclose(file);
|
|
|
|
filebuf fbuf;
|
|
fbuf.open(name, ios_base::in);
|
|
char buf[10];
|
|
streamsize n = fbuf.sgetn(buf, sizeof(buf));
|
|
fbuf.close();
|
|
|
|
VERIFY( n == 3 );
|
|
VERIFY( !memcmp(buf, "TSP", 3) );
|
|
}
|
|
|
|
int main()
|
|
{
|
|
test01();
|
|
}
|