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

url_resources.pl « MyHTML « utils - github.com/lexborisov/Modest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2562fefc52522459e9d7d2ae2ecd9a0dff39d979 (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
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
#!/usr/bin/perl -w

BEGIN {
        use FindBin;
        push @INC, $FindBin::Bin. "/../ext/";
};

use utf8;
use strict;
use MyHTML::Base;

my $simple_encode = {
	# A C0 control is a code point in the range U+0000 to U+001F, inclusive
	# The simple encode set are C0 controls and all code points greater than U+007
};

my $default_encode = {
	" " => '',
	'"' => '',
	"#" => '',
	"<" => '',
	">" => '',
	"?" => '',
	"`" => '',
	"{" => '',
	"}" => ''
};

my $userinfo_encode = {
	"/" => '',
	":" => '',
	";" => '',
	"=" => '',
	"@" => '',
	"[" => '',
	"\\" => '',
	"]" => '',
	"^" => '',
	"|" => ''
};

my $forbidden_host_code_point = {
	"\x00" => '',
	"\x09" => '',
	"\x0A" => '',
	"\x0D" => '',
	"\x20" => '',
	"#"       => '',
	"\%"      => '',
	"/"       => '',
	":"       => '',
	"?"       => '',
        "\@"      => '',
        "["       => '',
        "\\"      => '',
        "]"       => ''
};

my $utils = MyHTML::Base->new(dirs => {source => "../../source/myhtml/url", template => "tmpl"});

my $utils_data = $utils->read_tmpl("url_resources.h");
$utils->save_src("resources.h", $utils_data,
	{
		BODY =>
                        get_text_data(creare_for_query(), "myhtml_url_resources_static_map_query_charset") .
                        get_text_data(creare_for_forbidden_host_code_point(), "myhtml_url_resources_static_map_forbidden_host_code_point") .
                        "/* A C0 control is a code point in the range U+0000 to U+001F, inclusive. The C0 control percent-encode set are C0 controls and all code points greater than U+007E. */\n".
                        get_text_data(creare_for_simple(), "myhtml_url_resources_static_map_C0") .
                        '/* The path percent-encode set is the myhtml_url_resources_static_map_path and code points U+0020, \'"\', "#", "<", ">", "?", "`", "{", and "}". */'."\n".
			get_text_data(creare_for_default(), "myhtml_url_resources_static_map_path") .
                        '/* The userinfo percent-encode set is the myhtml_url_resources_static_map_path and code points "/", ":", ";", "=", "@", "[", "\", "]", "^", and "|". */'."\n".
			get_text_data(creare_for_userinfo(), "myhtml_url_resources_static_map_userinfo")
	}
);

sub creare_for_query {
	my @data;
	
	for my $codepoint (0..255) {
		my $char = chr($codepoint);
		
                # less than 0x21, greater than 0x7E, or is 0x22, 0x23, 0x3C, or 0x3E
		if ($codepoint < 33 || $codepoint > 126 || $codepoint == 0x22 ||
                    $codepoint == 0x23 || $codepoint == 0x3C || $codepoint == 0x3E) 
		{
                        push @data, "0x00";
		}
		else {
                        push @data, sprintf("0x%02x", $codepoint);
		}
	}
	
	return \@data;
}

sub creare_for_forbidden_host_code_point {
	my @data;
	
	for my $codepoint (0..255) {
		my $char = chr($codepoint);
		
		if (exists $default_encode->{$char} || $char eq chr(0))
		{
                        push @data, sprintf("0x%02x", $codepoint);
		}
		else {
			push @data, "0xff";
		}
	}
	
	return \@data;
}

sub creare_for_default {
	my @data;
	
	for my $codepoint (0..255) {
		my $char = chr($codepoint);
		
		if (exists $default_encode->{$char} ||
			$codepoint <= 0x1F || $codepoint > 0x7E)
		{
			push @data, "0x00"
		}
		else {
			push @data, sprintf("0x%02x", $codepoint);
		}
	}
	
	return \@data;
}

sub creare_for_simple {
	my @data;
	
	for my $codepoint (0..255) {
		my $char = chr($codepoint);
		
		if ($codepoint <= 0x1F || $codepoint > 0x7E)
		{
			push @data, "0x00"
		}
		else {
			push @data, sprintf("0x%02x", $codepoint);
		}
	}
	
	return \@data;
}

sub creare_for_userinfo {
	my @data;
	
	for my $codepoint (0..255) {
		my $char = chr($codepoint);
		
		if (exists $default_encode->{$char} ||
			exists $userinfo_encode->{$char} ||
			$codepoint <= 0x1F || $codepoint > 0x7E)
		{
			push @data, "0x00"
		}
		else {
			push @data, sprintf("0x%02x", $codepoint);
		}
	}
	
	return \@data;
}

sub get_text_data {
	my ($data, $name) = @_;
	
	my @return;
	
	push @return, "static const unsigned char $name\[] =\n{";
	
	my $max = $#$data;
	foreach my $num (0..$max) {
		push @return, "\n\t" unless $num % 10;
		push @return, $data->[$num]. ($num != $max ? ", " : "");
	}
	
	push @return, "\n};\n\n";
	
	join "", @return;
}