use of org.eclipse.tycho.model.FeatureRef in project tycho by eclipse.
the class AbstractArtifactDependencyWalker method traverseProduct.
protected void traverseProduct(ProductConfiguration product, ArtifactDependencyVisitor visitor, WalkbackPath visited) {
if (product.useFeatures()) {
for (FeatureRef ref : product.getFeatures()) {
traverseFeature(ref, visitor, visited);
}
} else {
for (PluginRef ref : product.getPlugins()) {
traversePlugin(ref, visitor, visited);
}
}
Set<String> bundles = new HashSet<>();
for (ArtifactDescriptor artifact : visited.getVisited()) {
ArtifactKey key = artifact.getKey();
if (ArtifactType.TYPE_ECLIPSE_PLUGIN.equals(key.getType())) {
bundles.add(key.getId());
}
}
if (environments != null && product.includeLaunchers()) {
for (TargetEnvironment environment : environments) {
String os = environment.getOs();
String ws = environment.getWs();
String arch = environment.getArch();
String id;
// see http://jira.codehaus.org/browse/MNGECLIPSE-1075
if (PlatformPropertiesUtils.OS_MACOSX.equals(os) && (PlatformPropertiesUtils.ARCH_X86.equals(arch) || PlatformPropertiesUtils.ARCH_PPC.equals(arch))) {
id = "org.eclipse.equinox.launcher." + ws + "." + os;
} else {
id = "org.eclipse.equinox.launcher." + ws + "." + os + "." + arch;
}
if (!bundles.contains(id)) {
PluginRef ref = new PluginRef("plugin");
ref.setId(id);
ref.setOs(os);
ref.setWs(ws);
ref.setArch(arch);
ref.setUnpack(true);
traversePlugin(ref, visitor, visited);
}
}
}
}
use of org.eclipse.tycho.model.FeatureRef in project tycho by eclipse.
the class GeneratePomsMojo method getFeatureFeaturesAndPlugins.
private Set<File> getFeatureFeaturesAndPlugins(File basedir) throws MojoExecutionException {
try {
Set<File> result = new LinkedHashSet<>();
Feature feature = Feature.read(new File(basedir, "feature.xml"));
for (PluginRef plugin : feature.getPlugins()) {
addPlugin(result, plugin.getId());
}
for (FeatureRef includedFeature : feature.getIncludedFeatures()) {
addFeature(result, includedFeature.getId());
}
for (Feature.RequiresRef require : feature.getRequires()) {
for (Feature.ImportRef imp : require.getImports()) {
addPlugin(result, imp.getPlugin());
addFeature(result, imp.getFeature());
}
}
return result;
} catch (IOException e) {
throw new MojoExecutionException("Exception processing feature " + toString(basedir), e);
} catch (XmlPullParserException e) {
throw new MojoExecutionException("Exception processing feature " + toString(basedir), e);
}
}
use of org.eclipse.tycho.model.FeatureRef in project tycho by eclipse.
the class UpdateSiteMojo method execute.
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
target.mkdirs();
try {
// remove content collected in former builds.
// Even without clean goal the build result must not assembly out dated content
FileUtils.cleanDirectory(target);
} catch (IOException e) {
throw new MojoFailureException("Unable to delete old update site content: " + target.getAbsolutePath(), e);
}
try {
UpdateSite site = UpdateSite.read(new File(basedir, UpdateSite.SITE_XML));
UpdateSiteAssembler assembler = new UpdateSiteAssembler(session, target);
if (inlineArchives) {
assembler.setArchives(site.getArchives());
}
getDependencyWalker().walk(assembler);
getDependencyWalker().traverseUpdateSite(site, new ArtifactDependencyVisitor() {
@Override
public boolean visitFeature(FeatureDescription feature) {
FeatureRef featureRef = feature.getFeatureRef();
String id = featureRef.getId();
ReactorProject otherProject = feature.getMavenProject();
String version;
if (otherProject != null) {
version = otherProject.getExpandedVersion();
} else {
version = feature.getKey().getVersion();
}
String url = UpdateSiteAssembler.FEATURES_DIR + id + "_" + version + ".jar";
((SiteFeatureRef) featureRef).setUrl(url);
featureRef.setVersion(version);
// don't traverse included features
return false;
}
});
if (inlineArchives) {
site.removeArchives();
}
File file = new File(target, "site.xml");
UpdateSite.write(site, file);
// Copy the associate sites file, if necessary
if (site.getAssociateSitesUrl() != null) {
File srcAssociateSitesFile = new File(basedir, site.getAssociateSitesUrl());
if (srcAssociateSitesFile.exists()) {
FileUtils.copyFile(srcAssociateSitesFile, new File(target + File.separator + site.getAssociateSitesUrl()));
}
}
} catch (Exception e) {
throw new MojoExecutionException(e.getMessage(), e);
}
}
use of org.eclipse.tycho.model.FeatureRef in project tycho by eclipse.
the class EclipseRepositoryProject method newDependencyWalker.
@Override
protected ArtifactDependencyWalker newDependencyWalker(MavenProject project, TargetEnvironment environment) {
final List<ProductConfiguration> products = loadProducts(project);
final List<Category> categories = loadCategories(project);
return new AbstractArtifactDependencyWalker(getDependencyArtifacts(project, environment), getEnvironments(project, environment)) {
@Override
public void walk(ArtifactDependencyVisitor visitor) {
WalkbackPath visited = new WalkbackPath();
for (ProductConfiguration product : products) {
traverseProduct(product, visitor, visited);
}
for (Category category : categories) {
for (FeatureRef feature : category.getFeatures()) {
traverseFeature(feature, visitor, visited);
}
}
}
};
}
use of org.eclipse.tycho.model.FeatureRef in project tycho by eclipse.
the class SiteXmlManipulator method applyChanges.
@Override
public void applyChanges(ProjectMetadata project, VersionChangesDescriptor versionChangeContext) {
if (isSite(project)) {
for (PomVersionChange change : versionChangeContext.getVersionChanges()) {
if (isFeature(change.getProject().getPackaging())) {
UpdateSite site = getSiteXml(project);
for (FeatureRef feature : site.getFeatures()) {
if (change.getArtifactId().equals(feature.getId()) && change.getVersion().equals(feature.getVersion())) {
logger.info(" site.xml//site/feature/@id=" + feature.getId() + "/@version: " + change.getVersion() + " => " + change.getNewVersion());
feature.setVersion(change.getNewVersion());
SiteFeatureRef siteFeature = (SiteFeatureRef) feature;
String oldUrl = siteFeature.getUrl();
String newUrl = rewriteFeatureUrl(oldUrl, change);
logger.info(" site.xml//site/feature/@id=" + feature.getId() + "/@url: " + oldUrl + " => " + newUrl);
siteFeature.setUrl(newUrl);
}
}
}
}
}
}
Aggregations