1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
|
# -*- coding: utf-8 -*-
#
# This file is part of PyExifTool.
#
# PyExifTool <http://github.com/sylikc/pyexiftool>
#
# Copyright 2019-2023 Kevin M (sylikc)
# Copyright 2012-2014 Sven Marnach
#
# Community contributors are listed in the CHANGELOG.md for the PRs
#
# PyExifTool is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the licence, or
# (at your option) any later version, or the BSD licence.
#
# PyExifTool is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# See COPYING.GPL or COPYING.BSD for more details.
"""
This submodule contains the ``ExifToolAlpha`` class, which extends the ``ExifToolHelper`` class with experimental functionality.
.. note::
:py:class:`exiftool.helper.ExifToolAlpha` class of this submodule is available in the ``exiftool`` namespace as :py:class:`exiftool.ExifToolAlpha`
"""
from pathlib import Path
from .helper import ExifToolHelper
try: # Py3k compatibility
basestring
except NameError:
basestring = (bytes, str)
# ======================================================================================================================
#def atexit_handler
# constants related to keywords manipulations
KW_TAGNAME = "IPTC:Keywords"
KW_REPLACE, KW_ADD, KW_REMOVE = range(3)
# ======================================================================================================================
#string helper
def strip_nl(s):
return ' '.join(s.splitlines())
# ======================================================================================================================
# Error checking function
# very rudimentary checking
# Note: They are quite fragile, because this just parses the output text from exiftool
def check_ok(result):
"""Evaluates the output from a exiftool write operation (e.g. `set_tags`)
The argument is the result from the execute method.
The result is True or False.
"""
return not result is None and (not "due to errors" in result)
# ======================================================================================================================
def format_error(result):
"""Evaluates the output from a exiftool write operation (e.g. `set_tags`)
The argument is the result from the execute method.
The result is a human readable one-line string.
"""
if check_ok(result):
return f'exiftool probably finished properly. ("{strip_nl(result)}")'
else:
if result is None:
return "exiftool operation can't be evaluated: No result given"
else:
return f'exiftool finished with error: "{strip_nl(result)}"'
# ======================================================================================================================
class ExifToolAlpha(ExifToolHelper):
"""
This class is for the "experimental" functionality. In the grand scheme of things, this class
contains "not well tested" functionality, methods that are less used, or methods with niche use cases.
In some methods, edge cases on some of these methods may produce unexpected or ambiguous results.
However, if there is increased demand, or robustness improves, functionality may merge into
:py:class:`exiftool.ExifToolHelper` class.
The starting point of this class was to remove all the "less used" functionality that was merged in
on some arbitrary pull requests to the original v0.2 PyExifTool repository. This alpha-quality code is brittle and contains
a lot of "hacks" for a niche set of use cases. As such, it may be buggy and it shouldn't crowd the core functionality
of the :py:class:`exiftool.ExifTool` class or the stable extended functionality of the :py:class:`exiftool.ExifToolHelper` class
with unneeded bloat.
The class heirarchy: ExifTool -> ExifToolHelper -> ExifToolAlpha
* ExifTool - stable base class with CORE functionality
* ExifToolHelper - user friendly class that extends the base class with general functionality not found in the core
* ExifToolAlpha - alpha-quality code which extends the ExifToolHelper to add functionality that is niche, brittle, or not well tested
Because of this heirarchy, you could always use/extend the :py:class:`exiftool.ExifToolAlpha` class to have all functionality,
or at your discretion, use one of the more stable classes above.
Please issue PR to this class to add functionality, even if not tested well. This class is for experimental code after all!
"""
# ----------------------------------------------------------------------------------------------------------------------
# i'm not sure if the verification works, but related to pull request (#11)
def execute_json_wrapper(self, filenames, params=None, retry_on_error=True):
# make sure the argument is a list and not a single string
# which would lead to strange errors
if isinstance(filenames, basestring):
raise TypeError("The argument 'filenames' must be an iterable of strings")
execute_params = []
if params:
execute_params.extend(params)
execute_params.extend(filenames)
result = self.execute_json(execute_params)
if result:
try:
ExifToolAlpha._check_result_filelist(filenames, result)
except IOError as error:
# Restart the exiftool child process in these cases since something is going wrong
self.terminate()
self.run()
if retry_on_error:
result = self.execute_json_filenames(filenames, params, retry_on_error=False)
else:
raise error
else:
# Reasons for exiftool to provide an empty result, could be e.g. file not found, etc.
# What should we do in these cases? We don't have any information what went wrong, therefore
# we just return empty dictionaries.
result = [{} for _ in filenames]
return result
# ----------------------------------------------------------------------------------------------------------------------
# allows adding additional checks (#11)
def get_metadata_batch_wrapper(self, filenames, params=None):
return self.execute_json_wrapper(filenames=filenames, params=params)
# ----------------------------------------------------------------------------------------------------------------------
# (#11)
def get_metadata_wrapper(self, filename, params=None):
return self.execute_json_wrapper(filenames=[filename], params=params)[0]
# ----------------------------------------------------------------------------------------------------------------------
# (#11)
def get_tags_batch_wrapper(self, tags, filenames, params=None):
params = (params if params else []) + ["-" + t for t in tags]
return self.execute_json_wrapper(filenames=filenames, params=params)
# ----------------------------------------------------------------------------------------------------------------------
# (#11)
def get_tags_wrapper(self, tags, filename, params=None):
return self.get_tags_batch_wrapper(tags, [filename], params=params)[0]
# ----------------------------------------------------------------------------------------------------------------------
# (#11)
def get_tag_batch_wrapper(self, tag, filenames, params=None):
data = self.get_tags_batch_wrapper([tag], filenames, params=params)
result = []
for d in data:
d.pop("SourceFile")
result.append(next(iter(d.values()), None))
return result
# ----------------------------------------------------------------------------------------------------------------------
# this was a method with good intentions by the original author, but returns some inconsistent results in some cases
# for example, if you passed in a single tag, or a group name, it would return the first tag back instead of the whole group
# try calling get_tag_batch("*.mp4", "QuickTime") or "QuickTime:all" ... the expected results is a dictionary but a single tag is returned
def get_tag_batch(self, filenames, tag):
"""Extract a single tag from the given files.
The first argument is a single tag name, as usual in the
format <group>:<tag>.
The second argument is an iterable of file names.
The return value is a list of tag values or ``None`` for
non-existent tags, in the same order as ``filenames``.
"""
data = self.get_tags(filenames, [tag])
result = []
for d in data:
d.pop("SourceFile")
result.append(next(iter(d.values()), None))
return result
# ----------------------------------------------------------------------------------------------------------------------
# (#11)
def get_tag_wrapper(self, tag, filename, params=None):
return self.get_tag_batch_wrapper(tag, [filename], params=params)[0]
# ----------------------------------------------------------------------------------------------------------------------
def get_tag(self, filename, tag):
"""
Extract a single tag from a single file.
The return value is the value of the specified tag, or
``None`` if this tag was not found in the file.
Does existence checks
"""
#return self.get_tag_batch([filename], tag)[0]
p = Path(filename)
if not p.exists():
raise FileNotFoundError
data = self.get_tags(p, tag)
if len(data) > 1:
raise RuntimeError("one file requested but multiple returned?")
d = data[0]
d.pop("SourceFile")
if len(d.values()) > 1:
raise RuntimeError("multiple tag values returned, invalid use case")
return next(iter(d.values()), None)
# ----------------------------------------------------------------------------------------------------------------------
def copy_tags(self, from_filename, to_filename):
"""Copy all tags from one file to another."""
params = ["-overwrite_original", "-TagsFromFile", str(from_filename), str(to_filename)]
self.execute(*params)
# ----------------------------------------------------------------------------------------------------------------------
def set_keywords_batch(self, files, mode, keywords):
"""Modifies the keywords tag for the given files.
The first argument is the operation mode:
* KW_REPLACE: Replace (i.e. set) the full keywords tag with `keywords`.
* KW_ADD: Add `keywords` to the keywords tag.
If a keyword is present, just keep it.
* KW_REMOVE: Remove `keywords` from the keywords tag.
If a keyword wasn't present, just leave it.
The second argument is an iterable of key words.
The third argument is an iterable of file names.
The format of the return value is the same as for
:py:meth:`execute()`.
It can be passed into `check_ok()` and `format_error()`.
"""
# Explicitly ruling out strings here because passing in a
# string would lead to strange and hard-to-find errors
if isinstance(keywords, basestring):
raise TypeError("The argument 'keywords' must be "
"an iterable of strings")
# allow the files argument to be a str, and process it into a list of str
filenames = self.__class__._parse_arg_files(files)
params = []
kw_operation = {KW_REPLACE: "-%s=%s",
KW_ADD: "-%s+=%s",
KW_REMOVE: "-%s-=%s"}[mode]
kw_params = [kw_operation % (KW_TAGNAME, w) for w in keywords]
params.extend(kw_params)
params.extend(filenames)
if self._logger: self._logger.debug(params)
return self.execute(*params)
# ----------------------------------------------------------------------------------------------------------------------
def set_keywords(self, filename, mode, keywords):
"""Modifies the keywords tag for the given file.
This is a convenience function derived from `set_keywords_batch()`.
Only difference is that it takes as last argument only one file name
as a string.
"""
return self.set_keywords_batch([filename], mode, keywords)
# ----------------------------------------------------------------------------------------------------------------------
@staticmethod
def _check_result_filelist(file_paths, result):
"""
Checks if the given file paths matches the 'SourceFile' entries in the result returned by
exiftool. This is done to find possible mix ups in the streamed responses.
"""
# do some sanity checks on the results to make sure nothing was mixed up during reading from stdout
if len(result) != len(file_paths):
raise IOError(f"exiftool returned {len(result)} results, but expected was {len(file_paths)}")
for i in range(len(file_paths)):
returned_source_file = result[i].get('SourceFile')
requested_file = file_paths[i]
if returned_source_file != requested_file:
raise IOError(f"exiftool returned data for file {returned_source_file}, but expected was {requested_file}")
# ----------------------------------------------------------------------------------------------------------------------
|