Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MSCompatUnicodeTableUtil.cs « Mono.Globalization.Unicode « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 605e6f876985261f18e8ad9afc30cb18d54d5da7 (plain)
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
//
// MSCompatUnicodeTable.cs : Utility for MSCompatUnicodeTable class.
//
// Author:
//	Atsushi Enomoto  <atsushi@ximian.com>
//
// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Globalization;
using System.Text;

namespace Mono.Globalization.Unicode
{
	internal /*static*/ class MSCompatUnicodeTableUtil
	{
		public const byte ResourceVersion = 3;

		public static readonly CodePointIndexer Ignorable;
		public static readonly CodePointIndexer Category;
		public static readonly CodePointIndexer Level1;
		public static readonly CodePointIndexer Level2;
		public static readonly CodePointIndexer Level3;
//		public static readonly CodePointIndexer WidthCompat;
		public static readonly CodePointIndexer CjkCHS;
		public static readonly CodePointIndexer Cjk;

		static MSCompatUnicodeTableUtil ()
		{
			// FIXME: those ranges could be more compact, but since
			// I haven't filled all the table yet, I keep it safer.
			int [] ignoreStarts = new int [] {
				0, 0xA000, 0xF900};
			int [] ignoreEnds = new int [] {
				0x3400, 0xA500, 0x10000};
			int [] catStarts = new int [] {
				0, 0x1E00, 0x3000, 0x4E00, 0xAC00, 0xF900};
			int [] catEnds = new int [] {
				0x1200, 0x2800, 0x3400, 0xA000, 0xD7B0, 0x10000};
			int [] lv1Starts = new int [] {
				0, 0x1E00, 0x3000, 0x4E00, 0xAC00, 0xF900};
			int [] lv1Ends = new int [] {
				0x1200, 0x2800, 0x3400, 0xA000, 0xD7B0, 0x10000};
			int [] lv2Starts = new int [] {0, 0x1E00, 0x3000, 0xFB00};
			int [] lv2Ends = new int [] {0xF00, 0x2800, 0x3400, 0x10000};
			int [] lv3Starts = new int [] {0, 0x1E00, 0x3000, 0xFB00};
			int [] lv3Ends = new int [] {0x1200, 0x2800, 0x3400, 0x10000};
//			int [] widthStarts = new int [] {0, 0x2000, 0x3100, 0xFF00};
//			int [] widthEnds = new int [] {0x300, 0x2200, 0x3200, 0x10000};
			int [] chsStarts = new int [] {
				0x3100, 0x4E00, 0xE800}; // FIXME: really?
			int [] chsEnds = new int [] {
				0x3400, 0xA000, 0x10000};
			int [] cjkStarts = new int [] {0x3100, 0x4E00, 0xF900};
			int [] cjkEnds = new int [] {0x3400, 0xA000, 0xFB00};

			Ignorable = new CodePointIndexer (ignoreStarts, ignoreEnds, -1, -1);
			Category = new CodePointIndexer (catStarts, catEnds, 0, 0);
			Level1 = new CodePointIndexer (lv1Starts, lv1Ends, 0, 0);
			Level2 = new CodePointIndexer (lv2Starts, lv2Ends, 0, 0);
			Level3 = new CodePointIndexer (lv3Starts, lv3Ends, 0, 0);
//			WidthCompat = new CodePointIndexer (widthStarts, widthEnds, 0, 0);
			CjkCHS = new CodePointIndexer (chsStarts, chsEnds, -1, -1);
			Cjk = new CodePointIndexer (cjkStarts, cjkEnds, -1, -1);
		}
	}
}