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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llxfer.h
  3.  * @brief definition of LLXfer class for a single xfer
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-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_LLXFER_H
  33. #define LL_LLXFER_H
  34. #include "message.h"
  35. #include "lltimer.h"
  36. const S32 LL_XFER_LARGE_PAYLOAD = 7680;
  37. typedef enum ELLXferStatus {
  38. e_LL_XFER_UNINITIALIZED,
  39. e_LL_XFER_REGISTERED,         // a buffer which has been registered as available for a request
  40. e_LL_XFER_PENDING,            // a transfer which has been requested but is waiting for a free slot
  41. e_LL_XFER_IN_PROGRESS,
  42. e_LL_XFER_COMPLETE,
  43. e_LL_XFER_ABORTED,
  44. e_LL_XFER_NONE
  45. } ELLXferStatus;
  46. class LLXfer
  47. {
  48.  private:
  49.  protected:
  50.         S32 mChunkSize;
  51.   
  52.  public:
  53. LLXfer *mNext;
  54. U64 mID;
  55. S32 mPacketNum;
  56. LLHost mRemoteHost;
  57. S32 mXferSize;
  58. char *mBuffer;
  59. U32 mBufferLength;
  60. U32 mBufferStartOffset;
  61. BOOL mBufferContainsEOF;
  62. ELLXferStatus mStatus;
  63. BOOL mWaitingForACK;
  64. void (*mCallback)(void **,S32,LLExtStat);
  65. void **mCallbackDataHandle;
  66. S32 mCallbackResult;
  67. LLTimer ACKTimer;
  68. S32 mRetries;
  69. static const U32 XFER_FILE;
  70. static const U32 XFER_VFILE;
  71. static const U32 XFER_MEM;
  72.  private:
  73.  protected:
  74.  public:
  75. LLXfer (S32 chunk_size);
  76. virtual ~LLXfer();
  77. void init(S32 chunk_size);
  78. virtual void cleanup();
  79. virtual S32 startSend (U64 xfer_id, const LLHost &remote_host);
  80. virtual void sendPacket(S32 packet_num);
  81. virtual void sendNextPacket();
  82. virtual void resendLastPacket();
  83. virtual S32 processEOF();
  84. virtual S32 startDownload();
  85. virtual S32 receiveData (char *datap, S32 data_size);
  86. virtual void abort(S32);
  87. virtual S32 suck(S32 start_position);
  88. virtual S32 flush();
  89. virtual S32 encodePacketNum(S32 packet_num, BOOL is_eof);
  90. virtual void setXferSize (S32 data_size);
  91. virtual S32  getMaxBufferSize();
  92. virtual std::string getFileName();
  93. virtual U32 getXferTypeTag();
  94. friend std::ostream& operator<< (std::ostream& os, LLXfer &hh);
  95. };
  96. #endif