use of org.apache.maven.scm.provider.jazz.command.status.JazzStatusCommand in project maven-scm by apache.
the class JazzCheckInCommand method executeCheckInCommand.
/**
* {@inheritDoc}
*/
protected CheckInScmResult executeCheckInCommand(ScmProviderRepository repository, ScmFileSet fileSet, String message, ScmVersion scmVersion) throws ScmException {
if (scmVersion != null && StringUtils.isNotEmpty(scmVersion.getName())) {
throw new ScmException("This provider command can't handle tags.");
}
if (getLogger().isDebugEnabled()) {
getLogger().debug("Executing checkin command...");
}
// Create a changeset. We need to do this, as otherwise the information contained in the message
// will be lost forever.
JazzScmCommand createChangesetCmd = createCreateChangesetCommand(repository, fileSet, message);
DebugLoggerConsumer outputConsumer = new DebugLoggerConsumer(getLogger());
ErrorConsumer errConsumer = new ErrorConsumer(getLogger());
int status = createChangesetCmd.execute(outputConsumer, errConsumer);
if (status != 0) {
return new CheckInScmResult(createChangesetCmd.getCommandString(), "Error code for Jazz SCM create changeset command - " + status, errConsumer.getOutput(), false);
}
// As we just created a change set, we now need to call the status command so we can parse the
// newly created change set.
JazzStatusCommand statusCommand = new JazzStatusCommand();
statusCommand.setLogger(getLogger());
statusCommand.executeStatusCommand(repository, fileSet);
// NOTE: For isPushChangesAndHaveFlowTargets() to work, a scm status call must have been called first!!!
// As the Workspace name and alias, and the Flow Target name and alias are needed.
// Check to see if we've got a flow target and had a workItem defined (via -DworkItem=XXXX)
JazzScmProviderRepository jazzRepo = (JazzScmProviderRepository) repository;
if (jazzRepo.isPushChangesAndHaveFlowTargets() && StringUtils.isNotEmpty(jazzRepo.getWorkItem())) {
List<Integer> changeSetAliases = jazzRepo.getOutgoingChangeSetAliases();
if (changeSetAliases != null && !changeSetAliases.isEmpty()) {
for (Integer changeSetAlias : changeSetAliases) {
// Associate a work item if we need too.
JazzScmCommand changesetAssociateCmd = createChangesetAssociateCommand(repository, changeSetAlias);
outputConsumer = new DebugLoggerConsumer(getLogger());
errConsumer = new ErrorConsumer(getLogger());
status = changesetAssociateCmd.execute(outputConsumer, errConsumer);
if (status != 0) {
return new CheckInScmResult(changesetAssociateCmd.getCommandString(), "Error code for Jazz SCM changeset associate command - " + status, errConsumer.getOutput(), false);
}
}
}
}
// Now check in the files themselves.
return executeCheckInCommand(repository, fileSet, scmVersion);
}
use of org.apache.maven.scm.provider.jazz.command.status.JazzStatusCommand in project maven-scm by apache.
the class JazzScmProvider method list.
/**
* {@inheritDoc}
*/
protected ListScmResult list(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
getLogger().debug("JazzScmProvider:list()");
// We need to call the status command first, so that we can get the details of the stream etc.
// This is needed for workspace and component names.
JazzStatusCommand statusCommand = new JazzStatusCommand();
statusCommand.setLogger(getLogger());
statusCommand.execute(repository, fileSet, parameters);
JazzListCommand command = new JazzListCommand();
command.setLogger(getLogger());
return (ListScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations