Merge mozilla-central and tracemonkey. (a=blockers)
[mozilla-central.git] / parser / html / jArray.h
blobde4acd04f7390126ccab7435c30db8f552c288ad
1 /*
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.
23 #ifndef jArray_h_
24 #define jArray_h_
26 #include "nsDebug.h"
28 template<class T, class L>
29 struct staticJArray {
30 const T* arr;
31 const L length;
32 operator T*() { return arr; }
33 T& operator[] (L const index) { return ((T*)arr)[index]; }
34 L binarySearch(T const elem) {
35 L lo = 0;
36 L hi = length - 1;
37 while (lo <= hi) {
38 L mid = (lo + hi) / 2;
39 if (arr[mid] > elem) {
40 hi = mid - 1;
41 } else if (arr[mid] < elem) {
42 lo = mid + 1;
43 } else {
44 return mid;
47 return -1;
51 template<class T, class L>
52 struct jArray {
53 T* arr;
54 L length;
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 };
58 return newArray;
60 operator T*() { return arr; }
61 T& operator[] (L const index) { return arr[index]; }
62 void operator=(staticJArray<T,L>& other) {
63 arr = (T*)other.arr;
64 length = other.length;
68 template<class T, class L>
69 class autoJArray {
70 private:
71 T* arr;
72 public:
73 L length;
74 autoJArray()
75 : arr(0)
76 , length(0)
79 autoJArray(const jArray<T,L>& other)
80 : arr(other.arr)
81 , length(other.length)
84 ~autoJArray()
86 delete[] arr;
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 };
95 return newArray;
97 void operator=(const jArray<T,L>& other) {
98 delete[] arr;
99 arr = other.arr;
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.");
105 delete[] arr;
106 arr = 0;
107 length = 0;
111 #endif // jArray_h_