/usr/include/qmf/AgentSession.h is in libqmf2-dev 0.16-9ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | #ifndef QMF_AGENT_SESSION_H
#define QMF_AGENT_SESSION_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 <qmf/ImportExport.h>
#include "qmf/Handle.h"
#include "qpid/messaging/Duration.h"
#include "qpid/messaging/Connection.h"
#include "qpid/types/Variant.h"
#include <string>
namespace qmf {
#ifndef SWIG
template <class> class PrivateImplRef;
#endif
class AgentSessionImpl;
class AgentEvent;
class Schema;
class Data;
class DataAddr;
class QMF_CLASS_EXTERN AgentSession : public qmf::Handle<AgentSessionImpl> {
public:
QMF_EXTERN AgentSession(AgentSessionImpl* impl = 0);
QMF_EXTERN AgentSession(const AgentSession&);
QMF_EXTERN AgentSession& operator=(const AgentSession&);
QMF_EXTERN ~AgentSession();
/**
* AgentSession
* A session that runs over an AMQP connection for QMF agent operation.
*
* @param connection - An opened qpid::messaging::Connection
* @param options - An optional string containing options
*
* The options string is of the form "{key:value,key:value}". The following keys are supported:
*
* interval:N - Heartbeat interval in seconds [default: 60]
* external:{True,False} - Use external data storage (queries and subscriptions are pass-through) [default: False]
* allow-queries:{True,False} - If True: automatically allow all queries [default]
* If False: generate an AUTH_QUERY event to allow per-query authorization
* allow-methods:{True,False} - If True: automatically allow all methods [default]
* If False: generate an AUTH_METHOD event to allow per-method authorization
* max-subscriptions:N - Maximum number of concurrent subscription queries permitted [default: 64]
* min-sub-interval:N - Minimum publish interval (in milliseconds) permitted for a subscription [default: 3000]
* sub-lifetime:N - Lifetime (in seconds with no keepalive) for a subscription [default: 300]
* public-events:{True,False} - If True: QMF events are sent to the topic exchange [default]
* If False: QMF events are only sent to authorized subscribers
* listen-on-direct:{True,False} - If True: Listen on legacy direct-exchange address for backward compatibility [default]
* If False: Listen only on the routable direct address
* strict-security:{True,False} - If True: Cooperate with the broker to enforce strict access control to the network
* - If False: Operate more flexibly with regard to use of messaging facilities [default]
* max-thread-wait-time:N - Time (in seconds) the session thread will wait for messages from the network between
* periodic background processing passes. [default: 5]
* Must not be greater than 'interval'. Larger numbers will cause fewer wake-ups but will
* increase the time it takes to shut down the process. This setting will not affect the
* agent's response time for queries or method invocation.
*/
QMF_EXTERN AgentSession(qpid::messaging::Connection& conn, const std::string& options="");
/**
* setDomain - Change the QMF domain that this agent will operate in. If this is not called,
* the domain will be "default". Agents in a domain can be seen only by consoles in the same domain.
* This must be called prior to opening the agent session.
*/
QMF_EXTERN void setDomain(const std::string& domain);
/**
* Set identifying attributes of this agent.
* setVendor - Set the vendor string
* setProduct - Set the product name string
* setInstance - Set the unique instance name (if not set, a UUID will be assigned)
* These must be called prior to opening the agent session.
*/
QMF_EXTERN void setVendor(const std::string& vendor);
QMF_EXTERN void setProduct(const std::string& product);
QMF_EXTERN void setInstance(const std::string& instance);
/**
* setAttribute - Set an arbitrary attribute for this agent. The attributes are not used
* to uniquely identify the agent but can be used as a search criteria when looking for agents.
* This must be called prior to opening the agent session.
*/
QMF_EXTERN void setAttribute(const std::string& key, const qpid::types::Variant& value);
/**
* Get the identifying name of the agent.
*/
QMF_EXTERN const std::string& getName() const;
/**
* Open the agent session. After opening the session, the domain, identifying strings, and attributes cannot
* be changed.
*/
QMF_EXTERN void open();
/**
* Close the session. Once closed, the session no longer communicates on the messaging network.
*/
QMF_EXTERN void close();
/**
* Get the next event from the agent session. Events represent actions that must be acted upon by the
* agent application. This method blocks for up to the timeout if there are no events to be handled.
* This method will typically be the focus of the agent application's main execution loop.
* If the timeout is set to Duration::IMMEDIATE, the call will not block.
*/
QMF_EXTERN bool nextEvent(AgentEvent& outEvent, qpid::messaging::Duration timeout=qpid::messaging::Duration::FOREVER);
/**
* Return the number of events pending for nextEvent. This method will never block.
*/
QMF_EXTERN int pendingEvents() const;
/**
* Register a schema to be exposed by this agent.
*/
QMF_EXTERN void registerSchema(Schema& schema);
/**
* Add data to be managed internally by the agent. If the option external:True is selected, this call
* should not be used.
*
* @param data - The data object being managed by the agent.
* @param name - A name unique to this object to be used to address the object.
* If left default, a unique name will be assigned by the agent.
* @param persistent - Set this to true if the data object is to be considered persistent
* across different sessions. If persistent, it is the agent application's
* responsibility to ensure the name is the same each time it is added.
*/
QMF_EXTERN DataAddr addData(Data& data, const std::string& name="", bool persistent=false);
/**
* Delete data from internal agent management.
*/
QMF_EXTERN void delData(const DataAddr& dataAddr);
/**
* The following methods are used to respond to events received in nextEvent.
*
* authAccept - Accept an authorization request.
* authReject - Reject/forbid an authorization request.
* raiseException - indicate failure of an operation (i.e. query or method call).
* response - Provide data in response to a query (only for option: external:True)
* complete - Indicate that the response to a query is complete (external:True only)
* methodSuccess - Indicate the successful completion of a method call.
*/
QMF_EXTERN void authAccept(AgentEvent& event);
QMF_EXTERN void authReject(AgentEvent& event, const std::string& diag="");
QMF_EXTERN void raiseException(AgentEvent& event, const std::string& errorText);
QMF_EXTERN void raiseException(AgentEvent& event, const Data& errorData);
QMF_EXTERN void response(AgentEvent& event, const Data& responseData);
QMF_EXTERN void complete(AgentEvent& event);
QMF_EXTERN void methodSuccess(AgentEvent& event);
/**
* Raise an event to be sent into the QMF network.
*
* @param data - A data object that contains the event contents.
* @param severity - Explicit severity (from qmf/SchemaTypes.h). If omitted, the severity is set to
* the default severity for the data's schema. If the data has no schema, the severity defaults
* to SEV_NOTICE.
*/
QMF_EXTERN void raiseEvent(const Data& data);
QMF_EXTERN void raiseEvent(const Data& data, int severity);
#ifndef SWIG
private:
friend class qmf::PrivateImplRef<AgentSession>;
friend struct AgentSessionImplAccess;
#endif
};
}
#endif
|