Package org.qzerver.model.agent.action.providers.executor.localcommand.threads

Examples of org.qzerver.model.agent.action.providers.executor.localcommand.threads.ProcessOutputThread


        // Start process thread
        ProcessExecutionThread processExecutionThread = new ProcessExecutionThread(process);
        processExecutionThread.start();

        // Start standard output copier
        ProcessOutputThread processStandardOutputThread = new ProcessOutputThread(
            process.getInputStream(), maxCaptureSize, definition.isSkipStdOutput());
        processStandardOutputThread.start();

        // Start error output copier
        ProcessOutputThread processStandardErrorThread = new ProcessOutputThread(
            process.getErrorStream(), maxCaptureSize, definition.isSkipStdError());
        processStandardErrorThread.start();

        // If timeout is set start watchdog thread. It terminates process thread after timeout exceeds
        if (definition.getTimeoutMs() > 0) {
            ProcessTimeoutThread processTimeoutThread = new ProcessTimeoutThread(
                processExecutionThread, definition.getTimeoutMs());
            processTimeoutThread.start();
        }

        // Wait while process thread exits
        processExecutionThread.join();

        // Release all resources - even the process is not alive (http://kylecartmell.com/?p=9)
        IOUtils.closeQuietly(process.getErrorStream());
        IOUtils.closeQuietly(process.getInputStream());
        IOUtils.closeQuietly(process.getOutputStream());
        process.destroy();

        // Wait while output copiers exit
        processStandardOutputThread.shutdownCapture();
        processStandardErrorThread.shutdownCapture();

        // Compose the result
        LocalCommandActionResult result = new LocalCommandActionResult();
        result.setStatus(processExecutionThread.getStatus());
        result.setExitCode(processExecutionThread.getExitCode());
        result.setStdout(processStandardOutputThread.composeActionOutput());
        result.setStderr(processStandardErrorThread.composeActionOutput());

        // In case of the process termination change "success" status to "terminated"
        if (result.getStatus() == LocalCommandActionResultStatus.TIMEOUT) {
            LocalCommandActionOutput stdout = result.getStdout();
            if (stdout.getStatus() == LocalCommandActionOutputStatus.CAPTURED) {
View Full Code Here

TOP

Related Classes of org.qzerver.model.agent.action.providers.executor.localcommand.threads.ProcessOutputThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.