Page Menu
Home
ClusterLabs Projects
Search
Configure Global Search
Log In
Files
F5746915
logging.py
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
logging.py
View Options
""" Logging classes for Pacemaker's Cluster Test Suite (CTS)
"""
__copyright__
=
"Copyright 2014-2020 the Pacemaker project contributors"
__license__
=
"GNU General Public License version 2 or later (GPLv2+) WITHOUT ANY WARRANTY"
import
io
import
os
import
sys
import
time
class
Logger
(
object
):
""" Abstract class to use as parent for CTS logging classes """
TimeFormat
=
"%b
%d
%H:%M:%S
\t
"
def
__init__
(
self
):
# Whether this logger should print debug messages
self
.
debug_target
=
True
def
__call__
(
self
,
lines
):
""" Log specified messages """
raise
ValueError
(
"Abstract class member (__call__)"
)
def
write
(
self
,
line
):
""" Log a single line excluding trailing whitespace """
return
self
(
line
.
rstrip
())
def
writelines
(
self
,
lines
):
""" Log a series of lines excluding trailing whitespace """
for
line
in
lines
:
self
.
write
(
line
)
return
1
def
is_debug_target
(
self
):
""" Return True if this logger should receive debug messages """
return
self
.
debug_target
class
StdErrLog
(
Logger
):
""" Class to log to standard error """
def
__init__
(
self
,
filename
,
tag
):
Logger
.
__init__
(
self
)
self
.
debug_target
=
False
def
__call__
(
self
,
lines
):
""" Log specified lines to stderr """
timestamp
=
time
.
strftime
(
Logger
.
TimeFormat
,
time
.
localtime
(
time
.
time
()))
if
isinstance
(
lines
,
str
):
lines
=
[
lines
]
for
line
in
lines
:
print
(
"
%s%s
"
%
(
timestamp
,
line
),
file
=
sys
.
__stderr__
)
sys
.
__stderr__
.
flush
()
class
FileLog
(
Logger
):
""" Class to log to a file """
def
__init__
(
self
,
filename
,
tag
):
Logger
.
__init__
(
self
)
self
.
logfile
=
filename
self
.
hostname
=
os
.
uname
()[
1
]
if
tag
:
self
.
source
=
tag
+
": "
else
:
self
.
source
=
""
def
__call__
(
self
,
lines
):
""" Log specified lines to the file """
logf
=
io
.
open
(
self
.
logfile
,
"at"
)
timestamp
=
time
.
strftime
(
Logger
.
TimeFormat
,
time
.
localtime
(
time
.
time
()))
if
isinstance
(
lines
,
str
):
lines
=
[
lines
]
for
line
in
lines
:
print
(
"
%s%s
%s%s
"
%
(
timestamp
,
self
.
hostname
,
self
.
source
,
line
),
file
=
logf
)
logf
.
close
()
class
LogFactory
(
object
):
""" Singleton to log messages to various destinations """
log_methods
=
[]
have_stderr
=
False
def
add_file
(
self
,
filename
,
tag
=
None
):
""" When logging messages, log them to specified file """
if
filename
:
LogFactory
.
log_methods
.
append
(
FileLog
(
filename
,
tag
))
def
add_stderr
(
self
):
""" When logging messages, log them to standard error """
if
not
LogFactory
.
have_stderr
:
LogFactory
.
have_stderr
=
True
LogFactory
.
log_methods
.
append
(
StdErrLog
(
None
,
None
))
def
log
(
self
,
args
):
""" Log a message (to all configured log destinations) """
for
logfn
in
LogFactory
.
log_methods
:
logfn
(
args
.
strip
())
def
debug
(
self
,
args
):
""" Log a debug message (to all configured log destinations) """
for
logfn
in
LogFactory
.
log_methods
:
if
logfn
.
is_debug_target
():
logfn
(
"debug:
%s
"
%
args
.
strip
())
def
traceback
(
self
,
traceback
):
""" Log a stack trace (to all configured log destinations) """
for
logfn
in
LogFactory
.
log_methods
:
traceback
.
print_exc
(
50
,
logfn
)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Sep 24, 5:16 AM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2396296
Default Alt Text
logging.py (3 KB)
Attached To
Mode
rP Pacemaker
Attached
Detach File
Event Timeline
Log In to Comment