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
|
// © 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.
*******************************************************************************
* standardplural.cpp
*
* created on: 2015dec14
* created by: Markus W. Scherer
*/
#include <_foundation_unicode/utypes.h>
#if !UCONFIG_NO_FORMATTING
#include <_foundation_unicode/unistr.h>
#include "cstring.h"
#include "standardplural.h"
#include "uassert.h"
U_NAMESPACE_BEGIN
static const char *gKeywords[StandardPlural::COUNT] = {
"zero", "one", "two", "few", "many", "other", "=0", "=1"
};
const char *StandardPlural::getKeyword(Form p) {
U_ASSERT(ZERO <= p && p < COUNT);
return gKeywords[p];
}
int32_t StandardPlural::indexOrNegativeFromString(const char *keyword) {
switch (*keyword++) {
case 'f':
if (uprv_strcmp(keyword, "ew") == 0) {
return FEW;
}
break;
case 'm':
if (uprv_strcmp(keyword, "any") == 0) {
return MANY;
}
break;
case 'o':
if (uprv_strcmp(keyword, "ther") == 0) {
return OTHER;
} else if (uprv_strcmp(keyword, "ne") == 0) {
return ONE;
}
break;
case 't':
if (uprv_strcmp(keyword, "wo") == 0) {
return TWO;
}
break;
case 'z':
if (uprv_strcmp(keyword, "ero") == 0) {
return ZERO;
}
break;
case '=':
if (uprv_strcmp(keyword, "0") == 0) {
return EQ_0;
} else if (uprv_strcmp(keyword, "1") == 0) {
return EQ_1;
}
break;
// Also allow "0" and "1"
case '0':
if (*keyword == 0) {
return EQ_0;
}
break;
case '1':
if (*keyword == 0) {
return EQ_1;
}
break;
default:
break;
}
return -1;
}
static const char16_t gZero[] = u"zero";
static const char16_t gOne[] = u"one";
static const char16_t gTwo[] = u"two";
static const char16_t gFew[] = u"few";
static const char16_t gMany[] = u"many";
static const char16_t gOther[] = u"other";
static const char16_t gEq0[] = u"=0";
static const char16_t gEq1[] = u"=1";
int32_t StandardPlural::indexOrNegativeFromString(const UnicodeString &keyword) {
switch (keyword.length()) {
case 1:
if (keyword.charAt(0) == '0') {
return EQ_0;
} else if (keyword.charAt(0) == '1') {
return EQ_1;
}
break;
case 2:
if (keyword.compare(gEq0, 2) == 0) {
return EQ_0;
} else if (keyword.compare(gEq1, 2) == 0) {
return EQ_1;
}
break;
case 3:
if (keyword.compare(gOne, 3) == 0) {
return ONE;
} else if (keyword.compare(gTwo, 3) == 0) {
return TWO;
} else if (keyword.compare(gFew, 3) == 0) {
return FEW;
}
break;
case 4:
if (keyword.compare(gMany, 4) == 0) {
return MANY;
} else if (keyword.compare(gZero, 4) == 0) {
return ZERO;
}
break;
case 5:
if (keyword.compare(gOther, 5) == 0) {
return OTHER;
}
break;
default:
break;
}
return -1;
}
int32_t StandardPlural::indexFromString(const char *keyword, UErrorCode &errorCode) {
if (U_FAILURE(errorCode)) { return OTHER; }
int32_t i = indexOrNegativeFromString(keyword);
if (i >= 0) {
return i;
} else {
errorCode = U_ILLEGAL_ARGUMENT_ERROR;
return OTHER;
}
}
int32_t StandardPlural::indexFromString(const UnicodeString &keyword, UErrorCode &errorCode) {
if (U_FAILURE(errorCode)) { return OTHER; }
int32_t i = indexOrNegativeFromString(keyword);
if (i >= 0) {
return i;
} else {
errorCode = U_ILLEGAL_ARGUMENT_ERROR;
return OTHER;
}
}
U_NAMESPACE_END
#endif // !UCONFIG_NO_FORMATTING
|