blob: 48a8f815d938f7e593c0a50426c6275e21bc460c (
plain) (
blame)
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
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys, os
def main():
alphabet = 'abcdefghijklmnopqrstuvwxyz'
tlds = dict()
for s in alphabet:
tlds[s] = list()
tlds['xn--'] = list()
tld_file = open(sys.argv[1], 'rb')
for line in tld_file.readlines():
domain = line.strip().lower()
for label in tlds:
if domain.startswith(b'xn--'):
tlds['xn--'].append(domain)
break
elif domain.startswith(b'x'):
tlds['x'].append(domain)
break
else:
if domain.startswith(label.encode('utf-8')):
tlds[label].append(domain)
break
print('// actual list can be found at http://data.iana.org/TLD/tlds-alpha-by-domain.txt')
print('static const char* const TopLevelDomains[] = {')
for label, value in sorted(tlds.items()):
if label == 'xn--':
sys.stdout.write(' /* ')
str = ''
for n in value:
unicode_domain = n.decode('idna')
str += ('%s, ' % unicode_domain)
sys.stdout.write('%s*/\n' % str.rstrip())
sys.stdout.write(' ')
str = ''
for n in value:
str += ('"%s", ' % n.decode('utf-8'))
sys.stdout.write('%s\n' % str.rstrip())
else:
sys.stdout.write(' ')
str = ''
for n in value:
str += ('"%s", ' % n.decode('utf-8'))
sys.stdout.write('%s\n' % str.rstrip())
print(' 0')
print('};')
if __name__ == '__main__':
main()
|