Merge pull request #260 from pcc/topmost
[mono.git] / mono / metadata / culture-info.h
1
2 #ifndef _MONO_METADATA_CULTURE_INFO_H_
3 #define _MONO_METADATA_CULTURE_INFO_H_ 1
4
5 #include <glib.h>
6
7 #define NUM_DAYS 7
8 #define NUM_MONTHS 13
9 #define GROUP_SIZE 2
10 #define NUM_CALENDARS 4
11
12 #define NUM_SHORT_DATE_PATTERNS 14
13 #define NUM_LONG_DATE_PATTERNS 8
14 #define NUM_SHORT_TIME_PATTERNS 12
15 #define NUM_LONG_TIME_PATTERNS 9
16
17 #define idx2string(idx) (locale_strings + (idx))
18
19 /* need to change this if the string data ends up to not fit in a 64KB array. */
20 typedef guint16 stridx_t;
21
22 typedef struct {
23         const stridx_t long_date_pattern;
24         const stridx_t short_date_pattern;
25         const stridx_t long_time_pattern;
26         const stridx_t short_time_pattern;
27         const stridx_t year_month_pattern;
28         const stridx_t month_day_pattern;
29
30         const stridx_t am_designator;
31         const stridx_t pm_designator;
32
33         const stridx_t day_names [NUM_DAYS]; 
34         const stridx_t abbreviated_day_names [NUM_DAYS];
35         const stridx_t shortest_day_names [NUM_DAYS];
36         const stridx_t month_names [NUM_MONTHS];
37         const stridx_t month_genitive_names [NUM_MONTHS];
38         const stridx_t abbreviated_month_names [NUM_MONTHS];
39         const stridx_t abbreviated_month_genitive_names [NUM_MONTHS];
40
41         const gint8 calendar_week_rule;
42         const gint8 first_day_of_week;
43
44         const stridx_t date_separator;
45         const stridx_t time_separator;  
46
47         const stridx_t short_date_patterns [NUM_SHORT_DATE_PATTERNS];
48         const stridx_t long_date_patterns [NUM_LONG_DATE_PATTERNS];
49         const stridx_t short_time_patterns [NUM_SHORT_TIME_PATTERNS];
50         const stridx_t long_time_patterns [NUM_LONG_TIME_PATTERNS];
51 } DateTimeFormatEntry;
52
53 typedef struct {
54         const stridx_t currency_decimal_separator;
55         const stridx_t currency_group_separator;
56         const stridx_t percent_decimal_separator;
57         const stridx_t percent_group_separator;
58         const stridx_t number_decimal_separator;
59         const stridx_t number_group_separator;
60
61         const stridx_t currency_symbol;
62         const stridx_t percent_symbol;
63         const stridx_t nan_symbol;
64         const stridx_t per_mille_symbol;
65         const stridx_t negative_infinity_symbol;
66         const stridx_t positive_infinity_symbol;
67
68         const stridx_t negative_sign;
69         const stridx_t positive_sign;
70
71         const gint8 currency_negative_pattern;
72         const gint8 currency_positive_pattern;
73         const gint8 percent_negative_pattern;
74         const gint8 percent_positive_pattern;
75         const gint8 number_negative_pattern;
76
77         const gint8 currency_decimal_digits;
78         const gint8 percent_decimal_digits;
79         const gint8 number_decimal_digits;
80
81         const gint currency_group_sizes [GROUP_SIZE];
82         const gint percent_group_sizes [GROUP_SIZE];
83         const gint number_group_sizes [GROUP_SIZE];     
84 } NumberFormatEntry;
85
86 typedef struct {
87         const gint ansi;
88         const gint ebcdic;
89         const gint mac;
90         const gint oem;
91         const MonoBoolean is_right_to_left;
92         const char list_sep;
93 } TextInfoEntry;
94
95 typedef struct {
96         const gint16 lcid;
97         const gint16 parent_lcid;
98         const gint16 calendar_type;
99         const gint16 region_entry_index;
100         const stridx_t name;
101         const stridx_t englishname;
102         const stridx_t nativename;
103         const stridx_t win3lang;
104         const stridx_t iso3lang;
105         const stridx_t iso2lang;
106         const stridx_t territory;
107         const stridx_t native_calendar_names [NUM_CALENDARS];
108
109         const gint16 datetime_format_index;
110         const gint16 number_format_index;
111         
112         const TextInfoEntry text_info;
113 } CultureInfoEntry;
114
115 typedef struct {
116         const stridx_t name;
117         const gint16 culture_entry_index;
118 } CultureInfoNameEntry;
119
120 typedef struct {
121         const gint16 geo_id;
122         const stridx_t iso2name;
123         const stridx_t iso3name;
124         const stridx_t win3name;
125         const stridx_t english_name;
126         const stridx_t native_name;
127         const stridx_t currency_symbol;
128         const stridx_t iso_currency_symbol;
129         const stridx_t currency_english_name;
130         const stridx_t currency_native_name;
131 } RegionInfoEntry;
132
133 typedef struct {
134         const stridx_t name;
135         const gint16 region_entry_index;
136 } RegionInfoNameEntry;
137
138 #endif
139