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
|
/** @file
A brief file description
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#define COMPILE_PARSE_RULES
#include "ts/ParseRules.h"
const unsigned int parseRulesCType[256] = {0};
const char parseRulesCTypeToUpper[256] = {0};
const char parseRulesCTypeToLower[256] = {0};
unsigned int tparseRulesCType[256];
char tparseRulesCTypeToUpper[256];
char tparseRulesCTypeToLower[256];
#include <stdio.h>
#include <ctype.h>
#include "ts/ink_string.h"
static char *
uint_to_binary(unsigned int u)
{
int i;
static char buf[33];
for (i = 0; i < 32; i++) {
buf[i] = ((u & (1 << (31 - i))) ? '1' : '0');
}
buf[32] = '\0';
return (buf);
}
int
main()
{
int c;
for (c = 0; c < 256; c++) {
tparseRulesCType[c] = 0;
tparseRulesCTypeToLower[c] = ParseRules::ink_tolower(c);
tparseRulesCTypeToUpper[c] = ParseRules::ink_toupper(c);
if (ParseRules::is_char(c))
tparseRulesCType[c] |= is_char_BIT;
if (ParseRules::is_upalpha(c))
tparseRulesCType[c] |= is_upalpha_BIT;
if (ParseRules::is_loalpha(c))
tparseRulesCType[c] |= is_loalpha_BIT;
if (ParseRules::is_alpha(c))
tparseRulesCType[c] |= is_alpha_BIT;
if (ParseRules::is_digit(c))
tparseRulesCType[c] |= is_digit_BIT;
if (ParseRules::is_ctl(c))
tparseRulesCType[c] |= is_ctl_BIT;
if (ParseRules::is_ws(c))
tparseRulesCType[c] |= is_ws_BIT;
if (ParseRules::is_hex(c))
tparseRulesCType[c] |= is_hex_BIT;
char cc = c;
if (ParseRules::is_pchar(&cc))
tparseRulesCType[c] |= is_pchar_BIT;
if (ParseRules::is_extra(c))
tparseRulesCType[c] |= is_extra_BIT;
if (ParseRules::is_safe(c))
tparseRulesCType[c] |= is_safe_BIT;
if (ParseRules::is_unsafe(c))
tparseRulesCType[c] |= is_unsafe_BIT;
if (ParseRules::is_national(c))
tparseRulesCType[c] |= is_national_BIT;
if (ParseRules::is_reserved(c))
tparseRulesCType[c] |= is_reserved_BIT;
if (ParseRules::is_unreserved(c))
tparseRulesCType[c] |= is_unreserved_BIT;
if (ParseRules::is_punct(c))
tparseRulesCType[c] |= is_punct_BIT;
if (ParseRules::is_end_of_url(c))
tparseRulesCType[c] |= is_end_of_url_BIT;
if (ParseRules::is_tspecials(c))
tparseRulesCType[c] |= is_tspecials_BIT;
if (ParseRules::is_spcr(c))
tparseRulesCType[c] |= is_spcr_BIT;
if (ParseRules::is_splf(c))
tparseRulesCType[c] |= is_splf_BIT;
if (ParseRules::is_wslfcr(c))
tparseRulesCType[c] |= is_wslfcr_BIT;
if (ParseRules::is_eow(c))
tparseRulesCType[c] |= is_eow_BIT;
if (ParseRules::is_token(c))
tparseRulesCType[c] |= is_token_BIT;
if (ParseRules::is_wildmat(c))
tparseRulesCType[c] |= is_wildmat_BIT;
if (ParseRules::is_sep(c))
tparseRulesCType[c] |= is_sep_BIT;
if (ParseRules::is_empty(c))
tparseRulesCType[c] |= is_empty_BIT;
if (ParseRules::is_alnum(c))
tparseRulesCType[c] |= is_alnum_BIT;
if (ParseRules::is_space(c))
tparseRulesCType[c] |= is_space_BIT;
if (ParseRules::is_control(c))
tparseRulesCType[c] |= is_control_BIT;
if (ParseRules::is_mime_sep(c))
tparseRulesCType[c] |= is_mime_sep_BIT;
if (ParseRules::is_http_field_name(c))
tparseRulesCType[c] |= is_http_field_name_BIT;
if (ParseRules::is_http_field_value(c))
tparseRulesCType[c] |= is_http_field_value_BIT;
}
FILE *fp = fopen("ParseRulesCType", "w");
for (c = 0; c < 256; c++) {
fprintf(fp, "/* %3d (%c) */\t", c, (isprint(c) ? c : '?'));
fprintf(fp, "0x%08X%c\t\t", tparseRulesCType[c], (c != 255 ? ',' : ' '));
fprintf(fp, "/* [%s] */\n", uint_to_binary((unsigned int)(tparseRulesCType[c])));
}
fclose(fp);
fp = fopen("ParseRulesCTypeToUpper", "w");
for (c = 0; c < 256; c++)
fprintf(fp, "%d%c\n", tparseRulesCTypeToUpper[c], c != 255 ? ',' : ' ');
fclose(fp);
fp = fopen("ParseRulesCTypeToLower", "w");
for (c = 0; c < 256; c++)
fprintf(fp, "%d%c\n", tparseRulesCTypeToLower[c], c != 255 ? ',' : ' ');
fclose(fp);
return (0);
}
|