/indra/newview/llassetuploadresponders.h

https://bitbucket.org/lindenlab/viewer-beta/ · C++ Header · 162 lines · 110 code · 20 blank · 32 comment · 0 complexity · 5f6424edd96a1746ff03207333a1e9c8 MD5 · raw file

  1. /**
  2. * @file llassetuploadresponders.h
  3. * @brief Processes responses received for asset upload requests.
  4. *
  5. * $LicenseInfo:firstyear=2007&license=viewerlgpl$
  6. * Second Life Viewer Source Code
  7. * Copyright (C) 2010, Linden Research, Inc.
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation;
  12. * version 2.1 of the License only.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with this library; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. *
  23. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  24. * $/LicenseInfo$
  25. */
  26. #ifndef LL_LLASSETUPLOADRESPONDER_H
  27. #define LL_LLASSETUPLOADRESPONDER_H
  28. #include "llhttpclient.h"
  29. // Abstract class for supporting asset upload
  30. // via capabilities
  31. class LLAssetUploadResponder : public LLHTTPClient::Responder
  32. {
  33. public:
  34. LLAssetUploadResponder(const LLSD& post_data,
  35. const LLUUID& vfile_id,
  36. LLAssetType::EType asset_type);
  37. LLAssetUploadResponder(const LLSD& post_data,
  38. const std::string& file_name,
  39. LLAssetType::EType asset_type);
  40. ~LLAssetUploadResponder();
  41. virtual void error(U32 statusNum, const std::string& reason);
  42. virtual void result(const LLSD& content);
  43. virtual void uploadUpload(const LLSD& content);
  44. virtual void uploadComplete(const LLSD& content);
  45. virtual void uploadFailure(const LLSD& content);
  46. protected:
  47. LLSD mPostData;
  48. LLAssetType::EType mAssetType;
  49. LLUUID mVFileID;
  50. std::string mFileName;
  51. };
  52. // TODO*: Remove this once deprecated
  53. class LLNewAgentInventoryResponder : public LLAssetUploadResponder
  54. {
  55. public:
  56. LLNewAgentInventoryResponder(
  57. const LLSD& post_data,
  58. const LLUUID& vfile_id,
  59. LLAssetType::EType asset_type);
  60. LLNewAgentInventoryResponder(
  61. const LLSD& post_data,
  62. const std::string& file_name,
  63. LLAssetType::EType asset_type);
  64. virtual void error(U32 statusNum, const std::string& reason);
  65. virtual void uploadComplete(const LLSD& content);
  66. virtual void uploadFailure(const LLSD& content);
  67. };
  68. // A base class which goes through and performs some default
  69. // actions for variable price uploads. If more specific actions
  70. // are needed (such as different confirmation messages, etc.)
  71. // the functions onApplicationLevelError and showConfirmationDialog.
  72. class LLNewAgentInventoryVariablePriceResponder :
  73. public LLHTTPClient::Responder
  74. {
  75. public:
  76. LLNewAgentInventoryVariablePriceResponder(
  77. const LLUUID& vfile_id,
  78. LLAssetType::EType asset_type,
  79. const LLSD& inventory_info);
  80. LLNewAgentInventoryVariablePriceResponder(
  81. const std::string& file_name,
  82. LLAssetType::EType asset_type,
  83. const LLSD& inventory_info);
  84. virtual ~LLNewAgentInventoryVariablePriceResponder();
  85. void errorWithContent(
  86. U32 statusNum,
  87. const std::string& reason,
  88. const LLSD& content);
  89. void result(const LLSD& content);
  90. virtual void onApplicationLevelError(
  91. const LLSD& error);
  92. virtual void showConfirmationDialog(
  93. S32 upload_price,
  94. S32 resource_cost,
  95. const std::string& confirmation_url);
  96. private:
  97. class Impl;
  98. Impl* mImpl;
  99. };
  100. struct LLBakedUploadData;
  101. class LLSendTexLayerResponder : public LLAssetUploadResponder
  102. {
  103. LOG_CLASS(LLSendTexLayerResponder);
  104. public:
  105. LLSendTexLayerResponder(const LLSD& post_data,
  106. const LLUUID& vfile_id,
  107. LLAssetType::EType asset_type,
  108. LLBakedUploadData * baked_upload_data);
  109. ~LLSendTexLayerResponder();
  110. virtual void uploadComplete(const LLSD& content);
  111. virtual void error(U32 statusNum, const std::string& reason);
  112. LLBakedUploadData * mBakedUploadData;
  113. };
  114. class LLUpdateAgentInventoryResponder : public LLAssetUploadResponder
  115. {
  116. public:
  117. LLUpdateAgentInventoryResponder(const LLSD& post_data,
  118. const LLUUID& vfile_id,
  119. LLAssetType::EType asset_type);
  120. LLUpdateAgentInventoryResponder(const LLSD& post_data,
  121. const std::string& file_name,
  122. LLAssetType::EType asset_type);
  123. virtual void uploadComplete(const LLSD& content);
  124. };
  125. class LLUpdateTaskInventoryResponder : public LLAssetUploadResponder
  126. {
  127. public:
  128. LLUpdateTaskInventoryResponder(const LLSD& post_data,
  129. const LLUUID& vfile_id,
  130. LLAssetType::EType asset_type);
  131. LLUpdateTaskInventoryResponder(const LLSD& post_data,
  132. const std::string& file_name,
  133. LLAssetType::EType asset_type);
  134. LLUpdateTaskInventoryResponder(const LLSD& post_data,
  135. const std::string& file_name,
  136. const LLUUID& queue_id,
  137. LLAssetType::EType asset_type);
  138. virtual void uploadComplete(const LLSD& content);
  139. private:
  140. LLUUID mQueueId;
  141. };
  142. #endif // LL_LLASSETUPLOADRESPONDER_H