2014-05-05 21:30:46 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2004-11-25 10:03:20 +03:00
|
|
|
|
2017-08-15 00:22:50 +03:00
|
|
|
template <typename T>
|
|
|
|
nsTDependentString<T>::nsTDependentString(const char_type* aStart,
|
|
|
|
const char_type* aEnd)
|
2021-12-14 00:47:56 +03:00
|
|
|
: string_type(const_cast<char_type*>(aStart), aEnd - aStart,
|
2017-07-10 22:23:10 +03:00
|
|
|
DataFlags::TERMINATED, ClassFlags(0)) {
|
2017-02-21 19:38:00 +03:00
|
|
|
MOZ_RELEASE_ASSERT(aStart <= aEnd, "Overflow!");
|
2017-08-15 00:22:50 +03:00
|
|
|
this->AssertValidDependentString();
|
2017-02-21 19:38:00 +03:00
|
|
|
}
|
|
|
|
|
2017-08-15 00:22:50 +03:00
|
|
|
template <typename T>
|
2021-12-14 00:47:56 +03:00
|
|
|
void nsTDependentString<T>::Rebind(const string_type& str,
|
|
|
|
index_type startPos) {
|
2017-07-10 22:23:10 +03:00
|
|
|
MOZ_ASSERT(str.GetDataFlags() & DataFlags::TERMINATED,
|
|
|
|
"Unterminated flat string");
|
2014-01-09 00:51:38 +04:00
|
|
|
|
2014-05-05 21:30:46 +04:00
|
|
|
// If we currently own a buffer, release it.
|
2017-08-15 00:22:50 +03:00
|
|
|
this->Finalize();
|
2011-09-15 11:40:17 +04:00
|
|
|
|
2014-05-05 21:30:46 +04:00
|
|
|
size_type strLength = str.Length();
|
2011-09-15 11:40:17 +04:00
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
if (startPos > strLength) {
|
2014-05-05 21:30:46 +04:00
|
|
|
startPos = strLength;
|
2014-05-27 11:15:35 +04:00
|
|
|
}
|
2011-09-15 11:40:17 +04:00
|
|
|
|
2017-07-21 01:46:59 +03:00
|
|
|
char_type* newData =
|
|
|
|
const_cast<char_type*>(static_cast<const char_type*>(str.Data())) +
|
|
|
|
startPos;
|
|
|
|
size_type newLen = strLength - startPos;
|
|
|
|
DataFlags newDataFlags =
|
|
|
|
str.GetDataFlags() & (DataFlags::TERMINATED | DataFlags::LITERAL);
|
2017-08-15 00:22:50 +03:00
|
|
|
this->SetData(newData, newLen, newDataFlags);
|
2014-05-05 21:30:46 +04:00
|
|
|
}
|
2017-02-21 19:38:00 +03:00
|
|
|
|
2017-08-15 00:22:50 +03:00
|
|
|
template <typename T>
|
|
|
|
void nsTDependentString<T>::Rebind(const char_type* aStart,
|
|
|
|
const char_type* aEnd) {
|
2017-02-21 19:38:00 +03:00
|
|
|
MOZ_RELEASE_ASSERT(aStart <= aEnd, "Overflow!");
|
2021-12-14 00:47:56 +03:00
|
|
|
this->Rebind(aStart, aEnd - aStart);
|
2017-02-21 19:38:00 +03:00
|
|
|
}
|