33
33
34
34
import java .io .File ;
35
35
import java .io .IOException ;
36
+ import java .io .InputStream ;
36
37
import java .util .List ;
37
38
import java .util .ArrayList ;
38
39
import java .util .Arrays ;
@@ -70,7 +71,7 @@ public static void findBuildPaths() throws Exception {
70
71
arduinoPath = new File (buildPath , "build/linux/work/arduino" );
71
72
}
72
73
if (OSUtils .isWindows ()) {
73
- arduinoPath = new File (buildPath , "build/windows/work/arduino .exe" );
74
+ arduinoPath = new File (buildPath , "build/windows/work/arduino_debug .exe" );
74
75
}
75
76
if (OSUtils .isMacOS ()) {
76
77
arduinoPath = new File (buildPath ,
@@ -82,10 +83,20 @@ public static void findBuildPaths() throws Exception {
82
83
System .out .println ("found arduino: " + arduinoPath );
83
84
}
84
85
86
+ private void consume (InputStream s ) {
87
+ new Thread (() -> {
88
+ try {
89
+ IOUtils .copy (s , System .out );
90
+ } catch (IOException e ) {
91
+ e .printStackTrace ();
92
+ }
93
+ }).start ();
94
+ }
95
+
85
96
public Process runArduino (boolean output , boolean success , File wd , String [] extraArgs ) throws IOException , InterruptedException {
86
97
Runtime rt = Runtime .getRuntime ();
87
98
88
- List <String > args = new ArrayList <String >();
99
+ List <String > args = new ArrayList <>();
89
100
args .add (arduinoPath .getAbsolutePath ());
90
101
args .addAll (Arrays .asList (getBaseArgs ()));
91
102
args .addAll (Arrays .asList (extraArgs ));
@@ -94,8 +105,8 @@ public Process runArduino(boolean output, boolean success, File wd, String[] ext
94
105
95
106
Process pr = rt .exec (args .toArray (new String [0 ]), null , wd );
96
107
if (output ) {
97
- IOUtils . copy (pr .getInputStream (), System . out );
98
- IOUtils . copy (pr .getErrorStream (), System . out );
108
+ consume (pr .getInputStream ());
109
+ consume (pr .getErrorStream ());
99
110
}
100
111
pr .waitFor ();
101
112
if (success )
0 commit comments