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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file llassetuploadresponders.h
  3.  * @brief Processes responses received for asset upload requests.
  4.  *
  5.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2007-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. #ifndef LL_LLASSETUPLOADRESPONDER_H
  33. #define LL_LLASSETUPLOADRESPONDER_H
  34. #include "llhttpclient.h"
  35. // Abstract class for supporting asset upload
  36. // via capabilities
  37. class LLAssetUploadResponder : public LLHTTPClient::Responder
  38. {
  39. public:
  40. LLAssetUploadResponder(const LLSD& post_data,
  41. const LLUUID& vfile_id,
  42. LLAssetType::EType asset_type);
  43. LLAssetUploadResponder(const LLSD& post_data, 
  44. const std::string& file_name,
  45. LLAssetType::EType asset_type);
  46. ~LLAssetUploadResponder();
  47.     virtual void error(U32 statusNum, const std::string& reason);
  48. virtual void result(const LLSD& content);
  49. virtual void uploadUpload(const LLSD& content);
  50. virtual void uploadComplete(const LLSD& content);
  51. virtual void uploadFailure(const LLSD& content);
  52. protected:
  53. LLSD mPostData;
  54. LLAssetType::EType mAssetType;
  55. LLUUID mVFileID;
  56. std::string mFileName;
  57. };
  58. class LLNewAgentInventoryResponder : public LLAssetUploadResponder
  59. {
  60. public:
  61. LLNewAgentInventoryResponder(const LLSD& post_data,
  62. const LLUUID& vfile_id,
  63. LLAssetType::EType asset_type);
  64. LLNewAgentInventoryResponder(const LLSD& post_data, const std::string& file_name,
  65.    LLAssetType::EType asset_type);
  66. virtual void uploadComplete(const LLSD& content);
  67. };
  68. class LLBakedUploadData;
  69. class LLSendTexLayerResponder : public LLAssetUploadResponder
  70. {
  71. public:
  72. LLSendTexLayerResponder(const LLSD& post_data,
  73. const LLUUID& vfile_id,
  74. LLAssetType::EType asset_type,
  75. LLBakedUploadData * baked_upload_data);
  76. ~LLSendTexLayerResponder();
  77. virtual void uploadComplete(const LLSD& content);
  78. virtual void error(U32 statusNum, const std::string& reason);
  79. LLBakedUploadData * mBakedUploadData;
  80. };
  81. class LLUpdateAgentInventoryResponder : public LLAssetUploadResponder
  82. {
  83. public:
  84. LLUpdateAgentInventoryResponder(const LLSD& post_data,
  85. const LLUUID& vfile_id,
  86. LLAssetType::EType asset_type);
  87. LLUpdateAgentInventoryResponder(const LLSD& post_data,
  88. const std::string& file_name,
  89.    LLAssetType::EType asset_type);
  90. virtual void uploadComplete(const LLSD& content);
  91. };
  92. class LLUpdateTaskInventoryResponder : public LLAssetUploadResponder
  93. {
  94. public:
  95. LLUpdateTaskInventoryResponder(const LLSD& post_data,
  96. const LLUUID& vfile_id,
  97. LLAssetType::EType asset_type);
  98. LLUpdateTaskInventoryResponder(const LLSD& post_data,
  99. const std::string& file_name,
  100. LLAssetType::EType asset_type);
  101. LLUpdateTaskInventoryResponder(const LLSD& post_data,
  102. const std::string& file_name,
  103. const LLUUID& queue_id,
  104. LLAssetType::EType asset_type);
  105. virtual void uploadComplete(const LLSD& content);
  106. private:
  107. LLUUID mQueueId;
  108. };
  109. #endif // LL_LLASSETUPLOADRESPONDER_H