2010-09-28 11:32:31 +04:00
|
|
|
/*
|
2015-06-12 14:54:31 +03:00
|
|
|
* Copyright (c) 2008-2015 Mozilla Foundation
|
2009-06-29 02:44:22 +04:00
|
|
|
*
|
2010-09-28 11:32:31 +04:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
2009-06-29 02:44:22 +04:00
|
|
|
*
|
2010-09-28 11:32:31 +04:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2009-06-29 02:44:22 +04:00
|
|
|
*
|
2010-09-28 11:32:31 +04:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
2009-06-29 02:44:22 +04:00
|
|
|
|
2013-08-23 19:07:10 +04:00
|
|
|
#ifndef jArray_h
|
|
|
|
#define jArray_h
|
2009-06-29 02:44:22 +04:00
|
|
|
|
2014-09-02 02:04:20 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2014-09-17 17:46:24 +04:00
|
|
|
#include "mozilla/BinarySearch.h"
|
2010-09-28 11:32:31 +04:00
|
|
|
#include "nsDebug.h"
|
2009-06-29 02:44:22 +04:00
|
|
|
|
|
|
|
template<class T, class L>
|
2010-09-28 11:32:31 +04:00
|
|
|
struct staticJArray {
|
|
|
|
const T* arr;
|
|
|
|
const L length;
|
|
|
|
operator T*() { return arr; }
|
2015-06-12 14:54:31 +03:00
|
|
|
T& operator[] (L const index) {
|
|
|
|
MOZ_ASSERT(index >= 0, "Array access with negative index.");
|
|
|
|
MOZ_ASSERT(index < length, "Array index out of bounds.");
|
|
|
|
return ((T*)arr)[index];
|
|
|
|
}
|
2010-09-28 11:32:31 +04:00
|
|
|
L binarySearch(T const elem) {
|
2014-09-17 17:46:24 +04:00
|
|
|
size_t idx;
|
|
|
|
bool found = mozilla::BinarySearch(arr, 0, length, elem, &idx);
|
|
|
|
return found ? idx : -1;
|
2010-09-28 11:32:31 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class T, class L>
|
|
|
|
struct jArray {
|
|
|
|
T* arr;
|
|
|
|
L length;
|
|
|
|
static jArray<T,L> newJArray(L const len) {
|
2015-06-12 14:54:31 +03:00
|
|
|
MOZ_ASSERT(len >= 0, "Negative length.");
|
2010-09-28 11:32:31 +04:00
|
|
|
jArray<T,L> newArray = { new T[len], len };
|
|
|
|
return newArray;
|
|
|
|
}
|
2015-08-25 18:05:45 +03:00
|
|
|
static jArray<T,L> newFallibleJArray(L const len) {
|
|
|
|
MOZ_ASSERT(len >= 0, "Negative length.");
|
|
|
|
T* a = new (mozilla::fallible) T[len];
|
|
|
|
jArray<T,L> newArray = { a, a ? len : 0 };
|
|
|
|
return newArray;
|
|
|
|
}
|
2010-09-28 11:32:31 +04:00
|
|
|
operator T*() { return arr; }
|
2015-06-12 14:54:31 +03:00
|
|
|
T& operator[] (L const index) {
|
|
|
|
MOZ_ASSERT(index >= 0, "Array access with negative index.");
|
|
|
|
MOZ_ASSERT(index < length, "Array index out of bounds.");
|
|
|
|
return arr[index];
|
|
|
|
}
|
2010-09-28 11:32:31 +04:00
|
|
|
void operator=(staticJArray<T,L>& other) {
|
|
|
|
arr = (T*)other.arr;
|
|
|
|
length = other.length;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class T, class L>
|
|
|
|
class autoJArray {
|
2009-06-29 02:44:22 +04:00
|
|
|
private:
|
|
|
|
T* arr;
|
|
|
|
public:
|
|
|
|
L length;
|
2010-09-28 11:32:31 +04:00
|
|
|
autoJArray()
|
|
|
|
: arr(0)
|
|
|
|
, length(0)
|
|
|
|
{
|
|
|
|
}
|
2014-09-02 02:04:20 +04:00
|
|
|
MOZ_IMPLICIT autoJArray(const jArray<T,L>& other)
|
2010-09-28 11:32:31 +04:00
|
|
|
: arr(other.arr)
|
|
|
|
, length(other.length)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
~autoJArray()
|
|
|
|
{
|
|
|
|
delete[] arr;
|
|
|
|
}
|
2009-06-29 02:44:22 +04:00
|
|
|
operator T*() { return arr; }
|
2015-06-12 14:54:31 +03:00
|
|
|
T& operator[] (L const index) {
|
|
|
|
MOZ_ASSERT(index >= 0, "Array access with negative index.");
|
|
|
|
MOZ_ASSERT(index < length, "Array index out of bounds.");
|
|
|
|
return arr[index];
|
|
|
|
}
|
2010-09-28 11:32:31 +04:00
|
|
|
operator jArray<T,L>() {
|
|
|
|
// WARNING! This makes it possible to goof with buffer ownership!
|
|
|
|
// This is needed for the getStack and getListOfActiveFormattingElements
|
|
|
|
// methods to work sensibly.
|
|
|
|
jArray<T,L> newArray = { arr, length };
|
|
|
|
return newArray;
|
2009-06-29 02:44:22 +04:00
|
|
|
}
|
2010-09-28 11:32:31 +04:00
|
|
|
void operator=(const jArray<T,L>& other) {
|
|
|
|
delete[] arr;
|
|
|
|
arr = other.arr;
|
|
|
|
length = other.length;
|
|
|
|
}
|
2015-01-14 20:09:11 +03:00
|
|
|
void operator=(decltype(nullptr)) {
|
2010-09-28 11:32:31 +04:00
|
|
|
// Make assigning null to an array in Java delete the buffer in C++
|
|
|
|
delete[] arr;
|
2012-10-01 12:49:01 +04:00
|
|
|
arr = nullptr;
|
2010-09-28 11:32:31 +04:00
|
|
|
length = 0;
|
|
|
|
}
|
|
|
|
};
|
2009-06-29 02:44:22 +04:00
|
|
|
|
2013-08-23 19:07:10 +04:00
|
|
|
#endif // jArray_h
|