1
1
package org .asciidoctor .maven .log ;
2
2
3
+ import java .io .File ;
3
4
import java .util .ArrayList ;
4
5
import java .util .List ;
5
6
import java .util .function .Consumer ;
8
9
import org .asciidoctor .log .LogHandler ;
9
10
import org .asciidoctor .log .LogRecord ;
10
11
import org .asciidoctor .log .Severity ;
12
+ import org .asciidoctor .maven .commons .StringUtils ;
11
13
12
14
13
15
/**
@@ -23,16 +25,26 @@ public class MemoryLogHandler implements LogHandler {
23
25
private final Boolean outputToConsole ;
24
26
private final Consumer <LogRecord > recordConsumer ;
25
27
28
+ /**
29
+ * Provides simple way to inject the current file being processes.
30
+ * Will need re-work in concurrent scenarios.
31
+ *
32
+ * @since 3.2.0
33
+ */
34
+ private File currentFile ;
35
+
26
36
public MemoryLogHandler (Boolean outputToConsole , Consumer <LogRecord > recordConsumer ) {
27
37
this .outputToConsole = outputToConsole == null ? Boolean .FALSE : outputToConsole ;
28
38
this .recordConsumer = recordConsumer ;
29
39
}
30
40
31
41
@ Override
32
42
public void log (LogRecord logRecord ) {
33
- records .add (logRecord );
43
+ final CapturedLogRecord record = new CapturedLogRecord (logRecord , currentFile );
44
+
45
+ records .add (record );
34
46
if (outputToConsole )
35
- recordConsumer .accept (logRecord );
47
+ recordConsumer .accept (record );
36
48
}
37
49
38
50
public void clear () {
@@ -46,9 +58,7 @@ public void clear() {
46
58
* @return list of filtered logRecords
47
59
*/
48
60
public List <LogRecord > filter (Severity severity ) {
49
- return this .records .stream ()
50
- .filter (record -> severityIsHigher (record , severity ))
51
- .collect (Collectors .toList ());
61
+ return filter (severity , null );
52
62
}
53
63
54
64
/**
@@ -58,16 +68,14 @@ public List<LogRecord> filter(Severity severity) {
58
68
* @return list of filtered logRecords
59
69
*/
60
70
public List <LogRecord > filter (String text ) {
61
- return this .records .stream ()
62
- .filter (record -> messageContains (record , text ))
63
- .collect (Collectors .toList ());
71
+ return filter (null , text );
64
72
}
65
73
66
74
/**
67
75
* Returns LogRecords that are equal or above the severity level and whose message contains text.
68
76
*
69
- * @param severity Asciidoctor's severity level
70
- * @param text text to search for in the LogRecords
77
+ * @param severity Asciidoctor's severity level (no filter applied when null)
78
+ * @param text text to search for in the LogRecords (no filter applied when null)
71
79
* @return list of filtered logRecords
72
80
*/
73
81
public List <LogRecord > filter (Severity severity , String text ) {
@@ -96,11 +104,23 @@ public void processAll() {
96
104
}
97
105
98
106
private static boolean severityIsHigher (LogRecord record , Severity severity ) {
99
- return record .getSeverity ().ordinal () >= severity .ordinal ();
107
+ if (severity == null ) {
108
+ return true ;
109
+ } else {
110
+ return record .getSeverity ().ordinal () >= severity .ordinal ();
111
+ }
100
112
}
101
113
102
114
private static boolean messageContains (LogRecord record , String text ) {
103
- return record .getMessage ().contains (text );
115
+ if (StringUtils .isBlank (text )) {
116
+ return true ;
117
+ } else {
118
+ return record .getMessage ().contains (text );
119
+ }
120
+ }
121
+
122
+ public void setCurrentFile (File currentFile ) {
123
+ this .currentFile = currentFile ;
104
124
}
105
125
106
126
}
0 commit comments