Source code for dfvfs.analyzer.zip_analyzer_helper

"""The ZIP format analyzer helper implementation."""

from dfvfs.analyzer import analyzer
from dfvfs.analyzer import analyzer_helper
from dfvfs.analyzer import specification
from dfvfs.lib import definitions


[docs] class ZipAnalyzerHelper(analyzer_helper.AnalyzerHelper): """ZIP analyzer helper.""" FORMAT_CATEGORIES = frozenset([definitions.FORMAT_CATEGORY_ARCHIVE]) TYPE_INDICATOR = definitions.TYPE_INDICATOR_ZIP
[docs] def GetFormatSpecification(self): """Retrieves the format specification. Returns: FormatSpecification: format specification or None if the format cannot be defined by a specification object. """ format_specification = specification.FormatSpecification(self.type_indicator) # ZIP file signature. format_specification.AddNewSignature(b"PK\x03\x04", offset=0) return format_specification
analyzer.Analyzer.RegisterHelper(ZipAnalyzerHelper())