use of org.apache.qpid.server.url.AMQBindingURL in project qpid-broker-j by apache.
the class MessageConverter_0_8_to_0_10 method convertMetaData.
private MessageMetaData_0_10 convertMetaData(AMQMessage message_0_8) {
DeliveryProperties deliveryProps = new DeliveryProperties();
MessageProperties messageProps = new MessageProperties();
int size = (int) message_0_8.getSize();
BasicContentHeaderProperties properties = message_0_8.getContentHeaderBody().getProperties();
final AMQShortString exchange = message_0_8.getMessagePublishInfo().getExchange();
if (exchange != null) {
deliveryProps.setExchange(exchange.toString());
}
deliveryProps.setExpiration(message_0_8.getExpiration());
if (message_0_8.getExpiration() != 0) {
deliveryProps.setTtl(message_0_8.getExpiration() - message_0_8.getArrivalTime());
}
deliveryProps.setImmediate(message_0_8.isImmediate());
deliveryProps.setDiscardUnroutable(!message_0_8.isMandatory());
deliveryProps.setPriority(MessageDeliveryPriority.get(properties.getPriority()));
deliveryProps.setRoutingKey(message_0_8.getInitialRoutingAddress());
deliveryProps.setTimestamp(properties.getTimestamp());
if (properties.getDeliveryMode() == BasicContentHeaderProperties.PERSISTENT) {
deliveryProps.setDeliveryMode(MessageDeliveryMode.PERSISTENT);
} else {
deliveryProps.setDeliveryMode(MessageDeliveryMode.NON_PERSISTENT);
}
messageProps.setContentEncoding(properties.getEncodingAsString());
messageProps.setContentLength(size);
if (properties.getAppId() != null) {
messageProps.setAppId(properties.getAppId().getBytes());
}
messageProps.setContentType(properties.getContentTypeAsString());
if (properties.getCorrelationId() != null) {
messageProps.setCorrelationId(properties.getCorrelationId().getBytes());
}
if (properties.getReplyTo() != null && properties.getReplyTo().length() != 0) {
String origReplyToString = properties.getReplyTo().toString();
ReplyTo replyTo = new ReplyTo();
// if the string looks like a binding URL, then attempt to parse it...
try {
AMQBindingURL burl = new AMQBindingURL(origReplyToString);
String routingKey = burl.getRoutingKey();
if (routingKey != null) {
replyTo.setRoutingKey(routingKey);
}
String exchangeName = burl.getExchangeName();
if (exchangeName != null && !"".equals(exchangeName)) {
replyTo.setExchange(exchangeName);
}
} catch (URISyntaxException e) {
replyTo.setRoutingKey(origReplyToString);
}
messageProps.setReplyTo(replyTo);
}
if (properties.getMessageId() != null) {
UUID uuid;
String messageIdAsString = properties.getMessageIdAsString();
if (messageIdAsString.startsWith("ID:")) {
messageIdAsString = messageIdAsString.substring(3);
}
try {
uuid = UUID.fromString(messageIdAsString);
} catch (IllegalArgumentException e) {
uuid = UUID.nameUUIDFromBytes(messageIdAsString.getBytes(UTF_8));
}
messageProps.setMessageId(uuid);
}
if (properties.getUserId() != null) {
messageProps.setUserId(properties.getUserId().getBytes());
}
FieldTable fieldTable = properties.getHeaders();
Map<String, Object> appHeaders = FieldTable.convertToMap(fieldTable);
if (properties.getType() != null) {
appHeaders.put("x-jms-type", properties.getTypeAsString());
}
messageProps.setApplicationHeaders(appHeaders);
Header header = new Header(deliveryProps, messageProps, null);
return new MessageMetaData_0_10(header, size, message_0_8.getArrivalTime());
}
use of org.apache.qpid.server.url.AMQBindingURL in project qpid-broker-j by apache.
the class MessageConverter_0_8_to_1_0 method convertReplyTo.
private String convertReplyTo(final AMQShortString replyTo) {
String convertedReplyTo;
final String originalReplyTo = String.valueOf(replyTo);
try {
AMQBindingURL burl = new AMQBindingURL(originalReplyTo);
if (burl.getExchangeName() != null && !burl.getExchangeName().equals("")) {
convertedReplyTo = burl.getExchangeName();
if (burl.getRoutingKey() != null) {
convertedReplyTo += "/" + burl.getRoutingKey();
}
} else if (burl.getQueueName() != null && !burl.getQueueName().equals("")) {
convertedReplyTo = burl.getQueueName();
} else if (burl.getRoutingKey() != null) {
convertedReplyTo = burl.getRoutingKey();
} else {
convertedReplyTo = originalReplyTo;
}
} catch (URISyntaxException e) {
convertedReplyTo = originalReplyTo;
}
return convertedReplyTo;
}
Aggregations