aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Stokes <adam.stokes@ubuntu.com>2014-08-02 01:20:35 -0400
committerBryn M. Reeves <bmr@redhat.com>2014-08-02 19:51:44 +0100
commit8014c192f77562eaeed5c1e1da1ecf529964fade (patch)
tree534655c40e879cb331ed009fd2f64de549eb63dd
parent1ed68845a80a69d855b949a0f787eee60316fd0a (diff)
downloadsos-8014c192f77562eaeed5c1e1da1ecf529964fade.tar.gz
[utilities] pep8 compliance
Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
-rw-r--r--sos/utilities.py56
1 files changed, 32 insertions, 24 deletions
diff --git a/sos/utilities.py b/sos/utilities.py
index 0423dfce..57b59f8f 100644
--- a/sos/utilities.py
+++ b/sos/utilities.py
@@ -1,16 +1,16 @@
-### This program 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 2 of the License, or
-## (at your option) any later version.
+# This program 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 2 of the License, or
+# (at your option) any later version.
-## This program 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 the
-## GNU General Public License for more details.
+# This program 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 the
+# GNU General Public License for more details.
-## You should have received a copy of the GNU General Public License
-## along with this program; if not, write to the Free Software
-## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
from __future__ import with_statement
@@ -18,10 +18,9 @@ import os
import re
import inspect
from stat import *
-#from itertools import *
+# from itertools import *
from subprocess import Popen, PIPE, STDOUT
import zipfile
-import tarfile
import hashlib
import logging
import fnmatch
@@ -34,7 +33,6 @@ from contextlib import closing
import six
from six import StringIO
-import time
def tail(filename, number_of_bytes):
"""Returns the last number_of_bytes of filename"""
@@ -43,6 +41,7 @@ def tail(filename, number_of_bytes):
f.seek(-number_of_bytes, 2)
return f.read()
+
def fileobj(path_or_file, mode='r'):
"""Returns a file-like object that can be used as a context manager"""
if isinstance(path_or_file, six.string_types):
@@ -55,6 +54,7 @@ def fileobj(path_or_file, mode='r'):
else:
return closing(path_or_file)
+
def get_hash_name():
"""Returns the algorithm used when computing a hash"""
import sos.policies
@@ -66,6 +66,7 @@ def get_hash_name():
except:
return 'sha256'
+
def convert_bytes(bytes_, K=1 << 10, M=1 << 20, G=1 << 30, T=1 << 40):
"""Converts a number of bytes to a shorter, more human friendly format"""
fn = float(bytes_)
@@ -80,6 +81,7 @@ def convert_bytes(bytes_, K=1 << 10, M=1 << 20, G=1 << 30, T=1 << 40):
else:
return '%d' % bytes_
+
def find(file_pattern, top_dir, max_depth=None, path_pattern=None):
"""generator function to find files recursively. Usage:
@@ -100,9 +102,10 @@ def find(file_pattern, top_dir, max_depth=None, path_pattern=None):
for name in fnmatch.filter(filelist, file_pattern):
yield os.path.join(path, name)
+
def grep(pattern, *files_or_paths):
- """Returns lines matched in fnames, where fnames can either be pathnames to files
- to grep through or open file objects to grep through line by line"""
+ """Returns lines matched in fnames, where fnames can either be pathnames to
+ files to grep through or open file objects to grep through line by line"""
matches = []
for fop in files_or_paths:
@@ -111,6 +114,7 @@ def grep(pattern, *files_or_paths):
return matches
+
def is_executable(command):
"""Returns if a command matches an executable on the PATH"""
@@ -118,6 +122,7 @@ def is_executable(command):
candidates = [command] + [os.path.join(p, command) for p in paths]
return any(os.access(path, os.X_OK) for path in candidates)
+
def sos_get_command_output(command, timeout=300, runat=None):
"""Execute a command through the system shell. First checks to see if the
requested command is executable. Returns (returncode, stdout, 0)"""
@@ -138,8 +143,8 @@ def sos_get_command_output(command, timeout=300, runat=None):
args = shlex.split(command)
try:
p = Popen(args, shell=False, stdout=PIPE, stderr=STDOUT,
- bufsize=-1, env = cmd_env, close_fds = True,
- preexec_fn=_child_chdir)
+ bufsize=-1, env=cmd_env, close_fds=True,
+ preexec_fn=_child_chdir)
except OSError as e:
if e.errno == errno.ENOENT:
return {'status': 127, 'output': ""}
@@ -155,6 +160,7 @@ def sos_get_command_output(command, timeout=300, runat=None):
return {'status': p.returncode, 'output': stdout.decode('utf-8')}
+
def import_module(module_fqname, superclasses=None):
"""Imports the module module_fqname and returns a list of defined classes
from that module. If superclasses is defined then the classes returned will
@@ -170,6 +176,7 @@ def import_module(module_fqname, superclasses=None):
return modules
+
def shell_out(cmd, runat=None):
"""Shell out to an external command and return the output or the empty
string in case of error.
@@ -197,9 +204,9 @@ class ImporterHelper(object):
def _get_plugins_from_list(self, list_):
plugins = [self._plugin_name(plugin)
- for plugin in list_
- if "__init__" not in plugin
- and plugin.endswith(".py")]
+ for plugin in list_
+ if "__init__" not in plugin
+ and plugin.endswith(".py")]
plugins.sort()
return plugins
@@ -227,12 +234,12 @@ class ImporterHelper(object):
else:
return self._get_path_to_zip(head, tail_list)
-
def _find_plugins_in_zipfile(self, path):
try:
path_to_zip, tail = self._get_path_to_zip(path)
zf = zipfile.ZipFile(path_to_zip)
- # the path will have os separators, but the zipfile will always have '/'
+ # the path will have os separators, but the zipfile will
+ # always have '/'
tail = tail.replace(os.path.sep, "/")
root_names = [name for name in zf.namelist() if tail in name]
candidates = self._get_plugins_from_list(root_names)
@@ -245,7 +252,8 @@ class ImporterHelper(object):
return []
def get_modules(self):
- "Returns the list of importable modules in the configured python package."
+ """Returns the list of importable modules in the configured python
+ package. """
plugins = []
for path in self.package.__path__:
if os.path.isdir(path) or path == '':