Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ref #590 Add Bundle-Name and Bundle-SymbolicName to wrapped bundles #591

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions features/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
<goals>
<goal>auto-detect-version</goal>
<goal>ensure-wrap-bundle-version</goal>
<goal>ensure-wrap-bundle-name</goal>
<goal>configure-wrap-spi-provider</goal>
</goals>
<configuration>
Expand Down
2 changes: 1 addition & 1 deletion features/src/main/feature/camel-features.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1128,7 +1128,7 @@
<feature version='${camel-osgi-version-range}'>camel-core</feature>
<bundle dependency='true'>wrap:mvn:com.alibaba/fastjson/${fastjson-version}</bundle>
<bundle dependency='true'>wrap:mvn:com.alibaba.fastjson2/fastjson2/${auto-detect-version}</bundle>
<bundle dependency='true'>wrap:mvn:com.alibaba.fastjson2/fastjson2-extension/${auto-detect-version}</bundle>
<bundle dependency='true'>wrap:mvn:com.alibaba.fastjson2/fastjson2-extension/${auto-detect-version}$Fragment-Host=wrap_com.alibaba.fastjson2.fastjson2</bundle>
<bundle>mvn:org.apache.camel.karaf/camel-fastjson/${project.version}</bundle>
</feature>
<feature name='camel-fhir' version='${project.version}' start-level='50'>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.karaf.feature.maven;

import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;

import org.apache.karaf.features.internal.model.Bundle;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;

