|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.kano.joscar.snaccmd.conn.RateClassInfo
public class RateClassInfo
A data structure containing rate limiting information for a specific "class" of SNAC commands.
RateClassInfo
Fields windowSize
10
to
60
)currentAvg
windowSize
commandswarnAvg
5000
ms)limitedAvg
clearAvg
(normally 4000
ms)clearAvg
warnAvg
plus
100
ms, or 5100
msdisconnectAvg
3000
ms)max
6000
ms)RateAck
is sent.
RateInfoCmd
, the current rate for each rate class
within should be set to that rate class's maximum rate
average. Note that a current average is sent,
but should be ignored in the initial RateInfoCmd
.
RateChange
, nothing must be modified (unless the
maximum rate average has been decreased and the current rate is now above
it). You may want to set your current average to the given "current average,"
but this is not advised, as the rate change command may have been sent in
response to a command sent several commands ago (due to network lag). A good
way to do this might be to only set your rate average to the given "current
average" only if the given current average is lower than your client's
computed average. This should be the most conservative and thus reliable way
to handle rate changes.
void computeNewAvg(long lastSent, long oldAvg, RateClassInfo rateClassInfo) { long curTime = System.currentTimeMillis(); long diff = curTime - lastSent; long winSize = rateClassInfo.getWindowSize(); long maxAvg = rateClassInfo.getMax(); currentAvg = ((currentAvg * (winSize - 1)) + diff) / winSize; if (currentAvg > maxAvg) currentAvg = maxAvg; }Using such an algorithm produces results almost exactly consistent with the "current averages" sent in
RateChange
packets, often within a
margin of one or two milliseconds (out of an average of 5000
ms
or lower). (This margin of error is surely due to network traffic and not an
error in the algorithm's above implementation.)
RateChange
with a change code of
RateChange#CODE_LIMITED
. After this happens, all of the commands
sent in the associated rate class will
be ignored by the server until the rate reaches the "clear average", at which point a RateChange
with a change code
of RateChange#CODE_LIMIT_CLEARED may be sent
(though it is not usually sent). Once the average is above the clear average,
however, all is back to normal, as if limiting had never taken place.
Constructor Summary | |
---|---|
RateClassInfo(int rateClass,
long windowSize,
long clearAvg,
long warnAvg,
long limitedAvg,
long disconnectAvg,
long currentAvg,
long max)
Creates a new rate class information block with the given properties. |
|
RateClassInfo(int rateClass,
long windowSize,
long clearAvg,
long warnAvg,
long limitedAvg,
long disconnectAvg,
long currentAvg,
long max,
java.util.Collection<? extends CmdType> cmds)
Creates a new rate class information block with the given properties. |
|
RateClassInfo(int rateClass,
long windowSize,
long clearAvg,
long warnAvg,
long limitedAvg,
long disconnectAvg,
long currentAvg,
long max,
long timeSinceLastCommand,
int currentState)
|
|
RateClassInfo(int rateClass,
long windowSize,
long clearAvg,
long warnAvg,
long limitedAvg,
long disconnectAvg,
long currentAvg,
long max,
long lastTime,
int currentState,
java.util.Collection<? extends CmdType> cmds)
|
Method Summary | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
long |
getClearAvg()
Returns the rate average above which the user is no longer rate limited. |
|||||||||||||||||
java.util.List<CmdType> |
getCommands()
Returns the commands included in this rate class, or null
if they were not sent (as in a RateChange ). |
|||||||||||||||||
long |
getCurrentAvg()
Returns the user's current rate average in this rate class. |
|||||||||||||||||
int |
getCurrentState()
|
|||||||||||||||||
long |
getDisconnectAvg()
Returns the rate average below which the user will be disconnected. |
|||||||||||||||||
long |
getLimitedAvg()
Returns the rate average below which the user is rate-limited. |
|||||||||||||||||
long |
getMax()
Returns the maximum rate average for this rate class. |
|||||||||||||||||
int |
getRateClass()
Returns the ID of the rate class that holds this rate class info. |
|||||||||||||||||
long |
getTimeSinceLastCommand()
Returns the number of milliseconds that have elapsed since the server recorded the last command sent in this rate class. |
|||||||||||||||||
long |
getWarnAvg()
Returns the rate average below which the user is "warned." See above for more details. |
|||||||||||||||||
long |
getWindowSize()
Returns the "window size" of this rate class. |
|||||||||||||||||
long |
getWritableLength()
|
|||||||||||||||||
static RateClassInfo |
readRateClassInfo(ByteBlock block)
RateClassInfopublic RateClassInfo(int rateClass, long windowSize, long clearAvg, long warnAvg, long limitedAvg, long disconnectAvg, long currentAvg, long max, long timeSinceLastCommand, int currentState) RateClassInfopublic RateClassInfo(int rateClass, long windowSize, long clearAvg, long warnAvg, long limitedAvg, long disconnectAvg, long currentAvg, long max)
RateClassInfopublic RateClassInfo(int rateClass, long windowSize, long clearAvg, long warnAvg, long limitedAvg, long disconnectAvg, long currentAvg, long max, java.util.Collection<? extends CmdType> cmds)
RateClassInfopublic RateClassInfo(int rateClass, long windowSize, long clearAvg, long warnAvg, long limitedAvg, long disconnectAvg, long currentAvg, long max, long lastTime, int currentState, java.util.Collection<? extends CmdType> cmds)
readRateClassInfogetTotalSize method of the returned
RateClassInfo .
getRateClasspublic final int getRateClass()
getWindowSizepublic final long getWindowSize()
getWarnAvgpublic final long getWarnAvg()
getLimitedAvgpublic final long getLimitedAvg()
getClearAvgpublic final long getClearAvg()
getDisconnectAvgpublic final long getDisconnectAvg()
getCurrentAvgpublic final long getCurrentAvg()
getMaxpublic final long getMax()
getCurrentStatepublic int getCurrentState() getTimeSinceLastCommandpublic long getTimeSinceLastCommand()
getCommandspublic final java.util.List<CmdType> getCommands()
getWritableLengthpublic long getWritableLength() writepublic void write(java.io.OutputStream out) throws java.io.IOException
toStringpublic java.lang.String toString()
|