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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llthrottle.h
  3.  * @brief LLThrottle class used for network bandwidth control
  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_LLTHROTTLE_H
  33. #define LL_LLTHROTTLE_H
  34. #include "lltimer.h"
  35. const S32 MAX_THROTTLE_SIZE = 32;
  36. class LLDataPacker;
  37. // Single instance of a generic throttle
  38. class LLThrottle
  39. {
  40. public:
  41. LLThrottle(const F32 throttle = 1.f);
  42. ~LLThrottle() { }
  43. void setRate(const F32 rate);
  44. BOOL checkOverflow(const F32 amount); // I'm about to add an amount, TRUE if would overflow throttle
  45. BOOL throttleOverflow(const F32 amount); // I just sent amount, TRUE if that overflowed the throttle
  46. F32 getAvailable(); // Return the available bits
  47. F32 getRate() const { return mRate; }
  48. private:
  49. F32 mLookaheadSecs; // Seconds to look ahead, maximum
  50. F32 mRate; // BPS available, dynamically adjusted
  51. F32 mAvailable; // Bits available to send right now on each channel
  52. F64 mLastSendTime; // Time since last send on this channel
  53. };
  54. typedef enum e_throttle_categories
  55. {
  56. TC_RESEND,
  57. TC_LAND,
  58. TC_WIND,
  59. TC_CLOUD,
  60. TC_TASK,
  61. TC_TEXTURE,
  62. TC_ASSET,
  63. TC_EOF
  64. } EThrottleCats;
  65. class LLThrottleGroup
  66. {
  67. public:
  68. LLThrottleGroup();
  69. ~LLThrottleGroup() { }
  70. void resetDynamicAdjust();
  71. BOOL checkOverflow(S32 throttle_cat, F32 bits); // I'm about to send bits, TRUE if would overflow channel
  72. BOOL throttleOverflow(S32 throttle_cat, F32 bits); // I just sent bits, TRUE if that overflowed the channel
  73. BOOL dynamicAdjust(); // Shift bandwidth from idle channels to busy channels, TRUE if adjustment occurred
  74. BOOL setNominalBPS(F32* throttle_vec); // TRUE if any value was different, resets adjustment system if was different
  75. S32 getAvailable(S32 throttle_cat); // Return bits available in the channel
  76. void packThrottle(LLDataPacker &dp) const;
  77. void unpackThrottle(LLDataPacker &dp);
  78. public:
  79. F32 mThrottleTotal[TC_EOF]; // BPS available, sent by viewer, sum for all simulators
  80. protected:
  81. F32 mNominalBPS[TC_EOF]; // BPS available, adjusted to be just this simulator
  82. F32 mCurrentBPS[TC_EOF]; // BPS available, dynamically adjusted
  83. F32 mBitsAvailable[TC_EOF]; // Bits available to send right now on each channel
  84. F32 mBitsSentThisPeriod[TC_EOF]; // Sent in this dynamic allocation period
  85. F32 mBitsSentHistory[TC_EOF]; // Sent before this dynamic allocation period, adjusted to one period length
  86. F64 mLastSendTime[TC_EOF]; // Time since last send on this channel
  87. F64 mDynamicAdjustTime; // Only dynamic adjust every 2 seconds or so.
  88. };
  89. #endif