All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hornetq.api.core.TransportConfiguration Maven / Gradle / Ivy

Go to download

This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up with different versions on classes on the class path).

There is a newer version: 32.0.0.Final
Show newest version
/*
 * Copyright 2005-2014 Red Hat, Inc.
 * Red Hat 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.hornetq.api.core;

import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;

import org.hornetq.core.client.HornetQClientMessageBundle;
import org.hornetq.core.remoting.impl.netty.TransportConstants;
import org.hornetq.utils.UUIDGenerator;

/**
 * A TransportConfiguration is used by a client to specify connections to a server and its backup if
 * one exists.
 * 

* Typically the constructors take the class name and parameters for needed to create the * connection. These will be different dependent on which connector is being used, i.e. Netty or * InVM etc. For example: * *

 * HashMap<String, Object> map = new HashMap<String, Object>();
 * map.put("host", "localhost");
 * map.put("port", 5445);
 * TransportConfiguration config = new TransportConfiguration(InVMConnectorFactory.class.getName(), map);
 * ClientSessionFactory sf = new ClientSessionFactoryImpl(config);
 * 
* @author Tim Fox */ public class TransportConfiguration implements Serializable { private static final long serialVersionUID = -3994528421527392679L; private String name; private String factoryClassName; private Map params; private static final byte TYPE_BOOLEAN = 0; private static final byte TYPE_INT = 1; private static final byte TYPE_LONG = 2; private static final byte TYPE_STRING = 3; /** * Utility method for splitting a comma separated list of hosts * * @param commaSeparatedHosts the comma separated host string * @return the hosts */ public static String[] splitHosts(final String commaSeparatedHosts) { if (commaSeparatedHosts == null) { return new String[0]; } String[] hosts = commaSeparatedHosts.split(","); for (int i = 0; i < hosts.length; i++) { hosts[i] = hosts[i].trim(); } return hosts; } /** * Creates a default TransportConfiguration with no configured transport. */ public TransportConfiguration() { } /** * Creates a TransportConfiguration with a specific name providing the class name of the {@link org.hornetq.spi.core.remoting.ConnectorFactory} * and any parameters needed. * * @param className The class name of the ConnectorFactory * @param params The parameters needed by the ConnectorFactory * @param name The name of this TransportConfiguration */ public TransportConfiguration(final String className, final Map params, final String name) { factoryClassName = className; this.params = params; this.name = name; } /** * Creates a TransportConfiguration providing the class name of the {@link org.hornetq.spi.core.remoting.ConnectorFactory} * and any parameters needed. * * @param className The class name of the ConnectorFactory * @param params The parameters needed by the ConnectorFactory */ public TransportConfiguration(final String className, final Map params) { this(className, params, UUIDGenerator.getInstance().generateStringUUID()); } /** * Creates a TransportConfiguration providing the class name of the {@link org.hornetq.spi.core.remoting.ConnectorFactory} * * @param className The class name of the ConnectorFactory */ public TransportConfiguration(final String className) { this(className, new HashMap(), UUIDGenerator.getInstance().generateStringUUID()); } /** * Returns the name of this TransportConfiguration. * * @return the name */ public String getName() { return name; } /** * Returns the class name of ConnectorFactory being used by this TransportConfiguration * * @return The factory's class name */ public String getFactoryClassName() { return factoryClassName; } /** * Returns any parameters set for this TransportConfiguration * * @return the parameters */ public Map getParams() { return params; } @Override public int hashCode() { return factoryClassName.hashCode(); } @Override public boolean equals(final Object other) { if (other instanceof TransportConfiguration == false) { return false; } TransportConfiguration kother = (TransportConfiguration) other; if (factoryClassName.equals(kother.factoryClassName)) { if (params == null || params.isEmpty()) { return kother.params == null || kother.params.isEmpty(); } else { if (kother.params == null || kother.params.isEmpty()) { return false; } else if (params.size() == kother.params.size()) { for (Map.Entry entry : params.entrySet()) { Object thisVal = entry.getValue(); Object otherVal = kother.params.get(entry.getKey()); if (otherVal == null || !otherVal.equals(thisVal)) { return false; } } return true; } else { return false; } } } else { return false; } } /** * There's a case on ClusterConnections that we need to find an equivalent Connector and we can't * use a Netty Cluster Connection on an InVM ClusterConnection (inVM used on tests) for that * reason I need to test if the two instances of the TransportConfiguration are equivalent while * a test a connector against an acceptor * @param otherConfig * @return {@code true} if the factory class names are equivalents */ public boolean isEquivalent(TransportConfiguration otherConfig) { if (this.getFactoryClassName().equals(otherConfig.getFactoryClassName())) { return true; } else if (this.getFactoryClassName().contains("Netty") && otherConfig.getFactoryClassName().contains("Netty")) { return true; } else if (this.getFactoryClassName().contains("InVM") && otherConfig.getFactoryClassName().contains("InVM")) { return true; } else { return false; } } @Override public String toString() { StringBuilder str = new StringBuilder(TransportConfiguration.class.getSimpleName()); str.append("(name=" + name + ", "); str.append("factory=" + replaceWildcardChars(factoryClassName)); str.append(") "); if (params != null) { if (!params.isEmpty()) { str.append("?"); } boolean first = true; for (Map.Entry entry : params.entrySet()) { if (!first) { str.append("&"); } String key = entry.getKey(); // HORNETQ-1281 - don't log passwords String val; if (key.equals(TransportConstants.KEYSTORE_PASSWORD_PROP_NAME) || key.equals(TransportConstants.DEFAULT_TRUSTSTORE_PASSWORD)) { val = "****"; } else { val = entry.getValue() == null ? "null" : entry.getValue().toString(); } str.append(replaceWildcardChars(key)).append('=').append(replaceWildcardChars(val)); first = false; } } return str.toString(); } /** * Encodes this TransportConfiguration into a buffer. *

* Note that this is only used internally HornetQ. * * @param buffer the buffer to encode into */ public void encode(final HornetQBuffer buffer) { buffer.writeString(name); buffer.writeString(factoryClassName); buffer.writeInt(params == null ? 0 : params.size()); if (params != null) { for (Map.Entry entry : params.entrySet()) { buffer.writeString(entry.getKey()); Object val = entry.getValue(); if (val instanceof Boolean) { buffer.writeByte(TransportConfiguration.TYPE_BOOLEAN); buffer.writeBoolean((Boolean) val); } else if (val instanceof Integer) { buffer.writeByte(TransportConfiguration.TYPE_INT); buffer.writeInt((Integer) val); } else if (val instanceof Long) { buffer.writeByte(TransportConfiguration.TYPE_LONG); buffer.writeLong((Long) val); } else if (val instanceof String) { buffer.writeByte(TransportConfiguration.TYPE_STRING); buffer.writeString((String) val); } else { throw HornetQClientMessageBundle.BUNDLE.invalidEncodeType(val); } } } } /** * Decodes this TransportConfiguration from a buffer. *

* Note this is only used internally by HornetQ * * @param buffer the buffer to decode from */ public void decode(final HornetQBuffer buffer) { name = buffer.readString(); factoryClassName = buffer.readString(); int num = buffer.readInt(); if (params == null) { if (num > 0) { params = new HashMap(); } } else { params.clear(); } for (int i = 0; i < num; i++) { String key = buffer.readString(); byte type = buffer.readByte(); Object val; switch (type) { case TYPE_BOOLEAN: { val = buffer.readBoolean(); break; } case TYPE_INT: { val = buffer.readInt(); break; } case TYPE_LONG: { val = buffer.readLong(); break; } case TYPE_STRING: { val = buffer.readString(); break; } default: { throw HornetQClientMessageBundle.BUNDLE.invalidType(type); } } params.put(key, val); } } private static String replaceWildcardChars(final String str) { return str.replace('.', '-'); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy