All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.testing.internal.util.GradlewRunner Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2009 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.gradle.testing.internal.util;

import java.io.*;

/**
 * This is used to launch Gradle from within IDEA. See gradle/idea.gradle.
 */
public class GradlewRunner {
    public static void main(String[] args) {
        Process process = null;

        String[] combinedArgs;
        
        if (System.getProperty("os.name").startsWith("Windows")) {
            combinedArgs = new String[3 + args.length];
            combinedArgs[0] = "cmd";
            combinedArgs[1] = "/C";
            combinedArgs[2] = new File("gradlew").getAbsolutePath();
            System.arraycopy(args, 0, combinedArgs, 3, args.length);
        } else {
            combinedArgs = new String[1 + args.length];
            File gradlew = new File("gradlew");
            combinedArgs[0] = gradlew.getAbsolutePath();
            System.arraycopy(args, 0, combinedArgs, 1, args.length);
        }

        try {
            ProcessBuilder builder = new ProcessBuilder().command(combinedArgs);
            process = builder.start();
            final Process finalProcess = process;
            Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
                @Override
                public void run() {
                    try {
                        finalProcess.destroy();
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            }));
            forwardAsync(process.getInputStream(), System.out);
            forwardAsync(process.getErrorStream(), System.err);
            process.waitFor();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (InterruptedException e) {
            e.printStackTrace();
            process.destroy();
        }
    }
    
    private static void forwardAsync(final InputStream input, final OutputStream output) {
        new Thread(new Runnable() {
            @Override
            public void run() {
                int bufferSize = 4096;
                byte[] buffer = new byte[bufferSize];

                int read = 0;
                try {
                    read = input.read(buffer);
                    while(read != -1) {
                        output.write(buffer, 0, read);
                        read = input.read(buffer);
                    }
                } catch (IOException e) {
                    e.printStackTrace(new PrintWriter(output));
                }
            }
        }).start();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy