24
24
import org .gradle .nativeplatform .toolchain .internal .metadata .CompilerMetaDataProvider ;
25
25
import org .gradle .nativeplatform .toolchain .internal .metadata .CompilerMetaDataProviderFactory ;
26
26
import org .gradle .platform .base .internal .toolchain .SearchResult ;
27
+ import org .gradle .process .ExecOperations ;
27
28
import org .gradle .process .ExecSpec ;
28
29
import org .gradle .util .internal .VersionNumber ;
29
30
@@ -36,19 +37,24 @@ public abstract class ToolchainDiscoverer implements Named {
36
37
private final Function <String , String > composer ;
37
38
private final ToolchainDescriptorBase descriptor ;
38
39
39
- public static ToolchainDiscoverer createDiscoverer (String name , ToolchainDescriptorBase descriptor , Provider <File > rootDir , Function <String , String > composer , Project project ) {
40
+ public static ToolchainDiscoverer createDiscoverer (String name , ToolchainDescriptorBase descriptor ,
41
+ Provider <File > rootDir , Function <String , String > composer , Project project ) {
40
42
return project .getObjects ().newInstance (ToolchainDiscoverer .class , name , descriptor , rootDir , composer );
41
43
}
42
44
43
- public static ToolchainDiscovererProperty createProperty (String name , ToolchainDescriptorBase descriptor , Provider <File > rootDir , Function <String , String > composer , Project project ) {
45
+ public static ToolchainDiscovererProperty createProperty (String name , ToolchainDescriptorBase descriptor ,
46
+ Provider <File > rootDir , Function <String , String > composer , Project project ) {
44
47
ToolchainDiscovererProperty prop = project .getObjects ().newInstance (ToolchainDiscovererProperty .class , name );
45
- Provider <ToolchainDiscoverer > disc = project .provider (() -> project .getObjects ().newInstance (ToolchainDiscoverer .class , name , descriptor , rootDir , composer ));
48
+ Provider <ToolchainDiscoverer > disc = project .provider (
49
+ () -> project .getObjects ().newInstance (ToolchainDiscoverer .class , name , descriptor , rootDir , composer ));
46
50
prop .getDiscoverers ().add (disc );
47
51
return prop ;
48
52
}
49
53
50
54
@ Inject
51
- public ToolchainDiscoverer (String name , ToolchainDescriptorBase descriptor , Provider <File > rootDir , Function <String , String > composer , CompilerMetaDataProviderFactory metaDataProviderFactory , ProviderFactory providers ) {
55
+ public ToolchainDiscoverer (String name , ToolchainDescriptorBase descriptor , Provider <File > rootDir ,
56
+ Function <String , String > composer , CompilerMetaDataProviderFactory metaDataProviderFactory ,
57
+ ProviderFactory providers ) {
52
58
this .name = name ;
53
59
this .rootDir = rootDir ;
54
60
this .composer = composer ;
@@ -75,7 +81,8 @@ public boolean exists() {
75
81
}
76
82
77
83
public boolean versionValid () {
78
- if (!exists ()) return false ;
84
+ if (!exists ())
85
+ return false ;
79
86
80
87
VersionNumber v = metadata (null ).get ().getVersion ();
81
88
String versionLo = descriptor .getVersionLow ().get ();
@@ -200,22 +207,24 @@ public String getName() {
200
207
private Optional <GccMetadata > metadata (File file , DiagnosticsVisitor visitor ) {
201
208
if (file == null || !file .exists ())
202
209
return Optional .empty ();
203
- SearchResult <GccMetadata > searchresult = metadataProvider .getCompilerMetaData (new ArrayList <File >(), compilerSpec -> {
204
- compilerSpec .executable (file );
205
- });
210
+ SearchResult <GccMetadata > searchresult = metadataProvider .getCompilerMetaData (new ArrayList <File >(),
211
+ compilerSpec -> {
212
+ compilerSpec .executable (file );
213
+ });
206
214
if (visitor != null )
207
215
searchresult .explain (visitor );
208
216
return Optional .ofNullable (searchresult .getComponent ());
209
217
}
210
218
211
- public static List <File > systemPath (Project project , ToolchainGraphBuildService tce , Function <String , String > composer ) {
219
+ public static List <File > systemPath (Project project , ToolchainGraphBuildService tce ,
220
+ Function <String , String > composer , ExecOperations operations ) {
212
221
String tool = composer == null ? "g++" : composer .apply ("gcc" );
213
222
String whichResult = tce .getWhichResult (tool );
214
223
if (whichResult == null ) {
215
224
ByteArrayOutputStream os = new ByteArrayOutputStream ();
216
225
ByteArrayOutputStream errStr = new ByteArrayOutputStream ();
217
226
218
- project .exec ((ExecSpec spec ) -> {
227
+ operations .exec ((ExecSpec spec ) -> {
219
228
spec .commandLine (OperatingSystem .current ().isWindows () ? "where.exe" : "which" , tool );
220
229
spec .setStandardOutput (os );
221
230
spec .setErrorOutput (errStr );
@@ -228,18 +237,22 @@ public static List<File> systemPath(Project project, ToolchainGraphBuildService
228
237
229
238
return Arrays .stream (whichResult .split ("\n " ))
230
239
.map (String ::trim )
231
- .filter (((Predicate <String >)String ::isEmpty ).negate ())
232
- .map ((String path ) -> { return new File (path ).getParentFile ().getParentFile (); })
240
+ .filter (((Predicate <String >) String ::isEmpty ).negate ())
241
+ .map ((String path ) -> {
242
+ return new File (path ).getParentFile ().getParentFile ();
243
+ })
233
244
.collect (Collectors .toList ());
234
245
}
235
246
236
- public static ToolchainDiscovererProperty forSystemPath (Project project , ToolchainGraphBuildService tce , ToolchainDescriptorBase descriptor , Function <String , String > composer ) {
237
- ToolchainDiscovererProperty prop = project .getObjects ().newInstance (ToolchainDiscovererProperty .class , "PathList" );
247
+ public static ToolchainDiscovererProperty forSystemPath (Project project , ToolchainGraphBuildService tce ,
248
+ ToolchainDescriptorBase descriptor , Function <String , String > composer , ExecOperations operations ) {
249
+ ToolchainDiscovererProperty prop = project .getObjects ().newInstance (ToolchainDiscovererProperty .class ,
250
+ "PathList" );
238
251
239
252
Provider <List <ToolchainDiscoverer >> p = project .provider (() -> {
240
253
List <ToolchainDiscoverer > disc = new ArrayList <>();
241
254
int i = 0 ;
242
- for (File f : systemPath (project , tce , composer )) {
255
+ for (File f : systemPath (project , tce , composer , operations )) {
243
256
Provider <File > fp = project .provider (() -> f );
244
257
disc .add (ToolchainDiscoverer .createDiscoverer ("Path" + (i ++), descriptor , fp , composer , project ));
245
258
}
@@ -250,7 +263,9 @@ public static ToolchainDiscovererProperty forSystemPath(Project project, Toolcha
250
263
}
251
264
252
265
private static Optional <File > join (Optional <File > f , String join ) {
253
- return optFile ((File )(f .map ((File file ) -> { return new File (file , join ); }).orElse (null )));
266
+ return optFile ((File ) (f .map ((File file ) -> {
267
+ return new File (file , join );
268
+ }).orElse (null )));
254
269
}
255
270
256
271
private static Optional <File > optFile (File f ) {
0 commit comments