Identify TODOs that are log related

pull/12/head
Dan Puttick 2017-02-27 10:58:10 -06:00
parent 8d7dd1197f
commit 9832101c85
2 changed files with 17 additions and 17 deletions

View File

@ -182,7 +182,7 @@ class File(FileBase):
def write_log(self): def write_log(self):
"""Print the logs related to the current file being processed.""" """Print the logs related to the current file being processed."""
# TODO: move to helpers.py? # LOG: move to helpers.py?
tmp_log = self.logger.log.fields(**self.log_details) tmp_log = self.logger.log.fields(**self.log_details)
if self.is_dangerous(): if self.is_dangerous():
tmp_log.warning(self.log_string) tmp_log.warning(self.log_string)
@ -191,7 +191,7 @@ class File(FileBase):
else: else:
tmp_log.debug(self.log_string) tmp_log.debug(self.log_string)
# TODO: Make this an @property @property
def has_metadata(self): def has_metadata(self):
if self.mimetype in Config.mimes_metadata: if self.mimetype in Config.mimes_metadata:
return True return True
@ -397,14 +397,14 @@ class File(FileBase):
try: try:
tags = exifread.process_file(img, debug=True) tags = exifread.process_file(img, debug=True)
except Exception as e: except Exception as e:
# TODO: log instead of print # LOG: log instead of print
print("Error while trying to grab full metadata for file {}; retrying for partial data.".format(self.src_path)) print("Error while trying to grab full metadata for file {}; retrying for partial data.".format(self.src_path))
print(e) print(e)
if tags is None: if tags is None:
try: try:
tags = exifread.process_file(img, debug=True) tags = exifread.process_file(img, debug=True)
except Exception as e: except Exception as e:
# TODO: log instead of print # LOG: log instead of print
print("Failed to get any metadata for file {}.".format(self.src_path)) print("Failed to get any metadata for file {}.".format(self.src_path))
print(e) print(e)
img.close() img.close()
@ -439,7 +439,7 @@ class File(FileBase):
img.close() img.close()
# Catch decompression bombs # Catch decompression bombs
except Exception as e: except Exception as e:
# TODO: log instead of print # LOG: log instead of print
print("Caught exception processing metadata for {}".format(self.src_path)) print("Caught exception processing metadata for {}".format(self.src_path))
print(e) print(e)
self.make_dangerous() self.make_dangerous()
@ -476,7 +476,7 @@ class File(FileBase):
temporary directory on dest key, opens the using PIL.Image,saves it to temporary directory on dest key, opens the using PIL.Image,saves it to
the temporary directory, and copies it to the destination.""" the temporary directory, and copies it to the destination."""
# TODO: make sure this method works for png, gif, tiff # TODO: make sure this method works for png, gif, tiff
if self.has_metadata(): if self.has_metadata:
self.extract_metadata() self.extract_metadata()
tempdir_path = self.make_tempdir() tempdir_path = self.make_tempdir()
tempfile_path = os.path.join(tempdir_path, self.filename) tempfile_path = os.path.join(tempdir_path, self.filename)
@ -488,7 +488,7 @@ class File(FileBase):
self.src_path = tempfile_path self.src_path = tempfile_path
except Exception as e: # Catch decompression bombs except Exception as e: # Catch decompression bombs
# TODO: change this from all Exceptions to specific DecompressionBombWarning # TODO: change this from all Exceptions to specific DecompressionBombWarning
# TODO: change this from printing to logging # LOG: change this from printing to logging
print("Caught exception (possible decompression bomb?) while translating file {}.".format(self.src_path)) print("Caught exception (possible decompression bomb?) while translating file {}.".format(self.src_path))
print(e) print(e)
self.make_dangerous() self.make_dangerous()
@ -505,7 +505,7 @@ class KittenGroomerFileCheck(KittenGroomerBase):
def process_dir(self, src_dir, dst_dir): def process_dir(self, src_dir, dst_dir):
"""Main function coordinating file processing.""" """Main function coordinating file processing."""
# TODO: we probably want to move this write_log elsewhere: # LOG: we probably want to move this write_log elsewhere:
# if self.recursive_archive_depth > 0: # if self.recursive_archive_depth > 0:
# self.write_log() # self.write_log()
# TODO: Can we clean up the way we handle relative_path? # TODO: Can we clean up the way we handle relative_path?
@ -513,7 +513,7 @@ class KittenGroomerFileCheck(KittenGroomerBase):
dstpath = srcpath.replace(src_dir, dst_dir) dstpath = srcpath.replace(src_dir, dst_dir)
relative_path = srcpath.replace(src_dir + '/', '') relative_path = srcpath.replace(src_dir + '/', '')
self.cur_file = File(srcpath, dstpath, self.logger) self.cur_file = File(srcpath, dstpath, self.logger)
# TODO: move this logging code elsewhere # LOG: move this logging code elsewhere
self.logger.log.info('Processing {} ({}/{})', self.logger.log.info('Processing {} ({}/{})',
relative_path, relative_path,
self.cur_file.main_type, self.cur_file.main_type,
@ -546,7 +546,7 @@ class KittenGroomerFileCheck(KittenGroomerBase):
unpack_command = command_str.format(SEVENZ_PATH, unpack_command = command_str.format(SEVENZ_PATH,
file.src_path, tempdir_path) file.src_path, tempdir_path)
self._run_process(unpack_command) self._run_process(unpack_command)
# TODO: check that tree is working correctly here # LOG: check that tree is working correctly here
self.logger.tree(tempdir_path) self.logger.tree(tempdir_path)
self.process_dir(tempdir_path, file.dst_path) self.process_dir(tempdir_path, file.dst_path)
self._safe_rmtree(tempdir_path) self._safe_rmtree(tempdir_path)

View File

@ -173,12 +173,12 @@ class FileBase(object):
self.metadata_file_path = self.dst_path + ext self.metadata_file_path = self.dst_path + ext
return self.metadata_file_path return self.metadata_file_path
except KittenGroomerError as e: except KittenGroomerError as e:
# TODO: Write to log file # LOG: Write to log file
return False return False
class GroomerLog(object): class GroomerLogger(object):
"""Groomer logging object""" """Groomer logging interface"""
def __init__(self, root_dir, debug=False): def __init__(self, root_dir, debug=False):
self.log_dir_path = os.path.join(root_dir, 'logs') self.log_dir_path = os.path.join(root_dir, 'logs')
@ -223,8 +223,8 @@ class GroomerLog(object):
s.update(buf) s.update(buf)
return s.hexdigest() return s.hexdigest()
def add_file(self): def add_file(self, file):
# File object will add itself # File object will add itself?
# return a sublog for the file # return a sublog for the file
pass pass
@ -241,7 +241,7 @@ class KittenGroomerBase(object):
self.dst_root_dir = root_dst self.dst_root_dir = root_dst
self.debug = debug self.debug = debug
self.cur_file = None self.cur_file = None
self.logger = GroomerLog(self.dst_root_dir, debug) self.logger = GroomerLogger(self.dst_root_dir, debug)
# ##### Helpers ##### # ##### Helpers #####
def _safe_rmtree(self, directory): def _safe_rmtree(self, directory):
@ -271,7 +271,7 @@ class KittenGroomerBase(object):
shutil.copy(src, dst) shutil.copy(src, dst)
return True return True
except Exception as e: except Exception as e:
# TODO: Logfile # LOG: Logfile
print(e) print(e)
return False return False