blob: 5dddf1d0220fc3298c252e33abe9a4a374a93cfd [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.installer.factory.model.impl;
import org.apache.sling.feature.Artifact;
import org.apache.sling.feature.ArtifactId;
import org.apache.sling.feature.Extension;
import org.apache.sling.feature.ExtensionType;
import org.apache.sling.feature.Feature;
import org.apache.sling.feature.extension.apiregions.api.ApiRegions;
import org.apache.sling.feature.extension.apiregions.launcher.LauncherProperties;
import org.apache.sling.feature.spi.context.ExtensionHandler;
import org.apache.sling.feature.spi.context.ExtensionHandlerContext;
import org.osgi.service.component.annotations.Component;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Dictionary;
import java.util.HashSet;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
import java.util.stream.Collectors;
@Component
public class APIRegionsExtensionHandler implements ExtensionHandler {
private static final String REGION_FACTORY_PID = "org.apache.sling.feature.apiregions.factory~";
private static final String PROP_idbsnver = "mapping.bundleid.bsnver";
private static final String PROP_bundleFeatures = "mapping.bundleid.features";
private static final String PROP_featureRegions = "mapping.featureid.regions";
private static final String PROP_regionPackage = "mapping.region.packages";
@Override
public boolean handle(ExtensionHandlerContext context, Extension extension, Feature feature) throws Exception {
if (!extension.getName().equals(ApiRegions.EXTENSION_NAME) ||
extension.getType() != ExtensionType.JSON) {
return false;
}
final ApiRegions regions = ApiRegions.parse(extension.getJSONStructure().asJsonArray());
final String configPid = REGION_FACTORY_PID.concat(feature.getId().toMvnName().replace('-', '_'));
final Dictionary<String, Object> props = new Hashtable<>();
props.put(PROP_idbsnver, convert(LauncherProperties.getBundleIDtoBSNandVersionMap(feature, context.getArtifactProvider())));
props.put(PROP_bundleFeatures, convert(getBundleIDToFeatureMap(feature)));
props.put(PROP_featureRegions, convert(LauncherProperties.getFeatureIDtoRegionsMap(regions)));
props.put(PROP_regionPackage, convert(LauncherProperties.getRegionNametoPackagesMap(regions)));
context.addConfiguration(null, configPid, props);
return true;
}
private String[] convert(final Properties props) {
final List<String> result = new ArrayList<>();
for(final Map.Entry<Object, Object> entry : props.entrySet()) {
result.add(entry.getKey().toString().concat("=").concat(entry.getValue().toString()));
}
return result.toArray(new String[result.size()]);
}
private static Properties getBundleIDToFeatureMap(Feature feature) {
Properties bundleToFeatureMapping = LauncherProperties.getBundleIDtoFeaturesMap(feature);
Properties result = new Properties();
String featureId = feature.getId().toMvnId();
for (Map.Entry<Object, Object> entry : bundleToFeatureMapping.entrySet()) {
String value = entry.getValue().toString();
if (value.isEmpty()) {
value = featureId;
}
result.setProperty(entry.getKey().toString(), value);
}
return result;
}
}