Search in sources :

Example 36 with Commandline

use of org.codehaus.plexus.util.cli.Commandline in project maven-scm by apache.

the class PerforceCheckOutCommand method executeCheckOutCommand.

/**
 * Check out the depot code at <code>repo.getPath()</code> into the target
 * directory at <code>files.getBasedir</code>. Perforce does not support
 * arbitrary checkout of versioned source so we need to set up a well-known
 * clientspec which will hold the required info.
 * <p/>
 * 1) A clientspec will be created or updated which holds a temporary
 * mapping from the repo path to the target directory.
 * 2) This clientspec is sync'd to pull all the files onto the client
 * <p/>
 * {@inheritDoc}
 */
protected CheckOutScmResult executeCheckOutCommand(ScmProviderRepository repo, ScmFileSet files, ScmVersion version, boolean recursive, boolean shallow) throws ScmException {
    PerforceScmProviderRepository prepo = (PerforceScmProviderRepository) repo;
    File workingDirectory = new File(files.getBasedir().getAbsolutePath());
    actualLocation = PerforceScmProvider.getRepoPath(getLogger(), prepo, files.getBasedir());
    String specname = PerforceScmProvider.getClientspecName(getLogger(), prepo, workingDirectory);
    PerforceCheckOutConsumer consumer = new PerforceCheckOutConsumer(specname, actualLocation);
    if (getLogger().isInfoEnabled()) {
        getLogger().info("Checkout working directory: " + workingDirectory);
    }
    Commandline cl = null;
    // Create or update a clientspec so we can checkout the code to a particular location
    try {
        // Ahhh, glorious Perforce.  Create and update of clientspecs is the exact
        // same operation so we don't need to distinguish between the two modes.
        cl = PerforceScmProvider.createP4Command(prepo, workingDirectory);
        cl.createArg().setValue("client");
        cl.createArg().setValue("-i");
        if (getLogger().isInfoEnabled()) {
            getLogger().info("Executing: " + PerforceScmProvider.clean(cl.toString()));
        }
        String client = PerforceScmProvider.createClientspec(getLogger(), prepo, workingDirectory, actualLocation);
        if (getLogger().isDebugEnabled()) {
            getLogger().debug("Updating clientspec:\n" + client);
        }
        CommandLineUtils.StringStreamConsumer err = new CommandLineUtils.StringStreamConsumer();
        int exitCode = CommandLineUtils.executeCommandLine(cl, new ByteArrayInputStream(client.getBytes()), consumer, err);
        if (exitCode != 0) {
            String cmdLine = CommandLineUtils.toString(cl.getCommandline());
            StringBuilder msg = new StringBuilder("Exit code: " + exitCode + " - " + err.getOutput());
            msg.append('\n');
            msg.append("Command line was:" + cmdLine);
            throw new CommandLineException(msg.toString());
        }
    } catch (CommandLineException e) {
        if (getLogger().isErrorEnabled()) {
            getLogger().error("CommandLineException " + e.getMessage(), e);
        }
    }
    boolean clientspecExists = consumer.isSuccess();
    // Perform the actual checkout using that clientspec
    try {
        if (clientspecExists) {
            try {
                getLastChangelist(prepo, workingDirectory, specname);
                cl = createCommandLine(prepo, workingDirectory, version, specname);
                if (getLogger().isDebugEnabled()) {
                    getLogger().debug("Executing: " + PerforceScmProvider.clean(cl.toString()));
                }
                Process proc = cl.execute();
                BufferedReader br = new BufferedReader(new InputStreamReader(proc.getInputStream()));
                String line;
                while ((line = br.readLine()) != null) {
                    if (getLogger().isDebugEnabled()) {
                        getLogger().debug("Consuming: " + line);
                    }
                    consumer.consumeLine(line);
                }
                CommandLineUtils.StringStreamConsumer err = new CommandLineUtils.StringStreamConsumer();
                int exitCode = CommandLineUtils.executeCommandLine(cl, consumer, err);
                if (exitCode != 0) {
                    String cmdLine = CommandLineUtils.toString(cl.getCommandline());
                    StringBuilder msg = new StringBuilder("Exit code: " + exitCode + " - " + err.getOutput());
                    msg.append('\n');
                    msg.append("Command line was:" + cmdLine);
                    throw new CommandLineException(msg.toString());
                }
                if (getLogger().isDebugEnabled()) {
                    getLogger().debug("Perforce sync complete.");
                }
            } catch (CommandLineException e) {
                if (getLogger().isErrorEnabled()) {
                    getLogger().error("CommandLineException " + e.getMessage(), e);
                }
            } catch (IOException e) {
                if (getLogger().isErrorEnabled()) {
                    getLogger().error("IOException " + e.getMessage(), e);
                }
            }
        }
        if (consumer.isSuccess()) {
            return new CheckOutScmResult(cl.toString(), consumer.getCheckedout());
        } else {
            return new CheckOutScmResult(cl.toString(), "Unable to sync.  Are you logged in?", consumer.getOutput(), consumer.isSuccess());
        }
    } finally {
        // Support transient clientspecs as we don't want to create 1000s of permanent clientspecs
        if (clientspecExists && !prepo.isPersistCheckout()) {
            // Delete the clientspec
            InputStreamReader isReader = null;
            InputStreamReader isReaderErr = null;
            try {
                cl = PerforceScmProvider.createP4Command(prepo, workingDirectory);
                cl.createArg().setValue("client");
                cl.createArg().setValue("-d");
                cl.createArg().setValue(specname);
                if (getLogger().isInfoEnabled()) {
                    getLogger().info("Executing: " + PerforceScmProvider.clean(cl.toString()));
                }
                Process proc = cl.execute();
                isReader = new InputStreamReader(proc.getInputStream());
                BufferedReader br = new BufferedReader(isReader);
                String line;
                while ((line = br.readLine()) != null) {
                    if (getLogger().isDebugEnabled()) {
                        getLogger().debug("Consuming: " + line);
                    }
                    consumer.consumeLine(line);
                }
                br.close();
                // Read errors from STDERR
                isReaderErr = new InputStreamReader(proc.getErrorStream());
                BufferedReader brErr = new BufferedReader(isReaderErr);
                while ((line = brErr.readLine()) != null) {
                    if (getLogger().isDebugEnabled()) {
                        getLogger().debug("Consuming stderr: " + line);
                    }
                    consumer.consumeLine(line);
                }
                brErr.close();
            } catch (CommandLineException e) {
                if (getLogger().isErrorEnabled()) {
                    getLogger().error("CommandLineException " + e.getMessage(), e);
                }
            } catch (IOException e) {
                if (getLogger().isErrorEnabled()) {
                    getLogger().error("IOException " + e.getMessage(), e);
                }
            } finally {
                IOUtil.close(isReader);
                IOUtil.close(isReaderErr);
            }
        } else if (clientspecExists) {
            // SCM-165 Save clientspec in memory so we can reuse it with further commands in this VM.
            System.setProperty(PerforceScmProvider.DEFAULT_CLIENTSPEC_PROPERTY, specname);
        }
    }
}
Also used : Commandline(org.codehaus.plexus.util.cli.Commandline) InputStreamReader(java.io.InputStreamReader) IOException(java.io.IOException) CommandLineException(org.codehaus.plexus.util.cli.CommandLineException) ByteArrayInputStream(java.io.ByteArrayInputStream) CommandLineUtils(org.codehaus.plexus.util.cli.CommandLineUtils) BufferedReader(java.io.BufferedReader) CheckOutScmResult(org.apache.maven.scm.command.checkout.CheckOutScmResult) PerforceScmProviderRepository(org.apache.maven.scm.provider.perforce.repository.PerforceScmProviderRepository) File(java.io.File)

