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
|
/**
* Provides an abstraction for what to do with error messages.
*
* Copyright: Copyright (C) 2023 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 https://www.digitalmars.com, Walter Bright)
* License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/errorsink.d, _errorsink.d)
* Documentation: https://dlang.org/phobos/dmd_errorsink.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/errorsink.d
*/
module dmd.errorsink;
import dmd.location;
/***************************************
* Where error/warning/deprecation messages go.
*/
abstract class ErrorSink
{
nothrow:
extern (C++):
void error(const ref Loc loc, const(char)* format, ...);
void errorSupplemental(const ref Loc loc, const(char)* format, ...);
void warning(const ref Loc loc, const(char)* format, ...);
void deprecation(const ref Loc loc, const(char)* format, ...);
void deprecationSupplemental(const ref Loc loc, const(char)* format, ...);
}
/*****************************************
* Just ignores the messages.
*/
class ErrorSinkNull : ErrorSink
{
nothrow:
extern (C++):
override:
void error(const ref Loc loc, const(char)* format, ...) { }
void errorSupplemental(const ref Loc loc, const(char)* format, ...) { }
void warning(const ref Loc loc, const(char)* format, ...) { }
void deprecation(const ref Loc loc, const(char)* format, ...) { }
void deprecationSupplemental(const ref Loc loc, const(char)* format, ...) { }
}
/*****************************************
* Simplest implementation, just sends messages to stderr.
*/
class ErrorSinkStderr : ErrorSink
{
import core.stdc.stdio;
import core.stdc.stdarg;
nothrow:
extern (C++):
override:
void error(const ref Loc loc, const(char)* format, ...)
{
fputs("Error: ", stderr);
const p = loc.toChars();
if (*p)
{
fprintf(stderr, "%s: ", p);
//mem.xfree(cast(void*)p); // loc should provide the free()
}
va_list ap;
va_start(ap, format);
vfprintf(stderr, format, ap);
fputc('\n', stderr);
va_end(ap);
}
void errorSupplemental(const ref Loc loc, const(char)* format, ...) { }
void warning(const ref Loc loc, const(char)* format, ...)
{
fputs("Warning: ", stderr);
const p = loc.toChars();
if (*p)
{
fprintf(stderr, "%s: ", p);
//mem.xfree(cast(void*)p); // loc should provide the free()
}
va_list ap;
va_start(ap, format);
vfprintf(stderr, format, ap);
fputc('\n', stderr);
va_end(ap);
}
void deprecation(const ref Loc loc, const(char)* format, ...)
{
fputs("Deprecation: ", stderr);
const p = loc.toChars();
if (*p)
{
fprintf(stderr, "%s: ", p);
//mem.xfree(cast(void*)p); // loc should provide the free()
}
va_list ap;
va_start(ap, format);
vfprintf(stderr, format, ap);
fputc('\n', stderr);
va_end(ap);
}
void deprecationSupplemental(const ref Loc loc, const(char)* format, ...) { }
}
|