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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
package Torello.JavaDoc.Messager;

import Torello.Java.StringParse;
import Torello.Java.StrIndent;
import Torello.Java.StrPrint;
import Torello.Java.EXCC;

import Torello.JavaDoc.ReflHTML;
import Torello.JavaDoc.Declaration;

import static Torello.Java.C.*;
import static Torello.JavaDoc.Messager.Where_Am_I.LABEL_COLOR;

import java.io.File;


// This class exports two main methods named "ERROR".  These two methods are invoked by the
// actual, "public", part of this Messager-Package.  The actual class "Messager" has quite a number
// of "versions" of the two ERROR(...) Methods that are exported by this Package-Private class.
// 
// There is also a small "warning(...)" method that this class exports.  There is some likelihood
// that this will be eliminated.  Early on it seemed like there could be the potential for many
// User-Caused "Warning" Messages.  However, there really haven't been any, whatsoever.  That very
// well could change with later code-reviews and bug-finding episodes.
// 
// NOT-SURE-YET !  For now, "warning(...)" will remain.
// 
// This entire class serves the primary purpose of "worrying about" all of the levels of
// indentation that are needed to make the Error-Messages that the JDU generates actually look nice
// and be readable.  The whole concept of printing the current working file-name and the current 
// working processor name with proper indentation is accomplished by simply keeping a record every 
// time the JDU moves onto a different file or uses a different processor.
// 
// It sort of is "that simple".  It's hard to make this "Messager Package" look simple, even though
// it certainly is pretty simple.  Explaining what the JDU Error-Reporting Code is expected to do
// is actually a little bit tricky.
// 
// The Packages "JDUInternal.MainJDU" and "JDUInternal.Features" (along with other
// classes/packages) are all expected to report to this Messager whenever they have begun
// processing the next Java-Doc '.html' Web-Page, or begun using the next ReflHTML "Feature" 
// Processor.
// 
// Again, all this Messager class really does is export Two "ERROR" printing methods and one 
// "WARNIGN" printing method (which isn't even used right now, except in single location).  These
// "Error Printers" do a verifiable "ton" of work to make sure the Error-Messages which are 
// printed to the User's Terminal have great indentation, are properly wrapped if the text goes
// on too long, and that all heading information for the errors are properly printed above the
// messages.
// 
// The actual JDU Classes in this package all make calls to class 'Messager', rather than
// 'MsgPkgPrivate'.

public class PrintMessage
{
    // ********************************************************************************************
    // ********************************************************************************************
    // Constructor & Field
    // ********************************************************************************************
    // ********************************************************************************************


    private final PrintRecord   printRecord;
    private final PrintHeading  printHeading;

    PrintMessage(final PrintRecord printRecord, final PrintHeading printHeading)
    {
        this.printRecord    = printRecord;
        this.printHeading   = printHeading;
    }


    // ********************************************************************************************
    // ********************************************************************************************
    // Two, very simple, PRIVATE, Static-Fields
    // ********************************************************************************************
    // ********************************************************************************************


    // This is used *ONCE* to print decide whether to print a particular stack-trace.
    // It's the kind of thing that I really need, but the end user really shouldn't even expect
    // to see it.

    private static final boolean DEBUGGING = true;

    private static final String BLUE_LINE =
        BLUE_BKGND + BWHITE + StringParse.nChars('*', 70) + RESET + '\n';


    // ********************************************************************************************
    // ********************************************************************************************
    // Two Main, Configurable, Error Message Printers
    // ********************************************************************************************
    // ********************************************************************************************


    // Does not have a "Throwable"
    void ERROR(
            final String        message,
            final String        signature,
            final boolean       FATAL,
            final Where_Am_I    WHERE_AM_I
        )
    {
        final String oneLinerNote = null;

        this.printRecord.incErrorCountAndCheck();

        this.printHeading.printHeadingIfNecessary(WHERE_AM_I);


        // In the lines below, String.trim() is used.  This is *ALWAYS* OK - unless the
        // String being trimmed starts with a UNIX Color-Code Escape-Sequence.  The first character
        // of a UNIX Escape Sequence is (synonymously named "ESCAPE") '\u001B'
        //
        // Java's String.trim() seems to be trimming that chacter!
        // 
        // However since "signature" and oneLinerNote are not supposed to have any Color-Codes in 
        // them, it should not matter right here!

        final String sigStr = (signature == null)
            ? ""
            : (
                '\n' +
                LABEL_COLOR + " Entity-Signature " + RESET + '\n' +
                StrIndent.indent((signature.trim().replace("\t", "    ")), 4) + '\n'
            );

        final String firstLineNote =
            ' ' +
            (FATAL ? "Fatal " : "") +
            ((oneLinerNote != null) ? oneLinerNote.trim() : "Error") +
            ' ';

        final int firstWrap = 100 - firstLineNote.length();

        this.printRecord.sb
            .append(
                StrIndent.indent(
                    LABEL_COLOR + firstLineNote + RESET +
                    ' ' +
                    StrIndent.indentAfter2ndLine(
                        StrPrint.wrapToIndentationPlus(
                            message
                                .replaceAll("^[\\s]+|[\\s]+$", "") // Cannot use 'trim()'
                                .replace("\t", "    "),
                            firstWrap,
                            100,
                            4
                        ),
                        4,
                        true,
                        true
                    ) +
                    '\n' +
                    sigStr,
                    this.printRecord.getIndentation()
                ))
            .append('\n');
    }

