blob: 4da1af4c2bb53d4848f310e7659536511cea3c57 [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.qpid.server.protocol.v1_0;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.qpid.bytebuffer.QpidByteBuffer;
import org.apache.qpid.server.consumer.AbstractConsumerTarget;
import org.apache.qpid.server.message.MessageInstance;
import org.apache.qpid.server.message.MessageInstanceConsumer;
import org.apache.qpid.server.message.ServerMessage;
import org.apache.qpid.server.plugin.MessageConverter;
import org.apache.qpid.server.protocol.MessageConverterRegistry;
import org.apache.qpid.server.protocol.v1_0.messaging.SectionEncoder;
import org.apache.qpid.server.protocol.v1_0.messaging.SectionEncoderImpl;
import org.apache.qpid.server.protocol.v1_0.type.Binary;
import org.apache.qpid.server.protocol.v1_0.type.DeliveryState;
import org.apache.qpid.server.protocol.v1_0.type.Outcome;
import org.apache.qpid.server.protocol.v1_0.type.BaseTarget;
import org.apache.qpid.server.protocol.v1_0.type.UnsignedInteger;
import org.apache.qpid.server.protocol.v1_0.type.codec.AMQPDescribedTypeRegistry;
import org.apache.qpid.server.protocol.v1_0.type.messaging.Accepted;
import org.apache.qpid.server.protocol.v1_0.type.messaging.EncodingRetainingSection;
import org.apache.qpid.server.protocol.v1_0.type.messaging.Header;
import org.apache.qpid.server.protocol.v1_0.type.messaging.HeaderSection;
import org.apache.qpid.server.protocol.v1_0.type.messaging.Modified;
import org.apache.qpid.server.protocol.v1_0.type.messaging.Released;
import org.apache.qpid.server.protocol.v1_0.type.transaction.TransactionalState;
import org.apache.qpid.server.protocol.v1_0.type.transport.SenderSettleMode;
import org.apache.qpid.server.protocol.v1_0.type.transport.Transfer;
import org.apache.qpid.server.transport.AMQPConnection;
import org.apache.qpid.server.transport.ProtocolEngine;
import org.apache.qpid.server.txn.ServerTransaction;
class ConsumerTarget_1_0 extends AbstractConsumerTarget<ConsumerTarget_1_0>
{
private static final Logger LOGGER = LoggerFactory.getLogger(ConsumerTarget_1_0.class);
private final boolean _acquires;
private final SendingLink_1_0 _link;
private long _deliveryTag = 0L;
private Binary _transactionId;
private final AMQPDescribedTypeRegistry _typeRegistry;
private final SectionEncoder _sectionEncoder;
private boolean _queueEmpty;
public ConsumerTarget_1_0(final SendingLink_1_0 link,
boolean acquires)
{
super(false, link.getSession().getAMQPConnection());
_link = link;
_typeRegistry = link.getEndpoint().getSession().getConnection().getDescribedTypeRegistry();
_sectionEncoder = new SectionEncoderImpl(_typeRegistry);
_acquires = acquires;
}
private SendingLinkEndpoint getEndpoint()
{
return _link.getEndpoint();
}
@Override
public void updateNotifyWorkDesired()
{
boolean state = false;
Session_1_0 session = _link.getSession();
if (session != null)
{
final AMQPConnection<?> amqpConnection = session.getAMQPConnection();
state = !amqpConnection.isTransportBlockedForWriting()
&& _link.isAttached()
&& getEndpoint().hasCreditToSend();
}
setNotifyWorkDesired(state);
}
public void doSend(final MessageInstanceConsumer consumer, final MessageInstance entry, boolean batch)
{
ServerMessage serverMessage = entry.getMessage();
Message_1_0 message;
final MessageConverter<? super ServerMessage, Message_1_0> converter;
if(serverMessage instanceof Message_1_0)
{
converter = null;
message = (Message_1_0) serverMessage;
}
else
{
converter =
(MessageConverter<? super ServerMessage, Message_1_0>) MessageConverterRegistry.getConverter(serverMessage.getClass(), Message_1_0.class);
message = converter.convert(serverMessage, _link.getAddressSpace());
}
Transfer transfer = new Transfer();
try
{
Collection<QpidByteBuffer> bodyContent = message.getContent(0, (int) message.getSize());
HeaderSection headerSection = message.getHeaderSection();
if (entry.getDeliveryCount() != 0)
{
Header header = new Header();
if (headerSection != null)
{
final Header oldHeader = headerSection.getValue();
header.setDurable(oldHeader.getDurable());
header.setPriority(oldHeader.getPriority());
header.setTtl(oldHeader.getTtl());
}
header.setDeliveryCount(UnsignedInteger.valueOf(entry.getDeliveryCount()));
QpidByteBuffer headerPayload = _sectionEncoder.encodeObject(header);
headerSection = new HeaderSection(_typeRegistry);
headerSection.setEncodedForm(Collections.singletonList(headerPayload));
}
List<QpidByteBuffer> payload = new ArrayList<>();
if(headerSection != null)
{
payload.addAll(headerSection.getEncodedForm());
}
EncodingRetainingSection<?> section;
if((section = message.getDeliveryAnnotationsSection()) != null)
{
payload.addAll(section.getEncodedForm());
}
if((section = message.getMessageAnnotationsSection()) != null)
{
payload.addAll(section.getEncodedForm());
}
if((section = message.getPropertiesSection()) != null)
{
payload.addAll(section.getEncodedForm());
}
if((section = message.getApplicationPropertiesSection()) != null)
{
payload.addAll(section.getEncodedForm());
}
payload.addAll(bodyContent);
if((section = message.getFooterSection()) != null)
{
payload.addAll(section.getEncodedForm());
}
transfer.setPayload(payload);
for(QpidByteBuffer buf : payload)
{
buf.dispose();
}
byte[] data = new byte[8];
ByteBuffer.wrap(data).putLong(_deliveryTag++);
final Binary tag = new Binary(data);
transfer.setDeliveryTag(tag);
if (_link.isAttached())
{
if (SenderSettleMode.SETTLED.equals(getEndpoint().getSendingSettlementMode()))
{
transfer.setSettled(true);
}
else
{
UnsettledAction action = _acquires
? new DispositionAction(tag, entry, consumer)
: new DoNothingAction(tag, entry);
_link.addUnsettled(tag, action, entry);
}
if (_transactionId != null)
{
TransactionalState state = new TransactionalState();
state.setTxnId(_transactionId);
transfer.setState(state);
}
// TODO - need to deal with failure here
if (_acquires && _transactionId != null)
{
ServerTransaction txn = _link.getTransaction(_transactionId);
if (txn != null)
{
txn.addPostTransactionAction(new ServerTransaction.Action()
{
public void postCommit()
{
}
public void onRollback()
{
entry.release(consumer);
_link.getEndpoint().updateDisposition(tag, (DeliveryState) null, true);
}
});
}
}
getSession().getAMQPConnection().registerMessageDelivered(message.getSize());
getEndpoint().transfer(transfer, false);
}
else
{
entry.release(consumer);
}
}
finally
{
transfer.dispose();
if(converter != null)
{
converter.dispose(message);
}
}
}
public void flushBatched()
{
// TODO
}
/*
Currently if a queue is deleted the consumer sits there withiout being closed, but
obviously not receiving any new messages
public void queueDeleted()
{
//TODO
getEndpoint().setSource(null);
getEndpoint().close();
final LinkRegistry linkReg = getSession().getConnection()
.getAddressSpace()
.getLinkRegistry(getEndpoint().getSession().getConnection().getRemoteContainerId());
linkReg.unregisterSendingLink(getEndpoint().getName());
}
*/
public boolean allocateCredit(final ServerMessage msg)
{
ProtocolEngine protocolEngine = getSession().getConnection();
final boolean hasCredit = _link.isAttached() && getEndpoint().hasCreditToSend();
updateNotifyWorkDesired();
if (hasCredit)
{
SendingLinkEndpoint linkEndpoint = _link.getEndpoint();
linkEndpoint.setLinkCredit(linkEndpoint.getLinkCredit().subtract(UnsignedInteger.ONE));
}
return hasCredit;
}
public void restoreCredit(final ServerMessage message)
{
final SendingLinkEndpoint endpoint = _link.getEndpoint();
endpoint.setLinkCredit(endpoint.getLinkCredit().add(UnsignedInteger.ONE));
updateNotifyWorkDesired();
}
public void queueEmpty()
{
if(_link.drained())
{
updateNotifyWorkDesired();
}
}
public void flowStateChanged()
{
updateNotifyWorkDesired();
if (isSuspended() && getEndpoint() != null)
{
_transactionId = _link.getTransactionId();
}
}
@Override
public Session_1_0 getSession()
{
return _link.getSession();
}
public void flush()
{
while(sendNextMessage());
}
private class DispositionAction implements UnsettledAction
{
private final MessageInstance _queueEntry;
private final Binary _deliveryTag;
private final MessageInstanceConsumer _consumer;
public DispositionAction(Binary tag, MessageInstance queueEntry, final MessageInstanceConsumer consumer)
{
_deliveryTag = tag;
_queueEntry = queueEntry;
_consumer = consumer;
}
public MessageInstanceConsumer getConsumer()
{
return _consumer;
}
public boolean process(DeliveryState state, final Boolean settled)
{
Binary transactionId = null;
final Outcome outcome;
// If disposition is settled this overrides the txn?
if(state instanceof TransactionalState)
{
transactionId = ((TransactionalState)state).getTxnId();
outcome = ((TransactionalState)state).getOutcome();
}
else if (state instanceof Outcome)
{
outcome = (Outcome) state;
}
else
{
outcome = null;
}
ServerTransaction txn = _link.getTransaction(transactionId);
if(outcome instanceof Accepted)
{
if (_queueEntry.makeAcquisitionUnstealable(getConsumer()))
{
txn.dequeue(_queueEntry.getEnqueueRecord(),
new ServerTransaction.Action()
{
public void postCommit()
{
if (_queueEntry.isAcquiredBy(getConsumer()))
{
_queueEntry.delete();
}
}
public void onRollback()
{
}
});
}
txn.addPostTransactionAction(new ServerTransaction.Action()
{
public void postCommit()
{
if(Boolean.TRUE.equals(settled))
{
_link.getEndpoint().settle(_deliveryTag);
}
else
{
_link.getEndpoint().updateDisposition(_deliveryTag, (DeliveryState) outcome, true);
}
_link.getEndpoint().sendFlowConditional();
}
public void onRollback()
{
if(Boolean.TRUE.equals(settled))
{
final Modified modified = new Modified();
modified.setDeliveryFailed(true);
_link.getEndpoint().updateDisposition(_deliveryTag, modified, true);
_link.getEndpoint().sendFlowConditional();
_queueEntry.incrementDeliveryCount();
_queueEntry.release(getConsumer());
}
}
});
}
else if(outcome instanceof Released)
{
txn.addPostTransactionAction(new ServerTransaction.Action()
{
public void postCommit()
{
_queueEntry.release(getConsumer());
_link.getEndpoint().settle(_deliveryTag);
}
public void onRollback()
{
_link.getEndpoint().settle(_deliveryTag);
}
});
}
else if(outcome instanceof Modified)
{
txn.addPostTransactionAction(new ServerTransaction.Action()
{
public void postCommit()
{
_queueEntry.release(getConsumer());
if(Boolean.TRUE.equals(((Modified)outcome).getDeliveryFailed()))
{
_queueEntry.incrementDeliveryCount();
}
_link.getEndpoint().settle(_deliveryTag);
}
public void onRollback()
{
if(Boolean.TRUE.equals(settled))
{
final Modified modified = new Modified();
modified.setDeliveryFailed(true);
_link.getEndpoint().updateDisposition(_deliveryTag, modified, true);
_link.getEndpoint().sendFlowConditional();
}
}
});
}
return (transactionId == null && outcome != null);
}
}
private class DoNothingAction implements UnsettledAction
{
public DoNothingAction(final Binary tag,
final MessageInstance queueEntry)
{
}
public boolean process(final DeliveryState state, final Boolean settled)
{
Binary transactionId = null;
Outcome outcome = null;
// If disposition is settled this overrides the txn?
if(state instanceof TransactionalState)
{
transactionId = ((TransactionalState)state).getTxnId();
outcome = ((TransactionalState)state).getOutcome();
}
else if (state instanceof Outcome)
{
outcome = (Outcome) state;
}
return true;
}
}
@Override
public void acquisitionRemoved(final MessageInstance node)
{
}
@Override
public String getTargetAddress()
{
BaseTarget target = _link.getEndpoint().getTarget();
return target instanceof org.apache.qpid.server.protocol.v1_0.type.messaging.Target ? ((org.apache.qpid.server.protocol.v1_0.type.messaging.Target) target).getAddress() : _link.getEndpoint().getName();
}
@Override
public long getUnacknowledgedBytes()
{
// TODO
return 0;
}
@Override
public long getUnacknowledgedMessages()
{
// TODO
return 0;
}
@Override
public String toString()
{
return "ConsumerTarget_1_0[linkSession=" + _link.getSession().toLogString() + "]";
}
}