#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 "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/Address.h" #include "qpid/management/Buffer.h" #include "qpid/types/Variant.h" #include #include 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); uint32_t getAgentCount() const; Agent getAgent(uint32_t i) const; Agent getConnectedBrokerAgent() const { return connectedBrokerAgent; } protected: mutable qpid::sys::Mutex lock; qpid::sys::Condition cond; qpid::messaging::Connection connection; qpid::messaging::Session session; std::string domain; qpid::types::Variant::Map agentFilter; bool opened; std::queue eventQueue; qpid::sys::Thread* thread; bool threadCanceled; uint64_t lastVisit; std::map agents; Agent connectedBrokerAgent; qpid::messaging::Address replyAddress; std::string directBase; std::string topicBase; boost::shared_ptr schemaCache; void enqueueEvent(const ConsoleEvent&); void enqueueEventLH(const ConsoleEvent&); void dispatch(qpid::messaging::Message); void sendBrokerLocate(); 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