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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
**********************************************************************
* Copyright (C) 2003, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
*/
#include "layout/LETypes.h"
#include "layout/LEFontInstance.h"
#include "unicode/locid.h"
#include "layout/RunArrays.h"
U_NAMESPACE_BEGIN
const char RunArray::fgClassID = 0;
RunArray::RunArray(le_int32 initialCapacity)
: fClientArrays(false), fLimits(nullptr), fCount(0), fCapacity(initialCapacity)
{
if (initialCapacity > 0) {
fLimits = LE_NEW_ARRAY(le_int32, fCapacity);
}
}
RunArray::~RunArray()
{
if (! fClientArrays) {
LE_DELETE_ARRAY(fLimits);
fLimits = nullptr;
}
}
le_int32 RunArray::ensureCapacity()
{
if (fCount >= fCapacity) {
if (fCapacity == 0) {
fCapacity = INITIAL_CAPACITY;
init(fCapacity);
} else {
fCapacity += (fCapacity < CAPACITY_GROW_LIMIT ? fCapacity : CAPACITY_GROW_LIMIT);
grow(fCapacity);
}
}
return fCount++;
}
void RunArray::init(le_int32 capacity)
{
fLimits = LE_NEW_ARRAY(le_int32, capacity);
}
void RunArray::grow(le_int32 newCapacity)
{
fLimits = static_cast<le_int32*>(LE_GROW_ARRAY(fLimits, newCapacity));
}
le_int32 RunArray::add(le_int32 limit)
{
if (fClientArrays) {
return -1;
}
le_int32 index = ensureCapacity();
le_int32* limits = const_cast<le_int32*>(fLimits);
limits[index] = limit;
return index;
}
const char FontRuns::fgClassID = 0;
FontRuns::FontRuns(le_int32 initialCapacity)
: RunArray(initialCapacity), fFonts(nullptr)
{
if (initialCapacity > 0) {
fFonts = LE_NEW_ARRAY(const LEFontInstance *, initialCapacity);
}
}
FontRuns::~FontRuns()
{
if (! fClientArrays) {
LE_DELETE_ARRAY(fFonts);
fFonts = nullptr;
}
}
void FontRuns::init(le_int32 capacity)
{
RunArray::init(capacity);
fFonts = LE_NEW_ARRAY(const LEFontInstance *, capacity);
}
void FontRuns::grow(le_int32 capacity)
{
RunArray::grow(capacity);
fFonts = static_cast<const LEFontInstance**>(LE_GROW_ARRAY(fFonts, capacity));
}
le_int32 FontRuns::add(const LEFontInstance *font, le_int32 limit)
{
le_int32 index = RunArray::add(limit);
if (index >= 0) {
LEFontInstance** fonts = const_cast<LEFontInstance**>(fFonts);
fonts[index] = const_cast<LEFontInstance*>(font);
}
return index;
}
const LEFontInstance *FontRuns::getFont(le_int32 run) const
{
if (run < 0 || run >= getCount()) {
return nullptr;
}
return fFonts[run];
}
const char LocaleRuns::fgClassID = 0;
LocaleRuns::LocaleRuns(le_int32 initialCapacity)
: RunArray(initialCapacity), fLocales(nullptr)
{
if (initialCapacity > 0) {
fLocales = LE_NEW_ARRAY(const Locale *, initialCapacity);
}
}
LocaleRuns::~LocaleRuns()
{
if (! fClientArrays) {
LE_DELETE_ARRAY(fLocales);
fLocales = nullptr;
}
}
void LocaleRuns::init(le_int32 capacity)
{
RunArray::init(capacity);
fLocales = LE_NEW_ARRAY(const Locale *, capacity);
}
void LocaleRuns::grow(le_int32 capacity)
{
RunArray::grow(capacity);
fLocales = static_cast<const Locale**>(LE_GROW_ARRAY(fLocales, capacity));
}
le_int32 LocaleRuns::add(const Locale *locale, le_int32 limit)
{
le_int32 index = RunArray::add(limit);
if (index >= 0) {
Locale** locales = const_cast<Locale**>(fLocales);
locales[index] = const_cast<Locale*>(locale);
}
return index;
}
const Locale *LocaleRuns::getLocale(le_int32 run) const
{
if (run < 0 || run >= getCount()) {
return nullptr;
}
return fLocales[run];
}
const char ValueRuns::fgClassID = 0;
ValueRuns::ValueRuns(le_int32 initialCapacity)
: RunArray(initialCapacity), fValues(nullptr)
{
if (initialCapacity > 0) {
fValues = LE_NEW_ARRAY(le_int32, initialCapacity);
}
}
ValueRuns::~ValueRuns()
{
if (! fClientArrays) {
LE_DELETE_ARRAY(fValues);
fValues = nullptr;
}
}
void ValueRuns::init(le_int32 capacity)
{
RunArray::init(capacity);
fValues = LE_NEW_ARRAY(le_int32, capacity);
}
void ValueRuns::grow(le_int32 capacity)
{
RunArray::grow(capacity);
fValues = static_cast<const le_int32*>(LE_GROW_ARRAY(fValues, capacity));
}
le_int32 ValueRuns::add(le_int32 value, le_int32 limit)
{
le_int32 index = RunArray::add(limit);
if (index >= 0) {
le_int32* values = const_cast<le_int32*>(fValues);
values[index] = value;
}
return index;
}
le_int32 ValueRuns::getValue(le_int32 run) const
{
if (run < 0 || run >= getCount()) {
return -1;
}
return fValues[run];
}
U_NAMESPACE_END
|