-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathcomp_client_err.cc
144 lines (118 loc) · 4.5 KB
/
comp_client_err.cc
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
/* Copyright (c) 2016, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/*
This operates on the error messages that will be included into the
client library (libmysql), NOT the messages that the server sends
to clients!
*/
#include <fcntl.h>
#include <stdio.h>
#include <sys/types.h>
#include "errmsg.h"
#include "m_string.h"
#include "my_compiler.h"
#include "my_getopt.h"
#include "my_sys.h"
#include "print_version.h"
#include "str2int.h"
#include "welcome_copyright_notice.h"
static const char *INFILE = "errmsg.h";
static const char *OUTFILE = "mysqlclient_ername.h";
static struct my_option my_long_options[] = {
{"in_file", 'F', "Input file", &INFILE, &INFILE, nullptr, GET_STR,
REQUIRED_ARG, 0, 0, 0, nullptr, 0, nullptr},
{"out_file", 'O', "Output filename (mysqlclient_ername.h)", &OUTFILE,
&OUTFILE, nullptr, GET_STR, REQUIRED_ARG, 0, 0, 0, nullptr, 0, nullptr},
{nullptr, 0, nullptr, nullptr, nullptr, nullptr, GET_NO_ARG, NO_ARG, 0, 0,
0, nullptr, 0, nullptr}};
static void usage() {
print_version();
puts(ORACLE_WELCOME_COPYRIGHT_NOTICE("2016"));
printf(
"Usage: ./comp_client_err --in_file=name --out_file=name\n"
"Options: \n"
" -F, --in_file=name Input file name\n"
" -O, --out_file=name Output file name\n");
}
static bool get_one_option(int, const struct my_option *, char *) {
return false;
}
static int get_options(int *argc, char ***argv) {
if (*argc == 1 || *argc == 2 || *argc > 3) {
usage();
return 1;
}
const int ho_error =
handle_options(argc, argv, my_long_options, get_one_option);
return ho_error;
}
int reject_lines(const char *str) {
if (is_prefix(str, "ERRMSG_INCLUDED") || is_prefix(str, "CR_MIN_ERROR") ||
is_prefix(str, "CR_MAX_ERROR") || is_prefix(str, "CLIENT_ERRMAP") ||
is_prefix(str, "CR_ERROR_FIRST") || is_prefix(str, "CR_ERROR_LAST"))
return 1;
return 0;
}
int main(int argc, char *argv[]) {
MY_INIT(argv[0]);
if (get_options(&argc, &argv)) return 1;
FILE *infile;
if (!(infile = my_fopen(INFILE, O_RDONLY, MYF(MY_WME)))) return 1;
FILE *outfile;
if (!(outfile = my_fopen(OUTFILE, O_WRONLY, MYF(MY_WME)))) return 1;
fprintf(outfile, ORACLE_GPL_COPYRIGHT_NOTICE("2016"));
fprintf(outfile, "/* Autogenerated file, please don't edit */\n\n");
char buf[512];
char *str;
while ((str = fgets(buf, sizeof(buf), infile))) {
/*
Lines containing error name and error code start with
"#define" keyword.
*/
if (is_prefix(str, "#define")) {
/*
Ignoring the "#define" string present at the beginning
of each line.
*/
while (*str != ' ') str++;
str++;
/* Ignoring the lines which don't require any parsing */
if (reject_lines(str)) continue;
uint count = 0;
char *last_token;
for (char *err = my_strtok_r(str, " \n\t", &last_token); err != nullptr;
err = my_strtok_r(nullptr, " \n\t", &last_token)) {
if (count == 0)
fprintf(outfile, "{ \"%s\", ", err);
else if (count == 1) {
long err_code;
if (!str2int(err, 10, (long)0, (long)65536, &err_code)) return 1;
fprintf(outfile, "%s, ", err);
fprintf(outfile, "\"%s\", nullptr, nullptr, 0},\n",
ER_CLIENT(err_code));
}
count++;
count = count % 2;
}
}
}
my_fclose(infile, MYF(0));
my_fclose(outfile, MYF(0));
return 0;
}