summaryrefslogtreecommitdiff
path: root/cpp/broker/src/Channel.cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2006-10-06 16:17:06 +0000
committerGordon Sim <gsim@apache.org>2006-10-06 16:17:06 +0000
commit14654e5360b72adf1704838b3820c7d1fc860e8e (patch)
tree0342b1cedd2262809edb951fc234bc75deb20533 /cpp/broker/src/Channel.cpp
parent55ad18a1c847c1b14d48c56ce7ee253aadf86ef7 (diff)
downloadqpid-python-14654e5360b72adf1704838b3820c7d1fc860e8e.tar.gz
Decoupled routing from the channel and message classes.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@453657 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/broker/src/Channel.cpp')
-rw-r--r--cpp/broker/src/Channel.cpp33
1 files changed, 6 insertions, 27 deletions
diff --git a/cpp/broker/src/Channel.cpp b/cpp/broker/src/Channel.cpp
index 4fb6a52b99..ae99f4e7fa 100644
--- a/cpp/broker/src/Channel.cpp
+++ b/cpp/broker/src/Channel.cpp
@@ -126,38 +126,17 @@ void Channel::ConsumerImpl::cancel(){
if(queue) queue->cancel(this);
}
-void Channel::handlePublish(Message* msg){
- if(message.get()){
- THROW_QPID_ERROR(PROTOCOL_ERROR + 504, "Invalid message sequence: got publish before previous content was completed.");
- }
- message = Message::shared_ptr(msg);
-}
-
-void Channel::handleHeader(AMQHeaderBody::shared_ptr header, ExchangeRegistry* exchanges){
+void Channel::checkMessage(const std::string& text){
if(!message.get()){
- THROW_QPID_ERROR(PROTOCOL_ERROR + 504, "Invalid message sequence: got header before publish.");
- }
- message->setHeader(header);
- if(message->isComplete()){
- publish(exchanges);
+ THROW_QPID_ERROR(PROTOCOL_ERROR + 504, text);
}
}
-void Channel::handleContent(AMQContentBody::shared_ptr content, ExchangeRegistry* exchanges){
- if(!message.get()){
- THROW_QPID_ERROR(PROTOCOL_ERROR + 504, "Invalid message sequence: got content before publish.");
- }
- message->addContent(content);
- if(message->isComplete()){
- publish(exchanges);
- }
-}
-
-void Channel::publish(ExchangeRegistry* exchanges){
- if(!route(message, exchanges)){
- std::cout << "WARNING: Could not route message." << std::endl;
+void Channel::handlePublish(Message* msg){
+ if(message.get()){
+ THROW_QPID_ERROR(PROTOCOL_ERROR + 504, "Invalid message sequence: got publish before previous content was completed.");
}
- message.reset();
+ message = Message::shared_ptr(msg);
}
void Channel::ack(u_int64_t deliveryTag, bool multiple){