Skip to content

Commit

Permalink
Version bump to v2.5.1rc1 in prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Torxed committed Aug 30, 2022
2 parents ea407f5 + 0f5b91c commit a335f10
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 7 deletions.
6 changes: 4 additions & 2 deletions archinstall/lib/disk/filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@ def add_partition(

if self.parted(parted_string):
for count in range(storage.get('DISK_RETRY_ATTEMPTS', 3)):
self.partprobe()
self.blockdevice.flush_cache()

new_partition_uuids = [partition.part_uuid for partition in self.blockdevice.partitions.values()]
Expand All @@ -271,7 +270,10 @@ def add_partition(
raise err
else:
log(f"Could not get UUID for partition. Waiting {storage.get('DISK_TIMEOUTS', 1) * count}s before retrying.",level=logging.DEBUG)
time.sleep(storage.get('DISK_TIMEOUTS', 1) * count)
self.partprobe()
time.sleep(max(0.1, storage.get('DISK_TIMEOUTS', 1)))
else:
print("Parted did not return True during partition creation")

total_partitions = set([partition.part_uuid for partition in self.blockdevice.partitions.values()])
total_partitions.update(previous_partuuids)
Expand Down
5 changes: 5 additions & 0 deletions archinstall/lib/disk/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,12 +229,17 @@ def all_blockdevices(mappers=False, partitions=False, error=False) -> Dict[str,
try:
information = get_loop_info(device_path)
if not information:
print("Exit code for blkid -p -o export was:", ex.exit_code)
raise SysCallError("Could not get loop information", exit_code=1)

except SysCallError:
print("Not a loop device, trying uevent rules.")
information = get_blockdevice_uevent(pathlib.Path(block_device).readlink().name)
else:
# We could not reliably get any information, perhaps the disk is clean of information?
print("Raising ex because:", ex.exit_code)
raise ex
# return instances

information = enrich_blockdevice_information(information)

Expand Down
18 changes: 16 additions & 2 deletions archinstall/lib/disk/partition.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,19 @@ def __dump__(self) -> Dict[str, Any]:

def _call_lsblk(self) -> Dict[str, Any]:
self.partprobe()
output = SysCommand(f"lsblk --json -b -o+LOG-SEC,SIZE,PTTYPE,PARTUUID,UUID,FSTYPE {self.device_path}").decode('UTF-8')
# This sleep might be overkill, but lsblk is known to
# work against a chaotic cache that can change during call
# causing no information to be returned (blkid is better)
# time.sleep(1)

# TODO: Maybe incorporate a re-try system here based on time.sleep(max(0.1, storage.get('DISK_TIMEOUTS', 1)))

try:
output = SysCommand(f"lsblk --json -b -o+LOG-SEC,SIZE,PTTYPE,PARTUUID,UUID,FSTYPE {self.device_path}").decode('UTF-8')
except SysCallError as error:
# It appears as if lsblk can return exit codes like 8192 to indicate something.
# But it does return output so we'll try to catch it.
output = error.worker.decode('UTF-8')

if output:
lsblk_info = json.loads(output)
Expand All @@ -165,7 +177,9 @@ def _call_sfdisk(self) -> Dict[str, Any]:
def _fetch_information(self) -> PartitionInfo:
lsblk_info = self._call_lsblk()
sfdisk_info = self._call_sfdisk()
device = lsblk_info['blockdevices'][0]

if not (device := lsblk_info.get('blockdevices', [None])[0]):
raise DiskError(f'Failed to retrieve information for "{self.device_path}" with lsblk')

mountpoints = [Path(mountpoint) for mountpoint in device['mountpoints'] if mountpoint]
bootable = sfdisk_info.get('bootable', False) or sfdisk_info.get('type', '') == 'C12A7328-F81F-11D2-BA4B-00A0C93EC93B'
Expand Down
8 changes: 6 additions & 2 deletions archinstall/lib/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from typing import Optional
from typing import Optional, TYPE_CHECKING

if TYPE_CHECKING:
from .general import SysCommandWorker

class RequirementError(BaseException):
pass
Expand All @@ -17,10 +20,11 @@ class ProfileError(BaseException):


class SysCallError(BaseException):
def __init__(self, message :str, exit_code :Optional[int] = None) -> None:
def __init__(self, message :str, exit_code :Optional[int] = None, worker :Optional['SysCommandWorker'] = None) -> None:
super(SysCallError, self).__init__(message)
self.message = message
self.exit_code = exit_code
self.worker = worker


class PermissionError(BaseException):
Expand Down
2 changes: 1 addition & 1 deletion archinstall/lib/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def __exit__(self, *args :str) -> None:
log(args[1], level=logging.DEBUG, fg='red')

if self.exit_code != 0:
raise SysCallError(f"{self.cmd} exited with abnormal exit code [{self.exit_code}]: {self._trace_log[-500:]}", self.exit_code)
raise SysCallError(f"{self.cmd} exited with abnormal exit code [{self.exit_code}]: {self._trace_log[-500:]}", self.exit_code, worker=self)

def is_alive(self) -> bool:
self.poll()
Expand Down

0 comments on commit a335f10

Please sign in to comment.