Examples of RawCommandInfo


Examples of org.apache.airavata.gsi.ssh.impl.RawCommandInfo

                 */
                String execuable = app.getStaticWorkingDirectory() + File.separatorChar + Constants.EXECUTABLE_NAME;
                details.setJobDescription(execuable);

//                GFacUtils.updateJobStatus(details, JobState.SUBMITTED);
                RawCommandInfo rawCommandInfo = new RawCommandInfo("/bin/chmod 755 " + execuable + "; " + execuable);

                StandardOutReader jobIDReaderCommandOutput = new StandardOutReader();

                CommandExecutor.executeCommand(rawCommandInfo, cluster.getSession(), jobIDReaderCommandOutput);
                String stdOutputString = getOutputifAvailable(jobIDReaderCommandOutput, "Error submitting job to resource");
View Full Code Here

Examples of org.apache.airavata.gsi.ssh.impl.RawCommandInfo

            this.installedPath = installedPath + "/";
        }
    }

    public RawCommandInfo getCancelCommand(String jobID) {
        return new RawCommandInfo(this.installedPath + "qdel " + jobID);
    }
View Full Code Here

Examples of org.apache.airavata.gsi.ssh.impl.RawCommandInfo

    public void setJobDescriptionTemplateName(String jobDescriptionTemplateName) {
        this.jobDescriptionTemplateName = jobDescriptionTemplateName;
    }

    public RawCommandInfo getMonitorCommand(String jobID) {
        return new RawCommandInfo(this.installedPath + "qstat -f " + jobID);
    }
View Full Code Here

Examples of org.apache.airavata.gsi.ssh.impl.RawCommandInfo

    public String getScriptExtension() {
        return scriptExtension;
    }

    public RawCommandInfo getSubmitCommand(String workingDirectory, String pbsFilePath) {
        return new RawCommandInfo(this.installedPath + "qsub " +
                workingDirectory + File.separator + FilenameUtils.getName(pbsFilePath));
    }
View Full Code Here

Examples of org.apache.airavata.gsi.ssh.impl.RawCommandInfo

    public void setParser(OutputParser parser) {
        this.parser = parser;
    }

    public RawCommandInfo getUserBasedMonitorCommand(String userName) {
        return new RawCommandInfo(this.installedPath + "qstat -u " + userName);
    }
View Full Code Here

Examples of org.apache.airavata.gsi.ssh.impl.RawCommandInfo

            this.installedPath = installedPath + "/";
        }
    }

    public RawCommandInfo getCancelCommand(String jobID) {
        return new RawCommandInfo(this.installedPath + "qcancel " + jobID);
    }
View Full Code Here

Examples of org.apache.airavata.gsi.ssh.impl.RawCommandInfo

    public void setJobDescriptionTemplateName(String jobDescriptionTemplateName) {
        this.jobDescriptionTemplateName = jobDescriptionTemplateName;
    }

    public RawCommandInfo getMonitorCommand(String jobID) {
        return new RawCommandInfo(this.installedPath + "squeue -j " + jobID);
    }
View Full Code Here

Examples of org.apache.airavata.gsi.ssh.impl.RawCommandInfo

    public String getScriptExtension() {
        return scriptExtension;
    }

    public RawCommandInfo getSubmitCommand(String workingDirectory,String pbsFilePath) {
          return new RawCommandInfo(this.installedPath + "sbatch " +
                workingDirectory + File.separator + FilenameUtils.getName(pbsFilePath));
    }
View Full Code Here

Examples of org.apache.airavata.gsi.ssh.impl.RawCommandInfo

    public void setParser(OutputParser parser) {
        this.parser = parser;
    }

    public RawCommandInfo getUserBasedMonitorCommand(String userName) {
        return new RawCommandInfo(this.installedPath + "squeue -u " + userName);
    }
View Full Code Here

Examples of org.apache.airavata.gsi.ssh.impl.RawCommandInfo

                 */
                String execuable = app.getStaticWorkingDirectory() + File.separatorChar + Constants.EXECUTABLE_NAME;
                details.setJobDescription(execuable);

//                GFacUtils.updateJobStatus(details, JobState.SUBMITTED);
                RawCommandInfo rawCommandInfo = new RawCommandInfo("/bin/chmod 755 " + execuable + "; " + execuable);

                StandardOutReader jobIDReaderCommandOutput = new StandardOutReader();
               
                CommandExecutor.executeCommand(rawCommandInfo, cluster.getSession(), jobIDReaderCommandOutput);
                String stdOutputString = getOutputifAvailable(jobIDReaderCommandOutput, "Error submitting job to resource");
View Full Code Here
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.