@Mojo(name = "ensure-wrap-bundle-name", defaultPhase = LifecyclePhase.PROCESS_RESOURCES)
public class EnsureWrapBundleNameMojo extends AbstractWrapBundleMojo {

private static final List<String> HEADERS_AFTER_BUNDLE_NAME = Arrays.asList(
"Bundle-Version",
"DynamicImport-Package",
"Export-Package",
"Export-Service",
"Fragment-Host",
"Import-Package",
"Import-Service",
"Provide-Capability",
"Require-Bundle",
"Require-Capability");

private static final String BUNDLE_NAME = "Bundle-Name";
private static final String BUNDLE_SYMBOLIC_NAME = "Bundle-SymbolicName";

private static String toPascalCase(String kebabCase) {
// Handle null or empty string
if (kebabCase == null || kebabCase.isEmpty()) {
return kebabCase;
}

// Split by hyphen
String[] words = kebabCase.split("-");
StringBuilder result = new StringBuilder();

// Capitalize first letter of each word
for (int i = 0; i < words.length; i++) {
String word = words[i];
if (word.isEmpty()) {
continue;
}
result.append(Character.toUpperCase(word.charAt(0)));
if (word.length() > 1) {
result.append(word.substring(1).toLowerCase());
}
// Only add %20 if it's not the last word
if (i < words.length - 1) {
result.append("%20");
}
}
return result.toString();
}

@Override
protected boolean processWrappedBundle(WrappedBundle wrappedBundle) {
Bundle bundle = wrappedBundle.getBundle();
String location = bundle.getLocation();
try {
bundle.setLocation(processLocation(wrappedBundle));
} catch (Exception e) {
getLog().error("Could not process the Bundle location '%s': %s".formatted(location, e.getMessage()), e);
}
return false;
}

String processLocation(WrappedBundle wrappedBundle) throws Exception {
String location = wrappedBundle.getBundle().getLocation();
String instructions = wrappedBundle.getInstructions();
boolean dollarNeeded = instructions == null || !instructions.contains("$");

String bundleNameHeader = "%s=Wrap%%20of%%20%s".formatted(BUNDLE_NAME, toPascalCase(wrappedBundle.getArtifactId()));
String bundleSymbolicNameHeader = "%s=wrap_%s.%s".formatted(BUNDLE_SYMBOLIC_NAME, wrappedBundle.getGroupId(), wrappedBundle.getArtifactId());
Map<String, String> headers = new TreeMap<>(); //sorted by key
headers.put(BUNDLE_NAME, bundleNameHeader);
headers.put(BUNDLE_SYMBOLIC_NAME, bundleSymbolicNameHeader);

return insertHeaderIfNeeded(dollarNeeded, location, headers);
}


private String insertHeaderIfNeeded(boolean dollarNeeded, String location, Map<String, String> headers) {

StringBuilder sb = new StringBuilder(location);
for (Map.Entry<String, String> entry : headers.entrySet()) {
if (location.contains(entry.getKey())) {
continue;
}
boolean hasChanged = false;
// insert before existing headers header
for (String header : HEADERS_AFTER_BUNDLE_NAME) {
// add Bundle-Version before
if (location.contains(header)) {
int versionHeaderStartIndex = location.indexOf(header);
if (dollarNeeded) {
// "amp;" is automatically added
dollarNeeded = false;
location = sb.insert(versionHeaderStartIndex, "$%s&".formatted(entry.getValue())).toString();
} else {
// "amp;" is automatically added
location = sb.insert(versionHeaderStartIndex, "%s&".formatted(entry.getValue())).toString();
}
hasChanged = true;
break;
}
}
if (hasChanged) {
//header already handled, go to next
continue;
}

// insert at the end
if (dollarNeeded) {
dollarNeeded = false;
location = sb.insert(location.length(), "$%s".formatted(entry.getValue())).toString();
} else {
// "amp;" is automatically added
location = sb.insert(location.length(), "&%s".formatted(entry.getValue())).toString();
}
}
return location;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.karaf.feature.maven;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;

import org.apache.karaf.features.internal.model.Bundle;
import org.junit.jupiter.api.Test;

public class EnsureWrapBundleNameMojoTest {

private final EnsureWrapBundleNameMojo ensureNameMojo = new EnsureWrapBundleNameMojo();

@Test
void modifyLocationTest() throws Exception {
Bundle bundle = new Bundle();
// add bundle name at the end as first wrap protocol option
bundle.setLocation("wrap:mvn:org.apache.olingo/odata-server-core/5.0.0");
String expected = "wrap:mvn:org.apache.olingo/odata-server-core/5.0.0$Bundle-Name=Wrap%20of%20Odata%20Server%20Core&Bundle-SymbolicName=wrap_org.apache.olingo.odata-server-core";
WrappedBundle wrappedBundle = WrappedBundle.fromBundle(bundle);
assertNotNull(wrappedBundle);
assertEquals(expected, ensureNameMojo.processLocation(wrappedBundle));

// add bundle name at the end but not as first wrap protocol option
bundle.setLocation("wrap:mvn:org.apache.olingo/odata-server-core/5.0.0$overwrite=merge");
expected = "wrap:mvn:org.apache.olingo/odata-server-core/5.0.0$overwrite=merge&Bundle-Name=Wrap%20of%20Odata%20Server%20Core&Bundle-SymbolicName=wrap_org.apache.olingo.odata-server-core";
wrappedBundle = WrappedBundle.fromBundle(bundle);
assertNotNull(wrappedBundle);
assertEquals(expected, ensureNameMojo.processLocation(wrappedBundle));

// add bundle name before existing wrap protocol header that should be declared after
bundle.setLocation("wrap:mvn:org.apache.olingo/odata-server-core/5.0.0$overwrite=merge&Export-Package=org.apache.olingo.*;version=5.0.0");
expected = "wrap:mvn:org.apache.olingo/odata-server-core/5.0.0$overwrite=merge&Bundle-Name=Wrap%20of%20Odata%20Server%20Core&Bundle-SymbolicName=wrap_org.apache.olingo.odata-server-core&Export-Package=org.apache.olingo.*;version=5.0.0";
wrappedBundle = WrappedBundle.fromBundle(bundle);
assertNotNull(wrappedBundle);
assertEquals(expected, ensureNameMojo.processLocation(wrappedBundle));

// add bundle name before existing wrap protocol header that should be declared after
bundle.setLocation("wrap:mvn:org.apache.olingo/odata-server-core/5.0.0$overwrite=merge&Bundle-Version=5.0.0&Export-Package=org.apache.olingo.*;version=5.0.0");
expected = "wrap:mvn:org.apache.olingo/odata-server-core/5.0.0$overwrite=merge&Bundle-Name=Wrap%20of%20Odata%20Server%20Core&Bundle-SymbolicName=wrap_org.apache.olingo.odata-server-core&Bundle-Version=5.0.0&Export-Package=org.apache.olingo.*;version=5.0.0";
wrappedBundle = WrappedBundle.fromBundle(bundle);
assertNotNull(wrappedBundle);
assertEquals(expected, ensureNameMojo.processLocation(wrappedBundle));

// don't override the Bundle-Name if present
bundle.setLocation("wrap:mvn:org.apache.olingo/odata-server-core/5.0.0$Bundle-Name=MyName");
expected = "wrap:mvn:org.apache.olingo/odata-server-core/5.0.0$Bundle-Name=MyName&Bundle-SymbolicName=wrap_org.apache.olingo.odata-server-core";
wrappedBundle = WrappedBundle.fromBundle(bundle);
assertNotNull(wrappedBundle);
assertEquals(expected, ensureNameMojo.processLocation(wrappedBundle));

// don't override the Bundle-SymbolicName if present
bundle.setLocation("wrap:mvn:org.apache.olingo/odata-server-core/5.0.0$Bundle-SymbolicName=MyName");
expected = "wrap:mvn:org.apache.olingo/odata-server-core/5.0.0$Bundle-SymbolicName=MyName&Bundle-Name=Wrap%20of%20Odata%20Server%20Core";
wrappedBundle = WrappedBundle.fromBundle(bundle);
assertNotNull(wrappedBundle);
assertEquals(expected, ensureNameMojo.processLocation(wrappedBundle));

}


}
Loading