/usr/include/recon/UserAgent.hxx is in librecon-1.9-dev 1.9.6-1.
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 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 | #if !defined(UserAgent_hxx)
#define UserAgent_hxx
#include "ConversationManager.hxx"
#include "ConversationProfile.hxx"
#include "UserAgentMasterProfile.hxx"
#include "HandleTypes.hxx"
#include <resip/stack/InterruptableStackThread.hxx>
#include <resip/dum/MasterProfile.hxx>
#include <resip/dum/RegistrationHandler.hxx>
#include <resip/dum/SubscriptionHandler.hxx>
#include <resip/dum/DumShutdownHandler.hxx>
#include <resip/dum/DialogUsageManager.hxx>
#include <rutil/SelectInterruptor.hxx>
#include <rutil/Log.hxx>
#include <rutil/SharedPtr.hxx>
#include <rutil/Mutex.hxx>
#ifdef WIN32
#define sleepMs(t) Sleep(t)
#else
#define sleepMs(t) usleep(t*1000)
#endif
namespace recon
{
class UserAgentShutdownCmd;
class SetActiveConversationProfileCmd;
class UserAgentClientSubscription;
class UserAgentRegistration;
/**
This class is one of two main classes of concern to an application
using the UserAgent library. This class should be subclassed by
the application and the UserAgent handlers should be implemented
by it.
This class is responsible for handling tasks that are not directly
related to managing the Conversations themselves. All conversation
management is done via the ConversationManager class.
This class handles tasks such as:
- Startup, Process Loop, and shutdown handling
- Handling user agent settings (UserAgentMasterProfile)
- Handling and dispatching Application Timers
- Management of Conversation Profiles and Registrations
- Management of Subscriptions
Author: Scott Godin (sgodin AT SipSpectrum DOT com)
*/
class UserAgent : public resip::ClientRegistrationHandler,
public resip::ClientSubscriptionHandler,
public resip::DumShutdownHandler
{
public:
/**
Constructor
@param conversationManager Application subclassed Conversation
Manager
@param masterProfile Object containing useragent settings
@param socketFunc A pointer to a function that will be called after a socket
in the DNS or SIP transport layers of the stack has been
created. This callback can be used to control low level
socket options, such as Quality-of-Service/DSCP.
Note: For SIP TCP sockets there is one call for the listen
socket, and one (or two) calls for each connection created
afterwards. For each inbound TCP connection the first
callback is called immediately before the socket is connected,
and if configured it is called again after the connect call
has completed and before the first data is sent out.
On some OS's you cannot set QOS until the socket is successfully
connected. To enable this behavior call:
Connection::setEnablePostConnectSocketFuncCall();
*/
UserAgent(ConversationManager* conversationManager, resip::SharedPtr<UserAgentMasterProfile> masterProfile, resip::AfterSocketCreationFuncPtr socketFunc=0);
virtual ~UserAgent();
/**
Starts the SIP stack thread.
@note This should be called before calling process() in a loop
@warning Ensure you have added at least one Conversation Profile
with defaultOutgoing set to true before calling this.
*/
void startup();
/**
This should be called in a loop to give process cycles to the UserAgent.
@param timeoutMs Will return after timeoutMs if nothing to do.
Application can do some work, but should call
process again ASAP.
*/
void process(int timeoutMs); // call this in a loop
/**
Used to initiate a shutdown of the useragent. This function blocks
until the shutdown is complete.
@note There should not be an active process request when this
is called.
*/
void shutdown();
/**
Used to initiate a snapshot of the existing DNS entries in the
cache to the logging subsystem.
*/
void logDnsCache();
/**
Used to clear the existing DNS entries in the cache.
*/
void clearDnsCache();
/**
Retrieves the ConversationManager passed in the constructor.
@return Pointer to the conversation manager
*/
ConversationManager* getConversationManager();
// Utility Methods ////////////////////////////////////////////////////////////
typedef enum
{
SubsystemAll,
SubsystemContents,
SubsystemDns,
SubsystemDum,
SubsystemSdp,
SubsystemSip,
SubsystemTransaction,
SubsystemTransport,
SubsystemStats,
SubsystemRecon,
SubsystemFlowManager,
SubsystemReTurn
} LoggingSubsystem;
/**
Static method that sets the logging level for a particular subsystem,
or all subsystems.
@param level Logging level to set
@param subsystem Subsystem to set level on
@note: Use UserAgent::SubsystemAll to set the logging level on all
subsystems
*/
static void setLogLevel(resip::Log::Level level, LoggingSubsystem subsystem=SubsystemAll);
/**
Adds a Conversation Profile to be managed, by the user agent. SIP Registration
is performed, if required.
@param conversationProfile Profile to add
@param defaultOutgoing Set to true to set this profile as the default
profile to use for outbound calls.
*/
ConversationProfileHandle addConversationProfile(resip::SharedPtr<ConversationProfile> conversationProfile, bool defaultOutgoing=true); // thread safe
/**
Sets an existing Conversation Profile to the default profile to
use for outbound calls.
@param handle ConversationProfile handle to use
*/
void setDefaultOutgoingConversationProfile(ConversationProfileHandle handle);
/**
Destroys an existing Conversation Profile. SIP un-registration is
performed, if required.
@param handle ConversationProfile handle to use
@note If this ConversationProfile is currently the default outbound
profile, then the next profile in the list will become the default
*/
void destroyConversationProfile(ConversationProfileHandle handle);
/**
Used by an application to start a timer that is managed by the
useragent. When the timer expires the onApplicationTimer callback
will be called.
Applications should override this UserAgent class and callback in
order to use application timers.
@param timerId Id representing the timers purpose
@param durationMs the duration of the timer in ms
@param seqNumber Can be used by the application to differentiate
"active" from "non-active" timers, since timers
cannot be stopped
*/
virtual void startApplicationTimer(unsigned int timerId, unsigned int durationMs, unsigned int seqNumber);
/**
Requests that the user agent create and manage an event subscription.
When an subscribed event is received the onSubscriptionNotify callback
is used. If the subscription is terminated by the server, the application
or due to network failure the onSubscriptionTerminated callback is used.
Applications should override this UserAgent class and callbacks in order
to use subscriptions.
@param eventType Event type we are subscribing to
@param target A URI representing the location of the subscription server
@param subscriptionTime Requested time that the subscription should stay active,
before sending a refresh request is required.
@param mimeType The mime type of event body expected
*/
SubscriptionHandle createSubscription(const resip::Data& eventType, const resip::NameAddr& target, unsigned int subscriptionTime, const resip::Mime& mimeType); // thread safe
/**
Destroys an existing subscriptions. Unsubscribe request is sent,
if required.
@param handle Subscription handle to destroy
*/
void destroySubscription(SubscriptionHandle handle);
////////////////////////////////////////////////////////////////////
// UserAgent Handlers //////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
/**
Callback used when an application timer expires.
@note An application should override this method if it uses
startApplicaitonTimer.
@param timerId Id representing the timers purpose
@param durationMs the duration of the timer in ms
@param seqNumber Can be used by the application to differentiate
"active" from "non-active" timers, since timers
cannot be stopped
*/
virtual void onApplicationTimer(unsigned int timerId, unsigned int durationMs, unsigned int seqNumber);
/**
Callback used when a subscription has received an event notification
from the server.
@note An application should override this method if it uses
createSubscription.
@param handle Subscription handle that event applies to
@param notifyData Data representation of the event received
*/
virtual void onSubscriptionNotify(SubscriptionHandle handle, const resip::Data& notifyData);
/**
Callback used when a subscription is terminated.
@note An application should override this method if it uses
createSubscription.
@param handle Subscription handle that terminated
@param statusCode The status code that caused termination. If
application terminated, then statusCode will be 0.
*/
virtual void onSubscriptionTerminated(SubscriptionHandle handle, unsigned int statusCode);
protected:
// Shutdown Handler ////////////////////////////////////////////////////////////
void onDumCanBeDeleted();
// Registration Handler ////////////////////////////////////////////////////////
virtual void onSuccess(resip::ClientRegistrationHandle h, const resip::SipMessage& response);
virtual void onFailure(resip::ClientRegistrationHandle h, const resip::SipMessage& response);
virtual void onRemoved(resip::ClientRegistrationHandle h, const resip::SipMessage& response);
virtual int onRequestRetry(resip::ClientRegistrationHandle h, int retryMinimum, const resip::SipMessage& msg);
// ClientSubscriptionHandler ///////////////////////////////////////////////////
virtual void onUpdatePending(resip::ClientSubscriptionHandle h, const resip::SipMessage& notify, bool outOfOrder);
virtual void onUpdateActive(resip::ClientSubscriptionHandle h, const resip::SipMessage& notify, bool outOfOrder);
virtual void onUpdateExtension(resip::ClientSubscriptionHandle, const resip::SipMessage& notify, bool outOfOrder);
virtual void onTerminated(resip::ClientSubscriptionHandle h, const resip::SipMessage* notify);
virtual void onNewSubscription(resip::ClientSubscriptionHandle h, const resip::SipMessage& notify);
virtual int onRequestRetry(resip::ClientSubscriptionHandle h, int retryMinimum, const resip::SipMessage& notify);
private:
friend class ConversationManager;
friend class UserAgentShutdownCmd;
friend class AddConversationProfileCmd;
friend class SetDefaultOutgoingConversationProfileCmd;
friend class DestroyConversationProfileCmd;
friend class CreateSubscriptionCmd;
friend class DestroySubscriptionCmd;
friend class MediaResourceParticipant;
// Note: In general the following fns are not thread safe and must be called from dum process
// loop only
friend class UserAgentServerAuthManager;
friend class RemoteParticipant;
friend class DefaultDialogSet;
friend class RemoteParticipantDialogSet;
resip::SharedPtr<ConversationProfile> getDefaultOutgoingConversationProfile();
resip::SharedPtr<ConversationProfile> getIncomingConversationProfile(const resip::SipMessage& msg); // returns the most appropriate conversation profile for the message
resip::SharedPtr<UserAgentMasterProfile> getUserAgentMasterProfile();
resip::DialogUsageManager& getDialogUsageManager();
void addTransports();
void post(resip::ApplicationMessage& message, unsigned int ms=0);
void shutdownImpl();
void addConversationProfileImpl(ConversationProfileHandle handle, resip::SharedPtr<ConversationProfile> conversationProfile, bool defaultOutgoing=true);
void setDefaultOutgoingConversationProfileImpl(ConversationProfileHandle handle);
void destroyConversationProfileImpl(ConversationProfileHandle handle);
void createSubscriptionImpl(SubscriptionHandle handle, const resip::Data& eventType, const resip::NameAddr& target, unsigned int subscriptionTime, const resip::Mime& mimeType);
void destroySubscriptionImpl(SubscriptionHandle handle);
// Subscription storage
friend class UserAgentClientSubscription;
typedef std::map<SubscriptionHandle, UserAgentClientSubscription *> SubscriptionMap;
SubscriptionMap mSubscriptions;
resip::Mutex mSubscriptionHandleMutex;
SubscriptionHandle mCurrentSubscriptionHandle;
SubscriptionHandle getNewSubscriptionHandle(); // thread safe
void registerSubscription(UserAgentClientSubscription *);
void unregisterSubscription(UserAgentClientSubscription *);
// Conversation Profile Storage
typedef std::map<ConversationProfileHandle, resip::SharedPtr<ConversationProfile> > ConversationProfileMap;
ConversationProfileMap mConversationProfiles;
resip::Mutex mConversationProfileHandleMutex;
ConversationProfileHandle mCurrentConversationProfileHandle;
ConversationProfileHandle mDefaultOutgoingConversationProfileHandle;
ConversationProfileHandle getNewConversationProfileHandle(); // thread safe
friend class UserAgentRegistration;
typedef std::map<ConversationProfileHandle, UserAgentRegistration*> RegistrationMap;
RegistrationMap mRegistrations;
void registerRegistration(UserAgentRegistration *);
void unregisterRegistration(UserAgentRegistration *);
ConversationManager* mConversationManager;
resip::SharedPtr<UserAgentMasterProfile> mProfile;
resip::Security* mSecurity;
resip::SelectInterruptor mSelectInterruptor;
resip::SipStack mStack;
resip::DialogUsageManager mDum;
resip::InterruptableStackThread mStackThread;
volatile bool mDumShutdown;
};
}
#endif
/* ====================================================================
Copyright (c) 2007-2008, Plantronics, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Plantronics nor the names of its contributors
may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
==================================================================== */
|