Browse Source

cdn: improve get_manifests() logic for shared repos

pull/214/head
Rossen Georgiev 6 years ago
parent
commit
1606c71d3c
  1. 67
      steam/client/cdn.py

67
steam/client/cdn.py

@ -444,6 +444,7 @@ class CDNClient(object):
:param client: logged in SteamClient instance :param client: logged in SteamClient instance
:type client: :class:`.SteamClient` :type client: :class:`.SteamClient`
""" """
self.gpool = GPool(8) #: task pool
self.steam = client #: SteamClient instance self.steam = client #: SteamClient instance
if self.steam: if self.steam:
self.cell_id = self.steam.cell_id self.cell_id = self.steam.cell_id
@ -696,7 +697,7 @@ class CDNClient(object):
return manifest return manifest
tasks = [] tasks = []
gpool = GPool(8) shared_depots = {}
for depot_id, depot_info in iteritems(depots): for depot_id, depot_info in iteritems(depots):
if not depot_id.isdigit(): if not depot_id.isdigit():
@ -704,6 +705,10 @@ class CDNClient(object):
depot_id = int(depot_id) depot_id = int(depot_id)
# if filter_func set, use it to filter the list the depots
if filter_func and not filter_func(depot_id, depot_info):
continue
# if we have no license for the depot, no point trying as we won't get depot_key # if we have no license for the depot, no point trying as we won't get depot_key
if depot_id not in self.licensed_depot_ids: if depot_id not in self.licensed_depot_ids:
self._LOG.debug("No license for depot %s (%s). Skipping...", self._LOG.debug("No license for depot %s (%s). Skipping...",
@ -712,16 +717,9 @@ class CDNClient(object):
) )
continue continue
# if filter_func set, use it to filter the list the depots # accumulate the shared depots
if filter_func and not filter_func(depot_id, depot_info): if 'depotfromapp' in depot_info:
continue shared_depots.setdefault(int(depot_info['depotfromapp']), set()).add(depot_id)
# get manifests for the sharedinstalls
if depot_info.get('sharedinstall') == '1':
tasks.append(gpool.spawn(self.get_manifests,
int(depot_info['depotfromapp']),
filter_func=(lambda a, b: int(a) == depot_id),
))
continue continue
@ -738,29 +736,36 @@ class CDNClient(object):
manifest_gid = depot_info.get('manifests', {}).get(branch) manifest_gid = depot_info.get('manifests', {}).get(branch)
if manifest_gid is not None: if manifest_gid is not None:
tasks.append(gpool.spawn(async_fetch_manifest, tasks.append(self.gpool.spawn(async_fetch_manifest,
app_id, app_id,
depot_id, depot_id,
manifest_gid, manifest_gid,
depot_info['name'], depot_info['name'],
)) ))
# collect results
manifests = [] manifests = []
for task in tasks: for task in tasks:
try: manifests.append(task.get())
result = task.get() # try:
except SteamError as exp: # result = task.get()
self._LOG.error("Depot %s (%s): %s", # except SteamError as exp:
repr(depot_info['name']), # self._LOG.error("Error: %s", exp)
depot_id, # raise
str(exp), # else:
) # if isinstance(result, list):
else: # manifests.extend(result)
if isinstance(result, list): # else:
manifests.extend(result) # manifests.append(result)
else:
manifests.append(result) # load shared depot manifests
for app_id, depot_ids in iteritems(shared_depots):
def nested_ffunc(depot_id, depot_info, depot_ids=depot_ids, ffunc=filter_func):
return (int(depot_id) in depot_ids
and (ffunc is None or ffunc(depot_id, depot_info)))
manifests += self.get_manifests(app_id, filter_func=nested_ffunc)
return manifests return manifests

Loading…
Cancel
Save