blob: dc2860f8b929a065a75b67906f70236bc7d0bce7 [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.servicemix.cxf.transport.http_osgi;
import java.util.Collection;
import java.util.Collections;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
public class OsgiDestinationRegistry {
private ConcurrentMap<String, OsgiDestination> destinations = new ConcurrentHashMap<String, OsgiDestination>();
public OsgiDestinationRegistry() {
}
public void addDestination(String path, OsgiDestination destination) {
String p = getTrimmedPath(path);
destinations.putIfAbsent(path, destination);
}
public void removeDestination(String path) {
destinations.remove(path);
}
public OsgiDestination getDestinationForPath(String path) {
// to use the url context match
return destinations.get(getTrimmedPath(path));
}
public Collection<OsgiDestination> getDestinations() {
return Collections.unmodifiableCollection(destinations.values());
}
public Set<String> getDestinationsPaths() {
return Collections.unmodifiableSet(destinations.keySet());
}
static String getTrimmedPath(String path) {
if (path == null) {
return "/";
}
final String lh = "http://localhost/";
final String lhs = "https://localhost/";
if (path.startsWith(lh)) {
path = path.substring(lh.length());
} else if (path.startsWith(lhs)) {
path = path.substring(lhs.length());
}
if (!path.startsWith("/")) {
path = "/" + path;
}
return path;
}
}