summaryrefslogtreecommitdiffstats
path: root/xpcom/string/nsTDependentSubstring.cpp
blob: ba1620f98b135fec65e915f14ac697d02ce2bc1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* -*- 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 <typename T>
void nsTDependentSubstring<T>::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<char_type*>(static_cast<const char_type*>(str.Data())) +
      startPos;
  size_type newLength = XPCOM_MIN(length, strLength - startPos);
  DataFlags newDataFlags = DataFlags(0);
  this->SetData(newData, newLength, newDataFlags);
}

template <typename T>
void nsTDependentSubstring<T>::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<char_type*>(static_cast<const char_type*>(data));
  size_type newLength = length;
  DataFlags newDataFlags = DataFlags(0);
  this->SetData(newData, newLength, newDataFlags);
}

template <typename T>
void nsTDependentSubstring<T>::Rebind(const char_type* aStart,
                                      const char_type* aEnd) {
  MOZ_RELEASE_ASSERT(aStart <= aEnd, "Overflow!");
  this->Rebind(aStart, size_type(aEnd - aStart));
}

template <typename T>
nsTDependentSubstring<T>::nsTDependentSubstring(const char_type* aStart,
                                                const char_type* aEnd)
    : substring_type(const_cast<char_type*>(aStart), aEnd - aStart,
                     DataFlags(0), ClassFlags(0)) {
  MOZ_RELEASE_ASSERT(aStart <= aEnd, "Overflow!");
}

#if defined(MOZ_USE_CHAR16_WRAPPER)
template <typename T>
template <typename Q, typename EnableIfChar16>
nsTDependentSubstring<T>::nsTDependentSubstring(char16ptr_t aStart,
                                                char16ptr_t aEnd)
    : substring_type(static_cast<const char16_t*>(aStart),
                     static_cast<const char16_t*>(aEnd)) {
  MOZ_RELEASE_ASSERT(static_cast<const char16_t*>(aStart) <=
                         static_cast<const char16_t*>(aEnd),
                     "Overflow!");
}
#endif

template <typename T>
nsTDependentSubstring<T>::nsTDependentSubstring(const const_iterator& aStart,
                                                const const_iterator& aEnd)
    : substring_type(const_cast<char_type*>(aStart.get()),
                     aEnd.get() - aStart.get(), DataFlags(0), ClassFlags(0)) {
  MOZ_RELEASE_ASSERT(aStart.get() <= aEnd.get(), "Overflow!");
}

template <typename T>
const nsTDependentSubstring<T> Substring(const T* aStart, const T* aEnd) {
  MOZ_RELEASE_ASSERT(aStart <= aEnd, "Overflow!");
  return nsTDependentSubstring<T>(aStart, aEnd);
}

template nsTDependentSubstring<char> const Substring<char>(char const*,
                                                           char const*);
template nsTDependentSubstring<char16_t> const Substring<char16_t>(
    char16_t const*, char16_t const*);

#if defined(MOZ_USE_CHAR16_WRAPPER)
const nsTDependentSubstring<char16_t> Substring(char16ptr_t aData,
                                                size_t aLength) {
  return nsTDependentSubstring<char16_t>(aData, aLength);
}

const nsTDependentSubstring<char16_t> Substring(char16ptr_t aStart,
                                                char16ptr_t aEnd) {
  return Substring(static_cast<const char16_t*>(aStart),
                   static_cast<const char16_t*>(aEnd));
}
#endif

template class nsTDependentSubstring<char>;
template class nsTDependentSubstring<char16_t>;