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
|
// Copyright (C) 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
* Copyright (C) 2015, International Business Machines
* Corporation and others. All Rights Reserved.
*
* file name: pluralaffix.cpp
*/
#include "unicode/utypes.h"
#if !UCONFIG_NO_FORMATTING
#include "cstring.h"
#include "digitaffix.h"
#include "pluralaffix.h"
U_NAMESPACE_BEGIN
UBool
PluralAffix::setVariant(
const char *variant, const UnicodeString &value, UErrorCode &status) {
DigitAffix *current = affixes.getMutable(variant, status);
if (U_FAILURE(status)) {
return FALSE;
}
current->remove();
current->append(value);
return TRUE;
}
void
PluralAffix::remove() {
affixes.clear();
}
void
PluralAffix::appendUChar(
const UChar value, int32_t fieldId) {
PluralMapBase::Category index = PluralMapBase::NONE;
for (DigitAffix *current = affixes.nextMutable(index);
current != NULL; current = affixes.nextMutable(index)) {
current->appendUChar(value, fieldId);
}
}
void
PluralAffix::append(
const UnicodeString &value, int32_t fieldId) {
PluralMapBase::Category index = PluralMapBase::NONE;
for (DigitAffix *current = affixes.nextMutable(index);
current != NULL; current = affixes.nextMutable(index)) {
current->append(value, fieldId);
}
}
void
PluralAffix::append(
const UChar *value, int32_t charCount, int32_t fieldId) {
PluralMapBase::Category index = PluralMapBase::NONE;
for (DigitAffix *current = affixes.nextMutable(index);
current != NULL; current = affixes.nextMutable(index)) {
current->append(value, charCount, fieldId);
}
}
UBool
PluralAffix::append(
const PluralAffix &rhs, int32_t fieldId, UErrorCode &status) {
if (U_FAILURE(status)) {
return FALSE;
}
PluralMapBase::Category index = PluralMapBase::NONE;
while(rhs.affixes.next(index) != NULL) {
affixes.getMutableWithDefault(index, affixes.getOther(), status);
}
index = PluralMapBase::NONE;
for (DigitAffix *current = affixes.nextMutable(index);
current != NULL; current = affixes.nextMutable(index)) {
current->append(rhs.affixes.get(index).toString(), fieldId);
}
return TRUE;
}
const DigitAffix &
PluralAffix::getByCategory(const char *category) const {
return affixes.get(category);
}
const DigitAffix &
PluralAffix::getByCategory(const UnicodeString &category) const {
return affixes.get(category);
}
UBool
PluralAffix::hasMultipleVariants() const {
// This works because OTHER is guaranteed to be the first enum value
PluralMapBase::Category index = PluralMapBase::OTHER;
return (affixes.next(index) != NULL);
}
U_NAMESPACE_END
#endif /* #if !UCONFIG_NO_FORMATTING */
|