/usr/include/sipxtapi/net/SipPresenceEvent.h is in libsipxtapi-dev 3.3.0~test17-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 | //
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////
#ifndef _SipPresenceEvent_h_
#define _SipPresenceEvent_h_
// SYSTEM INCLUDES
// APPLICATION INCLUDES
#include <utl/UtlHashMap.h>
#include <net/HttpBody.h>
#include <net/Url.h>
#include <os/OsDateTime.h>
#include <os/OsBSem.h>
// DEFINES
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
#define PRESENCE_EVENT_CONTENT_TYPE "application/pidf+xml"
#define PRESENCE_EVENT_TYPE "presence"
#define BEGIN_PRESENCE "<presence xmlns=\"urn:ietf:params:xml:ns:pidf\""
#define END_PRESENCE "</presence>\n"
#define PRESENTITY_EQUAL " entity="
#define BEGIN_TUPLE "<tuple id="
#define END_TUPLE "</tuple>\n"
#define BEGIN_STATUS "<status>\n"
#define END_STATUS "</status>\n"
#define BEGIN_BASIC "<basic>"
#define END_BASIC "</basic>\n"
#define BEGIN_CONTACT "<contact>"
#define END_CONTACT "</contact>\n"
#define STATUS_OPEN "open"
#define STATUS_CLOSED "closed"
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
//! Container for tuple element in the presence event package
/**
* This class contains all the contents presented in a tuple element of the
* presence information data format described in RFC 3863. This class has the
* methods to construct and manipulate the tuple and its sub-elements.
*/
class Tuple : public UtlContainable
{
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
/**
* @name ====================== Constructors and Destructors
* @{
*/
/// Constructor
Tuple(const char* tupleId);
/// Copy constructor
Tuple(const Tuple& rTuple);
/// Destructor
~Tuple();
virtual UtlContainableType getContainableType() const;
static const UtlContainableType TYPE;
virtual unsigned int hash() const;
int compareTo(const UtlContainable *b) const;
///@}
/**
* @name ====================== Tuple Setting Interfaces
*
* These methods set/get the tuple element and sub-elements.
*
* @{
*/
void setTupleId(const char* tupleId);
void getTupleId(UtlString& tupleId) const;
void setStatus(const char* status);
void getStatus(UtlString& state) const;
void setContact(const char* url, const float priority);
void getContact(UtlString& url, float& priority) const;
///@}
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
// Variables for tuple element
UtlString mId;
// Variables for status element
UtlString mStatus;
// Variables for contact element
UtlString mContactUrl;
float mPriority;
//Assignment operator
Tuple& operator=(const Tuple& rhs);
};
//! Container for MIME type application/pidf+xml.
/**
* This class contains all the contents presented in a presence event package
* described in RFC 3863. This class has the methods to construct and
* manipulate the presence events in a presence event package.
*/
class SipPresenceEvent : public HttpBody
{
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
/**
* @name ====================== Constructors and Destructors
* @{
*/
//! Construct an empty package or one from an existing presence event package in the xml format
SipPresenceEvent(const char* entity, const char* bodyBytes = NULL);
//! Destructor that will free up the memory allocated for presence contents if it is not being deleted
virtual
~SipPresenceEvent();
///@}
/**
* @name ====================== Presence Event Serialization Interfaces
*
* @{
*/
//! Build the body of this object
void buildBody() const;
//! Get the string length of this object
virtual int getLength() const;
//! Get the serialized char representation of this presence event.
/*! \param bytes - buffer space where the presence event is written, null
* terminated.
* \param length - the number of bytes written (not including the
* null terminator).
*/
virtual void getBytes(const char** bytes,
int* length) const;
//! Get the serialized string representation of this presence event.
/*! \param bytes - buffer space where the presence event is written, null
* terminated.
* \param length - the number of bytes written (not including the
* null terminator).
*/
virtual void getBytes(UtlString* bytes,
int* length) const;
///@}
/**
* @name ====================== Tuple Setting Interfaces
*
* These methods set/get the tuple element.
*
* @{
*/
//! Insert a Tuple object to the hash table.
void insertTuple(Tuple* tuple);
//! Get the Tuple object based on the tupleId.
Tuple* getTuple(UtlString& tupleId);
//! Remove the Tuple object.
Tuple* removeTuple(Tuple* tuple);
//! Check whether there is any Tuple or not
UtlBoolean isEmpty();
///@}
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/// Parse an existing tuple event package from xml format into the internal representation.
void parseBody(const char* bytes);
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
//! Variables for presence
UtlString mEntity;
//! Variables for tuple element
UtlHashMap mTuples;
//! reader/writer lock for synchronization
OsBSem mLock;
//! Disabled copy constructor
SipPresenceEvent(const SipPresenceEvent& rSipPresenceEvent);
//! Disabled assignment operator
SipPresenceEvent& operator=(const SipPresenceEvent& rhs);
};
/* ============================ INLINE METHODS ============================ */
#endif // _SipPresenceEvent_h_
|