1997-08-22 00:57:35 +02:00
|
|
|
// Main templates for the -*- C++ -*- string classes.
|
1999-12-15 08:37:36 +01:00
|
|
|
// Copyright (C) 1994, 1995, 1999 Free Software Foundation
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
// This file is part of the GNU ANSI 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.
|
|
|
|
|
|
|
|
// As a special exception, if you link this library with files
|
|
|
|
// compiled with a GNU compiler to produce an executable, this does not cause
|
|
|
|
// the resulting executable to be covered by the GNU General Public License.
|
|
|
|
// This exception does not however invalidate any other reasons why
|
|
|
|
// the executable file might be covered by the GNU General Public License.
|
|
|
|
|
|
|
|
// Written by Jason Merrill based upon the specification by Takanori Adachi
|
|
|
|
// in ANSI X3J16/94-0013R2.
|
|
|
|
|
|
|
|
#ifndef __BASTRING__
|
|
|
|
#define __BASTRING__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <std/straits.h>
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
// NOTE : This does NOT conform to the draft standard and is likely to change
|
|
|
|
#include <alloc.h>
|
|
|
|
|
1997-08-22 00:57:35 +02:00
|
|
|
extern "C++" {
|
|
|
|
class istream; class ostream;
|
|
|
|
|
1997-08-26 02:27:06 +02:00
|
|
|
#include <iterator>
|
1997-08-22 00:57:35 +02:00
|
|
|
|
1997-10-10 08:56:56 +02:00
|
|
|
#ifdef __STL_USE_EXCEPTIONS
|
|
|
|
|
|
|
|
extern void __out_of_range (const char *);
|
|
|
|
extern void __length_error (const char *);
|
|
|
|
|
|
|
|
#define OUTOFRANGE(cond) \
|
|
|
|
do { if (cond) __out_of_range (#cond); } while (0)
|
|
|
|
#define LENGTHERROR(cond) \
|
|
|
|
do { if (cond) __length_error (#cond); } while (0)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#define OUTOFRANGE(cond) assert (!(cond))
|
|
|
|
#define LENGTHERROR(cond) assert (!(cond))
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits = string_char_traits<charT>,
|
|
|
|
class Allocator = alloc >
|
1997-08-22 00:57:35 +02:00
|
|
|
class basic_string
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
struct Rep {
|
|
|
|
size_t len, res, ref;
|
|
|
|
bool selfish;
|
|
|
|
|
|
|
|
charT* data () { return reinterpret_cast<charT *>(this + 1); }
|
|
|
|
charT& operator[] (size_t s) { return data () [s]; }
|
|
|
|
charT* grab () { if (selfish) return clone (); ++ref; return data (); }
|
1999-05-07 12:16:09 +02:00
|
|
|
#if defined __i486__ || defined __i586__ || defined __i686__
|
|
|
|
void release ()
|
|
|
|
{
|
|
|
|
size_t __val;
|
1999-06-02 01:27:14 +02:00
|
|
|
// This opcode exists as a .byte instead of as a mnemonic for the
|
|
|
|
// benefit of SCO OpenServer 5. The system assembler (which is
|
|
|
|
// essentially required on this target) can't assemble xaddl in
|
|
|
|
//COFF mode.
|
|
|
|
asm (".byte 0xf0, 0x0f, 0xc1, 0x02" // lock; xaddl %eax, (%edx)
|
|
|
|
: "=a" (__val)
|
|
|
|
: "0" (-1), "m" (ref), "d" (&ref)
|
|
|
|
: "memory");
|
|
|
|
|
1999-05-07 12:16:09 +02:00
|
|
|
if (__val == 1)
|
|
|
|
delete this;
|
|
|
|
}
|
1999-12-14 09:48:11 +01:00
|
|
|
#elif defined __sparc_v9__
|
1999-05-07 12:16:09 +02:00
|
|
|
void release ()
|
|
|
|
{
|
|
|
|
size_t __newval, __oldval = ref;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
__newval = __oldval - 1;
|
1999-12-14 09:48:11 +01:00
|
|
|
__asm__ (
|
|
|
|
#ifdef __arch64__
|
|
|
|
"casx [%4], %2, %0"
|
|
|
|
#else
|
|
|
|
"cas [%4], %2, %0"
|
|
|
|
#endif
|
1999-05-07 12:16:09 +02:00
|
|
|
: "=r" (__oldval), "=m" (ref)
|
|
|
|
: "r" (__oldval), "m" (ref), "r"(&(ref)), "0" (__newval));
|
|
|
|
}
|
|
|
|
while (__newval != __oldval);
|
|
|
|
|
|
|
|
if (__oldval == 0)
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
#else
|
1997-08-22 00:57:35 +02:00
|
|
|
void release () { if (--ref == 0) delete this; }
|
1999-05-07 12:16:09 +02:00
|
|
|
#endif
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
inline static void * operator new (size_t, size_t);
|
1997-12-07 11:41:01 +01:00
|
|
|
inline static void operator delete (void *);
|
1997-08-22 00:57:35 +02:00
|
|
|
inline static Rep* create (size_t);
|
|
|
|
charT* clone ();
|
|
|
|
|
|
|
|
inline void copy (size_t, const charT *, size_t);
|
|
|
|
inline void move (size_t, const charT *, size_t);
|
|
|
|
inline void set (size_t, const charT, size_t);
|
|
|
|
|
|
|
|
inline static bool excess_slop (size_t, size_t);
|
|
|
|
inline static size_t frob_size (size_t);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Rep &operator= (const Rep &);
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
// types:
|
1997-12-07 11:41:01 +01:00
|
|
|
typedef traits traits_type;
|
|
|
|
typedef typename traits::char_type value_type;
|
|
|
|
typedef Allocator allocator_type;
|
|
|
|
|
1997-08-22 00:57:35 +02:00
|
|
|
typedef size_t size_type;
|
|
|
|
typedef ptrdiff_t difference_type;
|
|
|
|
typedef charT& reference;
|
|
|
|
typedef const charT& const_reference;
|
|
|
|
typedef charT* pointer;
|
|
|
|
typedef const charT* const_pointer;
|
|
|
|
typedef pointer iterator;
|
|
|
|
typedef const_pointer const_iterator;
|
1999-12-15 08:43:22 +01:00
|
|
|
typedef ::reverse_iterator<iterator> reverse_iterator;
|
|
|
|
typedef ::reverse_iterator<const_iterator> const_reverse_iterator;
|
1997-08-22 00:57:35 +02:00
|
|
|
static const size_type npos = static_cast<size_type>(-1);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Rep *rep () const { return reinterpret_cast<Rep *>(dat) - 1; }
|
|
|
|
void repup (Rep *p) { rep ()->release (); dat = p->data (); }
|
|
|
|
|
|
|
|
public:
|
|
|
|
const charT* data () const
|
|
|
|
{ return rep ()->data(); }
|
|
|
|
size_type length () const
|
|
|
|
{ return rep ()->len; }
|
|
|
|
size_type size () const
|
|
|
|
{ return rep ()->len; }
|
|
|
|
size_type capacity () const
|
|
|
|
{ return rep ()->res; }
|
|
|
|
size_type max_size () const
|
|
|
|
{ return (npos - 1)/sizeof (charT); } // XXX
|
|
|
|
bool empty () const
|
|
|
|
{ return size () == 0; }
|
|
|
|
|
|
|
|
// _lib.string.cons_ construct/copy/destroy:
|
|
|
|
basic_string& operator= (const basic_string& str)
|
|
|
|
{
|
|
|
|
if (&str != this) { rep ()->release (); dat = str.rep ()->grab (); }
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
explicit basic_string (): dat (nilRep.grab ()) { }
|
|
|
|
basic_string (const basic_string& str): dat (str.rep ()->grab ()) { }
|
|
|
|
basic_string (const basic_string& str, size_type pos, size_type n = npos)
|
|
|
|
: dat (nilRep.grab ()) { assign (str, pos, n); }
|
|
|
|
basic_string (const charT* s, size_type n)
|
|
|
|
: dat (nilRep.grab ()) { assign (s, n); }
|
|
|
|
basic_string (const charT* s)
|
|
|
|
: dat (nilRep.grab ()) { assign (s); }
|
|
|
|
basic_string (size_type n, charT c)
|
|
|
|
: dat (nilRep.grab ()) { assign (n, c); }
|
1997-09-26 05:01:01 +02:00
|
|
|
#ifdef __STL_MEMBER_TEMPLATES
|
1997-08-22 00:57:35 +02:00
|
|
|
template<class InputIterator>
|
1999-12-15 08:37:36 +01:00
|
|
|
basic_string(InputIterator __begin, InputIterator __end)
|
1997-08-26 02:27:06 +02:00
|
|
|
#else
|
1999-12-15 08:37:36 +01:00
|
|
|
basic_string(const_iterator __begin, const_iterator __end)
|
1997-08-22 00:57:35 +02:00
|
|
|
#endif
|
1999-12-15 08:37:36 +01:00
|
|
|
: dat (nilRep.grab ()) { assign (__begin, __end); }
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
~basic_string ()
|
|
|
|
{ rep ()->release (); }
|
|
|
|
|
|
|
|
void swap (basic_string &s) { charT *d = dat; dat = s.dat; s.dat = d; }
|
|
|
|
|
|
|
|
basic_string& append (const basic_string& str, size_type pos = 0,
|
|
|
|
size_type n = npos)
|
|
|
|
{ return replace (length (), 0, str, pos, n); }
|
|
|
|
basic_string& append (const charT* s, size_type n)
|
|
|
|
{ return replace (length (), 0, s, n); }
|
|
|
|
basic_string& append (const charT* s)
|
|
|
|
{ return append (s, traits::length (s)); }
|
|
|
|
basic_string& append (size_type n, charT c)
|
|
|
|
{ return replace (length (), 0, n, c); }
|
1997-09-26 05:01:01 +02:00
|
|
|
#ifdef __STL_MEMBER_TEMPLATES
|
1997-08-22 00:57:35 +02:00
|
|
|
template<class InputIterator>
|
1997-09-26 05:01:01 +02:00
|
|
|
basic_string& append(InputIterator first, InputIterator last)
|
1997-08-26 02:27:06 +02:00
|
|
|
#else
|
|
|
|
basic_string& append(const_iterator first, const_iterator last)
|
1997-08-22 00:57:35 +02:00
|
|
|
#endif
|
1997-09-26 05:01:01 +02:00
|
|
|
{ return replace (iend (), iend (), first, last); }
|
1997-08-22 00:57:35 +02:00
|
|
|
|
2000-03-10 22:20:08 +01:00
|
|
|
void push_back(charT __c)
|
|
|
|
{ append(1, __c); }
|
|
|
|
|
1997-08-22 00:57:35 +02:00
|
|
|
basic_string& assign (const basic_string& str, size_type pos = 0,
|
|
|
|
size_type n = npos)
|
|
|
|
{ return replace (0, npos, str, pos, n); }
|
|
|
|
basic_string& assign (const charT* s, size_type n)
|
|
|
|
{ return replace (0, npos, s, n); }
|
|
|
|
basic_string& assign (const charT* s)
|
|
|
|
{ return assign (s, traits::length (s)); }
|
|
|
|
basic_string& assign (size_type n, charT c)
|
|
|
|
{ return replace (0, npos, n, c); }
|
1997-09-26 05:01:01 +02:00
|
|
|
#ifdef __STL_MEMBER_TEMPLATES
|
1997-08-22 00:57:35 +02:00
|
|
|
template<class InputIterator>
|
1997-09-26 05:01:01 +02:00
|
|
|
basic_string& assign(InputIterator first, InputIterator last)
|
1997-08-26 02:27:06 +02:00
|
|
|
#else
|
|
|
|
basic_string& assign(const_iterator first, const_iterator last)
|
1997-08-22 00:57:35 +02:00
|
|
|
#endif
|
1997-09-26 05:01:01 +02:00
|
|
|
{ return replace (ibegin (), iend (), first, last); }
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
basic_string& operator= (const charT* s)
|
|
|
|
{ return assign (s); }
|
|
|
|
basic_string& operator= (charT c)
|
|
|
|
{ return assign (1, c); }
|
|
|
|
|
|
|
|
basic_string& operator+= (const basic_string& rhs)
|
|
|
|
{ return append (rhs); }
|
|
|
|
basic_string& operator+= (const charT* s)
|
|
|
|
{ return append (s); }
|
|
|
|
basic_string& operator+= (charT c)
|
|
|
|
{ return append (1, c); }
|
|
|
|
|
|
|
|
basic_string& insert (size_type pos1, const basic_string& str,
|
|
|
|
size_type pos2 = 0, size_type n = npos)
|
|
|
|
{ return replace (pos1, 0, str, pos2, n); }
|
|
|
|
basic_string& insert (size_type pos, const charT* s, size_type n)
|
|
|
|
{ return replace (pos, 0, s, n); }
|
|
|
|
basic_string& insert (size_type pos, const charT* s)
|
|
|
|
{ return insert (pos, s, traits::length (s)); }
|
|
|
|
basic_string& insert (size_type pos, size_type n, charT c)
|
|
|
|
{ return replace (pos, 0, n, c); }
|
|
|
|
iterator insert(iterator p, charT c)
|
1998-07-06 12:35:56 +02:00
|
|
|
{ size_type __o = p - ibegin ();
|
|
|
|
insert (p - ibegin (), 1, c); selfish ();
|
|
|
|
return ibegin () + __o; }
|
1997-08-22 00:57:35 +02:00
|
|
|
iterator insert(iterator p, size_type n, charT c)
|
1998-07-06 12:35:56 +02:00
|
|
|
{ size_type __o = p - ibegin ();
|
|
|
|
insert (p - ibegin (), n, c); selfish ();
|
|
|
|
return ibegin () + __o; }
|
1997-09-26 05:01:01 +02:00
|
|
|
#ifdef __STL_MEMBER_TEMPLATES
|
1997-08-22 00:57:35 +02:00
|
|
|
template<class InputIterator>
|
1997-09-26 05:01:01 +02:00
|
|
|
void insert(iterator p, InputIterator first, InputIterator last)
|
1997-08-26 02:27:06 +02:00
|
|
|
#else
|
|
|
|
void insert(iterator p, const_iterator first, const_iterator last)
|
1997-08-22 00:57:35 +02:00
|
|
|
#endif
|
1997-09-26 05:01:01 +02:00
|
|
|
{ replace (p, p, first, last); }
|
1997-08-22 00:57:35 +02:00
|
|
|
|
1997-10-10 09:44:56 +02:00
|
|
|
basic_string& erase (size_type pos = 0, size_type n = npos)
|
1997-08-22 00:57:35 +02:00
|
|
|
{ return replace (pos, n, (size_type)0, (charT)0); }
|
1997-10-10 09:44:56 +02:00
|
|
|
iterator erase(iterator p)
|
1998-07-02 17:57:12 +02:00
|
|
|
{ size_type __o = p - begin();
|
|
|
|
replace (__o, 1, (size_type)0, (charT)0); selfish ();
|
|
|
|
return ibegin() + __o; }
|
1997-10-10 09:44:56 +02:00
|
|
|
iterator erase(iterator f, iterator l)
|
1998-07-02 17:57:12 +02:00
|
|
|
{ size_type __o = f - ibegin();
|
|
|
|
replace (__o, l-f, (size_type)0, (charT)0);selfish ();
|
|
|
|
return ibegin() + __o; }
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
basic_string& replace (size_type pos1, size_type n1, const basic_string& str,
|
|
|
|
size_type pos2 = 0, size_type n2 = npos);
|
|
|
|
basic_string& replace (size_type pos, size_type n1, const charT* s,
|
|
|
|
size_type n2);
|
|
|
|
basic_string& replace (size_type pos, size_type n1, const charT* s)
|
|
|
|
{ return replace (pos, n1, s, traits::length (s)); }
|
|
|
|
basic_string& replace (size_type pos, size_type n1, size_type n2, charT c);
|
|
|
|
basic_string& replace (size_type pos, size_type n, charT c)
|
|
|
|
{ return replace (pos, n, 1, c); }
|
|
|
|
basic_string& replace (iterator i1, iterator i2, const basic_string& str)
|
1997-10-10 09:44:56 +02:00
|
|
|
{ return replace (i1 - ibegin (), i2 - i1, str); }
|
1997-08-22 00:57:35 +02:00
|
|
|
basic_string& replace (iterator i1, iterator i2, const charT* s, size_type n)
|
1997-10-10 09:44:56 +02:00
|
|
|
{ return replace (i1 - ibegin (), i2 - i1, s, n); }
|
1997-08-22 00:57:35 +02:00
|
|
|
basic_string& replace (iterator i1, iterator i2, const charT* s)
|
1997-10-10 09:44:56 +02:00
|
|
|
{ return replace (i1 - ibegin (), i2 - i1, s); }
|
1997-08-22 00:57:35 +02:00
|
|
|
basic_string& replace (iterator i1, iterator i2, size_type n, charT c)
|
1997-10-10 09:44:56 +02:00
|
|
|
{ return replace (i1 - ibegin (), i2 - i1, n, c); }
|
1997-09-26 05:01:01 +02:00
|
|
|
#ifdef __STL_MEMBER_TEMPLATES
|
1997-08-22 00:57:35 +02:00
|
|
|
template<class InputIterator>
|
|
|
|
basic_string& replace(iterator i1, iterator i2,
|
|
|
|
InputIterator j1, InputIterator j2);
|
1997-08-26 02:27:06 +02:00
|
|
|
#else
|
|
|
|
basic_string& replace(iterator i1, iterator i2,
|
1997-09-26 05:01:01 +02:00
|
|
|
const_iterator j1, const_iterator j2);
|
1997-08-22 00:57:35 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
private:
|
|
|
|
static charT eos () { return traits::eos (); }
|
1998-01-25 17:45:02 +01:00
|
|
|
void unique () { if (rep ()->ref > 1) alloc (length (), true); }
|
1997-08-22 00:57:35 +02:00
|
|
|
void selfish () { unique (); rep ()->selfish = true; }
|
|
|
|
|
|
|
|
public:
|
|
|
|
charT operator[] (size_type pos) const
|
|
|
|
{
|
|
|
|
if (pos == length ())
|
|
|
|
return eos ();
|
|
|
|
return data ()[pos];
|
|
|
|
}
|
|
|
|
|
|
|
|
reference operator[] (size_type pos)
|
1997-11-26 08:19:11 +01:00
|
|
|
{ selfish (); return (*rep ())[pos]; }
|
1997-08-22 00:57:35 +02:00
|
|
|
|
1997-10-10 08:56:56 +02:00
|
|
|
reference at (size_type pos)
|
|
|
|
{
|
|
|
|
OUTOFRANGE (pos >= length ());
|
|
|
|
return (*this)[pos];
|
|
|
|
}
|
|
|
|
const_reference at (size_type pos) const
|
|
|
|
{
|
|
|
|
OUTOFRANGE (pos >= length ());
|
|
|
|
return data ()[pos];
|
|
|
|
}
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
void terminate () const
|
|
|
|
{ traits::assign ((*rep ())[length ()], eos ()); }
|
|
|
|
|
|
|
|
public:
|
|
|
|
const charT* c_str () const
|
1999-02-20 13:21:51 +01:00
|
|
|
{ if (length () == 0) return ""; terminate (); return data (); }
|
1997-08-22 00:57:35 +02:00
|
|
|
void resize (size_type n, charT c);
|
|
|
|
void resize (size_type n)
|
|
|
|
{ resize (n, eos ()); }
|
|
|
|
void reserve (size_type) { }
|
|
|
|
|
2000-07-14 18:27:45 +02:00
|
|
|
void clear() { erase(begin(), end()); }
|
|
|
|
|
1998-05-12 00:04:43 +02:00
|
|
|
size_type copy (charT* s, size_type n, size_type pos = 0) const;
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
size_type find (const basic_string& str, size_type pos = 0) const
|
|
|
|
{ return find (str.data(), pos, str.length()); }
|
|
|
|
size_type find (const charT* s, size_type pos, size_type n) const;
|
|
|
|
size_type find (const charT* s, size_type pos = 0) const
|
|
|
|
{ return find (s, pos, traits::length (s)); }
|
|
|
|
size_type find (charT c, size_type pos = 0) const;
|
|
|
|
|
|
|
|
size_type rfind (const basic_string& str, size_type pos = npos) const
|
|
|
|
{ return rfind (str.data(), pos, str.length()); }
|
|
|
|
size_type rfind (const charT* s, size_type pos, size_type n) const;
|
|
|
|
size_type rfind (const charT* s, size_type pos = npos) const
|
|
|
|
{ return rfind (s, pos, traits::length (s)); }
|
|
|
|
size_type rfind (charT c, size_type pos = npos) const;
|
|
|
|
|
|
|
|
size_type find_first_of (const basic_string& str, size_type pos = 0) const
|
|
|
|
{ return find_first_of (str.data(), pos, str.length()); }
|
|
|
|
size_type find_first_of (const charT* s, size_type pos, size_type n) const;
|
|
|
|
size_type find_first_of (const charT* s, size_type pos = 0) const
|
|
|
|
{ return find_first_of (s, pos, traits::length (s)); }
|
|
|
|
size_type find_first_of (charT c, size_type pos = 0) const
|
|
|
|
{ return find (c, pos); }
|
|
|
|
|
|
|
|
size_type find_last_of (const basic_string& str, size_type pos = npos) const
|
|
|
|
{ return find_last_of (str.data(), pos, str.length()); }
|
|
|
|
size_type find_last_of (const charT* s, size_type pos, size_type n) const;
|
|
|
|
size_type find_last_of (const charT* s, size_type pos = npos) const
|
|
|
|
{ return find_last_of (s, pos, traits::length (s)); }
|
|
|
|
size_type find_last_of (charT c, size_type pos = npos) const
|
|
|
|
{ return rfind (c, pos); }
|
|
|
|
|
|
|
|
size_type find_first_not_of (const basic_string& str, size_type pos = 0) const
|
|
|
|
{ return find_first_not_of (str.data(), pos, str.length()); }
|
|
|
|
size_type find_first_not_of (const charT* s, size_type pos, size_type n) const;
|
|
|
|
size_type find_first_not_of (const charT* s, size_type pos = 0) const
|
|
|
|
{ return find_first_not_of (s, pos, traits::length (s)); }
|
|
|
|
size_type find_first_not_of (charT c, size_type pos = 0) const;
|
|
|
|
|
|
|
|
size_type find_last_not_of (const basic_string& str, size_type pos = npos) const
|
|
|
|
{ return find_last_not_of (str.data(), pos, str.length()); }
|
|
|
|
size_type find_last_not_of (const charT* s, size_type pos, size_type n) const;
|
|
|
|
size_type find_last_not_of (const charT* s, size_type pos = npos) const
|
|
|
|
{ return find_last_not_of (s, pos, traits::length (s)); }
|
|
|
|
size_type find_last_not_of (charT c, size_type pos = npos) const;
|
|
|
|
|
|
|
|
basic_string substr (size_type pos = 0, size_type n = npos) const
|
|
|
|
{ return basic_string (*this, pos, n); }
|
|
|
|
|
|
|
|
int compare (const basic_string& str, size_type pos = 0, size_type n = npos) const;
|
|
|
|
// There is no 'strncmp' equivalent for charT pointers.
|
|
|
|
int compare (const charT* s, size_type pos, size_type n) const;
|
|
|
|
int compare (const charT* s, size_type pos = 0) const
|
|
|
|
{ return compare (s, pos, traits::length (s)); }
|
|
|
|
|
|
|
|
iterator begin () { selfish (); return &(*this)[0]; }
|
|
|
|
iterator end () { selfish (); return &(*this)[length ()]; }
|
1997-09-26 05:01:01 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
iterator ibegin () const { return &(*rep ())[0]; }
|
|
|
|
iterator iend () const { return &(*rep ())[length ()]; }
|
|
|
|
|
|
|
|
public:
|
|
|
|
const_iterator begin () const { return ibegin (); }
|
|
|
|
const_iterator end () const { return iend (); }
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
reverse_iterator rbegin() { return reverse_iterator (end ()); }
|
|
|
|
const_reverse_iterator rbegin() const
|
|
|
|
{ return const_reverse_iterator (end ()); }
|
|
|
|
reverse_iterator rend() { return reverse_iterator (begin ()); }
|
|
|
|
const_reverse_iterator rend() const
|
1997-08-26 02:27:06 +02:00
|
|
|
{ return const_reverse_iterator (begin ()); }
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
void alloc (size_type size, bool save);
|
|
|
|
static size_type _find (const charT* ptr, charT c, size_type xpos, size_type len);
|
|
|
|
inline bool check_realloc (size_type s) const;
|
|
|
|
|
|
|
|
static Rep nilRep;
|
|
|
|
charT *dat;
|
|
|
|
};
|
|
|
|
|
1997-09-26 05:01:01 +02:00
|
|
|
#ifdef __STL_MEMBER_TEMPLATES
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator> template <class InputIterator>
|
|
|
|
basic_string <charT, traits, Allocator>& basic_string <charT, traits, Allocator>::
|
1997-09-26 05:01:01 +02:00
|
|
|
replace (iterator i1, iterator i2, InputIterator j1, InputIterator j2)
|
|
|
|
#else
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
|
|
|
basic_string <charT, traits, Allocator>& basic_string <charT, traits, Allocator>::
|
1997-09-26 05:01:01 +02:00
|
|
|
replace (iterator i1, iterator i2, const_iterator j1, const_iterator j2)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
const size_type len = length ();
|
|
|
|
size_type pos = i1 - ibegin ();
|
|
|
|
size_type n1 = i2 - i1;
|
|
|
|
size_type n2 = j2 - j1;
|
|
|
|
|
|
|
|
OUTOFRANGE (pos > len);
|
|
|
|
if (n1 > len - pos)
|
|
|
|
n1 = len - pos;
|
|
|
|
LENGTHERROR (len - n1 > max_size () - n2);
|
|
|
|
size_t newlen = len - n1 + n2;
|
|
|
|
|
|
|
|
if (check_realloc (newlen))
|
|
|
|
{
|
|
|
|
Rep *p = Rep::create (newlen);
|
|
|
|
p->copy (0, data (), pos);
|
|
|
|
p->copy (pos + n2, data () + pos + n1, len - (pos + n1));
|
|
|
|
for (; j1 != j2; ++j1, ++pos)
|
|
|
|
traits::assign ((*p)[pos], *j1);
|
|
|
|
repup (p);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rep ()->move (pos + n2, data () + pos + n1, len - (pos + n1));
|
|
|
|
for (; j1 != j2; ++j1, ++pos)
|
|
|
|
traits::assign ((*rep ())[pos], *j1);
|
|
|
|
}
|
|
|
|
rep ()->len = newlen;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
|
|
|
inline basic_string <charT, traits, Allocator>
|
|
|
|
operator+ (const basic_string <charT, traits, Allocator>& lhs,
|
|
|
|
const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
1997-12-07 11:41:01 +01:00
|
|
|
basic_string <charT, traits, Allocator> str (lhs);
|
1997-08-22 00:57:35 +02:00
|
|
|
str.append (rhs);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
|
|
|
inline basic_string <charT, traits, Allocator>
|
|
|
|
operator+ (const charT* lhs, const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
1997-12-07 11:41:01 +01:00
|
|
|
basic_string <charT, traits, Allocator> str (lhs);
|
1997-08-22 00:57:35 +02:00
|
|
|
str.append (rhs);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
|
|
|
inline basic_string <charT, traits, Allocator>
|
|
|
|
operator+ (charT lhs, const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
1997-12-07 11:41:01 +01:00
|
|
|
basic_string <charT, traits, Allocator> str (1, lhs);
|
1997-08-22 00:57:35 +02:00
|
|
|
str.append (rhs);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
|
|
|
inline basic_string <charT, traits, Allocator>
|
|
|
|
operator+ (const basic_string <charT, traits, Allocator>& lhs, const charT* rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
1997-12-07 11:41:01 +01:00
|
|
|
basic_string <charT, traits, Allocator> str (lhs);
|
1997-08-22 00:57:35 +02:00
|
|
|
str.append (rhs);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
|
|
|
inline basic_string <charT, traits, Allocator>
|
|
|
|
operator+ (const basic_string <charT, traits, Allocator>& lhs, charT rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
1997-12-07 11:41:01 +01:00
|
|
|
basic_string <charT, traits, Allocator> str (lhs);
|
1997-08-22 00:57:35 +02:00
|
|
|
str.append (1, rhs);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator== (const basic_string <charT, traits, Allocator>& lhs,
|
|
|
|
const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) == 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator== (const charT* lhs, const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (rhs.compare (lhs) == 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator== (const basic_string <charT, traits, Allocator>& lhs, const charT* rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) == 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator!= (const charT* lhs, const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (rhs.compare (lhs) != 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator!= (const basic_string <charT, traits, Allocator>& lhs, const charT* rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) != 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator< (const basic_string <charT, traits, Allocator>& lhs,
|
|
|
|
const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) < 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator< (const charT* lhs, const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (rhs.compare (lhs) > 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator< (const basic_string <charT, traits, Allocator>& lhs, const charT* rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) < 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator> (const charT* lhs, const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (rhs.compare (lhs) < 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator> (const basic_string <charT, traits, Allocator>& lhs, const charT* rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) > 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator<= (const charT* lhs, const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (rhs.compare (lhs) >= 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator<= (const basic_string <charT, traits, Allocator>& lhs, const charT* rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) <= 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator>= (const charT* lhs, const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (rhs.compare (lhs) <= 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator>= (const basic_string <charT, traits, Allocator>& lhs, const charT* rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) >= 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator!= (const basic_string <charT, traits, Allocator>& lhs,
|
|
|
|
const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) != 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator> (const basic_string <charT, traits, Allocator>& lhs,
|
|
|
|
const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) > 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator<= (const basic_string <charT, traits, Allocator>& lhs,
|
|
|
|
const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) <= 0);
|
|
|
|
}
|
|
|
|
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator>
|
1997-08-22 00:57:35 +02:00
|
|
|
inline bool
|
1997-12-07 11:41:01 +01:00
|
|
|
operator>= (const basic_string <charT, traits, Allocator>& lhs,
|
|
|
|
const basic_string <charT, traits, Allocator>& rhs)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
return (lhs.compare (rhs) >= 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
class istream; class ostream;
|
1997-12-07 11:41:01 +01:00
|
|
|
template <class charT, class traits, class Allocator> istream&
|
|
|
|
operator>> (istream&, basic_string <charT, traits, Allocator>&);
|
|
|
|
template <class charT, class traits, class Allocator> ostream&
|
|
|
|
operator<< (ostream&, const basic_string <charT, traits, Allocator>&);
|
|
|
|
template <class charT, class traits, class Allocator> istream&
|
|
|
|
getline (istream&, basic_string <charT, traits, Allocator>&, charT delim = '\n');
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
} // extern "C++"
|
|
|
|
|
1998-01-25 17:45:02 +01:00
|
|
|
#include <std/bastring.cc>
|
|
|
|
|
1997-08-22 00:57:35 +02:00
|
|
|
#endif
|