Example 37 with Commandline

use of org.codehaus.plexus.util.cli.Commandline in project maven-scm by apache.

the class PerforceEditCommand method createCommandLine.

public static Commandline createCommandLine(PerforceScmProviderRepository repo, File workingDirectory, ScmFileSet files) throws ScmException {
    Commandline command = PerforceScmProvider.createP4Command(repo, workingDirectory);
    command.createArg().setValue("edit");
    try {
        String candir = workingDirectory.getCanonicalPath();
        for (File f : files.getFileList()) {
            File file = null;
            if (f.isAbsolute()) {
                file = new File(f.getPath());
            } else {
                file = new File(workingDirectory, f.getPath());
            }
            // I want to use relative paths to add files to make testing
            // simpler.
            // Otherwise the absolute path will be different on everyone's
            // machine
            // and testing will be a little more painful.
            String canfile = file.getCanonicalPath();
            if (canfile.startsWith(candir)) {
                canfile = canfile.substring(candir.length() + 1);
            }
            command.createArg().setValue(canfile);
        }
    } catch (IOException e) {
        throw new ScmException(e.getMessage(), e);
    }
    return command;
}
Also used : ScmException(org.apache.maven.scm.ScmException) Commandline(org.codehaus.plexus.util.cli.Commandline) IOException(java.io.IOException) File(java.io.File)

Example 38 with Commandline

