blob: f1cb4e73c7e50693bf57b12af1f7734fb2eecbbd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2010 IBM Corporation and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Band XI - add more commands
* Composent, Inc. - command additions
* SAP - bug fixes
******************************************************************************/
package org.eclipse.equinox.internal.p2.console;
import java.io.File;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.*;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.equinox.p2.core.IProvisioningAgent;
import org.eclipse.equinox.p2.core.ProvisionException;
import org.eclipse.equinox.p2.engine.IProfile;
import org.eclipse.equinox.p2.engine.IProfileRegistry;
import org.eclipse.equinox.p2.metadata.*;
import org.eclipse.equinox.p2.query.*;
import org.eclipse.equinox.p2.repository.artifact.*;
import org.eclipse.equinox.p2.repository.metadata.IMetadataRepositoryManager;
import org.eclipse.osgi.framework.console.CommandInterpreter;
import org.eclipse.osgi.framework.console.CommandProvider;
/**
* An OSGi console command provider that adds various commands for interacting
* with the provisioning system.
*/
public class ProvCommandProvider implements CommandProvider {
private static final String WILDCARD_ANY = "*"; //$NON-NLS-1$
public static final String NEW_LINE = System.getProperty("line.separator", "\n"); //$NON-NLS-1$ //$NON-NLS-2$
private final IProvisioningAgent agent;
// private Profile profile;
public ProvCommandProvider(String profileId, IProvisioningAgent agent) {
this.agent = agent;
// look up the profile we are currently running and use it as the
// default.
// TODO define a way to spec the default profile to manage
// if (profileId != null) {
// profile = registry.getProfile(profileId);
// if (profile != null)
// return;
// }
// // A default was not defined so manage the first profile we can find
// Profile[] profiles = registry.getProfiles();
// if (profiles.length > 0)
// profile = profiles[0];
}
/**
* Adds both a metadata repository and artifact repository
*/
public void _provaddrepo(CommandInterpreter interpreter) {
String urlString = interpreter.nextArgument();
if (urlString == null) {
interpreter.println("Repository location must be provided");
return;
}
URI repoURI = toURI(interpreter, urlString);
if (repoURI == null)
return;
// add metadata repo
if (ProvisioningHelper.addMetadataRepository(agent, repoURI) == null) {
interpreter.println("Unable to add metadata repository: " + repoURI);
} else // add artifact repo at same URL
if (ProvisioningHelper.addArtifactRepository(agent, repoURI) == null) {
interpreter.println("Unable to add artifact repository: " + repoURI);
}
}
public void _provdelrepo(CommandInterpreter interpreter) {
String urlString = interpreter.nextArgument();
if (urlString == null) {
interpreter.println("Repository location must be provided");
return;
}
URI repoURI = toURI(interpreter, urlString);
if (repoURI == null)
return;
ProvisioningHelper.removeMetadataRepository(agent, repoURI);
ProvisioningHelper.removeArtifactRepository(agent, repoURI);
}
/**
* Adds a metadata repository.
*/
public void _provaddmetadatarepo(CommandInterpreter interpreter) {
String urlString = interpreter.nextArgument();
if (urlString == null) {
interpreter.println("Repository location must be provided");
return;
}
URI repoURI = toURI(interpreter, urlString);
if (repoURI == null)
return;
if (ProvisioningHelper.addMetadataRepository(agent, repoURI) == null)
interpreter.println("Unable to add repository: " + repoURI);
}
public void _provdelmetadatarepo(CommandInterpreter interpreter) {
String urlString = interpreter.nextArgument();
if (urlString == null) {
interpreter.println("Repository location must be provided");
return;
}
URI repoURI = toURI(interpreter, urlString);
if (repoURI == null)
return;
ProvisioningHelper.removeMetadataRepository(agent, repoURI);
}
public void _provaddartifactrepo(CommandInterpreter interpreter) {
String urlString = interpreter.nextArgument();
if (urlString == null) {
interpreter.println("Repository location must be provided");
return;
}
URI repoURI = toURI(interpreter, urlString);
if (repoURI == null)
return;
if (ProvisioningHelper.addArtifactRepository(agent, repoURI) == null)
interpreter.println("Unable to add repository " + repoURI);
}
public void _provdelartifactrepo(CommandInterpreter interpreter) {
String urlString = interpreter.nextArgument();
if (urlString == null) {
interpreter.println("Repository location must be provided");
return;
}
URI repoURI = toURI(interpreter, urlString);
if (repoURI == null)
return;
ProvisioningHelper.removeArtifactRepository(agent, repoURI);
}
/**
* Install a given IU to a given profile location.
*/
public void _provinstall(CommandInterpreter interpreter) {
String iu = interpreter.nextArgument();
String version = interpreter.nextArgument();
String profileId = interpreter.nextArgument();
if (profileId == null || profileId.equals("this")) //$NON-NLS-1$
profileId = IProfileRegistry.SELF;
if (iu == null || version == null || profileId == null) {
interpreter.println("Installable unit id, version, and profileid must be provided");
return;
}
IProfile profile = ProvisioningHelper.getProfile(agent, profileId);
if (profile == null) {
if (profileId.equals(IProfileRegistry.SELF)) {
interpreter.println("No profile found");
} else {
interpreter.println("Profile " + profileId + " not found");
}
return;
}
IStatus s = null;
try {
s = ProvisioningHelper.install(agent, iu, version, profile, new NullProgressMonitor());
} catch (ProvisionException e) {
interpreter.println("Installation failed with ProvisionException for " + iu + " " + version);
interpreter.printStackTrace(e);
return;
}
if (s.isOK())
interpreter.println("Installation complete for " + iu + " " + version);
else {
interpreter.println("Installation failed for " + iu + " " + version);
interpreter.println(flattenStatus(s.getChildren(), " "));
}
}
private String flattenStatus(IStatus[] childs, String indent) {
StringBuffer sb = new StringBuffer();
for (int i = 0; (childs != null) && (i < childs.length); i++) {
sb.append(indent).append(childs[i].getMessage()).append(NEW_LINE);
sb.append(flattenStatus(childs[i].getChildren(), indent + " "));
}
return sb.toString();
}
/**
* Creates a profile given an id, location, and flavor
*/
public void _provaddprofile(CommandInterpreter interpreter) {
String profileId = interpreter.nextArgument();
String location = interpreter.nextArgument();
String flavor = interpreter.nextArgument();
if (profileId == null || location == null || flavor == null) {
interpreter.println("Id, location, and flavor must be provided");
return;
}
String environments = interpreter.nextArgument();
Map<String, String> props = new HashMap<String, String>();
props.put(IProfile.PROP_INSTALL_FOLDER, location);
if (environments != null)
props.put(IProfile.PROP_ENVIRONMENTS, environments);
try {
ProvisioningHelper.addProfile(agent, profileId, props);
} catch (ProvisionException e) {
interpreter.println("Add profile failed. " + e.getMessage());
interpreter.printStackTrace(e);
}
}
/**
* Deletes a profile given an id, location, and flavor
*/
public void _provdelprofile(CommandInterpreter interpreter) {
String profileId = interpreter.nextArgument();
if (profileId == null) {
interpreter.println("profileid must be provided");
return;
}
ProvisioningHelper.removeProfile(agent, profileId);
}
/**
* Lists the installable units that match the given URL, id, and/or version.
*
* @param interpreter
*/
public void _provliu(CommandInterpreter interpreter) {
String urlString = processArgument(interpreter.nextArgument());
String id = processArgument(interpreter.nextArgument());
String version = processArgument(interpreter.nextArgument());
URI repoURL = null;
if (urlString != null && !urlString.equals(WILDCARD_ANY))
repoURL = toURI(interpreter, urlString);
IInstallableUnit[] units = sort(ProvisioningHelper.getInstallableUnits(agent, repoURL, QueryUtil.createIUQuery(id, new VersionRange(version)), null));
for (int i = 0; i < units.length; i++)
println(interpreter, units[i]);
}
/**
* Lists the installable units that match the given URL and query. A third
* boolean argument can be provided where <code>true</code> means &quot;full query&quot;
* and <code>false</code> means &quote;match query&quote;. The default is <code>false</code>.
*
* @param interpreter
*/
public void _provlquery(CommandInterpreter interpreter) {
String urlString = processArgument(interpreter.nextArgument());
String expression = processArgument(interpreter.nextArgument());
if (expression == null) {
interpreter.println("Please enter a query");
return;
}
boolean useFull = Boolean.valueOf(processArgument(interpreter.nextArgument())).booleanValue();
URI repoURL = null;
if (urlString != null && !urlString.equals(WILDCARD_ANY))
repoURL = toURI(interpreter, urlString);
IQuery<IInstallableUnit> query = useFull ? QueryUtil.createQuery(expression) : QueryUtil.createMatchQuery(expression);
IInstallableUnit[] units = sort(ProvisioningHelper.getInstallableUnits(agent, repoURL, query, null));
// Now print out results
if (units.length == 0)
interpreter.println("No units found");
else {
for (int i = 0; i < units.length; i++)
println(interpreter, units[i]);
}
}
/**
* Lists the known metadata repositories, or the contents of a given
* metadata repository.
*
* @param interpreter
*/
public void _provlr(CommandInterpreter interpreter) {
String urlString = processArgument(interpreter.nextArgument());
String id = processArgument(interpreter.nextArgument());
String version = processArgument(interpreter.nextArgument());
if (urlString == null) {
URI[] repositories = ProvisioningHelper.getMetadataRepositories(agent);
if (repositories != null)
for (int i = 0; i < repositories.length; i++)
interpreter.println(repositories[i]);
return;
}
URI repoLocation = toURI(interpreter, urlString);
if (repoLocation == null)
return;
IInstallableUnit[] units = sort(ProvisioningHelper.getInstallableUnits(agent, repoLocation, QueryUtil.createIUQuery(id, new VersionRange(version)), null));
for (int i = 0; i < units.length; i++)
println(interpreter, units[i]);
}
/**
* Lists the group IUs in all known metadata repositories, or in the given
* metadata repository.
*
* @param interpreter
*/
public void _provlg(CommandInterpreter interpreter) {
String urlString = processArgument(interpreter.nextArgument());
IQueryable<IInstallableUnit> queryable = null;
if (urlString == null) {
queryable = (IMetadataRepositoryManager) agent.getService(IMetadataRepositoryManager.SERVICE_NAME);
if (queryable == null)
return;
} else {
URI repoURL = toURI(interpreter, urlString);
if (repoURL == null)
return;
queryable = ProvisioningHelper.getMetadataRepository(agent, repoURL);
if (queryable == null)
return;
}
IInstallableUnit[] units = sort(queryable.query(QueryUtil.createIUGroupQuery(), null));
for (int i = 0; i < units.length; i++)
println(interpreter, units[i]);
}
/**
* Lists the known artifact repositories, or the contents of a given
* artifact repository.
*
* @param interpreter
*/
public void _provlar(CommandInterpreter interpreter) {
String urlString = processArgument(interpreter.nextArgument());
if (urlString == null) {
URI[] repositories = ProvisioningHelper.getArtifactRepositories(agent);
if (repositories == null)
return;
for (int i = 0; i < repositories.length; i++)
interpreter.println(repositories[i]);
return;
}
URI repoURL = toURI(interpreter, urlString);
if (repoURL == null)
return;
IArtifactRepository repo = ProvisioningHelper.getArtifactRepository(agent, repoURL);
IQueryResult<IArtifactKey> keys = null;
try {
keys = (repo != null) ? repo.query(ArtifactKeyQuery.ALL_KEYS, null) : null;
} catch (UnsupportedOperationException e) {
interpreter.println("Repository does not support queries.");
return;
}
if (keys == null || keys.isEmpty()) {
interpreter.println("Repository has no artifacts");
return;
}
IFileArtifactRepository fileRepo = (IFileArtifactRepository) repo.getAdapter(IFileArtifactRepository.class);
for (Iterator<IArtifactKey> iterator = keys.iterator(); iterator.hasNext();) {
IArtifactKey key = iterator.next();
IArtifactDescriptor[] descriptors = repo.getArtifactDescriptors(key);
for (int j = 0; j < descriptors.length; j++) {
IArtifactDescriptor descriptor = descriptors[j];
File location = null;
if (fileRepo != null)
location = fileRepo.getArtifactFile(descriptor);
println(interpreter, key, location);
}
}
}
/**
* Returns the given string as an URL, or <code>null</code> if the string
* could not be interpreted as an URL.
*/
private URI toURI(CommandInterpreter interpreter, String urlString) {
try {
return new URI(urlString);
} catch (URISyntaxException e) {
interpreter.print(e.getMessage());
interpreter.println();
return null;
}
}
private String processArgument(String arg) {
if (arg == null || arg.equals(WILDCARD_ANY))
return null;
return arg;
}
/**
* Lists the known profiles, or the contents of a given profile.
*
* @param interpreter
*/
public void _provlp(CommandInterpreter interpreter) {
String profileId = processArgument(interpreter.nextArgument());
String id = processArgument(interpreter.nextArgument());
String range = processArgument(interpreter.nextArgument());
if (profileId == null) {
IProfile[] profiles = ProvisioningHelper.getProfiles(agent);
if (profiles == null) {
interpreter.println("No profile found");
return;
}
for (int i = 0; i < profiles.length; i++)
interpreter.println(profiles[i].getProfileId());
return;
}
// determine which profile is to be listed
IProfile target = null;
if (profileId.equals("this")) //$NON-NLS-1$
profileId = IProfileRegistry.SELF;
target = ProvisioningHelper.getProfile(agent, profileId);
if (target == null) {
if (profileId.equals(IProfileRegistry.SELF)) {
interpreter.println("No profile found");
} else {
interpreter.println("Profile " + profileId + " not found");
}
return;
}
// list the profile contents
IInstallableUnit[] result = sort(target.query(QueryUtil.createIUQuery(id, new VersionRange(range)), null));
for (int i = 0; i < result.length; i++)
interpreter.println(result[i]);
}
/**
* Lists the profile timestamps for a given profile id, if no profile id, the default profile
* is used.
*
* @param interpreter
*/
public void _provlpts(CommandInterpreter interpreter) {
String profileId = processArgument(interpreter.nextArgument());
if (profileId == null || profileId.equals("this")) { //$NON-NLS-1$
profileId = IProfileRegistry.SELF;
}
long[] profileTimestamps = ProvisioningHelper.getProfileTimestamps(agent, profileId);
// if no profile timestamps for given id, print that out and done
if (profileTimestamps == null || profileTimestamps.length == 0) {
if (profileId.equals(IProfileRegistry.SELF)) {
interpreter.println("No profile found");
} else {
interpreter.print("No timestamps found for profile ");
interpreter.println(profileId);
}
return;
}
// else if there are some timestamps then print them out on separate line
interpreter.print("Timestamps for profile ");
interpreter.println(profileId);
for (int i = 0; i < profileTimestamps.length; i++) {
interpreter.print("\t"); //$NON-NLS-1$
interpreter.println(new Long(profileTimestamps[i]));
}
}
/**
* Revert a profile to a given timestamp
*/
public void _provrevert(CommandInterpreter interpreter) {
String timestamp = interpreter.nextArgument();
if (timestamp == null) {
interpreter.println("Valid timestamp must be provided. Timestamps can be retrieved via 'provlpts' command.");
return;
}
Long ts = null;
try {
ts = new Long(timestamp);
} catch (NumberFormatException e) {
interpreter.println("Timestamp " + timestamp + " not valid. Timestamps can be retrieved via 'provlpts' command.");
return;
}
String profileId = interpreter.nextArgument();
if (profileId == null || profileId.equals("this"))
profileId = IProfileRegistry.SELF;
IProfile profile = ProvisioningHelper.getProfile(agent, profileId);
if (profile == null) {
if (profileId.equals(IProfileRegistry.SELF)) {
interpreter.println("No profile found");
} else {
interpreter.println("Profile " + profileId + " not found");
}
return;
}
IStatus s = null;
try {
s = ProvisioningHelper.revertToPreviousState(agent, profile, ts.longValue());
} catch (ProvisionException e) {
interpreter.println("revert failed ");
interpreter.printStackTrace(e);
return;
}
if (s.isOK())
interpreter.println("revert completed");
else {
interpreter.println("revert failed ");
printErrorStatus(interpreter, s);
}
}
private IInstallableUnit[] sort(IQueryResult<IInstallableUnit> queryResult) {
IInstallableUnit[] units = queryResult.toArray(IInstallableUnit.class);
Arrays.sort(units, new Comparator<IInstallableUnit>() {
public int compare(IInstallableUnit arg0, IInstallableUnit arg1) {
return arg0.toString().compareTo(arg1.toString());
}
});
return units;
}
public void _provlgp(CommandInterpreter interpreter) {
String profileId = processArgument(interpreter.nextArgument());
if (profileId == null || profileId.equals("this")) {
profileId = IProfileRegistry.SELF;
}
IProfile profile = ProvisioningHelper.getProfile(agent, profileId);
if (profile == null) {
if (profileId.equals(IProfileRegistry.SELF)) {
interpreter.println("No profile found");
} else {
interpreter.println("Profile " + profileId + " not found");
}
return;
}
IInstallableUnit[] units = sort(profile.query(QueryUtil.createIUGroupQuery(), new NullProgressMonitor()));
// Now print out results
for (int i = 0; i < units.length; i++)
println(interpreter, units[i]);
}
/**
* Lists the installable units that match the given profile id and query. The id can be
* &quot;this&quot; to denote the self profile. A third boolean argument can be provided
* where <code>true</code> means &quot;full query&quot; and <code>false</code> means
* &quote;match query&quote;. The default is <code>false</code>.
*
* @param interpreter
*/
public void _provlpquery(CommandInterpreter interpreter) {
String profileId = processArgument(interpreter.nextArgument());
if (profileId == null || profileId.equals("this")) {
profileId = IProfileRegistry.SELF;
}
String expression = processArgument(interpreter.nextArgument());
if (expression == null) {
interpreter.println("Please enter a query");
return;
}
boolean useFull = Boolean.valueOf(processArgument(interpreter.nextArgument())).booleanValue();
IQuery<IInstallableUnit> query = useFull ? QueryUtil.createQuery(expression) : QueryUtil.createMatchQuery(expression);
IProfile profile = ProvisioningHelper.getProfile(agent, profileId);
if (profile == null) {
if (profileId.equals(IProfileRegistry.SELF)) {
interpreter.println("No profile found");
} else {
interpreter.println("Profile " + profileId + " not found");
}
return;
}
IInstallableUnit[] units = sort(profile.query(query, new NullProgressMonitor()));
// Now print out results
if (units.length == 0)
interpreter.println("No units found");
else {
for (int i = 0; i < units.length; i++)
println(interpreter, units[i]);
}
}
public void _provremove(CommandInterpreter interpreter) {
String iu = interpreter.nextArgument();
String version = interpreter.nextArgument();
String profileId = interpreter.nextArgument();
if (profileId == null || profileId.equals("this"))
profileId = IProfileRegistry.SELF;
if (version == null) {
version = Version.emptyVersion.toString();
}
if (iu == null) {
interpreter.println("Installable unit id must be provided");
return;
}
IProfile profile = ProvisioningHelper.getProfile(agent, profileId);
if (profile == null) {
if (profileId.equals(IProfileRegistry.SELF)) {
interpreter.println("No profile found");
} else {
interpreter.println("Profile " + profileId + " not found");
}
return;
}
IStatus s = null;
try {
s = ProvisioningHelper.uninstall(agent, iu, version, profile, new NullProgressMonitor());
} catch (ProvisionException e) {
interpreter.println("Remove failed with ProvisionException for " + iu + " " + version);
interpreter.printStackTrace(e);
return;
}
if (s.isOK())
interpreter.println("Remove complete for " + iu + " " + version);
else {
interpreter.println("Remove failed for " + iu + " " + version);
printErrorStatus(interpreter, s);
}
}
private void printErrorStatus(CommandInterpreter interpreter, IStatus status) {
interpreter.print("--Error status ");
interpreter.print("message=" + status.getMessage());
interpreter.print(",code=" + status.getCode());
String severityString = null;
switch (status.getSeverity()) {
case IStatus.INFO :
severityString = "INFO";
break;
case IStatus.CANCEL :
severityString = "CANCEL";
break;
case IStatus.WARNING :
severityString = "WARNING";
break;
case IStatus.ERROR :
severityString = "ERROR";
break;
}
interpreter.print(",severity=" + severityString);
interpreter.print(",bundle=" + status.getPlugin());
interpreter.println("--");
Throwable t = status.getException();
if (t != null)
interpreter.printStackTrace(t);
IStatus[] children = status.getChildren();
if (children != null && children.length > 0) {
interpreter.println("Error status children:");
for (int i = 0; i < children.length; i++) {
printErrorStatus(interpreter, children[i]);
}
}
interpreter.println("--End Error Status--");
}
public String getHelp() {
StringBuffer help = new StringBuffer();
help.append(NEW_LINE);
help.append("---");
help.append("P2 Provisioning Commands");
help.append("---");
help.append(NEW_LINE);
help.append("---");
help.append("Repository Commands");
help.append("---");
help.append(NEW_LINE);
help.append("\tprovaddrepo <repository URI> - Adds a both a metadata and artifact repository at URI");
help.append(NEW_LINE);
help.append("\tprovdelrepo <repository URI> - Deletes a metadata and artifact repository at URI");
help.append(NEW_LINE);
help.append("\tprovaddmetadatarepo <repository URI> - Adds a metadata repository at URI");
help.append(NEW_LINE);
help.append("\tprovdelmetadatarepo <repository URI> - Deletes a metadata repository at URI");
help.append(NEW_LINE);
help.append("\tprovaddartifactrepo <repository URI> - Adds an artifact repository at URI");
help.append(NEW_LINE);
help.append("\tprovdelartifactrepo <repository URI> - Deletes an artifact repository URI");
help.append(NEW_LINE);
help.append("\tprovlg [<repository URI> <iu id | *> <version range | *>] - Lists all IUs with group capabilities in the given repo or in all repos if URI is omitted");
help.append(NEW_LINE);
help.append("\tprovlr [<repository URI> <iu id | *> <version range | *>] - Lists all metadata repositories, or the contents of a given metadata repository");
help.append(NEW_LINE);
help.append("\tprovlar [<repository URI>] - Lists all artifact repositories, or the contents of a given artifact repository");
help.append(NEW_LINE);
help.append("\tprovliu [<repository URI | *> <iu id | *> <version range | *>] - Lists the IUs that match the pattern in the given repo. * matches all");
help.append(NEW_LINE);
help.append("\tprovlquery <repository URI | *> <expression> [ true | false ] - Lists the IUs that match the query expression in the given repo. * matches all. The expression is expected to be a boolean match expression unless the third argument is true, in which case the expression is a full query");
help.append(NEW_LINE);
help.append("---");
help.append("Profile Registry Commands");
help.append("---");
help.append(NEW_LINE);
help.append("\tprovaddprofile <profileid> <location> <flavor> - Adds a profile with the given profileid, location and flavor");
help.append(NEW_LINE);
help.append("\tprovdelprofile <profileid> - Deletes a profile with the given profileid");
help.append(NEW_LINE);
help.append("\tprovlp [<profileid | *>] - Lists all profiles, or the contents of the profile at the given profile");
help.append(NEW_LINE);
help.append("\tprovlgp [<profileid>] - Lists all IUs with group capabilities in the given profile, or current profile if profileid is omitted");
help.append(NEW_LINE);
help.append("\tprovlpts [<profileid>] - Lists timestamps for given profile, or if no profileid given then the default profile timestamps are reported");
help.append(NEW_LINE);
help.append("\tprovlpquery <profileid | this> <expression> [ true | false ] - Lists the IUs that match the query expression in the given profile. The expression is expected to be a boolean match expression unless the third argument is true, in which case the expression is a full query");
help.append(NEW_LINE);
help.append("---");
help.append("Install Commands");
help.append("---");
help.append(NEW_LINE);
help.append("\tprovinstall <InstallableUnit> <version> <profileid> - installs an IU to the profileid. If no profileid is given, installs into default profile.");
help.append(NEW_LINE);
help.append("\tprovremove <InstallableUnit> <version> <profileid> - Removes an IU from the profileid. If no profileid is given, installs into default profile.");
help.append(NEW_LINE);
help.append("\tprovrevert <profileTimestamp> <profileid>] - Reverts to a given profileTimestamp for an optional profileId");
help.append(NEW_LINE);
return help.toString();
}
/**
* Prints a string representation of an {@link IInstallableUnit} to the
* iterpreter's output stream.
*/
public void print(CommandInterpreter interpreter, IInstallableUnit unit) {
interpreter.print(unit.getId() + ' ' + unit.getVersion());
}
/**
* Prints a string representation of an {@link IInstallableUnit} to the
* iterpreter's output stream, following by a line terminator
*/
public void println(CommandInterpreter interpreter, IInstallableUnit unit) {
print(interpreter, unit);
interpreter.println();
}
private void println(CommandInterpreter interpreter, IArtifactKey artifactKey, File location) {
interpreter.print(artifactKey.toString() + ' ' + location);
interpreter.println();
}
}