1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
---|
2 | /* vim:set ts=2 sw=2 sts=2 et cindent: */
|
---|
3 | /* ***** BEGIN LICENSE BLOCK *****
|
---|
4 | * Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
---|
5 | *
|
---|
6 | * The contents of this file are subject to the Mozilla Public License Version
|
---|
7 | * 1.1 (the "License"); you may not use this file except in compliance with
|
---|
8 | * the License. You may obtain a copy of the License at
|
---|
9 | * http://www.mozilla.org/MPL/
|
---|
10 | *
|
---|
11 | * Software distributed under the License is distributed on an "AS IS" basis,
|
---|
12 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
---|
13 | * for the specific language governing rights and limitations under the
|
---|
14 | * License.
|
---|
15 | *
|
---|
16 | * The Original Code is Mozilla.
|
---|
17 | *
|
---|
18 | * The Initial Developer of the Original Code is IBM Corporation.
|
---|
19 | * Portions created by IBM Corporation are Copyright (C) 2003
|
---|
20 | * IBM Corporation. All Rights Reserved.
|
---|
21 | *
|
---|
22 | * Contributor(s):
|
---|
23 | * Scott Collins <scc@mozilla.org> (original author)
|
---|
24 | * Darin Fisher <darin@meer.net>
|
---|
25 | *
|
---|
26 | * Alternatively, the contents of this file may be used under the terms of
|
---|
27 | * either the GNU General Public License Version 2 or later (the "GPL"), or
|
---|
28 | * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
---|
29 | * in which case the provisions of the GPL or the LGPL are applicable instead
|
---|
30 | * of those above. If you wish to allow use of your version of this file only
|
---|
31 | * under the terms of either the GPL or the LGPL, and not to allow others to
|
---|
32 | * use your version of this file under the terms of the MPL, indicate your
|
---|
33 | * decision by deleting the provisions above and replace them with the notice
|
---|
34 | * and other provisions required by the GPL or the LGPL. If you do not delete
|
---|
35 | * the provisions above, a recipient may use your version of this file under
|
---|
36 | * the terms of any one of the MPL, the GPL or the LGPL.
|
---|
37 | *
|
---|
38 | * ***** END LICENSE BLOCK ***** */
|
---|
39 |
|
---|
40 |
|
---|
41 | /**
|
---|
42 | * nsTDependentSubstring_CharT
|
---|
43 | */
|
---|
44 | class nsTDependentSubstring_CharT : public nsTSubstring_CharT
|
---|
45 | {
|
---|
46 | public:
|
---|
47 |
|
---|
48 | typedef nsTDependentSubstring_CharT self_type;
|
---|
49 |
|
---|
50 | public:
|
---|
51 |
|
---|
52 | NS_COM void Rebind( const abstract_string_type&, PRUint32 startPos, PRUint32 length = size_type(-1) );
|
---|
53 | NS_COM void Rebind( const substring_type&, PRUint32 startPos, PRUint32 length = size_type(-1) );
|
---|
54 |
|
---|
55 | void Rebind( const char_type* start, const char_type* end )
|
---|
56 | {
|
---|
57 | NS_ASSERTION(start && end, "nsTDependentSubstring must wrap a non-NULL buffer");
|
---|
58 | mData = NS_CONST_CAST(char_type*, start);
|
---|
59 | mLength = end - start;
|
---|
60 | SetDataFlags(F_NONE);
|
---|
61 | }
|
---|
62 |
|
---|
63 | nsTDependentSubstring_CharT( const abstract_string_type& str, PRUint32 startPos, PRUint32 length = size_type(-1) )
|
---|
64 | : substring_type(F_NONE)
|
---|
65 | {
|
---|
66 | Rebind(str, startPos, length);
|
---|
67 | }
|
---|
68 |
|
---|
69 | nsTDependentSubstring_CharT( const substring_type& str, PRUint32 startPos, PRUint32 length = size_type(-1) )
|
---|
70 | : substring_type(F_NONE)
|
---|
71 | {
|
---|
72 | Rebind(str, startPos, length);
|
---|
73 | }
|
---|
74 |
|
---|
75 | nsTDependentSubstring_CharT( const char_type* start, const char_type* end )
|
---|
76 | : substring_type(NS_CONST_CAST(char_type*, start), end - start, F_NONE) {}
|
---|
77 |
|
---|
78 | nsTDependentSubstring_CharT( const const_iterator& start, const const_iterator& end )
|
---|
79 | : substring_type(NS_CONST_CAST(char_type*, start.get()), end.get() - start.get(), F_NONE) {}
|
---|
80 |
|
---|
81 | // auto-generated copy-constructor OK (XXX really?? what about base class copy-ctor?)
|
---|
82 |
|
---|
83 | private:
|
---|
84 | // NOT USED
|
---|
85 | void operator=( const self_type& ); // we're immutable, you can't assign into a substring
|
---|
86 | };
|
---|
87 |
|
---|
88 | inline
|
---|
89 | const nsTDependentSubstring_CharT
|
---|
90 | Substring( const nsTAString_CharT& str, PRUint32 startPos, PRUint32 length = PRUint32(-1) )
|
---|
91 | {
|
---|
92 | return nsTDependentSubstring_CharT(str, startPos, length);
|
---|
93 | }
|
---|
94 |
|
---|
95 | inline
|
---|
96 | const nsTDependentSubstring_CharT
|
---|
97 | Substring( const nsTSubstring_CharT& str, PRUint32 startPos, PRUint32 length = PRUint32(-1) )
|
---|
98 | {
|
---|
99 | return nsTDependentSubstring_CharT(str, startPos, length);
|
---|
100 | }
|
---|
101 |
|
---|
102 | inline
|
---|
103 | const nsTDependentSubstring_CharT
|
---|
104 | Substring( const nsReadingIterator<CharT>& start, const nsReadingIterator<CharT>& end )
|
---|
105 | {
|
---|
106 | return nsTDependentSubstring_CharT(start.get(), end.get());
|
---|
107 | }
|
---|
108 |
|
---|
109 | inline
|
---|
110 | const nsTDependentSubstring_CharT
|
---|
111 | Substring( const CharT* start, const CharT* end )
|
---|
112 | {
|
---|
113 | return nsTDependentSubstring_CharT(start, end);
|
---|
114 | }
|
---|
115 |
|
---|
116 | inline
|
---|
117 | const nsTDependentSubstring_CharT
|
---|
118 | StringHead( const nsTAString_CharT& str, PRUint32 count )
|
---|
119 | {
|
---|
120 | return nsTDependentSubstring_CharT(str, 0, count);
|
---|
121 | }
|
---|
122 |
|
---|
123 | inline
|
---|
124 | const nsTDependentSubstring_CharT
|
---|
125 | StringHead( const nsTSubstring_CharT& str, PRUint32 count )
|
---|
126 | {
|
---|
127 | return nsTDependentSubstring_CharT(str, 0, count);
|
---|
128 | }
|
---|
129 |
|
---|
130 | inline
|
---|
131 | const nsTDependentSubstring_CharT
|
---|
132 | StringTail( const nsTAString_CharT& str, PRUint32 count )
|
---|
133 | {
|
---|
134 | return nsTDependentSubstring_CharT(str, str.Length() - count, count);
|
---|
135 | }
|
---|
136 |
|
---|
137 | inline
|
---|
138 | const nsTDependentSubstring_CharT
|
---|
139 | StringTail( const nsTSubstring_CharT& str, PRUint32 count )
|
---|
140 | {
|
---|
141 | return nsTDependentSubstring_CharT(str, str.Length() - count, count);
|
---|
142 | }
|
---|