From eb197ea3c72fe47ed95cb3ba70e63c79dd2a0dd4 Mon Sep 17 00:00:00 2001 From: Doug Schaefer Date: Tue, 29 May 2018 00:13:47 -0400 Subject: [PATCH] Bug 535091 separate out the two streams for macros and defines. The output of the call to gcc to pick out the defines and include paths produces them on different streams, defines on stdout and paths on stderr. Separate the scanning of the two into two threads. Change-Id: I3173d3619e53d13a51a6e283eb320a618daacf21 --- .../cdt/build/gcc/core/GCCToolChain.java | 61 ++++++++++++------- 1 file changed, 40 insertions(+), 21 deletions(-) diff --git a/build/org.eclipse.cdt.build.gcc.core/src/org/eclipse/cdt/build/gcc/core/GCCToolChain.java b/build/org.eclipse.cdt.build.gcc.core/src/org/eclipse/cdt/build/gcc/core/GCCToolChain.java index a73912ca3fd..2c3f56b0e27 100644 --- a/build/org.eclipse.cdt.build.gcc.core/src/org/eclipse/cdt/build/gcc/core/GCCToolChain.java +++ b/build/org.eclipse.cdt.build.gcc.core/src/org/eclipse/cdt/build/gcc/core/GCCToolChain.java @@ -449,8 +449,7 @@ public class GCCToolChain extends PlatformObject implements IToolChain { Files.createDirectories(buildDirectory); // Startup the command - ProcessBuilder processBuilder = new ProcessBuilder(commandLine).directory(buildDirectory.toFile()) - .redirectErrorStream(true); + ProcessBuilder processBuilder = new ProcessBuilder(commandLine).directory(buildDirectory.toFile()); CCorePlugin.getDefault().getBuildEnvironmentManager().setEnvironment(processBuilder.environment(), buildConfig, true); Process process = processBuilder.start(); @@ -459,30 +458,50 @@ public class GCCToolChain extends PlatformObject implements IToolChain { Map symbols = new HashMap<>(); List includePath = new ArrayList<>(); Pattern definePattern = Pattern.compile("#define ([^\\s]*)\\s(.*)"); //$NON-NLS-1$ - try (BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()))) { - for (String line = reader.readLine(); line != null; line = reader.readLine()) { - if (line.startsWith("#define ")) { //$NON-NLS-1$ - Matcher matcher = definePattern.matcher(line); - if (matcher.matches()) { - symbols.put(matcher.group(1), matcher.group(2)); - } - } else { - String dir = line.trim(); - if (dir.equals(".")) { //$NON-NLS-1$ - includePath.add(buildDirectory.toString()); - } else { - try { - Path dirPath = Paths.get(dir); - if (Files.isDirectory(dirPath)) { - includePath.add(dirPath.toString()); + + // First the include path off the error stream + new Thread("Include Path Reader") { + @Override + public void run() { + try (BufferedReader reader = new BufferedReader(new InputStreamReader(process.getErrorStream()))) { + for (String line = reader.readLine(); line != null; line = reader.readLine()) { + String dir = line.trim(); + if (dir.equals(".")) { //$NON-NLS-1$ + includePath.add(buildDirectory.toString()); + } else { + try { + Path dirPath = Paths.get(dir); + if (Files.isDirectory(dirPath)) { + includePath.add(dirPath.toString()); + } + } catch (InvalidPathException e) { + // nothing } - } catch (InvalidPathException e) { - // nothing } } + } catch (IOException e) { + CCorePlugin.log(e); } } - } + }.start(); + + new Thread("Macro reader") { + public void run() { + // Now the defines off the output stream + try (BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()))) { + for (String line = reader.readLine(); line != null; line = reader.readLine()) { + if (line.startsWith("#define ")) { //$NON-NLS-1$ + Matcher matcher = definePattern.matcher(line); + if (matcher.matches()) { + symbols.put(matcher.group(1), matcher.group(2)); + } + } + } + } catch (IOException e) { + CCorePlugin.log(e); + } + } + }.start(); try { process.waitFor();