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 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
|
/// <summary>
/// Copyright (C) 2004-2016 Free Software Foundation, Inc.
///
/// Author: Alexander Gnauck AG-Software, mailto:gnauck@ag-software.de
///
/// This file is part of GNU Libidn.
///
/// GNU Libidn is free software: you can redistribute it and/or
/// modify it under the terms of either:
///
/// * the GNU Lesser General Public License as published by the Free
/// Software Foundation; either version 3 of the License, or (at
/// your option) any later version.
///
/// or
///
/// * the GNU General Public License as published by the Free
/// Software Foundation; either version 2 of the License, or (at
/// your option) any later version.
///
/// or both in parallel, as here.
///
/// GNU Libidn is distributed in the hope that it will be useful,
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
/// General Public License for more details.
///
/// You should have received copies of the GNU General Public License and
/// the GNU Lesser General Public License along with this program. If
/// not, see <http://www.gnu.org/licenses/>.
/// </summary>
using System;
using System.Text;
namespace Gnu.Inet.Encoding
{
public class NFKC
{
/// <summary>
/// Applies NFKC normalization to a string.
/// </summary>
/// <param name="in">The string to normalize.</param>
/// <returns> An NFKC normalized string.</returns>
public static string NormalizeNFKC(string sbIn)
{
StringBuilder sbOut = new StringBuilder();
for (int i = 0; i < sbIn.Length; i++)
{
char code = sbIn[i];
// In Unicode 3.0, Hangul was defined as the block from U+AC00
// to U+D7A3, however, since Unicode 3.2 the block extends until
// U+D7AF. The decomposeHangul function only decomposes until
// U+D7A3. Should this be changed?
if (code >= 0xAC00 && code <= 0xD7AF)
{
sbOut.Append(decomposeHangul(code));
}
else
{
int index = decomposeIndex(code);
if (index == - 1)
{
sbOut.Append(code);
}
else
{
sbOut.Append(DecompositionMappings.m[index]);
}
}
}
// Bring the stringbuffer into canonical order.
canonicalOrdering(sbOut);
// Do the canonical composition.
int last_cc = 0;
int last_start = 0;
for (int i = 0; i < sbOut.Length; i++)
{
int cc = combiningClass(sbOut[i]);
if (i > 0 && (last_cc == 0 || last_cc != cc))
{
// Try to combine characters
char a = sbOut[last_start];
char b = sbOut[i];
int c = compose(a, b);
if (c != - 1)
{
sbOut[last_start] = (char) c;
//sbOut.deleteCharAt(i);
sbOut.Remove(i, 1);
i--;
if (i == last_start)
{
last_cc = 0;
}
else
{
last_cc = combiningClass(sbOut[i - 1]);
}
continue;
}
}
if (cc == 0)
{
last_start = i;
}
last_cc = cc;
}
return sbOut.ToString();
}
/// <summary>
/// Returns the index inside the decomposition table, implemented
/// using a binary search.
/// </summary>
/// <param name="c">Character to look up.</param>
/// <returns> Index if found, -1 otherwise.</returns>
internal static int decomposeIndex(char c)
{
int start = 0;
int end = DecompositionKeys.k.Length / 2;
while (true)
{
int half = (start + end) / 2;
int code = DecompositionKeys.k[half * 2];
if (c == code)
{
return DecompositionKeys.k[half * 2 + 1];
}
if (half == start)
{
// Character not found
return - 1;
}
else if (c > code)
{
start = half;
}
else
{
end = half;
}
}
}
/// <summary>
/// Returns the combining class of a given character.
/// </summary>
/// <param name="c">The character.</param>
/// <returns> The combining class.</returns>
internal static int combiningClass(char c)
{
int h = c >> 8;
int l = c & 0xff;
int i = CombiningClass.i[h];
if (i > - 1)
{
return CombiningClass.c[i, l];
}
else
{
return 0;
}
}
/// <summary>
/// Rearranges characters in a stringbuffer in order to respect the
/// canonical ordering properties.
/// </summary>
/// <param name="The">StringBuffer to rearrange.</param>
internal static void canonicalOrdering(StringBuilder sbIn)
{
bool isOrdered = false;
while (!isOrdered)
{
isOrdered = true;
// 24.10.2005
int lastCC = 0;
if (sbIn.Length > 0)
lastCC = combiningClass(sbIn[0]);
for (int i = 0; i < sbIn.Length - 1; i++)
{
int nextCC = combiningClass(sbIn[i + 1]);
if (nextCC != 0 && lastCC > nextCC)
{
for (int j = i + 1; j > 0; j--)
{
if (combiningClass(sbIn[j - 1]) <= nextCC)
{
break;
}
char t = sbIn[j];
sbIn[j] = sbIn[j - 1];
sbIn[j - 1] = t;
isOrdered = false;
}
nextCC = lastCC;
}
lastCC = nextCC;
}
}
}
/// <summary>
/// Returns the index inside the composition table.
/// </summary>
/// <param name="a">Character to look up.</param>
/// <returns> Index if found, -1 otherwise.</returns>
internal static int composeIndex(char a)
{
if (a >> 8 >= Composition.composePage.Length)
{
return - 1;
}
int ap = Composition.composePage[a >> 8];
if (ap == - 1)
{
return - 1;
}
return Composition.composeData[ap, a & 0xff];
}
/// <summary>
/// Tries to compose two characters canonically.
/// </summary>
/// <param name="a">First character.</param>
/// <param name="b">Second character.</param>
/// <returns> The composed character or -1 if no composition could be found.</returns>
internal static int compose(char a, char b)
{
int h = composeHangul(a, b);
if (h != - 1)
{
return h;
}
int ai = composeIndex(a);
if (ai >= Composition.singleFirstStart && ai < Composition.singleSecondStart)
{
if (b == Composition.singleFirst[ai - Composition.singleFirstStart, 0])
{
return Composition.singleFirst[ai - Composition.singleFirstStart, 1];
}
else
{
return - 1;
}
}
int bi = composeIndex(b);
if (bi >= Composition.singleSecondStart)
{
if (a == Composition.singleSecond[bi - Composition.singleSecondStart,0])
{
return Composition.singleSecond[bi - Composition.singleSecondStart,1];
}
else
{
return - 1;
}
}
if (ai >= 0 && ai < Composition.multiSecondStart && bi >= Composition.multiSecondStart && bi < Composition.singleFirstStart)
{
char[] f = Composition.multiFirst[ai];
if (bi - Composition.multiSecondStart < f.Length)
{
char r = f[bi - Composition.multiSecondStart];
if (r == 0)
{
return - 1;
}
else
{
return r;
}
}
}
return - 1;
}
/// <summary>
/// Entire hangul code copied from:
/// http://www.unicode.org/unicode/reports/tr15/
/// Several hangul specific constants
/// </summary>
internal const int SBase = 0xAC00;
internal const int LBase = 0x1100;
internal const int VBase = 0x1161;
internal const int TBase = 0x11A7;
internal const int LCount = 19;
internal const int VCount = 21;
internal const int TCount = 28;
internal static readonly int NCount = VCount * TCount;
internal static readonly int SCount = LCount * NCount;
/// <summary>
/// Decomposes a hangul character.
/// </summary>
/// <param name="s">A character to decompose.</param>
/// <returns> A string containing the hangul decomposition of the input
/// character. If no hangul decomposition can be found, a string
/// containing the character itself is returned.</returns>
internal static string decomposeHangul(char s)
{
int SIndex = s - SBase;
if (SIndex < 0 || SIndex >= SCount)
{
return s.ToString();
}
StringBuilder result = new StringBuilder();
int L = LBase + SIndex / NCount;
int V = VBase + (SIndex % NCount) / TCount;
int T = TBase + SIndex % TCount;
result.Append((char) L);
result.Append((char) V);
if (T != TBase)
result.Append((char) T);
return result.ToString();
}
/// <summary>
/// Composes two hangul characters.
/// </summary>
/// <param name="a">First character.</param>
/// <param name="b">Second character.</param>
/// <returns> Returns the composed character or -1 if the two characters cannot be composed.</returns>
internal static int composeHangul(char a, char b)
{
// 1. check to see if two current characters are L and V
int LIndex = a - LBase;
if (0 <= LIndex && LIndex < LCount)
{
int VIndex = b - VBase;
if (0 <= VIndex && VIndex < VCount)
{
// make syllable of form LV
return SBase + (LIndex * VCount + VIndex) * TCount;
}
}
// 2. check to see if two current characters are LV and T
int SIndex = a - SBase;
if (0 <= SIndex && SIndex < SCount && (SIndex % TCount) == 0)
{
int TIndex = b - TBase;
if (0 <= TIndex && TIndex <= TCount)
{
// make syllable of form LVT
return a + TIndex;
}
}
return - 1;
}
}
}
|