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
|
// © 2018 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
#ifndef __PLURALRANGES_H__
#define __PLURALRANGES_H__
#include <_foundation_unicode/utypes.h>
#if !UCONFIG_NO_FORMATTING
#include <_foundation_unicode/uobject.h>
#include <_foundation_unicode/locid.h>
#include <_foundation_unicode/plurrule.h>
#include "standardplural.h"
#include "cmemory.h"
U_NAMESPACE_BEGIN
// Forward declarations
namespace number {
namespace impl {
class UFormattedNumberRangeData;
}
}
class StandardPluralRanges : public UMemory {
public:
/** Create a new StandardPluralRanges for the given locale */
static StandardPluralRanges forLocale(const Locale& locale, UErrorCode& status);
/** Explicit copy constructor */
StandardPluralRanges copy(UErrorCode& status) const;
/** Create an object (called on an rvalue) */
LocalPointer<StandardPluralRanges> toPointer(UErrorCode& status) && noexcept;
/** Select rule based on the first and second forms */
StandardPlural::Form resolve(StandardPlural::Form first, StandardPlural::Form second) const;
/** Used for data loading. */
void addPluralRange(
StandardPlural::Form first,
StandardPlural::Form second,
StandardPlural::Form result);
/** Used for data loading. */
void setCapacity(int32_t length, UErrorCode& status);
private:
struct StandardPluralRangeTriple {
StandardPlural::Form first;
StandardPlural::Form second;
StandardPlural::Form result;
};
// TODO: An array is simple here, but it results in linear lookup time.
// Certain locales have 20-30 entries in this list.
// Consider changing to a smarter data structure.
typedef MaybeStackArray<StandardPluralRangeTriple, 3> PluralRangeTriples;
PluralRangeTriples fTriples;
int32_t fTriplesLen = 0;
};
U_NAMESPACE_END
#endif /* #if !UCONFIG_NO_FORMATTING */
#endif //__PLURALRANGES_H__
|