Source code for dfvfs.path.qcow_path_spec

# -*- coding: utf-8 -*-
"""The QCOW image path specification implementation."""

from dfvfs.lib import definitions
from dfvfs.path import factory
from dfvfs.path import path_spec


[docs] class QCOWPathSpec(path_spec.PathSpec): """QCOW image path specification.""" TYPE_INDICATOR = definitions.TYPE_INDICATOR_QCOW
[docs] def __init__(self, parent=None, **kwargs): """Initializes a path specification. Note that the QCOW path specification must have a parent. Args: parent (Optional[PathSpec]): parent path specification. Raises: ValueError: when parent is not set. """ if not parent: raise ValueError('Missing parent value.') super(QCOWPathSpec, self).__init__(parent=parent, **kwargs)
factory.Factory.RegisterPathSpec(QCOWPathSpec)