blob: 72ba5c1980e8b7fbd40ccc89ae3935af45209853 [file] [log] [blame]
/*
* 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.sling.feature.extension.apiregions;
import org.apache.sling.feature.Artifact;
import org.apache.sling.feature.Extension;
import org.apache.sling.feature.Feature;
import org.apache.sling.feature.builder.HandlerContext;
import org.apache.sling.feature.builder.PostProcessHandler;
import org.osgi.framework.Constants;
import java.io.File;
import java.io.IOException;
import java.util.Properties;
import java.util.jar.JarFile;
public class BundleMappingHandler extends AbstractHandler implements PostProcessHandler {
@Override
public void postProcess(HandlerContext context, Feature feature, Extension extension) {
if (!API_REGIONS_NAME.equals(extension.getName()))
return;
try {
File idBSNFile = getDataFile(context, "idbsnver.properties");
Properties map = loadProperties(idBSNFile);
for (Artifact b : feature.getBundles()) {
File f = context.getArtifactProvider().provide(b.getId());
try (JarFile jf = new JarFile(f)) {
String bsn = jf.getManifest().getMainAttributes().getValue(Constants.BUNDLE_SYMBOLICNAME);
if (bsn == null)
continue;
String ver = jf.getManifest().getMainAttributes().getValue(Constants.BUNDLE_VERSION);
if (ver == null)
ver = "0.0.0";
map.put(b.getId().toMvnId(), bsn.trim() + "~" + ver.trim());
}
}
storeProperties(map, idBSNFile);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}