Source code for spinn_utilities.executable_finder
# Copyright (c) 2017 The University of Manchester
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from typing import List, Optional
from spinn_utilities.ordered_set import OrderedSet
[docs]
class ExecutableFinder(object):
"""
Manages a set of folders in which to search for binaries,
and allows for binaries to be discovered within this path.
"""
__slots__ = [
"_binary_search_paths",
"_binary_log",
"_paths_log"]
def __init__(self) -> None:
global_reports = os.environ.get("GLOBAL_REPORTS", None)
if global_reports:
if not os.path.exists(global_reports):
# It might now exist if run in parallel
try:
os.makedirs(global_reports)
except Exception: # pylint: disable=broad-except
pass
self._paths_log: Optional[str] = os.path.join(
global_reports, "binary_paths_used.log")
self._binary_log: Optional[str] = os.path.join(
global_reports, "binary_files_used.log")
else:
self._paths_log = None
self._binary_log = None
self._binary_search_paths: OrderedSet[str] = OrderedSet()
[docs]
def add_path(self, path: str) -> None:
"""
Adds a path to the set of folders to be searched. The path is
added to the end of the list, so it is searched after all the
paths currently in the list.
:param str path: The path to add
"""
self._binary_search_paths.add(path)
if self._paths_log:
try:
with open(self._paths_log, "a", encoding="utf-8") as log_file:
log_file.write(path)
log_file.write("\n")
except Exception: # pylint: disable=broad-except
pass
@property
def binary_paths(self) -> str:
"""
The set of folders to search for binaries, as a printable
colon-separated string.
:rtype: str
"""
return " : ".join(self._binary_search_paths)
[docs]
def get_executable_path(self, executable_name: str) -> str:
"""
Finds an executable within the set of folders. The set of folders
is searched sequentially and the first match is returned.
:param str executable_name: The name of the executable to find
:return: The full path of the discovered executable
:rtype: str
:raises KeyError: If no executable was found in the set of folders
"""
# Loop through search paths
for path in self._binary_search_paths:
# Rebuild filename
potential_filename = os.path.join(path, executable_name)
# If this filename exists, return it
if os.path.isfile(potential_filename):
if self._binary_log:
try:
with open(self._binary_log, "a", encoding="utf-8") \
as log_file:
log_file.write(potential_filename)
log_file.write("\n")
except Exception: # pylint: disable=broad-except
pass
return potential_filename
# No executable found
raise KeyError(f"Executable {executable_name} not found in paths "
f"f{list(self._binary_search_paths)}")
[docs]
def get_executable_paths(self, executable_names: str) -> List[str]:
"""
Finds each executables within the set of folders.
The names are assumed to be comma separated
The set of folders is searched sequentially
and the first match for each name is returned.
Names not found are ignored and not added to the list.
:param str executable_names: The name of the executable to find.
Assumed to be comma separated.
:return:
The full path of the discovered executable, or ``None`` if no
executable was found in the set of folders
:rtype: list(str)
"""
results = list()
for name in executable_names.split(","):
try:
results.append(self.get_executable_path(name))
except KeyError:
pass
return results
[docs]
def check_logs(self) -> None:
"""
Compares the aplx files used against the ones available for use
Reports the aplx files never used.
"""
if not self._paths_log:
print("environ GLOBAL_REPORTS not set!")
return
folders = set()
with open(self._paths_log, "r", encoding="utf-8") as log_file:
for line in log_file:
folders.add(line.strip())
in_folders = set()
for folder in folders:
try:
for file_name in os.listdir(folder):
if file_name.endswith(".aplx"):
in_folders.add(os.path.join(folder, file_name))
except Exception: # pylint: disable=broad-except
# Skip folders not found
pass
used_binaries = set()
if self._binary_log:
with open(self._binary_log, "r", encoding="utf-8") as log_file:
for line in log_file:
used_binaries.add(line.strip())
missing = in_folders - used_binaries
print(f"{len(used_binaries)} binaries asked for. "
f"{len(missing)} binaries never asked for.")
if len(missing) > 0:
print("Binaries asked for are:")
for binary in (used_binaries):
print(binary)
print("Binaries never asked for are:")
for binary in (missing):
print(binary)
[docs]
def clear_logs(self) -> None:
"""
Deletes log files from previous runs
"""
if not self._paths_log:
print("environ GLOBAL_REPORTS not set!")
return
if self._paths_log and os.path.isfile(self._paths_log):
os.remove(self._paths_log)
if self._binary_log and os.path.isfile(self._binary_log):
os.remove(self._binary_log)
if __name__ == "__main__":
ef = ExecutableFinder()
try:
ef.check_logs()
ef.clear_logs()
except Exception as ex: # pylint: disable=broad-except
print(ex)