2021-10-09 10:26:53 +00:00
|
|
|
import datetime
|
|
|
|
import os
|
|
|
|
|
2021-10-10 18:04:45 +00:00
|
|
|
import architecture
|
|
|
|
import arguments
|
2021-10-10 14:50:15 +00:00
|
|
|
import distribution
|
2021-10-10 01:00:43 +00:00
|
|
|
import msys
|
2021-10-10 12:48:12 +00:00
|
|
|
import repository
|
2021-10-09 13:58:44 +00:00
|
|
|
|
2021-10-09 10:26:53 +00:00
|
|
|
|
2021-10-10 12:48:12 +00:00
|
|
|
class Local(repository.Repository):
|
2021-10-10 17:02:34 +00:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__(arguments.directory)
|
|
|
|
self.temporary = arguments.temporary
|
2021-10-09 13:58:44 +00:00
|
|
|
self.load()
|
|
|
|
|
|
|
|
def load(self):
|
2021-10-10 14:50:15 +00:00
|
|
|
distro = os.path.join(
|
|
|
|
self.location, distribution.DISTRIBUTION)
|
2021-10-09 13:58:44 +00:00
|
|
|
d = {}
|
2021-10-10 14:50:15 +00:00
|
|
|
_, architectures, _ = next(os.walk(distro))
|
2021-10-10 18:04:45 +00:00
|
|
|
for arch in [a for a in architectures
|
|
|
|
if a in architecture.ARCHITECTURES.keys()]:
|
|
|
|
directory = os.path.join(distro, arch)
|
2021-10-09 13:58:44 +00:00
|
|
|
_, _, files = next(os.walk(directory))
|
|
|
|
archives = sorted([file for file in files
|
2021-10-10 01:00:43 +00:00
|
|
|
if file.endswith(msys.ARCHIVE)])
|
2021-10-09 13:58:44 +00:00
|
|
|
archive = archives[-1]
|
2021-10-10 18:04:45 +00:00
|
|
|
d[arch] = archive
|
2021-10-09 13:58:44 +00:00
|
|
|
self.archives = d
|
2021-10-09 10:26:53 +00:00
|
|
|
|
2021-10-10 18:27:48 +00:00
|
|
|
def get_files(self, path):
|
|
|
|
*_, files = next(os.walk(os.path.join(self.location, path)))
|
|
|
|
return files
|
|
|
|
|
2021-10-09 17:46:11 +00:00
|
|
|
def get_temporary(self):
|
2021-10-09 16:19:58 +00:00
|
|
|
return os.path.join(self.temporary,
|
|
|
|
datetime.datetime.now()
|
|
|
|
.strftime('%Y%m%d%H%M%S'))
|
|
|
|
|
2021-10-09 10:26:53 +00:00
|
|
|
def __str__(self):
|
2021-10-09 12:54:50 +00:00
|
|
|
lines = [
|
2021-10-10 13:01:24 +00:00
|
|
|
super().__str__(),
|
2021-10-09 17:46:11 +00:00
|
|
|
'Archives:',
|
2021-10-09 12:54:50 +00:00
|
|
|
]
|
2021-10-10 18:04:45 +00:00
|
|
|
for arch, archive in reversed(sorted(self.archives.items())):
|
|
|
|
lines.append(f'{arch} → {archive}')
|
2021-10-09 12:54:50 +00:00
|
|
|
return os.linesep.join(lines)
|