lluseroperation.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:5k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lluseroperation.cpp
  3.  * @brief LLUserOperation class definition.
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "linden_common.h"
  33. #include "lluseroperation.h"
  34. ///----------------------------------------------------------------------------
  35. /// Local function declarations, constants, enums, and typedefs
  36. ///----------------------------------------------------------------------------
  37. LLUserOperationMgr* gUserOperationMgr = NULL;
  38. ///----------------------------------------------------------------------------
  39. /// Class LLUserOperation
  40. ///----------------------------------------------------------------------------
  41. LLUserOperation::LLUserOperation(const LLUUID& agent_id)
  42. : mAgentID(agent_id),
  43. mTimer(),
  44. mNoExpire(FALSE)
  45. {
  46. mTransactionID.generate();
  47. }
  48. LLUserOperation::LLUserOperation(const LLUUID& agent_id,
  49.  const LLUUID& transaction_id) :
  50. mAgentID(agent_id),
  51. mTransactionID(transaction_id),
  52. mTimer(),
  53. mNoExpire(FALSE)
  54. {
  55. }
  56. // protected constructor which is used by base classes that determine
  57. // transaction, agent, et. after construction.
  58. LLUserOperation::LLUserOperation() :
  59. mTimer(),
  60. mNoExpire(FALSE)
  61. {
  62. }
  63. LLUserOperation::~LLUserOperation()
  64. {
  65. }
  66. void LLUserOperation::SetNoExpireFlag(const BOOL flag)
  67. {
  68. mNoExpire = flag;
  69. }
  70. BOOL LLUserOperation::isExpired()
  71. {
  72. if (!mNoExpire)
  73. {
  74. const F32 EXPIRE_TIME_SECS = 10.f;
  75. return mTimer.getElapsedTimeF32() > EXPIRE_TIME_SECS;
  76. }
  77. return FALSE;
  78. }
  79. void LLUserOperation::expire()
  80. {
  81. // by default, do do anything.
  82. }
  83. ///----------------------------------------------------------------------------
  84. /// Class LLUserOperationMgr
  85. ///----------------------------------------------------------------------------
  86. LLUserOperationMgr::LLUserOperationMgr()
  87. {
  88. }
  89. LLUserOperationMgr::~LLUserOperationMgr()
  90. {
  91. if (mUserOperationList.size() > 0)
  92. {
  93. llwarns << "Exiting with user operations pending." << llendl;
  94. }
  95. }
  96. void LLUserOperationMgr::addOperation(LLUserOperation* op)
  97. {
  98. if(!op)
  99. {
  100. llwarns << "Tried to add null op" << llendl;
  101. return;
  102. }
  103. LLUUID id = op->getTransactionID();
  104. llassert(mUserOperationList.count(id) == 0);
  105. mUserOperationList[id] = op;
  106. }
  107. LLUserOperation* LLUserOperationMgr::findOperation(const LLUUID& tid)
  108. {
  109. user_operation_list_t::iterator iter = mUserOperationList.find(tid);
  110. if (iter != mUserOperationList.end())
  111. return iter->second;
  112. else
  113. return NULL;
  114. }
  115. BOOL LLUserOperationMgr::deleteOperation(LLUserOperation* op)
  116. {
  117. size_t rv = 0;
  118. if(op)
  119. {
  120. LLUUID id = op->getTransactionID();
  121. rv = mUserOperationList.erase(id);
  122. delete op;
  123. op = NULL;
  124. }
  125. return rv ? TRUE : FALSE;
  126. }
  127. void LLUserOperationMgr::deleteExpiredOperations()
  128. {
  129. const S32 MAX_OPS_CONSIDERED = 2000;
  130. S32 ops_left = MAX_OPS_CONSIDERED;
  131. LLUserOperation* op = NULL;
  132. user_operation_list_t::iterator it;
  133. if(mLastOperationConsidered.isNull())
  134. {
  135. it = mUserOperationList.begin();
  136. }
  137. else
  138. {
  139. it = mUserOperationList.lower_bound(mLastOperationConsidered);
  140. }
  141. while((ops_left--) && (it != mUserOperationList.end()))
  142. {
  143. op = (*it).second;
  144. if(op && op->isExpired())
  145. {
  146. lldebugs << "expiring: " << (*it).first << llendl;
  147. op->expire();
  148. mUserOperationList.erase(it++);
  149. delete op;
  150. }
  151. else if(op)
  152. {
  153. ++it;
  154. }
  155. else
  156. {
  157. mUserOperationList.erase(it++);
  158. }
  159. }
  160. if(it != mUserOperationList.end())
  161. {
  162. mLastOperationConsidered = (*it).first;
  163. }
  164. else
  165. {
  166. mLastOperationConsidered.setNull();
  167. }
  168. }
  169. ///----------------------------------------------------------------------------
  170. /// Local function definitions
  171. ///----------------------------------------------------------------------------