Package net.fortytwo.ripple.libs.system

Source Code of net.fortytwo.ripple.libs.system.System

package net.fortytwo.ripple.libs.system;

import net.fortytwo.flow.Sink;
import net.fortytwo.ripple.RippleException;
import net.fortytwo.ripple.model.ModelConnection;
import net.fortytwo.ripple.model.PrimitiveStackMapping;
import net.fortytwo.ripple.model.RippleList;

import java.io.IOException;
import java.io.InputStream;

/**
* A primitive which enables system calls to the underlying operating system.
*
* @author Joshua Shinavier (http://fortytwo.net)
*/
public class System extends PrimitiveStackMapping {
    private static final int
            OUTPUT_MAXLEN = 100,
            ERROR_MAXLEN = 100;

    public String[] getIdentifiers() {
        return new String[]{
                SystemLibrary.NS_2013_03 + "system",
                SystemLibrary.NS_2008_08 + "system"};
    }

    public Parameter[] getParameters() {
        return new Parameter[]{
                new Parameter("command", "a system command to execute", true)};
    }

    public String getComment() {
        return "makes a system call to the underlying operating system";
    }

    public System()
            throws RippleException {
        super();
    }

    public void apply(final RippleList arg,
                      final Sink<RippleList> solutions,
                      final ModelConnection mc) throws RippleException {
        RippleList stack = arg;

        String command = mc.toString(stack.getFirst());
        stack = stack.getRest();

        int exitCode;
        String normalOutput;
        String errorOutput;

        Runtime r = Runtime.getRuntime();

        try {
            Process p = r.exec(command);
            exitCode = p.waitFor();
            normalOutput = readInputStream(p.getInputStream(), OUTPUT_MAXLEN);
            errorOutput = readInputStream(p.getErrorStream(), OUTPUT_MAXLEN);
        } catch (IOException e) {
            throw new RippleException(e);
        } catch (InterruptedException e) {
            throw new RippleException(e);
        }

        solutions.put(
                stack.push(mc.valueOf(exitCode))
                        .push(mc.valueOf(normalOutput))
                        .push(mc.valueOf(errorOutput)));
    }

    private String readInputStream(final InputStream is,
                                   final int maxLen) throws RippleException {
        try {
            int len = is.available();
            if (len > maxLen) {
                len = maxLen;
            }

            byte[] data = new byte[len];
            is.read(data);

            return new String(data);
        } catch (IOException e) {
            throw new RippleException(e);
        }
    }
}
TOP

Related Classes of net.fortytwo.ripple.libs.system.System

TOP
Copyright © 2018 www.massapi.com. 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.