1
1
/*
2
- * Copyright (c) 2013, 2020 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2013, 2021 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -116,12 +116,12 @@ public static Process startProcess(String name,
116
116
* <span>The default redirects of STDOUT and STDERR are started</span>
117
117
* <p>
118
118
* It is possible to wait for the process to get to a warmed-up state
119
- * via {@linkplain Predicate} condition on the STDOUT
119
+ * via {@linkplain Predicate} condition on the STDOUT/STDERR
120
120
* </p>
121
121
*
122
122
* @param name The process name
123
123
* @param processBuilder The process builder
124
- * @param linePredicate The {@linkplain Predicate} to use on the STDOUT
124
+ * @param linePredicate The {@linkplain Predicate} to use on the STDOUT and STDERR.
125
125
* Used to determine the moment the target app is
126
126
* properly warmed-up.
127
127
* It can be null - in that case the warmup is skipped.
@@ -146,14 +146,14 @@ public static Process startProcess(String name,
146
146
* <span>The default redirects of STDOUT and STDERR are started</span>
147
147
* <p>
148
148
* It is possible to wait for the process to get to a warmed-up state
149
- * via {@linkplain Predicate} condition on the STDOUT and monitor the
149
+ * via {@linkplain Predicate} condition on the STDOUT/STDERR and monitor the
150
150
* in-streams via the provided {@linkplain Consumer}
151
151
* </p>
152
152
*
153
153
* @param name The process name
154
154
* @param processBuilder The process builder
155
155
* @param lineConsumer The {@linkplain Consumer} the lines will be forwarded to
156
- * @param linePredicate The {@linkplain Predicate} to use on the STDOUT
156
+ * @param linePredicate The {@linkplain Predicate} to use on the STDOUT and STDERR.
157
157
* Used to determine the moment the target app is
158
158
* properly warmed-up.
159
159
* It can be null - in that case the warmup is skipped.
@@ -193,10 +193,14 @@ protected void processLine(String line) {
193
193
CountDownLatch latch = new CountDownLatch (1 );
194
194
if (linePredicate != null ) {
195
195
StreamPumper .LinePump pump = new StreamPumper .LinePump () {
196
+ // synchronization between stdout and stderr pumps
197
+ private final Object sync = new Object ();
196
198
@ Override
197
199
protected void processLine (String line ) {
198
- if (latch .getCount () > 0 && linePredicate .test (line )) {
199
- latch .countDown ();
200
+ synchronized (sync ) {
201
+ if (latch .getCount () > 0 && linePredicate .test (line )) {
202
+ latch .countDown ();
203
+ }
200
204
}
201
205
}
202
206
};
@@ -241,13 +245,13 @@ protected void processLine(String line) {
241
245
* <span>The default redirects of STDOUT and STDERR are started</span>
242
246
* <p>
243
247
* It is possible to wait for the process to get to a warmed-up state
244
- * via {@linkplain Predicate} condition on the STDOUT. The warm-up will
245
- * wait indefinitely.
248
+ * via {@linkplain Predicate} condition on the STDOUT/STDERR.
249
+ * The warm-up will wait indefinitely.
246
250
* </p>
247
251
*
248
252
* @param name The process name
249
253
* @param processBuilder The process builder
250
- * @param linePredicate The {@linkplain Predicate} to use on the STDOUT
254
+ * @param linePredicate The {@linkplain Predicate} to use on the STDOUT and STDERR.
251
255
* Used to determine the moment the target app is
252
256
* properly warmed-up.
253
257
* It can be null - in that case the warmup is skipped.
0 commit comments