Grep commands output using grep on remote host

Change-Id: I801154968340a21c864bf8507340efb636dc9909
This commit is contained in:
Federico Ressi 2020-11-26 15:47:28 +01:00
parent de911a83fe
commit d37d4e9235
2 changed files with 46 additions and 53 deletions

View File

@ -32,11 +32,8 @@ class LogFileDigger(object):
self.found = set()
def find_lines(self, pattern, new_lines=False):
log_files = self.list_log_files()
try:
lines = frozenset(
grep.grep_files(pattern=pattern, files=log_files,
**self.execute_params))
lines = frozenset(self.grep_lines(pattern))
except grep.NoMatchingLinesFound:
if new_lines:
return frozenset()
@ -47,6 +44,11 @@ class LogFileDigger(object):
return lines
return frozenset(self.found)
def grep_lines(self, pattern):
log_files = self.list_log_files()
return grep.grep_files(pattern=pattern, files=log_files,
**self.execute_params)
def find_new_lines(self, pattern):
return self.find_lines(pattern=pattern, new_lines=True)
@ -59,24 +61,22 @@ class LogFileDigger(object):
class JournalLogDigger(LogFileDigger):
def find_lines(self, pattern, new_lines=False):
dump_log_cmd = [
"journalctl", "--unit", self.filename,
"--since", "5 minutes ago"]
def grep_lines(self, pattern):
try:
lines = frozenset(
grep.grep_lines(pattern=pattern,
command=dump_log_cmd,
**self.execute_params))
except grep.NoMatchingLinesFound:
if new_lines:
return frozenset()
result = sh.execute(["journalctl", '--no-pager',
"--unit", self.filename,
"--since", "5 minutes ago",
'--grep', pattern],
**self.execute_params)
except sh.ShellCommandFailed as ex:
if ex.stdout.endswith('-- No entries --\n'):
ssh_client = self.execute_params.get('ssh_client')
raise grep.NoMatchingLinesFound(
pattern=pattern,
files=[self.filename],
login=ssh_client and ssh_client.login or None)
else:
lines -= self.found
self.found.update(lines)
if new_lines:
return lines
return frozenset(self.found)
return result.stdout.splitlines()
class MultihostLogFileDigger(object):

View File

@ -15,7 +15,6 @@
# under the License.
from __future__ import absolute_import
import re
import typing # noqa
import tobiko
@ -28,17 +27,26 @@ class NoMatchingLinesFound(tobiko.TobikoException):
" files={files}, login={login})")
def grep_files(pattern: str,
files: typing.List[str],
command: sh.ShellCommandType = 'zgrep -Eh',
ssh_client: ssh.SSHClientFixture = None,
blank_lines=False,
**execute_params) -> typing.List[str]:
def grep(pattern: str,
command: typing.Optional[sh.ShellCommandType] = None,
grep_command: sh.ShellCommandType = 'zgrep -Eh',
files: typing.Optional[typing.List[str]] = None,
ssh_client: ssh.SSHClientFixture = None,
blank_lines: bool = True,
**execute_params) -> typing.List[str]:
if not pattern:
raise ValueError("Pattern string can't be empty")
if not files:
raise ValueError("File list can't be empty")
command_line = sh.shell_command(command) + ['-e', pattern] + files
if command:
if files:
raise ValueError("File list must be empty when command is given")
command_line = sh.shell_command(command) + ['|'] + grep_command + [
'-e', pattern]
elif files:
command_line = sh.shell_command(grep_command) + [
'-e', pattern] + files
else:
raise ValueError("command and files can't be both empty or None")
try:
result = sh.execute(command_line,
ssh_client=ssh_client,
@ -59,28 +67,13 @@ def grep_files(pattern: str,
login=ssh_client and ssh_client.login or None)
def grep_files(pattern: str,
files: typing.List[str],
**grep_params) -> typing.List[str]:
return grep(pattern=pattern, files=files, **grep_params)
def grep_lines(pattern: str,
command: sh.ShellCommandType,
ssh_client: ssh.SSHClientFixture = None,
**execute_params) -> typing.List[str]:
if not pattern:
raise ValueError("Pattern string can't be empty")
command_line = sh.shell_command(command)
try:
result = sh.execute(command_line,
ssh_client=ssh_client,
**execute_params)
except sh.ShellCommandFailed as ex:
if ex.exit_status > 1:
# Some unknown problem occurred
raise
else:
output_lines: typing.List[str] = []
r = re.compile(pattern)
output_lines = [line for line in result.stdout.splitlines()
if r.search(line)]
if output_lines:
return output_lines
raise NoMatchingLinesFound(pattern=pattern,
files=command,
login=ssh_client and ssh_client.login or None)
**grep_params) -> typing.List[str]:
return grep(pattern=pattern, command=command, **grep_params)