/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ // FIXME: Due to an include cycle, we need to include `nsTSubstring` first. #include "nsTSubstring.h" #include "nsTDependentSubstring.h" template void nsTDependentSubstring::Rebind(const substring_type& str, size_type startPos, size_type length) { // If we currently own a buffer, release it. this->Finalize(); size_type strLength = str.Length(); if (startPos > strLength) { startPos = strLength; } char_type* newData = const_cast(static_cast(str.Data())) + startPos; size_type newLength = XPCOM_MIN(length, strLength - startPos); DataFlags newDataFlags = DataFlags(0); this->SetData(newData, newLength, newDataFlags); } template void nsTDependentSubstring::Rebind(const char_type* data, size_type length) { NS_ASSERTION(data, "nsTDependentSubstring must wrap a non-NULL buffer"); // If we currently own a buffer, release it. this->Finalize(); char_type* newData = const_cast(static_cast(data)); size_type newLength = length; DataFlags newDataFlags = DataFlags(0); this->SetData(newData, newLength, newDataFlags); } template void nsTDependentSubstring::Rebind(const char_type* aStart, const char_type* aEnd) { MOZ_RELEASE_ASSERT(aStart <= aEnd, "Overflow!"); this->Rebind(aStart, size_type(aEnd - aStart)); } template nsTDependentSubstring::nsTDependentSubstring(const char_type* aStart, const char_type* aEnd) : substring_type(const_cast(aStart), aEnd - aStart, DataFlags(0), ClassFlags(0)) { MOZ_RELEASE_ASSERT(aStart <= aEnd, "Overflow!"); } #if defined(MOZ_USE_CHAR16_WRAPPER) template template nsTDependentSubstring::nsTDependentSubstring(char16ptr_t aStart, char16ptr_t aEnd) : substring_type(static_cast(aStart), static_cast(aEnd)) { MOZ_RELEASE_ASSERT(static_cast(aStart) <= static_cast(aEnd), "Overflow!"); } #endif template nsTDependentSubstring::nsTDependentSubstring(const const_iterator& aStart, const const_iterator& aEnd) : substring_type(const_cast(aStart.get()), aEnd.get() - aStart.get(), DataFlags(0), ClassFlags(0)) { MOZ_RELEASE_ASSERT(aStart.get() <= aEnd.get(), "Overflow!"); } template const nsTDependentSubstring Substring(const T* aStart, const T* aEnd) { MOZ_RELEASE_ASSERT(aStart <= aEnd, "Overflow!"); return nsTDependentSubstring(aStart, aEnd); } template nsTDependentSubstring const Substring(char const*, char const*); template nsTDependentSubstring const Substring( char16_t const*, char16_t const*); #if defined(MOZ_USE_CHAR16_WRAPPER) const nsTDependentSubstring Substring(char16ptr_t aData, size_t aLength) { return nsTDependentSubstring(aData, aLength); } const nsTDependentSubstring Substring(char16ptr_t aStart, char16ptr_t aEnd) { return Substring(static_cast(aStart), static_cast(aEnd)); } #endif template class nsTDependentSubstring; template class nsTDependentSubstring;