summaryrefslogtreecommitdiff
path: root/cpp/src/qmf/ConsoleSessionImpl.h
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2011-05-27 15:44:23 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2011-05-27 15:44:23 +0000
commit66765100f4257159622cefe57bed50125a5ad017 (patch)
treea88ee23bb194eb91f0ebb2d9b23ff423e3ea8e37 /cpp/src/qmf/ConsoleSessionImpl.h
parent1aeaa7b16e5ce54f10c901d75c4d40f9f88b9db6 (diff)
parent88b98b2f4152ef59a671fad55a0d08338b6b78ca (diff)
downloadqpid-python-rajith_jms_client.tar.gz
Creating a branch for experimenting with some ideas for JMS client.rajith_jms_client
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/rajith_jms_client@1128369 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qmf/ConsoleSessionImpl.h')
-rw-r--r--cpp/src/qmf/ConsoleSessionImpl.h108
1 files changed, 0 insertions, 108 deletions
diff --git a/cpp/src/qmf/ConsoleSessionImpl.h b/cpp/src/qmf/ConsoleSessionImpl.h
deleted file mode 100644
index 411b3f016a..0000000000
--- a/cpp/src/qmf/ConsoleSessionImpl.h
+++ /dev/null
@@ -1,108 +0,0 @@
-#ifndef _QMF_CONSOLE_SESSION_IMPL_H_
-#define _QMF_CONSOLE_SESSION_IMPL_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/RefCounted.h"
-#include "qmf/ConsoleSession.h"
-#include "qmf/AgentImpl.h"
-#include "qmf/SchemaId.h"
-#include "qmf/Schema.h"
-#include "qmf/ConsoleEventImpl.h"
-#include "qmf/SchemaCache.h"
-#include "qmf/Query.h"
-#include "qpid/sys/Mutex.h"
-#include "qpid/sys/Condition.h"
-#include "qpid/sys/Thread.h"
-#include "qpid/sys/Runnable.h"
-#include "qpid/log/Statement.h"
-#include "qpid/messaging/Message.h"
-#include "qpid/messaging/Connection.h"
-#include "qpid/messaging/Session.h"
-#include "qpid/messaging/Sender.h"
-#include "qpid/messaging/Address.h"
-#include "qpid/management/Buffer.h"
-#include "qpid/types/Variant.h"
-#include <map>
-#include <queue>
-
-namespace qmf {
- class ConsoleSessionImpl : public virtual qpid::RefCounted, public qpid::sys::Runnable {
- public:
- ~ConsoleSessionImpl();
-
- //
- // Methods from API handle
- //
- ConsoleSessionImpl(qpid::messaging::Connection& c, const std::string& o);
- void setDomain(const std::string& d) { domain = d; }
- void setAgentFilter(const std::string& f);
- void open();
- void close();
- bool nextEvent(ConsoleEvent& e, qpid::messaging::Duration t);
- int pendingEvents() const;
- uint32_t getAgentCount() const;
- Agent getAgent(uint32_t i) const;
- Agent getConnectedBrokerAgent() const { return connectedBrokerAgent; }
- Subscription subscribe(const Query&, const std::string& agentFilter, const std::string& options);
- Subscription subscribe(const std::string&, const std::string& agentFilter, const std::string& options);
-
- protected:
- mutable qpid::sys::Mutex lock;
- qpid::sys::Condition cond;
- qpid::messaging::Connection connection;
- qpid::messaging::Session session;
- qpid::messaging::Sender directSender;
- qpid::messaging::Sender topicSender;
- std::string domain;
- uint32_t maxAgentAgeMinutes;
- bool listenOnDirect;
- bool strictSecurity;
- Query agentQuery;
- bool opened;
- std::queue<ConsoleEvent> eventQueue;
- qpid::sys::Thread* thread;
- bool threadCanceled;
- uint64_t lastVisit;
- uint64_t lastAgePass;
- std::map<std::string, Agent> agents;
- Agent connectedBrokerAgent;
- bool connectedBrokerInAgentList;
- qpid::messaging::Address replyAddress;
- std::string directBase;
- std::string topicBase;
- boost::shared_ptr<SchemaCache> schemaCache;
-
- void enqueueEvent(const ConsoleEvent&);
- void enqueueEventLH(const ConsoleEvent&);
- void dispatch(qpid::messaging::Message);
- void sendBrokerLocate();
- void sendAgentLocate();
- void handleAgentUpdate(const std::string&, const qpid::types::Variant::Map&, const qpid::messaging::Message&);
- void handleV1SchemaResponse(qpid::management::Buffer&, uint32_t, const qpid::messaging::Message&);
- void periodicProcessing(uint64_t);
- void run();
-
- friend class AgentImpl;
- };
-}
-
-#endif