blob: 26807efb5150ea7a53b558b785670cf72778714d [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.apiregions.impl;
import org.osgi.framework.Version;
import org.osgi.framework.hooks.resolver.ResolverHook;
import org.osgi.framework.hooks.resolver.ResolverHookFactory;
import org.osgi.framework.wiring.BundleRevision;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.AbstractMap;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
class RegionEnforcer implements ResolverHookFactory {
private static final String idbsnverFileName = "idbsnver.properties";
private static final String bundleFeatureFileName = "bundles.properties";
private static final String regionPackageFileName = "regions.properties";
private static final String featureRegionFileName = "features.properties";
private final Map<Map.Entry<String, Version>, List<String>> bsnVerMap;
private final Map<String, Set<String>> bundleFeatureMap;
private final Map<String, Set<String>> featureRegionMap;
private final Map<String, Set<String>> regionPackageMap;
public RegionEnforcer() throws IOException {
bsnVerMap = populateBSNVerMap();
bundleFeatureMap = populateBundleFeatureMap();
featureRegionMap = populateFeatureRegionMap();
regionPackageMap = populateRegionPackageMap();
}
private Map<Map.Entry<String, Version>, List<String>> populateBSNVerMap() throws IOException {
File idbsnverFile = getDataFile(idbsnverFileName);
if (idbsnverFile != null && idbsnverFile.exists()) {
Map<Map.Entry<String, Version>, List<String>> m = new HashMap<>();
Properties p = new Properties();
try (InputStream is = new FileInputStream(idbsnverFile)) {
p.load(is);
}
for (String n : p.stringPropertyNames()) {
String[] bsnver = p.getProperty(n).split("~");
Map.Entry<String, Version> key = new AbstractMap.SimpleEntry<String, Version>(bsnver[0], Version.valueOf(bsnver[1]));
List<String> l = m.get(key);
if (l == null) {
l = new ArrayList<>();
m.put(key, l);
}
}
Map<Map.Entry<String, Version>, List<String>> m2 = new HashMap<>();
for (Map.Entry<Map.Entry<String, Version>, List<String>> entry : m.entrySet()) {
m2.put(entry.getKey(), Collections.unmodifiableList(entry.getValue()));
}
return Collections.unmodifiableMap(m2);
} else {
return Collections.emptyMap();
}
}
private Map<String, Set<String>> populateBundleFeatureMap() throws IOException {
return loadMap(bundleFeatureFileName);
}
private Map<String, Set<String>> populateFeatureRegionMap() throws IOException {
return loadMap(featureRegionFileName);
}
private Map<String, Set<String>> populateRegionPackageMap() throws IOException {
return loadMap(regionPackageFileName);
}
private Map<String, Set<String>> loadMap(String fileName) throws IOException {
Map<String, Set<String>> m = new HashMap<>();
File propsFile = getDataFile(fileName);
if (propsFile != null && propsFile.exists()) {
Properties p = new Properties();
try (InputStream is = new FileInputStream(propsFile)) {
p.load(is);
}
for (String n : p.stringPropertyNames()) {
String[] features = p.getProperty(n).split(",");
m.put(n, Collections.unmodifiableSet(new HashSet<>(Arrays.asList(features))));
}
}
return Collections.unmodifiableMap(m);
}
private File getDataFile(String name) throws IOException {
String fn = System.getProperty("whitelisting." + name);
if (fn == null)
return null;
return new File(fn);
}
@Override
public ResolverHook begin(Collection<BundleRevision> triggers) {
return new ResolverHookImpl(bsnVerMap, bundleFeatureMap, featureRegionMap, regionPackageMap);
}
}