⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stringbuf_members.cc

📁 gcc-you can use this code to learn something about gcc, and inquire further into linux,
💻 CC
📖 第 1 页 / 共 2 页
字号:
// 981208 bkoz test functionality of basic_stringbuf for char_type == char// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 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.#include <sstream>#include <testsuite_hooks.h>std::string str_01("mykonos. . . or what?");std::string str_02("paris, or sainte-maxime?");std::string str_03;std::stringbuf strb_01(str_01);std::stringbuf strb_02(str_02, std::ios_base::in);std::stringbuf strb_03(str_03, std::ios_base::out);// test the underlying allocatorbool test01() {  bool test = false;  std::allocator<char> alloc_01;  std::allocator<char>::size_type size_01 = alloc_01.max_size();  std::allocator<char>::pointer p_01 = alloc_01.allocate(32);  return true;}// test the streambuf/stringbuf locale settingsbool test02() {  std::locale loc_tmp;  loc_tmp = strb_01.getloc();  strb_01.pubimbue(loc_tmp); //This should initialize _M_init to true  strb_01.getloc(); //This should just return _M_locale  return true;}// test member functionsbool test03() {  bool test = true;  //stringbuf::str()  VERIFY( strb_01.str() == str_01 );  VERIFY( strb_02.str() == str_02 );  VERIFY( strb_03.str() == str_03 );   //stringbuf::str(string&)  strb_03.str("none of the above, go to the oberoi in cairo, egypt.");  strb_03.str(str_01);  std::streamsize d1 = strb_01.in_avail();  std::streamsize d2 = strb_03.in_avail();  VERIFY( d1 ); // non-zero  VERIFY( !d2 ); // zero, cuz ios_base::out  VERIFY( d1 != d2 ); //these should be the same  VERIFY( str_01.length() == d1 );    VERIFY( strb_01.str() == strb_03.str() ); //ditto  // stringbuf::str(string&) and stringbuf::stringbuf(string&), where the  // string in question contains embedded NUL characters.  Note that in this  // embedded-NUL situation, the size must be passed to the string ctor.  std::string str_nulls ("eschew \0 obfuscation", 20);  // tested in 21_strings  std::stringbuf strb_normal (str_01);  std::stringbuf strb_nulls (str_nulls);  strb_normal.str(str_nulls);  // tried using 'strb_01' rather than declaring                               // another variable, but then test04 broke!  VERIFY( strb_nulls.in_avail() == str_nulls.size()  );  VERIFY( strb_nulls.str().size() == 20              );  VERIFY( strb_normal.in_avail() == str_nulls.size() );#ifdef DEBUG_ASSERT  assert(test);#endif   return test;}// test overloaded virtual functionsbool test04() {  bool 			test = true;  std::string 		str_tmp;  std::stringbuf 		strb_tmp;  std::streamsize 		strmsz_1, strmsz_2;  std::streamoff  		strmof_1(-1), strmof_2;  typedef std::stringbuf::int_type int_type;  typedef std::stringbuf::traits_type traits_type;  typedef std::stringbuf::pos_type pos_type;  typedef std::stringbuf::off_type off_type;  // GET  // int in_avail()  strmof_1 = strb_01.in_avail();  strmof_2 = strb_02.in_avail();  VERIFY( strmof_1 != strmof_2 );  VERIFY( strmof_1 == str_01.length() );  VERIFY( strmof_2 == str_02.length() );  strmof_1 = strb_03.in_avail();   VERIFY( strmof_1 == 0 ); // zero cuz write-only, or eof()? zero, from showmany  // int_type sbumpc()  // if read_cur not avail, return uflow(), else return *read_cur & increment  int_type c1 = strb_01.sbumpc();  int_type c2 = strb_02.sbumpc();  VERIFY( c1 != c2 );  VERIFY( c1 == str_01[0] );  VERIFY( c2 == str_02[0] ); //should equal first letter at this point  int_type c3 = strb_01.sbumpc();  int_type c4 = strb_02.sbumpc();  VERIFY( c1 != c2 );  VERIFY( c1 != c3 );  VERIFY( c2 != c4 );  int_type c5 = strb_03.sbumpc();  VERIFY( c5 == traits_type::eof() );  // int_type sgetc()  // if read_cur not avail, return uflow(), else return *read_cur    int_type c6 = strb_01.sgetc();  int_type c7 = strb_02.sgetc();  VERIFY( c6 != c3 );  VERIFY( c7 != c4 );  int_type c8 = strb_01.sgetc();  int_type c9 = strb_02.sgetc();  VERIFY( c6 == c8 );  VERIFY( c7 == c9 );  c5 = strb_03.sgetc();  VERIFY( c5 == traits_type::eof() );  // int_type snextc()  // calls sbumpc and if sbumpc != eof, return sgetc  c6 = strb_01.snextc();  c7 = strb_02.snextc();  VERIFY( c6 != c8 );  VERIFY( c7 != c9 );  VERIFY( c6 == str_01[3] );  VERIFY( c7 == str_02[3] ); //should equal fourth letter at this point  c5 = strb_03.snextc();  VERIFY( c5 == traits_type::eof() );  // int showmanyc  // streamsize sgetn(char_type *s, streamsize n)  // streamsize xsgetn(char_type *s, streamsize n)  // assign up to n chars to s from input sequence, indexing in_cur as  // approp and returning the number of chars assigned  strmsz_1 = strb_01.in_avail();  strmsz_2 = strb_02.in_avail();  test = strmsz_1 != strmsz_2;  VERIFY( strmsz_1 != str_01.length() );  VERIFY( strmsz_2 != str_02.length() ); //because now we've moved into string  char carray1[11] = "";  strmsz_1 = strb_01.sgetn(carray1, 10);  char carray2[20] = "";  strmsz_2 = strb_02.sgetn(carray2, 10);  VERIFY( strmsz_1 == strmsz_2 );  VERIFY( strmsz_1 == 10 );  c1 = strb_01.sgetc();  c2 = strb_02.sgetc();  VERIFY( c6 == c1 ); //just by co-incidence both o's  VERIFY( c7 != c2 ); // n != i  VERIFY( c1 == str_01[13] );  VERIFY( c2 == str_02[13] ); //should equal fourteenth letter at this point  strmsz_1 = strb_03.sgetn(carray1, 10);  VERIFY( !strmsz_1 ); //zero  strmsz_1 = strb_02.in_avail();  strmsz_2 = strb_02.sgetn(carray2, strmsz_1 + 5);  VERIFY( strmsz_1 == strmsz_2 ); //write off the end  c4 = strb_02.sgetc(); // should be EOF  VERIFY( c4 == traits_type::eof() );  // PUT  // int_type sputc(char_type c)  // if out_cur not avail, return overflow. Else, stores c at out_cur,  // increments out_cur, and returns c as int_type  strb_03.str(str_01); //reset  std::string::size_type sz1 = strb_03.str().length();  c1 = strb_03.sputc('a');   std::string::size_type sz2 = strb_03.str().length();  VERIFY( sz1 == sz2 ); //cuz inserting at out_cur, which is at beg to start  c2 = strb_03.sputc('b');   VERIFY( c1 != c2 );  VERIFY( strb_03.str() != str_01 );  c3 = strb_02.sputc('a'); // should be EOF because this is read-only  VERIFY( c3 == traits_type::eof() );    // streamsize sputn(const char_typs* s, streamsize n)  // write up to n chars to out_cur from s, returning number assigned  // NB *sputn will happily put '\0' into your stream if you give it a chance*  str_tmp = strb_03.str();  sz1 = str_tmp.length();  strmsz_1 = strb_03.sputn("racadabras", 10);//"abracadabras or what?"  sz2 = strb_03.str().length();  VERIFY( sz1 == sz2 ); //shouldn't have changed length  VERIFY( strmsz_1 == 10 );  VERIFY( str_tmp != strb_03.str() );  strmsz_2 = strb_03.sputn(", i wanna reach out and", 10);  VERIFY( strmsz_1 == strmsz_2 ); // should re-allocate, copy 10 chars.  VERIFY( strmsz_1 == 10 );  VERIFY( strmsz_2 == 10 );  sz2 = strb_03.str().length();  VERIFY( sz1 != sz2 ); // need to change length  VERIFY( str_tmp != strb_03.str() );  str_tmp = strb_02.str();  strmsz_1 = strb_02.sputn("racadabra", 10);  VERIFY( strmsz_1 == 0 );    VERIFY( str_tmp == strb_02.str() );  // PUTBACK  // int_type pbfail(int_type c)  // called when gptr() null, gptr() == eback(), or traits::eq(*gptr, c) false  // "pending sequence" is:  //	1) everything as defined in underflow  // 	2) + if (traits::eq_int_type(c, traits::eof()), then input  // 	sequence is backed up one char before the pending sequence is  // 	determined.  //	3) + if (not 2) then c is prepended. Left unspecified is  //	whether the input sequence is backedup or modified in any way  // returns traits::eof() for failure, unspecified other value for success  // int_type sputbackc(char_type c)  // if in_cur not avail || ! traits::eq(c, gptr() [-1]), return pbfail  // otherwise decrements in_cur and returns *gptr()  strmsz_1 = strb_01.in_avail();  str_tmp = strb_01.str();  c1 = strb_01.sgetc(); //"mykonos. . . 'o'r what?"  c2 = strb_01.sputbackc('z');//"mykonos. . .zor what?"  c3 = strb_01.sgetc();  VERIFY( c1 != c2 );  VERIFY( c3 == c2 );  VERIFY( strb_01.str() == std::string("mykonos. . .zor what?") );  VERIFY( str_tmp.size() == strb_01.str().size() );  //test for _in_cur == _in_beg  strb_01.str(str_tmp);  strmsz_1 = strb_01.in_avail();  c1 = strb_01.sgetc(); //"'m'ykonos. . . or what?"  c2 = strb_01.sputbackc('z');//"mykonos. . . or what?"  c3 = strb_01.sgetc();  VERIFY( c1 != c2 );  VERIFY( c3 != c2 );  VERIFY( c1 == c3 );  VERIFY( c2 == traits_type::eof() );  VERIFY( strb_01.str() == str_tmp );  VERIFY( str_tmp.size() == strb_01.str().size() );  // test for replacing char with identical one

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -