-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a timestamp provider that inherits the timestamp from the parent
In some special setups (e.g. if fragment version should always match host version) it could be useful to inherit the build timestamp from the fragemnt host. This adds a new timestamp provider to allow this use-case by specify <timestampProvider>fragment-host</timestampProvider>. (cherry picked from commit 5a981ee)
- Loading branch information
1 parent
a8b58f9
commit 25519c4
Showing
6 changed files
with
265 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
...ugin/src/main/java/org/eclipse/tycho/buildversion/FragmentHostBuildTimestampProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 20024 Christoph Läubrich and others. | ||
* This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License 2.0 | ||
* which accompanies this distribution, and is available at | ||
* https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Christoph Läubrich - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.tycho.buildversion; | ||
|
||
import java.text.SimpleDateFormat; | ||
import java.util.Date; | ||
import java.util.Optional; | ||
|
||
import org.apache.maven.execution.MavenSession; | ||
import org.apache.maven.plugin.MojoExecution; | ||
import org.apache.maven.project.MavenProject; | ||
import org.codehaus.plexus.component.annotations.Component; | ||
import org.codehaus.plexus.component.annotations.Requirement; | ||
import org.codehaus.plexus.logging.Logger; | ||
import org.eclipse.osgi.util.ManifestElement; | ||
import org.eclipse.tycho.ArtifactDescriptor; | ||
import org.eclipse.tycho.ArtifactType; | ||
import org.eclipse.tycho.DependencyArtifacts; | ||
import org.eclipse.tycho.build.BuildTimestampProvider; | ||
import org.eclipse.tycho.core.BundleProject; | ||
import org.eclipse.tycho.core.TychoProject; | ||
import org.eclipse.tycho.core.TychoProjectManager; | ||
import org.eclipse.tycho.helper.PluginConfigurationHelper; | ||
import org.eclipse.tycho.helper.PluginConfigurationHelper.Configuration; | ||
import org.osgi.framework.Constants; | ||
|
||
/** | ||
* Build timestamp provider that inherits the timestamp of the fragment host | ||
*/ | ||
@Component(role = BuildTimestampProvider.class, hint = FragmentHostBuildTimestampProvider.ROLE_HINT) | ||
public class FragmentHostBuildTimestampProvider implements BuildTimestampProvider { | ||
|
||
static final String ROLE_HINT = "fragment-host"; | ||
|
||
@Requirement | ||
private TychoProjectManager projectManager; | ||
|
||
@Requirement | ||
private Logger logger; | ||
|
||
@Requirement | ||
private TimestampFinder timestampFinder; | ||
|
||
@Requirement | ||
private PluginConfigurationHelper configurationHelper; | ||
|
||
@Override | ||
public Date getTimestamp(MavenSession session, MavenProject project, MojoExecution execution) { | ||
Optional<TychoProject> tychoProject = projectManager.getTychoProject(project); | ||
Exception exception = null; | ||
if (tychoProject.isPresent()) { | ||
if (tychoProject.get() instanceof BundleProject bundle) { | ||
String fragmentHost = bundle.getManifestValue(Constants.FRAGMENT_HOST, project); | ||
if (fragmentHost != null) { | ||
try { | ||
ManifestElement[] header = ManifestElement.parseHeader(Constants.FRAGMENT_HOST, fragmentHost); | ||
for (ManifestElement element : header) { | ||
DependencyArtifacts dependencyArtifacts = projectManager.getDependencyArtifacts(project) | ||
.get(); | ||
ArtifactDescriptor descriptor = dependencyArtifacts.getArtifact( | ||
ArtifactType.TYPE_ECLIPSE_PLUGIN, element.getValue(), | ||
element.getAttribute(Constants.BUNDLE_VERSION_ATTRIBUTE)); | ||
if (descriptor != null) { | ||
|
||
Configuration configuration = configurationHelper.getConfiguration(); | ||
Optional<String> formatString = configuration | ||
.getString(BuildQualifierMojo.PARAMETER_FORMAT); | ||
SimpleDateFormat format = formatString.map(SimpleDateFormat::new) | ||
.orElseGet(() -> new SimpleDateFormat(BuildQualifierMojo.DEFAULT_DATE_FORMAT)); | ||
Date date = timestampFinder.findByDescriptor(descriptor, format); | ||
if (date != null) { | ||
return date; | ||
} | ||
} | ||
} | ||
} catch (Exception e) { | ||
exception = e; | ||
} | ||
} | ||
} | ||
} | ||
logger.warn("Can't determine fragment host, fallback to default.", exception); | ||
return session.getStartTime(); | ||
} | ||
|
||
@Override | ||
public void setQuiet(boolean quiet) { | ||
|
||
} | ||
} |
Oops, something went wrong.