summaryrefslogtreecommitdiff
path: root/java/java/client/test/src/org/apache/qpid/testutil/Config.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/java/client/test/src/org/apache/qpid/testutil/Config.java')
-rw-r--r--java/java/client/test/src/org/apache/qpid/testutil/Config.java198
1 files changed, 198 insertions, 0 deletions
diff --git a/java/java/client/test/src/org/apache/qpid/testutil/Config.java b/java/java/client/test/src/org/apache/qpid/testutil/Config.java
new file mode 100644
index 0000000000..68e1e80044
--- /dev/null
+++ b/java/java/client/test/src/org/apache/qpid/testutil/Config.java
@@ -0,0 +1,198 @@
+/*
+ *
+ * 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.qpid.testutil;
+
+import org.apache.qpid.client.AMQQueue;
+import org.apache.qpid.client.AMQTopic;
+import org.apache.qpid.client.AMQConnection;
+import org.apache.qpid.client.AMQHeadersExchange;
+
+import javax.jms.Destination;
+import javax.jms.Connection;
+
+public class Config
+{
+ public static final String QUEUE = "queue";
+ public static final String TOPIC = "topic";
+ public static final String HEADERS = "headers";
+
+ private String host = "localhost";
+ private int port = 5672;
+ private String type;
+ private String name = "simple_test_queue";
+
+ public Config()
+ {
+ this("localhost", 5672, QUEUE, "simple_test_queue");
+ }
+
+ public Config(String host, int port, String type, String name)
+ {
+ setHost(host);
+ setPort(port);
+ setType(type);
+ setName(name);
+ }
+
+ public String getHost()
+ {
+ return host;
+ }
+
+ public void setHost(String host)
+ {
+ this.host = host;
+ }
+
+ public int getPort()
+ {
+ return port;
+ }
+
+ public void setPort(int port)
+ {
+ this.port = port;
+ }
+
+ public String getType()
+ {
+ return type;
+ }
+
+ public void setType(String type)
+ {
+ this.type = type;
+ }
+
+ public boolean isQueue()
+ {
+ return QUEUE.equalsIgnoreCase(type);
+ }
+
+ public boolean isTopic()
+ {
+ return TOPIC.equalsIgnoreCase(type);
+ }
+
+ private boolean isHeaders()
+ {
+ return HEADERS.equalsIgnoreCase(type);
+ }
+
+ public void setQueue(boolean queue)
+ {
+ type = queue ? QUEUE : TOPIC;
+ }
+
+ public String getName()
+ {
+ return name;
+ }
+
+ public void setName(String name)
+ {
+ this.name = name;
+ }
+
+ public Destination getDestination()
+ {
+ if(isQueue())
+ {
+ System.out.println("Using queue named " + name);
+ return new AMQQueue(name);
+ }
+ else if(isTopic())
+ {
+ System.out.println("Using topic named " + name);
+ return new AMQTopic(name);
+ }
+ else if(isHeaders())
+ {
+ System.out.println("Using headers exhange named " + name);
+ return new AMQHeadersExchange(name);
+ }
+ return null;
+ }
+
+ public Connection getConnection() throws Exception
+ {
+ System.out.println("Connecting to " + host + " on " + port + "...");
+ return new AMQConnection(host, port, "guest", "guest", "Client" + System.currentTimeMillis(), "/test_path");
+ }
+
+ public boolean setOptions(String[] argv)
+ {
+ try
+ {
+ for(int i = 0; i < argv.length - 1; i += 2)
+ {
+ String key = argv[i];
+ String value = argv[i+1];
+ setOption(key, value);
+ }
+ return true;
+ }
+ catch(Exception e)
+ {
+ System.out.println(e.getMessage());
+ }
+ return false;
+ }
+
+ private void setOption(String key, String value)
+ {
+ if("-host".equalsIgnoreCase(key))
+ {
+ setHost(value);
+ }
+ else if("-port".equalsIgnoreCase(key))
+ {
+ try
+ {
+ setPort(Integer.parseInt(value));
+ }
+ catch(NumberFormatException e)
+ {
+ throw new RuntimeException("Bad port number: " + value);
+ }
+ }
+ else if("-name".equalsIgnoreCase(key))
+ {
+ setName(value);
+ }
+ else if("-type".equalsIgnoreCase(key))
+ {
+ if(QUEUE.equalsIgnoreCase(value)
+ || TOPIC.equalsIgnoreCase(value)
+ || HEADERS.equalsIgnoreCase(value))
+ {
+ type = value;
+ }
+ else{
+ throw new RuntimeException("Bad destination type: " + value);
+ }
+ }
+ else
+ {
+ System.out.println("Ignoring unrecognised option: " + key);
+ }
+ }
+}