-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy patherror.cc
194 lines (173 loc) · 4.2 KB
/
error.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
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
188
189
190
191
192
193
194
#include "error.hh"
#include <string.h>
#include "color.hh"
#include "format.hh"
#include "options.hh"
#include "show.hh"
void print_error(string message)
{
assert(! message.empty());
assert(islower(message[0]) || message[0] == '\'');
assert(message[message.size() - 1] != '\n');
fprintf(stderr, "%s%s%s: %s\n",
Color::stderr_err_on, dollar_zero, Color::stderr_err_off, message.c_str());
}
void print_errno(string message)
{
assert(message.size() > 0 && message[0] != '\033');
fprintf(stderr, "%s%s%s: %s\n",
Color::stderr_err_on, message.c_str(), Color::stderr_err_off,
strerror(errno));
}
void print_error_reminder(string message)
{
assert(! message.empty());
assert(islower(message[0]) || message[0] == '\'');
assert(message[message.size() - 1] != '\n');
fprintf(stderr, "%s%s%s: %s\n",
Color::stderr_warn_on, dollar_zero, Color::stderr_warn_off,
message.c_str());
}
string format_errno(string text)
{
return fmt("%s: %s", text, strerror(errno));
}
void print_out(string text)
{
assert(! text.empty());
assert(isupper(text[0]));
assert(text[text.size() - 1] != '\n');
if (option_s)
return;
printf("%s%s%s\n",
Color::stdout_success_on, text.c_str(), Color::stdout_success_off);
}
void print_error_silenceable(const char *text)
{
assert(text && text[0]);
assert(isupper(text[0]));
assert(text[strlen(text) - 1] != '\n');
if (option_s)
return;
fprintf(stderr, "%s%s%s\n",
Color::stderr_err_on, text, Color::stderr_err_off);
}
const Place Place::place_empty;
const Place &Place::operator<<(string message) const
{
print(message, Color::stderr_err_on, Color::stderr_err_off);
return *this;
}
void Place::print(string message,
const char *color_on,
const char *color_off) const
{
assert(! message.empty());
switch (type) {
default:
should_not_happen();
[[fallthrough]];
case Type::EMPTY:
should_not_happen();
fprintf(stderr, "%s\n", message.c_str());
break;
case Type::INPUT_FILE:
assert(line >= 1);
fprintf(stderr,
"%s%s%s%s:%zu:%zu%s: %s\n",
color_on,
Color::highlight_on[CH_ERR],
get_filename_str(),
Color::highlight_off[CH_ERR],
line,
1 + column,
color_off,
message.c_str());
break;
case Type::ARGUMENT:
fprintf(stderr,
"%s%s%s: %s\n",
color_on,
dollar_zero,
color_off,
message.c_str());
break;
case Type::OPTION:
assert(text.size() == 1);
fprintf(stderr,
"%sOption %s-%c%s%s: %s\n",
color_on,
Color::highlight_on[CH_ERR],
text[0],
Color::highlight_off[CH_ERR],
color_off,
message.c_str());
break;
case Type::ENV_OPTIONS:
fprintf(stderr,
"%sIn %s$" ENV_STU_OPTIONS "%s%s: %s\n",
color_on, Color::highlight_on[CH_ERR],
Color::highlight_off[CH_ERR], color_off,
message.c_str());
break;
}
}
string Place::as_argv0() const
{
switch (type) {
default:
case Type::EMPTY:
should_not_happen();
[[fallthrough]];
case Type::INPUT_FILE: {
/* The given argv[0] should not begin with a dash,
* because some shells enable special behaviour
* (restricted/login mode and similar) when argv[0]
* begins with a dash. */
const char *s= get_filename_str();
return frmt("%s%s:%zu",
s[0] == '-' ? "file " : "",
s, line);
}
case Type::ARGUMENT:
return "";
case Type::OPTION:
return fmt("Option -%s", text);
case Type::ENV_OPTIONS:
return "$" ENV_STU_OPTIONS;
}
}
const char *Place::get_filename_str() const
{
assert(type == Type::INPUT_FILE);
return text.empty() ? "<stdin>" : text.c_str();
}
bool Place::operator<(const Place &place) const
{
if (this->type != place.type) {
return this->type < place.type;
}
switch (this->type) {
default: unreachable();
case Type::EMPTY:
case Type::ARGUMENT:
case Type::ENV_OPTIONS:
return false;
case Type::INPUT_FILE:
if (this->text != place.text)
return this->text < place.text;
if (this->line != place.line)
return this->line < place.line;
return this->column < place.column;
case Type::OPTION:
return this->text < place.text;
}
}
void print_warning(const Place &place, string message)
{
assert(! message.empty());
assert(islower(message[0]) || message[0] == '\'');
assert(message[message.size() - 1] != '\n');
place.print(fmt("warning: %s", message.c_str()),
Color::stderr_warn_on, Color::stderr_warn_off);
}