mirror of https://github.com/apache/activemq.git
Clean up some test client code.
This commit is contained in:
parent
bc9edf00d1
commit
d9e22a9368
|
@ -19,9 +19,6 @@ package org.apache.activemq.transport.amqp.client;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import org.apache.activemq.transport.amqp.client.util.AsyncResult;
|
import org.apache.activemq.transport.amqp.client.util.AsyncResult;
|
||||||
import org.apache.qpid.proton.amqp.Symbol;
|
|
||||||
import org.apache.qpid.proton.amqp.transport.AmqpError;
|
|
||||||
import org.apache.qpid.proton.amqp.transport.ErrorCondition;
|
|
||||||
import org.apache.qpid.proton.engine.Endpoint;
|
import org.apache.qpid.proton.engine.Endpoint;
|
||||||
import org.apache.qpid.proton.engine.EndpointState;
|
import org.apache.qpid.proton.engine.EndpointState;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
|
@ -142,10 +139,7 @@ public abstract class AmqpAbstractResource<E extends Endpoint> implements AmqpRe
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void remotelyClosed(AmqpConnection connection) {
|
public void remotelyClosed(AmqpConnection connection) {
|
||||||
Exception error = getRemoteError();
|
Exception error = AmqpSupport.convertToException(getEndpoint().getRemoteCondition());
|
||||||
if (error == null) {
|
|
||||||
error = new IOException("Remote has closed without error information");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (endpoint != null) {
|
if (endpoint != null) {
|
||||||
// TODO: if this is a producer/consumer link then we may only be detached,
|
// TODO: if this is a producer/consumer link then we may only be detached,
|
||||||
|
@ -192,40 +186,10 @@ public abstract class AmqpAbstractResource<E extends Endpoint> implements AmqpRe
|
||||||
return getEndpoint().getRemoteState();
|
return getEndpoint().getRemoteState();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean hasRemoteError() {
|
public boolean hasRemoteError() {
|
||||||
return getEndpoint().getRemoteCondition().getCondition() != null;
|
return getEndpoint().getRemoteCondition().getCondition() != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Exception getRemoteError() {
|
|
||||||
String message = getRemoteErrorMessage();
|
|
||||||
Exception remoteError = null;
|
|
||||||
Symbol error = getEndpoint().getRemoteCondition().getCondition();
|
|
||||||
if (error != null) {
|
|
||||||
if (error.equals(AmqpError.UNAUTHORIZED_ACCESS)) {
|
|
||||||
remoteError = new SecurityException(message);
|
|
||||||
} else {
|
|
||||||
remoteError = new Exception(message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return remoteError;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getRemoteErrorMessage() {
|
|
||||||
String message = "Received unkown error from remote peer";
|
|
||||||
if (getEndpoint().getRemoteCondition() != null) {
|
|
||||||
ErrorCondition error = getEndpoint().getRemoteCondition();
|
|
||||||
if (error.getDescription() != null && !error.getDescription().isEmpty()) {
|
|
||||||
message = error.getDescription();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return message;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void processRemoteOpen(AmqpConnection connection) throws IOException {
|
public void processRemoteOpen(AmqpConnection connection) throws IOException {
|
||||||
doOpenInspection();
|
doOpenInspection();
|
||||||
|
@ -254,7 +218,7 @@ public abstract class AmqpAbstractResource<E extends Endpoint> implements AmqpRe
|
||||||
LOG.warn("Open of {} failed: ", this);
|
LOG.warn("Open of {} failed: ", this);
|
||||||
Exception openError;
|
Exception openError;
|
||||||
if (hasRemoteError()) {
|
if (hasRemoteError()) {
|
||||||
openError = getRemoteError();
|
openError = AmqpSupport.convertToException(getEndpoint().getRemoteCondition());
|
||||||
} else {
|
} else {
|
||||||
openError = getOpenAbortException();
|
openError = getOpenAbortException();
|
||||||
}
|
}
|
||||||
|
|
|
@ -594,43 +594,43 @@ public class AmqpConnection extends AmqpAbstractResource<Connection> implements
|
||||||
LOG.trace("New Proton Event: {}", protonEvent.getType());
|
LOG.trace("New Proton Event: {}", protonEvent.getType());
|
||||||
}
|
}
|
||||||
|
|
||||||
AmqpResource amqpResource = null;
|
AmqpEventSink amqpEventSink = null;
|
||||||
switch (protonEvent.getType()) {
|
switch (protonEvent.getType()) {
|
||||||
case CONNECTION_REMOTE_CLOSE:
|
case CONNECTION_REMOTE_CLOSE:
|
||||||
amqpResource = (AmqpConnection) protonEvent.getConnection().getContext();
|
amqpEventSink = (AmqpEventSink) protonEvent.getConnection().getContext();
|
||||||
amqpResource.processRemoteClose(this);
|
amqpEventSink.processRemoteClose(this);
|
||||||
break;
|
break;
|
||||||
case CONNECTION_REMOTE_OPEN:
|
case CONNECTION_REMOTE_OPEN:
|
||||||
amqpResource = (AmqpConnection) protonEvent.getConnection().getContext();
|
amqpEventSink = (AmqpEventSink) protonEvent.getConnection().getContext();
|
||||||
amqpResource.processRemoteOpen(this);
|
amqpEventSink.processRemoteOpen(this);
|
||||||
break;
|
break;
|
||||||
case SESSION_REMOTE_CLOSE:
|
case SESSION_REMOTE_CLOSE:
|
||||||
amqpResource = (AmqpSession) protonEvent.getSession().getContext();
|
amqpEventSink = (AmqpEventSink) protonEvent.getSession().getContext();
|
||||||
amqpResource.processRemoteClose(this);
|
amqpEventSink.processRemoteClose(this);
|
||||||
break;
|
break;
|
||||||
case SESSION_REMOTE_OPEN:
|
case SESSION_REMOTE_OPEN:
|
||||||
amqpResource = (AmqpSession) protonEvent.getSession().getContext();
|
amqpEventSink = (AmqpEventSink) protonEvent.getSession().getContext();
|
||||||
amqpResource.processRemoteOpen(this);
|
amqpEventSink.processRemoteOpen(this);
|
||||||
break;
|
break;
|
||||||
case LINK_REMOTE_CLOSE:
|
case LINK_REMOTE_CLOSE:
|
||||||
amqpResource = (AmqpResource) protonEvent.getLink().getContext();
|
amqpEventSink = (AmqpEventSink) protonEvent.getLink().getContext();
|
||||||
amqpResource.processRemoteClose(this);
|
amqpEventSink.processRemoteClose(this);
|
||||||
break;
|
break;
|
||||||
case LINK_REMOTE_DETACH:
|
case LINK_REMOTE_DETACH:
|
||||||
amqpResource = (AmqpResource) protonEvent.getLink().getContext();
|
amqpEventSink = (AmqpEventSink) protonEvent.getLink().getContext();
|
||||||
amqpResource.processRemoteDetach(this);
|
amqpEventSink.processRemoteDetach(this);
|
||||||
break;
|
break;
|
||||||
case LINK_REMOTE_OPEN:
|
case LINK_REMOTE_OPEN:
|
||||||
amqpResource = (AmqpResource) protonEvent.getLink().getContext();
|
amqpEventSink = (AmqpEventSink) protonEvent.getLink().getContext();
|
||||||
amqpResource.processRemoteOpen(this);
|
amqpEventSink.processRemoteOpen(this);
|
||||||
break;
|
break;
|
||||||
case LINK_FLOW:
|
case LINK_FLOW:
|
||||||
amqpResource = (AmqpResource) protonEvent.getLink().getContext();
|
amqpEventSink = (AmqpEventSink) protonEvent.getLink().getContext();
|
||||||
amqpResource.processFlowUpdates(this);
|
amqpEventSink.processFlowUpdates(this);
|
||||||
break;
|
break;
|
||||||
case DELIVERY:
|
case DELIVERY:
|
||||||
amqpResource = (AmqpResource) protonEvent.getLink().getContext();
|
amqpEventSink = (AmqpEventSink) protonEvent.getLink().getContext();
|
||||||
amqpResource.processDeliveryUpdates(this);
|
amqpEventSink.processDeliveryUpdates(this);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -0,0 +1,79 @@
|
||||||
|
/*
|
||||||
|
* 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.activemq.transport.amqp.client;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interface used by classes that want to process AMQP events sent from
|
||||||
|
* the transport layer.
|
||||||
|
*/
|
||||||
|
public interface AmqpEventSink {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Event handler for remote peer open of this resource.
|
||||||
|
*
|
||||||
|
* @param connection
|
||||||
|
* the AmqpConnection instance for easier access to fire events.
|
||||||
|
*
|
||||||
|
* @throws IOException if an error occurs while processing the update.
|
||||||
|
*/
|
||||||
|
void processRemoteOpen(AmqpConnection connection) throws IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Event handler for remote peer detach of this resource.
|
||||||
|
*
|
||||||
|
* @param connection
|
||||||
|
* the AmqpConnection instance for easier access to fire events.
|
||||||
|
*
|
||||||
|
* @throws IOException if an error occurs while processing the update.
|
||||||
|
*/
|
||||||
|
void processRemoteDetach(AmqpConnection connection) throws IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Event handler for remote peer close of this resource.
|
||||||
|
*
|
||||||
|
* @param connection
|
||||||
|
* the AmqpConnection instance for easier access to fire events.
|
||||||
|
*
|
||||||
|
* @throws IOException if an error occurs while processing the update.
|
||||||
|
*/
|
||||||
|
void processRemoteClose(AmqpConnection connection) throws IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when the Proton Engine signals an Delivery related event has been triggered
|
||||||
|
* for the given endpoint.
|
||||||
|
*
|
||||||
|
* @param connection
|
||||||
|
* the AmqpConnection instance for easier access to fire events.
|
||||||
|
*
|
||||||
|
* @throws IOException if an error occurs while processing the update.
|
||||||
|
*/
|
||||||
|
void processDeliveryUpdates(AmqpConnection connection) throws IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when the Proton Engine signals an Flow related event has been triggered
|
||||||
|
* for the given endpoint.
|
||||||
|
*
|
||||||
|
* @param connection
|
||||||
|
* the AmqpConnection instance for easier access to fire events.
|
||||||
|
*
|
||||||
|
* @throws IOException if an error occurs while processing the update.
|
||||||
|
*/
|
||||||
|
void processFlowUpdates(AmqpConnection connection) throws IOException;
|
||||||
|
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
/**
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
* contributor license agreements. See the NOTICE file distributed with
|
||||||
* this work for additional information regarding copyright ownership.
|
* this work for additional information regarding copyright ownership.
|
||||||
|
@ -16,8 +16,6 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.activemq.transport.amqp.client;
|
package org.apache.activemq.transport.amqp.client;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import org.apache.activemq.transport.amqp.client.util.AsyncResult;
|
import org.apache.activemq.transport.amqp.client.util.AsyncResult;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -26,7 +24,7 @@ import org.apache.activemq.transport.amqp.client.util.AsyncResult;
|
||||||
* All AMQP types should implement this interface to allow for control of state
|
* All AMQP types should implement this interface to allow for control of state
|
||||||
* and configuration details.
|
* and configuration details.
|
||||||
*/
|
*/
|
||||||
public interface AmqpResource {
|
public interface AmqpResource extends AmqpEventSink {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Perform all the work needed to open this resource and store the request
|
* Perform all the work needed to open this resource and store the request
|
||||||
|
@ -102,71 +100,4 @@ public interface AmqpResource {
|
||||||
*/
|
*/
|
||||||
void failed(Exception cause);
|
void failed(Exception cause);
|
||||||
|
|
||||||
/**
|
|
||||||
* Event handler for remote peer open of this resource.
|
|
||||||
*
|
|
||||||
* @param connection
|
|
||||||
* The connection that owns this resource.
|
|
||||||
*
|
|
||||||
* @throws IOException if an error occurs while processing the update.
|
|
||||||
*/
|
|
||||||
void processRemoteOpen(AmqpConnection connection) throws IOException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Event handler for remote peer detach of this resource.
|
|
||||||
*
|
|
||||||
* @param connection
|
|
||||||
* The connection that owns this resource.
|
|
||||||
*
|
|
||||||
* @throws IOException if an error occurs while processing the update.
|
|
||||||
*/
|
|
||||||
void processRemoteDetach(AmqpConnection connection) throws IOException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Event handler for remote peer close of this resource.
|
|
||||||
*
|
|
||||||
* @param connection
|
|
||||||
* The connection that owns this resource.
|
|
||||||
*
|
|
||||||
* @throws IOException if an error occurs while processing the update.
|
|
||||||
*/
|
|
||||||
void processRemoteClose(AmqpConnection connection) throws IOException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called when the Proton Engine signals an Delivery related event has been triggered
|
|
||||||
* for the given endpoint.
|
|
||||||
*
|
|
||||||
* @param connection
|
|
||||||
* The connection that owns this resource.
|
|
||||||
*
|
|
||||||
* @throws IOException if an error occurs while processing the update.
|
|
||||||
*/
|
|
||||||
void processDeliveryUpdates(AmqpConnection connection) throws IOException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called when the Proton Engine signals an Flow related event has been triggered
|
|
||||||
* for the given endpoint.
|
|
||||||
*
|
|
||||||
* @param connection
|
|
||||||
* The connection that owns this resource.
|
|
||||||
*
|
|
||||||
* @throws IOException if an error occurs while processing the update.
|
|
||||||
*/
|
|
||||||
void processFlowUpdates(AmqpConnection connection) throws IOException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @returns true if the remote end has sent an error
|
|
||||||
*/
|
|
||||||
boolean hasRemoteError();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return an Exception derived from the error state of the endpoint's Remote Condition.
|
|
||||||
*/
|
|
||||||
Exception getRemoteError();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return an Error message derived from the error state of the endpoint's Remote Condition.
|
|
||||||
*/
|
|
||||||
String getRemoteErrorMessage();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue