/usr/include/repro/ResponseContext.hxx is in libresiprocate-1.11-dev 1:1.11.0~beta5-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 | #if !defined(RESIP_RESPONSE_CONTEXT_HXX)
#define RESIP_RESPONSE_CONTEXT_HXX
#include <iosfwd>
#include <map>
#include <list>
#include "rutil/HashMap.hxx"
#include "resip/stack/NameAddr.hxx"
#include "resip/stack/SipMessage.hxx"
#include "resip/stack/Via.hxx"
#include "resip/stack/Uri.hxx"
#include "resip/stack/MessageDecorator.hxx"
#include "repro/Target.hxx"
#include "rutil/resipfaststreams.hxx"
namespace resip
{
class SipMessage;
class Transport;
}
namespace repro
{
class RequestContext;
class ResponseContext
{
public:
class CompareStatus : public std::binary_function<const resip::SipMessage&, const resip::SipMessage&, bool>
{
public:
bool operator()(const resip::SipMessage& lhs, const resip::SipMessage& rhs) const;
};
~ResponseContext();
/**
Adds this Target as a SimpleTarget to the collection of Targets.
@param target The NameAdder used to form the Target to add.
@param beginImmediately Whether to immediately start a transaction for this target.
@returns tid of the newly added target
@note Targets are not checked for duplicate uris until an attempt is made to begin them.
*/
resip::Data addTarget(const resip::NameAddr& target, bool beginImmediately=false);
/**
Adds this Target to the collection of Targets.
@param target The Target to add.
@param beginImmediately Whether to immediately start a transaction
for this target.
@param checkDuplicates Whether to see if target exists already or not
@returns If beginImmediately=false, true iff the Target was
successfully added (could happen if a final response has already
been forwarded). If beginImmediately=true, true iff a transaction
was successfully started for the Target (could fail due to the
presence of a duplicate contact, or when a final response has
already been forwarded.)
@note Targets are not checked for duplicate uris until an attempt
is made to start them.
*/
bool addTarget(std::auto_ptr<repro::Target> target, bool beginImmediately = false, bool checkDuplicates = true);
/**
Adds a batch of Targets.
@note RESPONSECONTEXT ASSUMES OWNERSHIP OF THE TARGETS POINTED
TO IN THIS LIST!
@param targets A list of (sorted) Target*. This list is consumed.
@param highPriority Whether or not the Target ProccessorChain should
prioritize this batch above other batches of the same type.
(This is primarily intended to let multiple recursive redirection
work properly, but can be used for other purposes.)
@returns true iff any Targets were added.
@note It is assumed that all of these Targets are
the same subclass of Target, and that they are already sorted in the
order of their priority. If these assumptions do not hold, things
will not break per se, but oddball target processing behavior might
result.
*/
bool addTargetBatch(TargetPtrList& targets, bool highPriority=false);
/**
Begins all Candidate client transactions.
@returns true iff any transactions were started
*/
bool beginClientTransactions();
/**
Begins a client transaction.
@param serial The transaction id to start.
@returns true iff the transaction was started (could fail if there was
a duplicate contact)
*/
bool beginClientTransaction(const resip::Data& serial);
/**
Cancels all active client transactions. Does not clear Candidate
transactions.
@param reasons Optional reasons header to be added to any
resulting CANCEL requests.
@returns true iff any transaction was placed in either the
WaitingToCancel or Cancelled state.
*/
bool cancelActiveClientTransactions(const resip::Tokens* reasons = 0);
/**
Cancels all active client transactions. Also clears Candidate
transactions (they are transitioned directly to Terminated).
@param reasons Optional reasons header to be added to any
resulting CANCEL requests.
@returns true iff any transaction was placed in either the
WaitingToCancel, Cancelled, or Terminated state.
*/
bool cancelAllClientTransactions(const resip::Tokens* reasons = 0);
/**
Removes all Candidate transactions.
@param reasons Optional reasons header to be added to any
resulting CANCEL requests.
@returns true iff at least one Candidate transaction was removed.
*/
bool clearCandidateTransactions(const resip::Tokens* reasons = 0);
/**
Cancels this client transaction if active, or Terminates it if
Candidate.
@param reasons Optional reasons header to be added to any
resulting CANCEL requests.
@returns true iff this transaction was placed in either the
WaitingToCancel, Cancelled, or Terminated state.
*/
bool cancelClientTransaction(const resip::Data& serial, const resip::Tokens* reasons = 0);
/**
Self-explanatory
*/
Target* getTarget(const resip::Data& serial) const;
//Keyed by transaction id
typedef std::map<resip::Data,repro::Target*> TransactionMap;
/**
Self-explanatory.
@note Can be used to decide which targets should be processed next,
although this assumes a great deal of interdependency btw
the various processor chains and homogeneity in how the Targets are
prioritized, and can be inefficient if there
are large numbers of Candidate Targets. A more structured approach
exists in the functions dealing with TransactionBatch.
*/
const TransactionMap& getCandidateTransactionMap() const;
/**
@returns true iff there are Candidate targets
*/
bool hasCandidateTransactions() const;
/**
@returns true iff there are active targets (in state Trying,
Proceeding, WaitingForCancel or Cancelled)
*/
bool hasActiveTransactions() const;
/**
@returns true iff there are Terminated targets.
*/
bool hasTerminatedTransactions() const;
bool hasTargets() const;
/**
@returns true iff this target is in state Candidate
*/
bool isCandidate(const resip::Data& tid) const;
/**
@returns true iff this target is active (Trying, Proceeding,
WaitingForCancel, or Cancelled)
*/
bool isActive(const resip::Data& tid) const;
/**
@returns true iff this target is in state Terminated
*/
bool isTerminated(const resip::Data& tid) const;
/**
@returns true iff all targets are in state Terminated
*/
bool areAllTransactionsTerminated() const;
int getPriority(const resip::SipMessage& msg);
//!bwc! This should probably not be private, since these two classes are
//tightly coupled.
RequestContext& mRequestContext;
std::list<std::list<resip::Data> > mTransactionQueueCollection;
resip::Data mCurrentResponseTid;
private:
// only constructed by RequestContext
ResponseContext(RequestContext& parent);
// These methods are really private. These are not intended to be used
// by anything other than RequestContext or ResponseContext.
// call this from RequestContext when a CANCEL comes in
void processCancel(const resip::SipMessage& request);
// call this from RequestContext after the lemur chain for any response
void processResponse(resip::SipMessage& response);
void processTimerC();
void beginClientTransaction(repro::Target* target);
void cancelClientTransaction(repro::Target* target, const resip::Tokens* reasons = 0);
void terminateClientTransaction(const resip::Data& tid);
void removeClientTransaction(const resip::Data& transactionId);
//There is no terminateClientTransaction(Target target) since terminating
//a branch is very simple. The guts can be found in the API functions.
void insertRecordRoute(resip::SipMessage& outgoing,
const resip::Tuple& receivedTransportTuple,
const resip::NameAddr& receivedTransportRecordRoute,
bool transportSpecificRecordRoute,
Target* target,
bool doPathInstead=false);
resip::Data getInboundFlowToken(bool doPathInstead);
bool outboundFlowTokenNeeded(Target* target);
bool needsFlowTokenToWork(const resip::NameAddr& contact) const;
bool sendingToSelf(Target* target);
void sendRequest(resip::SipMessage& request);
TransactionMap mCandidateTransactionMap; //Targets with status Candidate.
TransactionMap mActiveTransactionMap; //Targets with status Trying, Proceeding, or WaitingToCancel.
TransactionMap mTerminatedTransactionMap; //Targets with status Terminated.
//Maybe someday canonicalized Uris will go here, and checking for duplicates
//will be much faster
resip::ContactList mTargetList;
bool isDuplicate(const repro::Target* target) const;
resip::SipMessage mBestResponse;
int mBestPriority;
bool mSecure;
bool mIsClientBehindNAT; // Only set if InteropHelper::getClientNATDetectionEnabled() is true
void forwardBestResponse();
friend class RequestContext;
friend EncodeStream& operator<<(EncodeStream& strm, const repro::ResponseContext& rc);
};
EncodeStream&
operator<<(EncodeStream& strm, const repro::ResponseContext& rc);
}
#endif
/* ====================================================================
* The Vovida Software License, Version 1.0
*
* Copyright (c) 2000 Vovida Networks, 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. The names "VOCAL", "Vovida Open Communication Application Library",
* and "Vovida Open Communication Application Library (VOCAL)" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact vocal@vovida.org.
*
* 4. Products derived from this software may not be called "VOCAL", nor
* may "VOCAL" appear in their name, without prior written
* permission of Vovida Networks, Inc.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
* IN EXCESS OF $1,000, NOR FOR ANY 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.
*
* ====================================================================
*
* This software consists of voluntary contributions made by Vovida
* Networks, Inc. and many individuals on behalf of Vovida Networks,
* Inc. For more information on Vovida Networks, Inc., please see
* <http://www.vovida.org/>.
*
*/
|