001/**
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.activemq.transport.https;
018
019import java.io.IOException;
020import java.net.MalformedURLException;
021import java.net.URI;
022import java.net.URISyntaxException;
023import java.util.HashMap;
024import java.util.Map;
025
026import org.apache.activemq.broker.SslContext;
027import org.apache.activemq.transport.Transport;
028import org.apache.activemq.transport.TransportServer;
029import org.apache.activemq.transport.http.HttpTransportFactory;
030import org.apache.activemq.util.IOExceptionSupport;
031import org.apache.activemq.util.IntrospectionSupport;
032import org.apache.activemq.util.URISupport;
033import org.apache.activemq.wireformat.WireFormat;
034
035/**
036 * Factory of HTTPS based transports
037 */
038public class HttpsTransportFactory extends HttpTransportFactory {
039
040    public TransportServer doBind(String brokerId, URI location) throws IOException {
041        return doBind(location);
042    }
043
044    public TransportServer doBind(URI location) throws IOException {
045        try {
046            Map<String, String> options = new HashMap<String, String>(URISupport.parseParameters(location));
047            HttpsTransportServer result = new HttpsTransportServer(location, this, SslContext.getCurrentSslContext());
048            Map<String, Object> transportOptions = IntrospectionSupport.extractProperties(options, "transport.");
049            result.setTransportOption(transportOptions);
050            return result;
051        } catch (URISyntaxException e) {
052            throw IOExceptionSupport.create(e);
053        }
054    }
055
056    protected Transport createTransport(URI location, WireFormat wf) throws MalformedURLException {
057        // need to remove options from uri
058        URI uri;
059        try {
060            uri = URISupport.removeQuery(location);
061        } catch (URISyntaxException e) {
062            MalformedURLException cause = new MalformedURLException("Error removing query on " + location);
063            cause.initCause(e);
064            throw cause;
065        }
066        return new HttpsClientTransport(asTextWireFormat(wf), uri);
067    }
068}