-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcountrycode.c
160 lines (154 loc) · 12.9 KB
/
countrycode.c
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
/*
* File extends GeoIP C API functionality with additional table
* covering couples of ISO 3166 codes (NumCode and Alpha2Code)
*
* Copyright (C) 2012 Masaryk University, Institute of Computer Science
* All rights reserved.
*
* LICENSE TERMS
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name of the Masaryk University nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* This software is provided ``as is'', and any express or implied
* warranties, including, but not limited to, the implied warranties of
* merchantability and fitness for a particular purpose are disclaimed.
* In no event shall the company or contributors be liable for any
* direct, indirect, incidental, special, exemplary, or consequential
* damages (including, but not limited to, procurement of substitute
* goods or services; loss of use, data, or profits; or business
* interruption) however caused and on any theory of liability, whether
* in contract, strict liability, or tort (including negligence or
* otherwise) arising in any way out of the use of this software, even
* if advised of the possibility of such damage.
*
* $Id: countrycode.c 604 2012-10-09 14:33:38Z 374632 $
*/
/**
* \file countrycode.c
* \brief File extends GeoIP C API functionality with additional table covering couples of ISO 3166 codes (NumCode and Alpha2Code)
* \author Martin Rabek <[email protected]>
* \date 2012
*
* ISO 3166-1 Standard defines three basic sets of country codes: Alpha-2 code, Alpha-3 code and
* Numeric code. Numeric (int) code is the best choice to store ctry code in our new extension,
* however Maxmind C API, GeoIP, does not support it.
*
* That is the reason for this auxiliary file which defines own iso3166_GeoIP_country_codes[254] array,
* where both NumCode and Alpha2Code exists in a defined country_code_iso3166_t structure. This table
* is generated by a simple tool - numCodeTool (with newer versions of GeoIP C API it can be necessary
* to generate it again). Superior advantage of using iso3166_GeoIP_country_codes[254] is that NumCode
* is found out as fast as other GeoIP functions does.
*
* Next, there are declared two global variables for GeoIP database access because definition and using
* for geolocation is not in one .c file so it must be a global variable.
*/
#ifndef COUNTRYCODE_C_
#define COUNTRYCODE_C_
#include <stdio.h>
#include <string.h>
#include <GeoIP.h>
#include "countrycode.h"
/**
* \brief Array of ISO 3166-1 codes (NumCode, Alpha2Code) sorted as GeoIP_country_code[254]
*
* The table has been generated by numCodeTool for GeoIP 1.4.8
* and it is based on ftp://ftp.fu-berlin.de/doc/iso/iso3166-countrycodes.txt (Latest change: Sun Apr 1 2012).
* Please note: with newer versions of GeoIP it can be necessary to generate new array.
*/
const country_code_iso3166_t iso3166_GeoIP_country_codes[254] = {
{0, "--"}, {0, "AP"}, {0, "EU"}, {20, "AD"}, {784, "AE"}, {4, "AF"}, {28, "AG"}, {660, "AI"}, {8, "AL"}, {51, "AM"}, {531, "CW"},
{24, "AO"}, {10, "AQ"}, {32, "AR"}, {16, "AS"}, {40, "AT"}, {36, "AU"}, {553, "AW"}, {31, "AZ"}, {70, "BA"}, {52, "BB"},
{50, "BD"}, {56, "BE"}, {854, "BF"}, {100, "BG"}, {48, "BH"}, {108, "BI"}, {204, "BJ"}, {60, "BM"}, {96, "BN"}, {68, "BO"},
{76, "BR"}, {44, "BS"}, {64, "BT"}, {74, "BV"}, {72, "BW"}, {112, "BY"}, {84, "BZ"}, {124, "CA"}, {166, "CC"}, {180, "CD"},
{140, "CF"}, {178, "CG"}, {756, "CH"}, {384, "CI"}, {184, "CK"}, {152, "CL"}, {120, "CM"}, {156, "CN"}, {170, "CO"}, {188, "CR"},
{192, "CU"}, {132, "CV"}, {162, "CX"}, {196, "CY"}, {203, "CZ"}, {276, "DE"}, {262, "DJ"}, {208, "DK"}, {212, "DM"}, {214, "DO"},
{12, "DZ"}, {218, "EC"}, {233, "EE"}, {818, "EG"}, {732, "EH"}, {232, "ER"}, {724, "ES"}, {231, "ET"}, {246, "FI"}, {242, "FJ"},
{238, "FK"}, {583, "FM"}, {234, "FO"}, {250, "FR"}, {534, "SX"}, {266, "GA"}, {826, "GB"}, {308, "GD"}, {268, "GE"}, {254, "GF"},
{288, "GH"}, {292, "GI"}, {304, "GL"}, {270, "GM"}, {324, "GN"}, {312, "GP"}, {226, "GQ"}, {300, "GR"}, {239, "GS"}, {320, "GT"},
{316, "GU"}, {624, "GW"}, {328, "GY"}, {344, "HK"}, {334, "HM"}, {340, "HN"}, {191, "HR"}, {332, "HT"}, {348, "HU"}, {360, "ID"},
{372, "IE"}, {376, "IL"}, {356, "IN"}, {86, "IO"}, {368, "IQ"}, {364, "IR"}, {352, "IS"}, {380, "IT"}, {388, "JM"}, {400, "JO"},
{392, "JP"}, {404, "KE"}, {417, "KG"}, {116, "KH"}, {296, "KI"}, {174, "KM"}, {659, "KN"}, {408, "KP"}, {410, "KR"}, {414, "KW"},
{136, "KY"}, {398, "KZ"}, {418, "LA"}, {422, "LB"}, {662, "LC"}, {438, "LI"}, {144, "LK"}, {430, "LR"}, {426, "LS"}, {440, "LT"},
{442, "LU"}, {428, "LV"}, {434, "LY"}, {504, "MA"}, {492, "MC"}, {498, "MD"}, {450, "MG"}, {485, "MH"}, {807, "MK"}, {466, "ML"},
{104, "MM"}, {496, "MN"}, {446, "MO"}, {580, "MP"}, {474, "MQ"}, {478, "MR"}, {500, "MS"}, {470, "MT"}, {480, "MU"}, {462, "MV"},
{454, "MW"}, {484, "MX"}, {458, "MY"}, {508, "MZ"}, {516, "NA"}, {540, "NC"}, {562, "NE"}, {574, "NF"}, {566, "NG"}, {558, "NI"},
{528, "NL"}, {578, "NO"}, {524, "NP"}, {520, "NR"}, {570, "NU"}, {554, "NZ"}, {512, "OM"}, {591, "PA"}, {604, "PE"}, {258, "PF"},
{598, "PG"}, {608, "PH"}, {586, "PK"}, {616, "PL"}, {666, "PM"}, {612, "PN"}, {630, "PR"}, {275, "PS"}, {620, "PT"}, {585, "PW"},
{600, "PY"}, {634, "QA"}, {638, "RE"}, {642, "RO"}, {643, "RU"}, {646, "RW"}, {682, "SA"}, {90, "SB"}, {690, "SC"}, {729, "SD"},
{752, "SE"}, {702, "SG"}, {654, "SH"}, {705, "SI"}, {744, "SJ"}, {703, "SK"}, {694, "SL"}, {674, "SM"}, {686, "SN"}, {706, "SO"},
{740, "SR"}, {678, "ST"}, {222, "SV"}, {760, "SY"}, {748, "SZ"}, {796, "TC"}, {148, "TD"}, {260, "TF"}, {768, "TG"}, {764, "TH"},
{762, "TJ"}, {772, "TK"}, {795, "TM"}, {788, "TN"}, {776, "TO"}, {626, "TL"}, {792, "TR"}, {780, "TT"}, {798, "TV"}, {158, "TW"},
{834, "TZ"}, {804, "UA"}, {800, "UG"}, {581, "UM"}, {840, "US"}, {858, "UY"}, {860, "UZ"}, {336, "VA"}, {670, "VC"}, {862, "VE"},
{92, "VG"}, {850, "VI"}, {704, "VN"}, {548, "VU"}, {876, "WF"}, {882, "WS"}, {887, "YE"}, {175, "YT"}, {688, "RS"}, {710, "ZA"},
{894, "ZM"}, {499, "ME"}, {716, "ZW"}, {0, "A1"}, {0, "A2"}, {0, "O1"}, {248, "AX"}, {831, "GG"}, {833, "IM"}, {832, "JE"},
{652, "BL"}, {663, "MF"}, {535, "BQ"}
};
/**
* \brief Array of ISO 3166 Alpha2Codes indexed as NumCodes (without need of sequence searching)
*
* The table has been generated by numCodeTool for GeoIP 1.4.8
* and it is based on ftp://ftp.fu-berlin.de/doc/iso/iso3166-countrycodes.txt (Latest change: Sun Apr 1 2012).
* Please note: with newer versions of GeoIP it can be necessary to generate new array.
*/
const char* geo_country_alpha[900] = {
"--", "--", "--", "--", "AF", "--", "--", "--", "AL", "--", "AQ", "--", "DZ", "--", "--", "--", "AS", "--", "--",
"--", "AD", "--", "--", "--", "AO", "--", "--", "--", "AG", "--", "--", "AZ", "AR", "--", "--", "--", "AU", "--",
"--", "--", "AT", "--", "--", "--", "BS", "--", "--", "--", "BH", "--", "BD", "AM", "BB", "--", "--", "--", "BE",
"--", "--", "--", "BM", "--", "--", "--", "BT", "--", "--", "--", "BO", "--", "BA", "--", "BW", "--", "BV", "--",
"BR", "--", "--", "--", "--", "--", "--", "--", "BZ", "--", "IO", "--", "--", "--", "SB", "--", "VG", "--", "--",
"--", "BN", "--", "--", "--", "BG", "--", "--", "--", "MM", "--", "--", "--", "BI", "--", "--", "--", "BY", "--",
"--", "--", "KH", "--", "--", "--", "CM", "--", "--", "--", "CA", "--", "--", "--", "--", "--", "--", "--", "CV",
"--", "--", "--", "KY", "--", "--", "--", "CF", "--", "--", "--", "LK", "--", "--", "--", "TD", "--", "--", "--",
"CL", "--", "--", "--", "CN", "--", "TW", "--", "--", "--", "CX", "--", "--", "--", "CC", "--", "--", "--", "CO",
"--", "--", "--", "KM", "YT", "--", "--", "CG", "--", "CD", "--", "--", "--", "CK", "--", "--", "--", "CR", "--",
"--", "HR", "CU", "--", "--", "--", "CY", "--", "--", "--", "--", "--", "--", "CZ", "BJ", "--", "--", "--", "DK",
"--", "--", "--", "DM", "--", "DO", "--", "--", "--", "EC", "--", "--", "--", "SV", "--", "--", "--", "GQ", "--",
"--", "--", "--", "ET", "ER", "EE", "FO", "--", "--", "--", "FK", "GS", "--", "--", "FJ", "--", "--", "--", "FI",
"--", "AX", "--", "FR", "--", "--", "--", "GF", "--", "--", "--", "PF", "--", "TF", "--", "DJ", "--", "--", "--",
"GA", "--", "GE", "--", "GM", "--", "--", "--", "--", "PS", "DE", "--", "--", "--", "--", "--", "--", "--", "--",
"--", "--", "--", "GH", "--", "--", "--", "GI", "--", "--", "--", "KI", "--", "--", "--", "GR", "--", "--", "--",
"GL", "--", "--", "--", "GD", "--", "--", "--", "GP", "--", "--", "--", "GU", "--", "--", "--", "GT", "--", "--",
"--", "GN", "--", "--", "--", "GY", "--", "--", "--", "HT", "--", "HM", "--", "VA", "--", "--", "--", "HN", "--",
"--", "--", "HK", "--", "--", "--", "HU", "--", "--", "--", "IS", "--", "--", "--", "IN", "--", "--", "--", "ID",
"--", "--", "--", "IR", "--", "--", "--", "IQ", "--", "--", "--", "IE", "--", "--", "--", "IL", "--", "--", "--",
"IT", "--", "--", "--", "CI", "--", "--", "--", "JM", "--", "--", "--", "JP", "--", "--", "--", "--", "--", "KZ",
"--", "JO", "--", "--", "--", "KE", "--", "--", "--", "KP", "--", "KR", "--", "--", "--", "KW", "--", "--", "KG",
"LA", "--", "--", "--", "LB", "--", "--", "--", "LS", "--", "LV", "--", "LR", "--", "--", "--", "LY", "--", "--",
"--", "LI", "--", "LT", "--", "LU", "--", "--", "--", "MO", "--", "--", "--", "MG", "--", "--", "--", "MW", "--",
"--", "--", "MY", "--", "--", "--", "MV", "--", "--", "--", "ML", "--", "--", "--", "MT", "--", "--", "--", "MQ",
"--", "--", "--", "MR", "--", "MU", "--", "--", "--", "MX", "MH", "--", "--", "--", "--", "--", "--", "MC", "--",
"--", "--", "MN", "--", "MD", "ME", "MS", "--", "--", "--", "MA", "--", "--", "--", "MZ", "--", "--", "--", "OM",
"--", "--", "--", "NA", "--", "--", "--", "NR", "--", "--", "--", "NP", "--", "--", "--", "NL", "--", "--", "CW",
"--", "--", "SX", "BQ", "--", "--", "--", "--", "NC", "--", "--", "--", "--", "--", "--", "--", "VU", "--", "--",
"--", "--", "AW", "NZ", "--", "--", "--", "NI", "--", "--", "--", "NE", "--", "--", "--", "NG", "--", "--", "--",
"NU", "--", "--", "--", "NF", "--", "--", "--", "NO", "--", "MP", "UM", "--", "FM", "--", "PW", "PK", "--", "--",
"--", "--", "PA", "--", "--", "--", "--", "--", "--", "PG", "--", "PY", "--", "--", "--", "PE", "--", "--", "--",
"PH", "--", "--", "--", "PN", "--", "--", "--", "PL", "--", "--", "--", "PT", "--", "--", "--", "GW", "--", "TL",
"--", "--", "--", "PR", "--", "--", "--", "QA", "--", "--", "--", "RE", "--", "--", "--", "RO", "RU", "--", "--",
"RW", "--", "--", "--", "--", "--", "BL", "--", "SH", "--", "--", "--", "--", "KN", "AI", "--", "LC", "MF", "--",
"--", "PM", "--", "--", "--", "VC", "--", "--", "--", "SM", "--", "--", "--", "ST", "--", "--", "--", "SA", "--",
"--", "--", "SN", "--", "RS", "--", "SC", "--", "--", "--", "SL", "--", "--", "--", "--", "--", "--", "--", "SG",
"SK", "VN", "SI", "SO", "--", "--", "--", "ZA", "--", "--", "--", "--", "--", "ZW", "--", "--", "--", "--", "--",
"--", "--", "ES", "--", "--", "--", "--", "SD", "--", "--", "EH", "--", "--", "--", "--", "--", "--", "--", "SR",
"--", "--", "--", "SJ", "--", "--", "--", "SZ", "--", "--", "--", "SE", "--", "--", "--", "CH", "--", "--", "--",
"SY", "--", "TJ", "--", "TH", "--", "--", "--", "TG", "--", "--", "--", "TK", "--", "--", "--", "TO", "--", "--",
"--", "TT", "--", "--", "--", "AE", "--", "--", "--", "TN", "--", "--", "--", "TR", "--", "--", "TM", "TC", "--",
"TV", "--", "UG", "--", "--", "--", "UA", "--", "--", "MK", "--", "--", "--", "--", "--", "--", "--", "--", "--",
"--", "EG", "--", "--", "--", "--", "--", "--", "--", "GB", "--", "--", "--", "--", "GG", "JE", "IM", "TZ", "--",
"--", "--", "--", "--", "US", "--", "--", "--", "--", "--", "--", "--", "--", "--", "VI", "--", "--", "--", "BF",
"--", "--", "--", "UY", "--", "UZ", "--", "VE", "--", "--", "--", "--", "--", "--", "--", "--", "--", "--", "--",
"--", "--", "WF", "--", "--", "--", "--", "--", "WS", "--", "--", "--", "--", "YE", "--", "--", "--", "--", "--",
"--", "ZM", "--", "--", "--", "--", "--"
};
#endif /* COUNTRYCODE_C_ */