blob: 3ec283f9522e5c1e0258b3e6697de0381d4dd215 [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.camel.component.xmpp;
import java.net.URI;
import java.util.HashMap;
import java.util.Map;
import org.apache.camel.Endpoint;
import org.apache.camel.impl.DefaultComponent;
import org.apache.camel.util.ServiceHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @version
*/
public class XmppComponent extends DefaultComponent {
private static final transient Logger LOG = LoggerFactory.getLogger(XmppComponent.class);
//keep a cache of endpoints so they can be properly cleaned up
private final Map<String, XmppEndpoint> endpointCache = new HashMap<String, XmppEndpoint>();
@Override
protected Endpoint createEndpoint(String uri, String remaining, Map<String, Object> parameters) throws Exception {
if (endpointCache.containsKey(uri)) {
LOG.debug("Using cached endpoint for URI {}", uri);
return endpointCache.get(uri);
}
LOG.debug("Creating new endpoint for URI {}", uri);
XmppEndpoint endpoint = new XmppEndpoint(uri, this);
URI u = new URI(uri);
endpoint.setHost(u.getHost());
endpoint.setPort(u.getPort());
if (u.getUserInfo() != null) {
endpoint.setUser(u.getUserInfo());
}
String remainingPath = u.getPath();
if (remainingPath != null) {
if (remainingPath.startsWith("/")) {
remainingPath = remainingPath.substring(1);
}
// assume its a participant
if (remainingPath.length() > 0) {
endpoint.setParticipant(remainingPath);
}
}
endpointCache.put(uri, endpoint);
return endpoint;
}
@Override
protected void doStop() throws Exception {
ServiceHelper.stopServices(endpointCache.values());
endpointCache.clear();
}
}