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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lltransfertargetvfile.cpp
  3.  * @brief Transfer system for receiving a vfile.
  4.  *
  5.  * $LicenseInfo:firstyear=2006&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2006-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 "lltransfertargetvfile.h"
  34. #include "lldatapacker.h"
  35. #include "llerror.h"
  36. #include "llvfile.h"
  37. //static
  38. void LLTransferTargetVFile::updateQueue(bool shutdown)
  39. {
  40. }
  41. LLTransferTargetParamsVFile::LLTransferTargetParamsVFile() :
  42. LLTransferTargetParams(LLTTT_VFILE),
  43. mAssetType(LLAssetType::AT_NONE),
  44. mCompleteCallback(NULL),
  45. mUserDatap(NULL),
  46. mErrCode(0)
  47. {
  48. }
  49. void LLTransferTargetParamsVFile::setAsset(
  50. const LLUUID& asset_id,
  51. LLAssetType::EType asset_type)
  52. {
  53. mAssetID = asset_id;
  54. mAssetType = asset_type;
  55. }
  56. void LLTransferTargetParamsVFile::setCallback(LLTTVFCompleteCallback cb, void *user_data)
  57. {
  58. mCompleteCallback = cb;
  59. mUserDatap = user_data;
  60. }
  61. bool LLTransferTargetParamsVFile::unpackParams(LLDataPacker& dp)
  62. {
  63. // if the source provided a new key, assign that to the asset id.
  64. if(dp.hasNext())
  65. {
  66. LLUUID dummy_id;
  67. dp.unpackUUID(dummy_id, "AgentID");
  68. dp.unpackUUID(dummy_id, "SessionID");
  69. dp.unpackUUID(dummy_id, "OwnerID");
  70. dp.unpackUUID(dummy_id, "TaskID");
  71. dp.unpackUUID(dummy_id, "ItemID");
  72. dp.unpackUUID(mAssetID, "AssetID");
  73. S32 dummy_type;
  74. dp.unpackS32(dummy_type, "AssetType");
  75. }
  76. // if we never got an asset id, this will always fail.
  77. if(mAssetID.isNull())
  78. {
  79. return false;
  80. }
  81. return true;
  82. }
  83. LLTransferTargetVFile::LLTransferTargetVFile(
  84. const LLUUID& uuid,
  85. LLTransferSourceType src_type) :
  86. LLTransferTarget(LLTTT_VFILE, uuid, src_type),
  87. mNeedsCreate(TRUE)
  88. {
  89. mTempID.generate();
  90. }
  91. LLTransferTargetVFile::~LLTransferTargetVFile()
  92. {
  93. }
  94. // virtual
  95. bool LLTransferTargetVFile::unpackParams(LLDataPacker& dp)
  96. {
  97. if(LLTST_SIM_INV_ITEM == mSourceType)
  98. {
  99. return mParams.unpackParams(dp);
  100. }
  101. return true;
  102. }
  103. void LLTransferTargetVFile::applyParams(const LLTransferTargetParams &params)
  104. {
  105. if (params.getType() != mType)
  106. {
  107. llwarns << "Target parameter type doesn't match!" << llendl;
  108. return;
  109. }
  110. mParams = (LLTransferTargetParamsVFile &)params;
  111. }
  112. LLTSCode LLTransferTargetVFile::dataCallback(const S32 packet_id, U8 *in_datap, const S32 in_size)
  113. {
  114. //llinfos << "LLTransferTargetFile::dataCallback" << llendl;
  115. //llinfos << "Packet: " << packet_id << llendl;
  116. LLVFile vf(gAssetStorage->mVFS, mTempID, mParams.getAssetType(), LLVFile::APPEND);
  117. if (mNeedsCreate)
  118. {
  119. vf.setMaxSize(mSize);
  120. mNeedsCreate = FALSE;
  121. }
  122. if (!in_size)
  123. {
  124. return LLTS_OK;
  125. }
  126. if (!vf.write(in_datap, in_size))
  127. {
  128. llwarns << "Failure in LLTransferTargetVFile::dataCallback!" << llendl;
  129. return LLTS_ERROR;
  130. }
  131. return LLTS_OK;
  132. }
  133. void LLTransferTargetVFile::completionCallback(const LLTSCode status)
  134. {
  135. //llinfos << "LLTransferTargetVFile::completionCallback" << llendl;
  136. if (!gAssetStorage)
  137. {
  138. llwarns << "Aborting vfile transfer after asset storage shut down!" << llendl;
  139. return;
  140. }
  141. // Still need to gracefully handle error conditions.
  142. S32 err_code = 0;
  143. switch (status)
  144. {
  145.   case LLTS_DONE:
  146. if (!mNeedsCreate)
  147. {
  148. LLVFile file(gAssetStorage->mVFS, mTempID, mParams.getAssetType(), LLVFile::WRITE);
  149. if (!file.rename(mParams.getAssetID(), mParams.getAssetType()))
  150. {
  151. llerrs << "LLTransferTargetVFile: rename failed" << llendl;
  152. }
  153. }
  154. err_code = LL_ERR_NOERR;
  155. lldebugs << "LLTransferTargetVFile::completionCallback for "
  156.  << mParams.getAssetID() << ","
  157.  << LLAssetType::lookup(mParams.getAssetType())
  158.  << " with temp id " << mTempID << llendl;
  159. break;
  160.   case LLTS_ERROR:
  161.   case LLTS_ABORT:
  162.   case LLTS_UNKNOWN_SOURCE:
  163.   default:
  164.   {
  165.   // We're aborting this transfer, we don't want to keep this file.
  166.   llwarns << "Aborting vfile transfer for " << mParams.getAssetID() << llendl;
  167.   LLVFile vf(gAssetStorage->mVFS, mTempID, mParams.getAssetType(), LLVFile::APPEND);
  168.   vf.remove();
  169.   }
  170.   break;
  171. }
  172. switch (status)
  173. {
  174. case LLTS_DONE:
  175. err_code = LL_ERR_NOERR;
  176. break;
  177. case LLTS_UNKNOWN_SOURCE:
  178. err_code = LL_ERR_ASSET_REQUEST_NOT_IN_DATABASE;
  179. break;
  180. case LLTS_INSUFFICIENT_PERMISSIONS:
  181. err_code = LL_ERR_INSUFFICIENT_PERMISSIONS;
  182. break;
  183. case LLTS_ERROR:
  184. case LLTS_ABORT:
  185. default:
  186. err_code = LL_ERR_ASSET_REQUEST_FAILED;
  187. break;
  188. }
  189. if (mParams.mCompleteCallback)
  190. {
  191. mParams.mCompleteCallback(err_code,
  192.   mParams.getAssetID(),
  193.   mParams.getAssetType(),
  194.   mParams.mUserDatap,
  195.   LL_EXSTAT_NONE);
  196. }
  197. }