:py:mod:`dissect.target.volumes.ddf` ==================================== .. py:module:: dissect.target.volumes.ddf Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: dissect.target.volumes.ddf.DdfVolumeSystem .. py:class:: DdfVolumeSystem(fh: Union[BinaryIO, list[BinaryIO]], *args, **kwargs) Bases: :py:obj:`dissect.target.volume.LogicalVolumeSystem` An extension of the :class:`VolumeSystem` class that provides additional functionality for dealing with logical volume systems. .. py:attribute:: __type__ :value: 'ddf' .. py:method:: open_all(volumes: list[BinaryIO]) -> Iterator[dissect.target.volume.LogicalVolumeSystem] :classmethod: Open all the discovered logical volume systems from the given file-like objects. There can be more than one logical volume system on a given set of file-like objects. For example, you can have five disks or volumes with two separate LVM2 volume groups. This function is responsible for grouping the correct disks and volumes with each other, and correctly opening each distinct logical volume system. :param volumes: A list of file-like objects to discover and open the logical volume systems on. :returns: An iterator of :class:`LogicalVolumeSystem`.