2 * Copyright (c) 2008-2010 Mozilla Foundation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
28 template<class T
, class L
>
32 operator T
*() { return arr
; }
33 T
& operator[] (L
const index
) { return ((T
*)arr
)[index
]; }
34 L
binarySearch(T
const elem
) {
38 L mid
= (lo
+ hi
) / 2;
39 if (arr
[mid
] > elem
) {
41 } else if (arr
[mid
] < elem
) {
51 template<class T
, class L
>
55 static jArray
<T
,L
> newJArray(L
const len
) {
56 NS_ASSERTION(len
>= 0, "Bad length.");
57 jArray
<T
,L
> newArray
= { new T
[len
], len
};
60 operator T
*() { return arr
; }
61 T
& operator[] (L
const index
) { return arr
[index
]; }
62 void operator=(staticJArray
<T
,L
>& other
) {
64 length
= other
.length
;
68 template<class T
, class L
>
79 autoJArray(const jArray
<T
,L
>& other
)
81 , length(other
.length
)
88 operator T
*() { return arr
; }
89 T
& operator[] (L
const index
) { return arr
[index
]; }
90 operator jArray
<T
,L
>() {
91 // WARNING! This makes it possible to goof with buffer ownership!
92 // This is needed for the getStack and getListOfActiveFormattingElements
93 // methods to work sensibly.
94 jArray
<T
,L
> newArray
= { arr
, length
};
97 void operator=(const jArray
<T
,L
>& other
) {
100 length
= other
.length
;
102 void operator=(L zero
) {
103 // Make assigning null to an array in Java delete the buffer in C++
104 NS_ASSERTION(!zero
, "Non-zero integer assigned to jArray.");