diff options
author | Alan Conway <aconway@apache.org> | 2008-10-10 04:49:48 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-10-10 04:49:48 +0000 |
commit | 5d07d177cfc5eca21c44981bbe342f0cdcced4e5 (patch) | |
tree | 0f5f83642ed5effed52a5e2547565362ce2aea8c /cpp/src/qpid/client/FailoverSubscriptionManager.h | |
parent | e7ceead683231ef2cb35a6ee70488e859f023d12 (diff) | |
download | qpid-python-5d07d177cfc5eca21c44981bbe342f0cdcced4e5.tar.gz |
QPID-1340 froM Mick Goulish: preliminary client-side failover support.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@703319 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/FailoverSubscriptionManager.h')
-rw-r--r-- | cpp/src/qpid/client/FailoverSubscriptionManager.h | 162 |
1 files changed, 162 insertions, 0 deletions
diff --git a/cpp/src/qpid/client/FailoverSubscriptionManager.h b/cpp/src/qpid/client/FailoverSubscriptionManager.h new file mode 100644 index 0000000000..fe96742876 --- /dev/null +++ b/cpp/src/qpid/client/FailoverSubscriptionManager.h @@ -0,0 +1,162 @@ +#ifndef QPID_CLIENT_FAILOVERSUBSCRIPTIONMANAGER_H +#define QPID_CLIENT_FAILOVERSUBSCRIPTIONMANAGER_H + +/* + * + * 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. + * + */ + + +#include "qpid/sys/Mutex.h" +#include <qpid/client/Dispatcher.h> +#include <qpid/client/Completion.h> +#include <qpid/client/Session.h> +#include <qpid/client/FailoverSession.h> +#include <qpid/client/MessageListener.h> +#include <qpid/client/SubscriptionManager.h> +#include <qpid/client/LocalQueue.h> +#include <qpid/client/FlowControl.h> +#include <qpid/sys/Runnable.h> + + + + +namespace qpid { +namespace client { + + +class FailoverSubscriptionManager +{ + public: + + FailoverSubscriptionManager ( FailoverSession * fs ); + + void foo ( int& arg_1 ); + + void subscribe ( MessageListener & listener, + const std::string & queue, + const FlowControl & flow, + const std::string & tag = std::string() ); + + void subscribe ( LocalQueue & localQueue, + const std::string & queue, + const FlowControl & flow, + const std::string & tag=std::string()); + + void subscribe ( MessageListener & listener, + const std::string & queue, + const std::string & tag = std::string()); + + void subscribe ( LocalQueue & localQueue, + const std::string & queue, + const std::string & tag=std::string()); + + bool get ( Message & result, + const std::string & queue, + sys::Duration timeout=0); + + void cancel ( const std::string tag ); + + void run ( ); + + void start ( ); + + void setAutoStop ( bool set = true ); + + void stop ( ); + + void setFlowControl ( const std::string & destintion, + const FlowControl & flow ); + + void setFlowControl ( const FlowControl & flow ); + + const FlowControl & getFlowControl ( ) const; + + void setFlowControl ( const std::string & tag, + uint32_t messages, + uint32_t bytes, + bool window=true ); + + void setFlowControl ( uint32_t messages, + uint32_t bytes, + bool window = true + ); + + void setAcceptMode ( bool required ); + + void setAcquireMode ( bool acquire ); + + void setAckPolicy ( const AckPolicy & autoAck ); + + AckPolicy & getAckPolicy(); + + void registerFailoverHandler ( boost::function<void ()> fh ); + + // Get ready for a failover. + void prepareForFailover ( Session newSession ); + void failover ( ); + + std::string name; + + + private: + + SubscriptionManager * subscriptionManager; + + MessageListener * savedListener; + std::string savedQueue, + savedTag; + + friend class FailoverConnection; + friend class FailoverSession; + + Session newSession; + bool newSessionIsValid; + + /* + * */ + typedef boost::function<void ()> subscribeFn; + std::vector < subscribeFn > subscribeFns; + + struct subscribeArgs + { + int interface; + MessageListener * listener; + LocalQueue * localQueue; + const std::string * queue; + const FlowControl * flow; + const std::string * tag; + + subscribeArgs ( int _interface, + MessageListener *, + LocalQueue *, + const std::string *, + const FlowControl *, + const std::string * + ); + }; + + std::vector < subscribeArgs * > subscriptionReplayVector; + +}; + +}} // namespace qpid::client + + +#endif /*!QPID_CLIENT_FAILOVERSUBSCRIPTIONMANAGER_H*/ |