1
0
Fork 0
mat2/libmat2/__init__.py

73 lines
1.6 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import os
import collections
2018-09-06 11:13:11 +02:00
import enum
import importlib
2018-09-01 15:07:01 +02:00
from typing import Dict, Optional
# make pyflakes happy
assert Dict
2018-10-12 11:58:01 +02:00
assert Optional
# A set of extension that aren't supported, despite matching a supported mimetype
UNSUPPORTED_EXTENSIONS = {
'.asc',
'.bat',
'.brf',
'.c',
'.h',
'.ksh',
'.pl',
'.pot',
'.rdf',
'.srt',
'.wsdl',
'.xpdl',
'.xsd',
'.xsl',
}
DEPENDENCIES = {
'cairo': 'Cairo',
'gi': 'PyGobject',
'gi.repository.GdkPixbuf': 'GdkPixbuf from PyGobject',
'gi.repository.Poppler': 'Poppler from PyGobject',
'gi.repository.GLib': 'GLib from PyGobject',
'mutagen': 'Mutagen',
}
2018-10-12 11:58:01 +02:00
def _get_exiftool_path() -> str: # pragma: no cover
2018-09-01 15:07:01 +02:00
exiftool_path = '/usr/bin/exiftool'
if os.path.isfile(exiftool_path):
2018-09-01 16:58:34 +02:00
if os.access(exiftool_path, os.X_OK):
2018-09-01 15:07:01 +02:00
return exiftool_path
# ArchLinux
exiftool_path = '/usr/bin/vendor_perl/exiftool'
if os.path.isfile(exiftool_path):
2018-09-01 16:58:34 +02:00
if os.access(exiftool_path, os.X_OK):
2018-09-01 15:07:01 +02:00
return exiftool_path
2018-10-12 11:58:01 +02:00
raise ValueError
2018-09-01 15:07:01 +02:00
def check_dependencies() -> dict:
ret = collections.defaultdict(bool) # type: Dict[str, bool]
2018-09-01 15:07:01 +02:00
ret['Exiftool'] = True if _get_exiftool_path() else False
for key, value in DEPENDENCIES.items():
ret[value] = True
try:
importlib.import_module(key)
except ImportError: # pragma: no cover
ret[value] = False # pragma: no cover
return ret
2018-09-06 11:13:11 +02:00
@enum.unique
class UnknownMemberPolicy(enum.Enum):
ABORT = 'abort'
OMIT = 'omit'
KEEP = 'keep'