use of org.codehaus.plexus.util.cli.Commandline in project maven-scm by apache.

the class PerforceRemoveCommand method executeRemoveCommand.

/**
 * {@inheritDoc}
 */
protected ScmResult executeRemoveCommand(ScmProviderRepository repo, ScmFileSet files, String message) throws ScmException {
    Commandline cl = createCommandLine((PerforceScmProviderRepository) repo, files.getBasedir(), files);
    PerforceRemoveConsumer consumer = new PerforceRemoveConsumer();
    try {
        CommandLineUtils.StringStreamConsumer err = new CommandLineUtils.StringStreamConsumer();
        int exitCode = CommandLineUtils.executeCommandLine(cl, consumer, err);
        if (exitCode != 0) {
            String cmdLine = CommandLineUtils.toString(cl.getCommandline());
            StringBuilder msg = new StringBuilder("Exit code: " + exitCode + " - " + err.getOutput());
            msg.append('\n');
            msg.append("Command line was:" + cmdLine);
            throw new CommandLineException(msg.toString());
        }
    } catch (CommandLineException e) {
        throw new ScmException("CommandLineException " + e.getMessage(), e);
    }
    return new RemoveScmResult(cl.toString(), consumer.getRemovals());
}
Also used : ScmException(org.apache.maven.scm.ScmException) Commandline(org.codehaus.plexus.util.cli.Commandline) CommandLineUtils(org.codehaus.plexus.util.cli.CommandLineUtils) RemoveScmResult(org.apache.maven.scm.command.remove.RemoveScmResult) CommandLineException(org.codehaus.plexus.util.cli.CommandLineException)

Example 39 with Commandline

use of org.codehaus.plexus.util.cli.Commandline in project maven-scm by apache.

the class PerforceRemoveCommand method createCommandLine.

public static Commandline createCommandLine(PerforceScmProviderRepository repo, File workingDirectory, ScmFileSet files) {
    Commandline command = PerforceScmProvider.createP4Command(repo, workingDirectory);
    command.createArg().setValue("delete");
    List<File> fs = files.getFileList();
    for (int i = 0; i < fs.size(); i++) {
        File file = (File) fs.get(i);
        command.createArg().setValue(file.getName());
    }
    return command;
}
Also used : Commandline(org.codehaus.plexus.util.cli.Commandline) File(java.io.File)

Example 40 with Commandline

use of org.codehaus.plexus.util.cli.Commandline in project maven-scm by apache.

the class PerforceStatusCommand method createOpenedCommandLine.

public static Commandline createOpenedCommandLine(PerforceScmProviderRepository repo, File workingDirectory, String location) {
    Commandline command = PerforceScmProvider.createP4Command(repo, workingDirectory);
    command.createArg().setValue("opened");
    command.createArg().setValue(PerforceScmProvider.getCanonicalRepoPath(location));
    return command;
}
Also used : Commandline(org.codehaus.plexus.util.cli.Commandline)

Aggregations

Commandline (org.codehaus.plexus.util.cli.Commandline)443 File (java.io.File)131 CommandLineUtils (org.codehaus.plexus.util.cli.CommandLineUtils)116 ScmException (org.apache.maven.scm.ScmException)84 CommandLineException (org.codehaus.plexus.util.cli.CommandLineException)67 ScmRepository (org.apache.maven.scm.repository.ScmRepository)51 IOException (java.io.IOException)45 ScmFileSet (org.apache.maven.scm.ScmFileSet)34 Test (org.junit.Test)28 StringStreamConsumer (org.codehaus.plexus.util.cli.CommandLineUtils.StringStreamConsumer)26 ArrayList (java.util.ArrayList)22 StarteamScmProviderRepository (org.apache.maven.scm.provider.starteam.repository.StarteamScmProviderRepository)22 PerforceScmProviderRepository (org.apache.maven.scm.provider.perforce.repository.PerforceScmProviderRepository)19 SvnCommandLineUtils (org.apache.maven.scm.provider.svn.svnexe.command.SvnCommandLineUtils)17 GitCommandLineUtils (org.apache.maven.scm.provider.git.gitexe.command.GitCommandLineUtils)16 GitScmProviderRepository (org.apache.maven.scm.provider.git.repository.GitScmProviderRepository)16 SvnScmProviderRepository (org.apache.maven.scm.provider.svn.repository.SvnScmProviderRepository)16 MojoExecutionException (org.apache.maven.plugin.MojoExecutionException)15 ScmFile (org.apache.maven.scm.ScmFile)13 CvsScmProviderRepository (org.apache.maven.scm.provider.cvslib.repository.CvsScmProviderRepository)13