    // Has Throwable **AND** 'showST'
    void ERROR(
            final Throwable     t,
            final String        message,
            final String        signature,
            final boolean       FATAL,
            final boolean       showST,
            final Where_Am_I    WHERE_AM_I
        )
    {
        final String oneLinerNote = null;

        this.printRecord.incErrorCountAndCheck();

        this.printHeading.printHeadingIfNecessary(WHERE_AM_I);

        final String sigStr = (signature == null)
            ? ""
            : (
                LABEL_COLOR + " Entity-Signature " + RESET + '\n' +
                StrIndent.indent((signature.trim().replace("\t", "    ")), 4) + '\n' +
                BLUE_LINE
            );

        final String topNote = (oneLinerNote != null)
            ? (LABEL_COLOR + ' ' + oneLinerNote.trim() + ' ' + RESET + 
                " (Exception Thrown)\n")
            : (
                LABEL_COLOR + ' ' +
                (FATAL ? "Fatal " : "") +
                "Error, Exception Thrown " + RESET + '\n'
            );

        final String exceptionStr = (FATAL || showST)
            ? EXCC.toString(t)
            : (
                LABEL_COLOR + " Exception-Name " + RESET + "    " +
                    BRED + t.getClass().getCanonicalName() +
                    RESET +'\n' +
                LABEL_COLOR + " Exception-Message " + RESET + ' ' +
                    t.getMessage() + '\n' +
                LABEL_COLOR + " Abbreviated-Trace " + RESET + ' ' +
                    (DEBUGGING ? " (Debugging-Mode On, Abbreviation Off)" : "") +
                    '\n' + 
                    (DEBUGGING ? EXCC.toString(t, 4) : EXCC.toStringMaxTraces(t, 2, 4))
            );


        // String.trim() ==> It trims the UNIX Escape-Sequence Character '\u001B'
        // It is not supposed to, acording to Chat-GPT !!  But it does anyway!
        // 
        // System.out.println(exceptionStr.trim());
        // System.out.println(exceptionStr.replaceAll("^[\\s]+|[\\s]+$", ""));
        // Torello.Java.Q.BP();

        this.printRecord.sb
            .append(
                StrIndent.indent(
                    StrPrint.wrapToIndentationPlus(
                        topNote +
                        BLUE_LINE +
                        exceptionStr
                            .replaceAll("^[\\s]+|[\\s]+$", "") // Cannot use 'trim()'
                            .replace("\t", "    ") +
                            '\n' +
                        BLUE_LINE +
                        message
                            .replaceAll("^[\\s]+|[\\s]+$", "") // Cannot use 'trim()'
                            .replace("\t", "    ") +
                            '\n' +
                        BLUE_LINE +
                        sigStr,
                        100,
                        100,
                        4
                    ),
                    this.printRecord.getIndentation()
                ))
            .append('\n');
    }


    // ********************************************************************************************
    // ********************************************************************************************
    // Warning
    // ********************************************************************************************
    // ********************************************************************************************


    // Does not wahave a "Throwable"
    void WARNING(
            final String        message,
            final Where_Am_I    WHERE_AM_I
        )
    {
        this.printRecord.incWarningCount();

        this.printHeading.printHeadingIfNecessary(WHERE_AM_I);

        this.printRecord.sb
            .append(
                StrPrint.wrapToIndentationPlus(
                    this.printRecord.getIndentationStr() + 
                    LABEL_COLOR + " Warning " + RESET + ' ' +

                    StrIndent.indentAfter2ndLine(
                        message.replace("\t", "    "),
                        4 + this.printRecord.getIndentation(),
                        true,
                        true
                    ),
                    100,
                    100,
                    4
                ) +
                '\n'
            )
            .append('\n');
    }
}