hydrus/include/HydrusNetworking.py

734 lines
24 KiB
Python
Raw Normal View History

2017-03-02 02:14:56 +00:00
import calendar
import collections
import datetime
2014-01-29 21:59:42 +00:00
import httplib
2017-03-02 02:14:56 +00:00
import HydrusConstants as HC
import HydrusData
import HydrusSerialisable
2015-06-10 19:40:25 +00:00
import socket
2017-01-25 22:56:55 +00:00
import ssl
2017-03-02 02:14:56 +00:00
import threading
import time
2014-01-29 21:59:42 +00:00
2018-02-07 23:40:33 +00:00
# The calendar portion of this works in GMT. A new 'day' or 'month' is calculated based on GMT time, so it won't tick over at midnight for most people.
# But this means a server can pass a bandwidth object to a lad and everyone can agree on when a new day is.
2017-03-02 02:14:56 +00:00
def ConvertBandwidthRuleToString( rule ):
( bandwidth_type, time_delta, max_allowed ) = rule
if max_allowed == 0:
return 'No requests currently permitted.'
if bandwidth_type == HC.BANDWIDTH_TYPE_DATA:
s = HydrusData.ConvertIntToBytes( max_allowed )
elif bandwidth_type == HC.BANDWIDTH_TYPE_REQUESTS:
2018-10-03 21:00:15 +00:00
s = HydrusData.ToHumanInt( max_allowed ) + ' rqs'
2017-03-02 02:14:56 +00:00
if time_delta is None:
s += ' per month'
else:
2018-07-04 20:48:28 +00:00
s += ' per ' + HydrusData.TimeDeltaToPrettyTimeDelta( time_delta )
2017-03-02 02:14:56 +00:00
return s
2017-01-25 22:56:55 +00:00
def GetLocalConnection( port, https = False ):
2015-06-10 19:40:25 +00:00
old_socket = httplib.socket.socket
httplib.socket.socket = socket._socketobject
try:
2017-01-25 22:56:55 +00:00
if https:
context = ssl.SSLContext( ssl.PROTOCOL_SSLv23 )
context.options |= ssl.OP_NO_SSLv2
context.options |= ssl.OP_NO_SSLv3
connection = httplib.HTTPSConnection( '127.0.0.1', port, timeout = 8, context = context )
else:
connection = httplib.HTTPConnection( '127.0.0.1', port, timeout = 8 )
2015-06-10 19:40:25 +00:00
connection.connect()
finally:
httplib.socket.socket = old_socket
return connection
2017-01-25 22:56:55 +00:00
2017-03-02 02:14:56 +00:00
class BandwidthRules( HydrusSerialisable.SerialisableBase ):
SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_BANDWIDTH_RULES
2017-11-29 21:48:23 +00:00
SERIALISABLE_NAME = 'Bandwidth Rules'
2017-03-02 02:14:56 +00:00
SERIALISABLE_VERSION = 1
def __init__( self ):
HydrusSerialisable.SerialisableBase.__init__( self )
self._lock = threading.Lock()
self._rules = set()
def _GetSerialisableInfo( self ):
return list( self._rules )
def _InitialiseFromSerialisableInfo( self, serialisable_info ):
# tuples converted to lists via json
self._rules = set( ( tuple( rule_list ) for rule_list in serialisable_info ) )
def AddRule( self, bandwidth_type, time_delta, max_allowed ):
with self._lock:
rule = ( bandwidth_type, time_delta, max_allowed )
self._rules.add( rule )
2017-07-27 00:47:13 +00:00
def CanContinueDownload( self, bandwidth_tracker, threshold = 15 ):
2017-06-21 21:15:59 +00:00
with self._lock:
for ( bandwidth_type, time_delta, max_allowed ) in self._rules:
2017-06-28 20:23:21 +00:00
# Do not stop ongoing just because starts are throttled
requests_rule = bandwidth_type == HC.BANDWIDTH_TYPE_REQUESTS
2017-06-21 21:15:59 +00:00
# Do not block an ongoing jpg download because the current month is 100.03% used
2017-06-28 20:23:21 +00:00
wait_is_too_long = time_delta is None or time_delta > threshold
ignore_rule = requests_rule or wait_is_too_long
if ignore_rule:
2017-06-21 21:15:59 +00:00
continue
2017-08-09 21:33:51 +00:00
if bandwidth_tracker.GetUsage( bandwidth_type, time_delta ) >= max_allowed:
2017-06-21 21:15:59 +00:00
return False
return True
2017-08-09 21:33:51 +00:00
def CanDoWork( self, bandwidth_tracker, expected_requests, expected_bytes, threshold = 30 ):
2017-07-27 00:47:13 +00:00
with self._lock:
for ( bandwidth_type, time_delta, max_allowed ) in self._rules:
# Do not prohibit a raft of work starting or continuing because one small rule is over at this current second
if time_delta is not None and time_delta <= threshold:
continue
2017-08-09 21:33:51 +00:00
# we don't want to do a tiny amount of work, we want to do a decent whack
if bandwidth_type == HC.BANDWIDTH_TYPE_REQUESTS:
max_allowed -= expected_requests
elif bandwidth_type == HC.BANDWIDTH_TYPE_DATA:
max_allowed -= expected_bytes
2017-07-27 00:47:13 +00:00
if bandwidth_tracker.GetUsage( bandwidth_type, time_delta ) >= max_allowed:
return False
return True
def CanStartRequest( self, bandwidth_tracker, threshold = 5 ):
2017-06-21 21:15:59 +00:00
with self._lock:
for ( bandwidth_type, time_delta, max_allowed ) in self._rules:
# Do not prohibit a new job from starting just because the current download speed is 210/200KB/s
2017-07-27 00:47:13 +00:00
ignore_rule = bandwidth_type == HC.BANDWIDTH_TYPE_DATA and time_delta is not None and time_delta <= threshold
2017-06-28 20:23:21 +00:00
2017-07-27 00:47:13 +00:00
if ignore_rule:
2017-06-21 21:15:59 +00:00
continue
2017-06-28 20:23:21 +00:00
if bandwidth_tracker.GetUsage( bandwidth_type, time_delta ) >= max_allowed:
2017-06-21 21:15:59 +00:00
return False
return True
2017-08-09 21:33:51 +00:00
def GetWaitingEstimate( self, bandwidth_tracker ):
with self._lock:
estimates = []
for ( bandwidth_type, time_delta, max_allowed ) in self._rules:
if bandwidth_tracker.GetUsage( bandwidth_type, time_delta ) >= max_allowed:
estimates.append( bandwidth_tracker.GetWaitingEstimate( bandwidth_type, time_delta, max_allowed ) )
if len( estimates ) == 0:
return 0
else:
return max( estimates )
2017-10-25 21:45:15 +00:00
def GetBandwidthStringsAndGaugeTuples( self, bandwidth_tracker, threshold = 600 ):
2017-03-02 02:14:56 +00:00
with self._lock:
rows = []
2017-07-19 21:21:41 +00:00
rules_sorted = list( self._rules )
def key( ( bandwidth_type, time_delta, max_allowed ) ):
return time_delta
rules_sorted.sort( key = key )
for ( bandwidth_type, time_delta, max_allowed ) in rules_sorted:
2017-03-02 02:14:56 +00:00
2017-06-21 21:15:59 +00:00
time_is_less_than_threshold = time_delta is not None and time_delta <= threshold
2017-03-02 02:14:56 +00:00
if time_is_less_than_threshold or max_allowed == 0:
continue
usage = bandwidth_tracker.GetUsage( bandwidth_type, time_delta )
s = 'used '
if bandwidth_type == HC.BANDWIDTH_TYPE_DATA:
s += HydrusData.ConvertValueRangeToBytes( usage, max_allowed )
elif bandwidth_type == HC.BANDWIDTH_TYPE_REQUESTS:
s += HydrusData.ConvertValueRangeToPrettyString( usage, max_allowed ) + ' requests'
if time_delta is None:
s += ' this month'
else:
2018-07-04 20:48:28 +00:00
s += ' in the past ' + HydrusData.TimeDeltaToPrettyTimeDelta( time_delta )
2017-03-02 02:14:56 +00:00
rows.append( ( s, ( usage, max_allowed ) ) )
return rows
def GetRules( self ):
with self._lock:
return list( self._rules )
HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_BANDWIDTH_RULES ] = BandwidthRules
class BandwidthTracker( HydrusSerialisable.SerialisableBase ):
SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_BANDWIDTH_TRACKER
2017-11-29 21:48:23 +00:00
SERIALISABLE_NAME = 'Bandwidth Tracker'
2017-03-02 02:14:56 +00:00
SERIALISABLE_VERSION = 1
# I want to track and query using smaller periods even when the total time delta is larger than the next step up to increase granularity
# for instance, querying minutes for 90 mins time delta is more smooth than watching a juddery sliding two hour window
MAX_SECONDS_TIME_DELTA = 240
MAX_MINUTES_TIME_DELTA = 180 * 60
MAX_HOURS_TIME_DELTA = 72 * 3600
MAX_DAYS_TIME_DELTA = 31 * 86400
CACHE_MAINTENANCE_TIME_DELTA = 120
2017-08-30 20:27:47 +00:00
MIN_TIME_DELTA_FOR_USER = 10
2017-03-02 02:14:56 +00:00
def __init__( self ):
HydrusSerialisable.SerialisableBase.__init__( self )
self._lock = threading.Lock()
self._next_cache_maintenance_timestamp = HydrusData.GetNow() + self.CACHE_MAINTENANCE_TIME_DELTA
self._months_bytes = collections.Counter()
self._days_bytes = collections.Counter()
self._hours_bytes = collections.Counter()
self._minutes_bytes = collections.Counter()
self._seconds_bytes = collections.Counter()
self._months_requests = collections.Counter()
self._days_requests = collections.Counter()
self._hours_requests = collections.Counter()
self._minutes_requests = collections.Counter()
self._seconds_requests = collections.Counter()
def _GetSerialisableInfo( self ):
dicts_flat = []
for d in ( self._months_bytes, self._days_bytes, self._hours_bytes, self._minutes_bytes, self._seconds_bytes, self._months_requests, self._days_requests, self._hours_requests, self._minutes_requests, self._seconds_requests ):
dicts_flat.append( d.items() )
return dicts_flat
def _InitialiseFromSerialisableInfo( self, serialisable_info ):
counters = [ collections.Counter( dict( flat_dict ) ) for flat_dict in serialisable_info ]
2018-10-17 21:00:09 +00:00
# unusual error someone reported by email--it came back an empty list, fugg
if len( counters ) != 10:
return
2017-03-02 02:14:56 +00:00
self._months_bytes = counters[ 0 ]
self._days_bytes = counters[ 1 ]
self._hours_bytes = counters[ 2 ]
self._minutes_bytes = counters[ 3 ]
self._seconds_bytes = counters[ 4 ]
self._months_requests = counters[ 5 ]
self._days_requests = counters[ 6 ]
self._hours_requests = counters[ 7 ]
self._minutes_requests = counters[ 8 ]
self._seconds_requests = counters[ 9 ]
2017-06-28 20:23:21 +00:00
def _GetCurrentDateTime( self ):
2018-02-07 23:40:33 +00:00
# keep getnow in here for the moment to aid in testing, which patches it to do time shifting
2017-06-28 20:23:21 +00:00
return datetime.datetime.utcfromtimestamp( HydrusData.GetNow() )
2017-08-09 21:33:51 +00:00
def _GetWindowAndCounter( self, bandwidth_type, time_delta ):
2017-03-02 02:14:56 +00:00
if bandwidth_type == HC.BANDWIDTH_TYPE_DATA:
if time_delta < self.MAX_SECONDS_TIME_DELTA:
2017-07-05 21:09:28 +00:00
window = 0
2017-03-02 02:14:56 +00:00
counter = self._seconds_bytes
elif time_delta < self.MAX_MINUTES_TIME_DELTA:
window = 60
counter = self._minutes_bytes
elif time_delta < self.MAX_HOURS_TIME_DELTA:
window = 3600
counter = self._hours_bytes
else:
window = 86400
counter = self._days_bytes
elif bandwidth_type == HC.BANDWIDTH_TYPE_REQUESTS:
if time_delta < self.MAX_SECONDS_TIME_DELTA:
2017-07-05 21:09:28 +00:00
window = 0
2017-03-02 02:14:56 +00:00
counter = self._seconds_requests
elif time_delta < self.MAX_MINUTES_TIME_DELTA:
window = 60
counter = self._minutes_requests
elif time_delta < self.MAX_HOURS_TIME_DELTA:
window = 3600
counter = self._hours_requests
else:
window = 86400
counter = self._days_requests
2017-08-09 21:33:51 +00:00
return ( window, counter )
def _GetMonthTime( self, dt ):
( year, month ) = ( dt.year, dt.month )
month_dt = datetime.datetime( year, month, 1 )
2018-02-07 23:40:33 +00:00
month_time = int( calendar.timegm( month_dt.timetuple() ) )
2017-08-09 21:33:51 +00:00
return month_time
def _GetRawUsage( self, bandwidth_type, time_delta ):
if time_delta is None:
dt = self._GetCurrentDateTime()
month_time = self._GetMonthTime( dt )
if bandwidth_type == HC.BANDWIDTH_TYPE_DATA:
return self._months_bytes[ month_time ]
elif bandwidth_type == HC.BANDWIDTH_TYPE_REQUESTS:
return self._months_requests[ month_time ]
( window, counter ) = self._GetWindowAndCounter( bandwidth_type, time_delta )
2017-08-23 21:34:25 +00:00
if time_delta == 1:
# the case of 1 poses a problem as our min block width is also 1. we can't have a window of 0.1s to make the transition smooth
# if we include the last second's data in an effort to span the whole previous 1000ms, we end up not doing anything until the next second rolls over
# this causes 50% consumption as we consume in the second after the one we verified was clear
# so, let's just check the current second and be happy with it
now = HydrusData.GetNow()
if now in counter:
return counter[ now ]
else:
return 0
else:
# we need the 'window' because this tracks brackets from the first timestamp and we want to include if 'since' lands anywhere in the bracket
# e.g. if it is 1200 and we want the past 1,000, we also need the bracket starting at 0, which will include 200-999
search_time_delta = time_delta + window
since = HydrusData.GetNow() - search_time_delta
return sum( ( value for ( timestamp, value ) in counter.items() if timestamp >= since ) )
2017-06-21 21:15:59 +00:00
def _GetTimes( self, dt ):
# collapse each time portion to the latest timestamp it covers
( year, month, day, hour, minute ) = ( dt.year, dt.month, dt.day, dt.hour, dt.minute )
month_dt = datetime.datetime( year, month, 1 )
day_dt = datetime.datetime( year, month, day )
hour_dt = datetime.datetime( year, month, day, hour )
minute_dt = datetime.datetime( year, month, day, hour, minute )
2018-02-07 23:40:33 +00:00
month_time = int( calendar.timegm( month_dt.timetuple() ) )
day_time = int( calendar.timegm( day_dt.timetuple() ) )
hour_time = int( calendar.timegm( hour_dt.timetuple() ) )
minute_time = int( calendar.timegm( minute_dt.timetuple() ) )
2017-06-21 21:15:59 +00:00
2018-02-07 23:40:33 +00:00
second_time = int( calendar.timegm( dt.timetuple() ) )
2017-06-21 21:15:59 +00:00
return ( month_time, day_time, hour_time, minute_time, second_time )
2017-08-30 20:27:47 +00:00
def _GetUsage( self, bandwidth_type, time_delta, for_user ):
2017-06-21 21:15:59 +00:00
2017-08-30 20:27:47 +00:00
if for_user and time_delta is not None and bandwidth_type == HC.BANDWIDTH_TYPE_DATA and time_delta <= self.MIN_TIME_DELTA_FOR_USER:
2017-06-21 21:15:59 +00:00
2017-07-05 21:09:28 +00:00
usage = self._GetWeightedApproximateUsage( time_delta )
2017-06-21 21:15:59 +00:00
else:
usage = self._GetRawUsage( bandwidth_type, time_delta )
2017-03-02 02:14:56 +00:00
self._MaintainCache()
2017-06-21 21:15:59 +00:00
return usage
2017-07-05 21:09:28 +00:00
def _GetWeightedApproximateUsage( self, time_delta ):
2017-06-21 21:15:59 +00:00
2017-08-30 20:27:47 +00:00
SEARCH_DELTA = self.MIN_TIME_DELTA_FOR_USER
2017-06-21 21:15:59 +00:00
2017-07-05 21:09:28 +00:00
counter = self._seconds_bytes
2017-06-21 21:15:59 +00:00
2017-07-05 21:09:28 +00:00
now = HydrusData.GetNow()
2017-06-21 21:15:59 +00:00
2017-07-05 21:09:28 +00:00
since = now - SEARCH_DELTA
2017-06-21 21:15:59 +00:00
2017-07-05 21:09:28 +00:00
valid_keys = [ key for key in counter.keys() if key >= since ]
2017-06-21 21:15:59 +00:00
2017-07-05 21:09:28 +00:00
if len( valid_keys ) == 0:
return 0
2017-06-21 21:15:59 +00:00
2017-07-05 21:09:28 +00:00
# If we want the average speed over past five secs but nothing has happened in sec 4 and 5, we don't want to count them
# otherwise your 1MB/s counts as 200KB/s
earliest_timestamp = min( valid_keys )
SAMPLE_DELTA = max( now - earliest_timestamp, 1 )
total_bytes = sum( ( counter[ key ] for key in valid_keys ) )
2017-08-30 20:27:47 +00:00
time_delta_average_per_sec = total_bytes / SAMPLE_DELTA
2017-07-05 21:09:28 +00:00
2017-08-30 20:27:47 +00:00
return time_delta_average_per_sec * time_delta
2017-03-02 02:14:56 +00:00
def _MaintainCache( self ):
if HydrusData.TimeHasPassed( self._next_cache_maintenance_timestamp ):
now = HydrusData.GetNow()
oldest_second = now - self.MAX_SECONDS_TIME_DELTA
oldest_minute = now - self.MAX_MINUTES_TIME_DELTA
oldest_hour = now - self.MAX_HOURS_TIME_DELTA
oldest_day = now - self.MAX_DAYS_TIME_DELTA
def clear_counter( counter, timestamp ):
bad_keys = [ key for key in counter.keys() if key < timestamp ]
for bad_key in bad_keys:
del counter[ bad_key ]
clear_counter( self._days_bytes, oldest_day )
clear_counter( self._days_requests, oldest_day )
clear_counter( self._hours_bytes, oldest_hour )
clear_counter( self._hours_requests, oldest_hour )
clear_counter( self._minutes_bytes, oldest_minute )
clear_counter( self._minutes_requests, oldest_minute )
clear_counter( self._seconds_bytes, oldest_second )
clear_counter( self._seconds_requests, oldest_second )
self._next_cache_maintenance_timestamp = HydrusData.GetNow() + self.CACHE_MAINTENANCE_TIME_DELTA
def GetCurrentMonthSummary( self ):
2017-05-31 21:50:53 +00:00
with self._lock:
2017-08-30 20:27:47 +00:00
num_bytes = self._GetUsage( HC.BANDWIDTH_TYPE_DATA, None, True )
num_requests = self._GetUsage( HC.BANDWIDTH_TYPE_REQUESTS, None, True )
2017-05-31 21:50:53 +00:00
2018-07-04 20:48:28 +00:00
return 'used ' + HydrusData.ConvertIntToBytes( num_bytes ) + ' in ' + HydrusData.ToHumanInt( num_requests ) + ' requests this month'
2017-05-31 21:50:53 +00:00
2017-03-02 02:14:56 +00:00
2017-07-19 21:21:41 +00:00
def GetMonthlyDataUsage( self ):
with self._lock:
result = []
for ( month_time, usage ) in self._months_bytes.items():
month_dt = datetime.datetime.utcfromtimestamp( month_time )
2017-10-04 17:51:58 +00:00
# this generates zero-padded month, to keep this lexicographically sortable at the gui level
date_str = month_dt.strftime( '%Y-%m' )
2017-07-19 21:21:41 +00:00
result.append( ( date_str, usage ) )
result.sort()
return result
2017-08-30 20:27:47 +00:00
def GetUsage( self, bandwidth_type, time_delta, for_user = False ):
2017-03-02 02:14:56 +00:00
with self._lock:
2017-06-21 21:15:59 +00:00
if time_delta == 0:
return 0
2017-08-30 20:27:47 +00:00
return self._GetUsage( bandwidth_type, time_delta, for_user )
2017-03-02 02:14:56 +00:00
2017-08-09 21:33:51 +00:00
def GetWaitingEstimate( self, bandwidth_type, time_delta, max_allowed ):
with self._lock:
if time_delta is None: # this is monthly
dt = self._GetCurrentDateTime()
( year, month ) = ( dt.year, dt.month )
2017-12-06 22:06:56 +00:00
next_month_year = year
if month == 12:
next_month_year += 1
2018-11-07 23:09:40 +00:00
next_month = ( month % 12 ) + 1
2017-12-06 22:06:56 +00:00
next_month_dt = datetime.datetime( next_month_year, next_month, 1 )
2017-08-09 21:33:51 +00:00
2018-02-07 23:40:33 +00:00
next_month_time = int( calendar.timegm( next_month_dt.timetuple() ) )
2017-08-09 21:33:51 +00:00
2018-02-14 21:47:18 +00:00
return HydrusData.GetTimeDeltaUntilTime( next_month_time )
2017-08-09 21:33:51 +00:00
else:
# we want the highest time_delta at which usage is >= than max_allowed
# time_delta subtract that amount is the time we have to wait for usage to be less than max_allowed
# e.g. if in the past 24 hours there was a bunch of usage 16 hours ago clogging it up, we'll have to wait ~8 hours
( window, counter ) = self._GetWindowAndCounter( bandwidth_type, time_delta )
2017-08-23 21:34:25 +00:00
time_delta_in_which_bandwidth_counts = time_delta + window
2017-08-09 21:33:51 +00:00
time_and_values = counter.items()
time_and_values.sort( reverse = True )
now = HydrusData.GetNow()
usage = 0
for ( timestamp, value ) in time_and_values:
current_search_time_delta = now - timestamp
2017-08-23 21:34:25 +00:00
if current_search_time_delta > time_delta_in_which_bandwidth_counts: # we are searching beyond our time delta. no need to wait
2017-08-09 21:33:51 +00:00
break
usage += value
if usage >= max_allowed:
2017-08-23 21:34:25 +00:00
return time_delta_in_which_bandwidth_counts - current_search_time_delta
2017-08-09 21:33:51 +00:00
return 0
2017-06-21 21:15:59 +00:00
def ReportDataUsed( self, num_bytes ):
2017-03-02 02:14:56 +00:00
with self._lock:
2017-06-28 20:23:21 +00:00
dt = self._GetCurrentDateTime()
2017-03-02 02:14:56 +00:00
( month_time, day_time, hour_time, minute_time, second_time ) = self._GetTimes( dt )
self._months_bytes[ month_time ] += num_bytes
self._days_bytes[ day_time ] += num_bytes
self._hours_bytes[ hour_time ] += num_bytes
self._minutes_bytes[ minute_time ] += num_bytes
self._seconds_bytes[ second_time ] += num_bytes
self._MaintainCache()
2017-06-07 22:05:15 +00:00
2017-06-21 21:15:59 +00:00
def ReportRequestUsed( self ):
2017-06-07 22:05:15 +00:00
with self._lock:
2017-06-28 20:23:21 +00:00
dt = self._GetCurrentDateTime()
2017-06-07 22:05:15 +00:00
2017-06-21 21:15:59 +00:00
( month_time, day_time, hour_time, minute_time, second_time ) = self._GetTimes( dt )
2017-06-07 22:05:15 +00:00
2017-06-21 21:15:59 +00:00
self._months_requests[ month_time ] += 1
2017-06-07 22:05:15 +00:00
2017-06-21 21:15:59 +00:00
self._days_requests[ day_time ] += 1
2017-06-07 22:05:15 +00:00
2017-06-21 21:15:59 +00:00
self._hours_requests[ hour_time ] += 1
2017-06-07 22:05:15 +00:00
2017-06-21 21:15:59 +00:00
self._minutes_requests[ minute_time ] += 1
2017-06-07 22:05:15 +00:00
2017-06-21 21:15:59 +00:00
self._seconds_requests[ second_time ] += 1
2017-06-07 22:05:15 +00:00
2017-06-21 21:15:59 +00:00
self._MaintainCache()
2017-06-07 22:05:15 +00:00
2017-08-09 21:33:51 +00:00
2017-06-21 21:15:59 +00:00
HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_BANDWIDTH_TRACKER ] = BandwidthTracker