62 lines
2 KiB
Python
62 lines
2 KiB
Python
import os
|
|
import requests
|
|
|
|
import arguments
|
|
import catalog
|
|
import hypertext
|
|
import msys
|
|
|
|
|
|
ARCHITECTURES_BITS = {
|
|
'x86_64': 64,
|
|
'i686': 32,
|
|
}
|
|
ARCHITECTURES_SUBSYSTEMS = {
|
|
'x86_64': ['msys', 'clang64', 'mingw64', 'ucrt64'],
|
|
'i686': ['msys', 'clang32', 'mingw32'],
|
|
}
|
|
CATALOG = '.files'
|
|
DISTRIBUTION = 'distrib'
|
|
MINGW = 'mingw'
|
|
SIGNATURE = '.sig'
|
|
|
|
|
|
class Remote:
|
|
def __init__(self, args):
|
|
self.location = args[arguments.REMOTE]
|
|
self.architectures = args[arguments.ARCHITECTURES]
|
|
self.subsystems = args[arguments.SUBSYSTEMS]
|
|
self.load()
|
|
|
|
def load(self):
|
|
a = {}
|
|
c = {}
|
|
for architecture in self.architectures:
|
|
location = os.path.join(self.location, DISTRIBUTION, architecture)
|
|
a[architecture] = hypertext.HyperText(location).archive
|
|
#
|
|
c[architecture] = {}
|
|
for ss in self.subsystems:
|
|
location = self.location
|
|
if ss == msys.SUBSYSTEMS[0]:
|
|
subsystem = ss
|
|
location = os.path.join(location, subsystem, architecture)
|
|
else:
|
|
subsystem = f'{ss}{ARCHITECTURES_BITS[architecture]}'
|
|
location = os.path.join(location, MINGW, subsystem)
|
|
if subsystem in ARCHITECTURES_SUBSYSTEMS[architecture]:
|
|
location = os.path.join(location, f'{subsystem}{CATALOG}')
|
|
binary = requests.get(location).content
|
|
c[architecture][subsystem] = catalog.Catalog(binary)
|
|
self.archives = a
|
|
self.catalogs = c
|
|
|
|
def __str__(self):
|
|
lines = [f'Location: {self.location}',
|
|
'Archives:']
|
|
for architecture, archive in reversed(sorted(self.archives.items())):
|
|
lines.append(f'{architecture} → {archive}')
|
|
lines.append('Subsystems:')
|
|
for arch, ss in reversed(sorted(self.catalogs.items())):
|
|
lines.append(f'{arch} → {list(ss.keys())}')
|
|
return os.linesep.join(lines)
|