/** * \file trivstring.cpp * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Georg Baum * * Full author contact details are available in file CREDITS. */ #include #include "support/trivstring.h" #include "support/docstring.h" #ifdef STD_STRING_USES_COW #include using namespace std; namespace lyx { template trivial_string::trivial_string(trivial_string const &); template trivial_string::trivial_string(trivial_string const &); template trivial_string::trivial_string(trivial_string const & that) : size_(that.size_) { if (use_sso()) copy(that.data_sso(), that.data_sso() + size_ + 1, data_sso()); else if (size_ > 0) { data_ = new Char[size_ + 1]; copy(that.data_, that.data_ + size_ + 1, data_); } // else Happens only for really big Char types } template trivial_string::trivial_string(string const &); template trivial_string::trivial_string(docstring const &); template trivial_string::trivial_string( basic_string, allocator > const & that) : size_(that.length()) { if (use_sso()) { copy(that.begin(), that.end(), data_sso()); data_sso()[size_] = '\0'; } else if (size_ > 0) { data_ = new Char[size_ + 1]; copy(that.begin(), that.end(), data_); data_[size_] = '\0'; } // else Happens only for really big Char types } template trivial_string & trivial_string::operator=(trivial_string const &); template trivial_string & trivial_string::operator=(trivial_string const &); template trivial_string & trivial_string::operator=(trivial_string const & that) { if (&that == this) return *this; if (!use_sso()) delete[] data_; size_ = that.size_; if (use_sso()) copy(that.data_sso(), that.data_sso() + size_ + 1, data_sso()); else if (size_ > 0) { data_ = new Char[size_ + 1]; copy(that.data_, that.data_ + size_ + 1, data_); } else { // Happens only for really big Char types data_ = 0; } return *this; } template trivial_string & trivial_string::operator=(string const &); template trivial_string & trivial_string::operator=(docstring const &); template trivial_string & trivial_string::operator=(basic_string, allocator > const & that) { if (!use_sso()) delete[] data_; size_ = that.size(); if (use_sso()) { copy(that.begin(), that.end(), data_sso()); data_sso()[size_] = '\0'; } else if (size_ > 0) { data_ = new Char[size_ + 1]; copy(that.begin(), that.end(), data_); } else { // Happens only for really big Char types data_ = 0; } return *this; } template void trivial_string::swap(trivial_string &); template void trivial_string::swap(trivial_string &); template void trivial_string::swap(trivial_string & that) { size_t const sizetmp = that.size_; that.size_ = size_; size_ = sizetmp; Char * const datatmp = that.data_; that.data_ = data_; data_ = datatmp; } template int trivial_string::compare(trivial_string const & other) const { size_t const lsize = this->length(); size_t const rsize = other.length(); size_t const len = min(lsize, rsize); int r = char_traits::compare(c_str(), other.c_str(), len); if (r == 0) { if (lsize > rsize) r = 1; else if (lsize < rsize) r = -1; } return r; } template trivial_string::operator string() const; template trivial_string::operator docstring() const; template trivial_string::operator basic_string, allocator >() const { if (use_sso()) return basic_string, allocator >( data_sso(), size_); if (size_ > 0) return basic_string, allocator >( data_, size_); // Happens only for really big Char types return basic_string, allocator >(); } template char const * trivial_string::c_str() const; template char_type const * trivial_string::c_str() const; template Char const * trivial_string::c_str() const { if (use_sso()) return data_sso(); if (size_ > 0) return data_; // Happens only for really big Char types static const Char empty_char = '\0'; return &empty_char; } template bool operator<(trivial_string const &, trivial_string const &); template bool operator<(trivial_string const &, trivial_string const &); template bool operator<(trivial_string const & lhs, trivial_string const & rhs) { return lhs.compare(rhs) < 0; } template bool operator==(trivial_string const &, trivial_string const &); template bool operator==(trivial_string const &, trivial_string const &); template bool operator==(trivial_string const & lhs, trivial_string const & rhs) { return lhs.compare(rhs) == 0; } template bool operator==(trivial_string const &, char const *); template bool operator==(trivial_string const &, char_type const *); template bool operator==(trivial_string const & lhs, Char const * rhs) { return lhs.compare(trivial_string(rhs)) == 0; } template bool operator==(char const *, trivial_string const &); template bool operator==(char_type const *, trivial_string const &); template bool operator==(Char const * lhs, trivial_string const & rhs) { return rhs.compare(trivial_string(lhs)) == 0; } template ostream & operator<<(ostream &, trivial_string const &); template odocstream & operator<<(odocstream &, trivial_string const &); template basic_ostream > & operator<<(basic_ostream > & os, trivial_string const & s) { return os << basic_string, allocator >(s); } } // namespace lyx #endif