blob: 488da79477e0a095bbee2bd10618ecd0987d3223 [file] [log] [blame]
maruelea586f32016-04-05 11:11:33 -07001# Copyright 2015 The LUCI Authors. All rights reserved.
maruelf1f5e2a2016-05-25 17:10:39 -07002# Use of this source code is governed under the Apache License, Version 2.0
3# that can be found in the LICENSE file.
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -04004
5"""Utility relating to logging."""
6
Marc-Antoine Ruelf899c482019-10-10 23:32:06 +00007from __future__ import print_function
8
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -04009import argparse
10import codecs
maruel625c1ea2015-09-09 11:41:13 -070011import ctypes
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -040012import logging
13import logging.handlers
14import optparse
15import os
16import sys
17import tempfile
18import time
19
Takuto Ikuta39b612a2019-10-18 08:51:22 +000020import six
21
nodir9130f072016-05-27 13:59:08 -070022from utils import file_path
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -040023
24# This works around file locking issue on Windows specifically in the case of
25# long lived child processes.
26#
27# Python opens files with inheritable handle and without file sharing by
28# default. This causes the RotatingFileHandler file handle to be duplicated in
29# the subprocesses even if the log file is not used in it. Because of this
30# handle in the child process, when the RotatingFileHandler tries to os.rename()
31# the file in the parent process, it fails with:
32# WindowsError: [Error 32] The process cannot access the file because
33# it is being used by another process
34if sys.platform == 'win32':
maruel625c1ea2015-09-09 11:41:13 -070035 import ctypes
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -040036 import msvcrt # pylint: disable=F0401
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -040037
Marc-Antoine Ruel0eb2eb22019-01-29 21:00:16 +000038 FILE_ATTRIBUTE_NORMAL = 0x80
maruel625c1ea2015-09-09 11:41:13 -070039 FILE_SHARE_READ = 1
40 FILE_SHARE_WRITE = 2
41 FILE_SHARE_DELETE = 4
42 GENERIC_READ = 0x80000000
43 GENERIC_WRITE = 0x40000000
44 OPEN_ALWAYS = 4
45
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -040046 # TODO(maruel): Make it work in cygwin too if necessary. This would have to
Momo Sasaki049125c2021-02-26 06:14:41 +000047 # use ctypes.cdll.kernel32 instead of msvcrt.
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -040048
maruel625c1ea2015-09-09 11:41:13 -070049
50 def shared_open(path):
51 """Opens a file with full sharing mode and without inheritance.
52
53 The file is open for both read and write.
54
55 See https://bugs.python.org/issue15244 for inspiration.
56 """
Takuto Ikuta39b612a2019-10-18 08:51:22 +000057 path = six.text_type(path)
maruel625c1ea2015-09-09 11:41:13 -070058 handle = ctypes.windll.kernel32.CreateFileW(
59 path,
60 GENERIC_READ|GENERIC_WRITE,
61 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
62 None,
63 OPEN_ALWAYS,
64 FILE_ATTRIBUTE_NORMAL,
65 None)
66 ctr_handle = msvcrt.open_osfhandle(handle, os.O_BINARY | os.O_NOINHERIT)
67 return os.fdopen(ctr_handle, 'r+b')
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -040068
69
70 class NoInheritRotatingFileHandler(logging.handlers.RotatingFileHandler):
71 def _open(self):
maruel625c1ea2015-09-09 11:41:13 -070072 """Opens the log file without handle inheritance but with file sharing.
73
74 Ignores self.mode.
75 """
76 f = shared_open(self.baseFilename)
77 if self.encoding:
78 # Do the equivalent of
79 # codecs.open(self.baseFilename, self.mode, self.encoding)
80 info = codecs.lookup(self.encoding)
81 f = codecs.StreamReaderWriter(
82 f, info.streamreader, info.streamwriter, 'replace')
83 f.encoding = self.encoding
84 return f
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -040085
86
87else: # Not Windows.
88
89
90 NoInheritRotatingFileHandler = logging.handlers.RotatingFileHandler
91
92
93# Levels used for logging.
94LEVELS = [logging.ERROR, logging.INFO, logging.DEBUG]
95
96
Junji Watanabeab2102a2022-01-12 01:44:04 +000097class CaptureLogs:
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -040098 """Captures all the logs in a context."""
99 def __init__(self, prefix, root=None):
100 handle, self._path = tempfile.mkstemp(prefix=prefix, suffix='.log')
101 os.close(handle)
102 self._handler = logging.FileHandler(self._path, 'w')
103 self._handler.setLevel(logging.DEBUG)
104 formatter = UTCFormatter(
105 '%(process)d %(asctime)s: %(levelname)-5s %(message)s')
106 self._handler.setFormatter(formatter)
107 self._root = root or logging.getLogger()
108 self._root.addHandler(self._handler)
109 assert self._root.isEnabledFor(logging.DEBUG)
110
111 def read(self):
112 """Returns the current content of the logs.
113
114 This also closes the log capture so future logs will not be captured.
115 """
116 self._disconnect()
117 assert self._path
118 try:
119 with open(self._path, 'rb') as f:
120 return f.read()
121 except IOError as e:
122 return 'Failed to read %s: %s' % (self._path, e)
123
124 def close(self):
125 """Closes and delete the log."""
126 self._disconnect()
127 if self._path:
128 try:
129 os.remove(self._path)
130 except OSError as e:
131 logging.error('Failed to delete log file %s: %s', self._path, e)
132 self._path = None
133
134 def __enter__(self):
135 return self
136
137 def __exit__(self, _exc_type, _exc_value, _traceback):
138 self.close()
139
140 def _disconnect(self):
141 if self._handler:
142 self._root.removeHandler(self._handler)
143 self._handler.close()
144 self._handler = None
145
146
147class UTCFormatter(logging.Formatter):
148 converter = time.gmtime
149
150 def formatTime(self, record, datefmt=None):
151 """Change is ',' to '.'."""
152 ct = self.converter(record.created)
153 if datefmt:
154 return time.strftime(datefmt, ct)
Junji Watanabeab2102a2022-01-12 01:44:04 +0000155 t = time.strftime("%Y-%m-%d %H:%M:%S", ct)
156 return "%s.%03d" % (t, record.msecs)
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -0400157
158
Junji Watanabeab2102a2022-01-12 01:44:04 +0000159class Filter:
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -0400160 """Adds fields used by the infra-specific formatter.
161
162 Fields added:
163 - 'severity': one-letter indicator of log level (first letter of levelname).
164 """
165
166 def filter(self, record):
167 record.severity = record.levelname[0]
168 return True
169
170
171def find_stderr(root=None):
172 """Returns the logging.handler streaming to stderr, if any."""
173 for log in (root or logging.getLogger()).handlers:
174 if getattr(log, 'stream', None) is sys.stderr:
175 return log
176
177
178def prepare_logging(filename, root=None):
179 """Prepare logging for scripts.
180
181 Makes it log in UTC all the time. Prepare a rotating file based log.
182 """
183 assert not find_stderr(root)
Takuto Ikuta5decd1d2020-04-14 06:02:29 +0000184 formatter = UTCFormatter('%(process)d %(asctime)s %(severity)s: %(message)s')
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -0400185
186 # It is a requirement that the root logger is set to DEBUG, so the messages
187 # are not lost. It defaults to WARNING otherwise.
188 logger = root or logging.getLogger()
maruel26cfc602015-09-04 19:12:55 -0700189 if not logger:
190 # Better print insanity than crash.
Marc-Antoine Ruelf899c482019-10-10 23:32:06 +0000191 print('OMG NO ROOT', file=sys.stderr)
maruel26cfc602015-09-04 19:12:55 -0700192 return
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -0400193 logger.setLevel(logging.DEBUG)
194
195 stderr = logging.StreamHandler()
196 stderr.setFormatter(formatter)
197 stderr.addFilter(Filter())
198 # Default to ERROR.
199 stderr.setLevel(logging.ERROR)
200 logger.addHandler(stderr)
201
202 # Setup up logging to a constant file so we can debug issues where
203 # the results aren't properly sent to the result URL.
204 if filename:
Takuto Ikuta39b612a2019-10-18 08:51:22 +0000205 file_path.ensure_tree(
206 os.path.dirname(os.path.abspath(six.text_type(filename))))
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -0400207 try:
208 rotating_file = NoInheritRotatingFileHandler(
209 filename, maxBytes=10 * 1024 * 1024, backupCount=5,
210 encoding='utf-8')
211 rotating_file.setLevel(logging.DEBUG)
212 rotating_file.setFormatter(formatter)
213 rotating_file.addFilter(Filter())
214 logger.addHandler(rotating_file)
215 except Exception:
216 # May happen on cygwin. Do not crash.
217 logging.exception('Failed to open %s', filename)
218
219
220def set_console_level(level, root=None):
221 """Reset the console (stderr) logging level."""
222 handler = find_stderr(root)
maruel26cfc602015-09-04 19:12:55 -0700223 if not handler:
224 # Better print insanity than crash.
Marc-Antoine Ruelf899c482019-10-10 23:32:06 +0000225 print('OMG NO STDERR', file=sys.stderr)
maruel26cfc602015-09-04 19:12:55 -0700226 return
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -0400227 handler.setLevel(level)
228
229
230class OptionParserWithLogging(optparse.OptionParser):
231 """Adds --verbose option."""
232
233 # Set to True to enable --log-file options.
234 enable_log_file = True
235
236 # Set in unit tests.
237 logger_root = None
238
239 def __init__(self, verbose=0, log_file=None, **kwargs):
240 kwargs.setdefault('description', sys.modules['__main__'].__doc__)
241 optparse.OptionParser.__init__(self, **kwargs)
242 self.group_logging = optparse.OptionGroup(self, 'Logging')
243 self.group_logging.add_option(
244 '-v', '--verbose',
245 action='count',
246 default=verbose,
247 help='Use multiple times to increase verbosity')
248 if self.enable_log_file:
249 self.group_logging.add_option(
250 '-l', '--log-file',
251 default=log_file,
252 help='The name of the file to store rotating log details')
253 self.group_logging.add_option(
254 '--no-log', action='store_const', const='', dest='log_file',
255 help='Disable log file')
256
257 def parse_args(self, *args, **kwargs):
258 # Make sure this group is always the last one.
259 self.add_option_group(self.group_logging)
260
261 options, args = optparse.OptionParser.parse_args(self, *args, **kwargs)
262 prepare_logging(self.enable_log_file and options.log_file, self.logger_root)
263 set_console_level(
264 LEVELS[min(len(LEVELS) - 1, options.verbose)], self.logger_root)
265 return options, args
266
267
268class ArgumentParserWithLogging(argparse.ArgumentParser):
269 """Adds --verbose option."""
270
271 # Set to True to enable --log-file options.
272 enable_log_file = True
273
274 def __init__(self, verbose=0, log_file=None, **kwargs):
275 kwargs.setdefault('description', sys.modules['__main__'].__doc__)
276 kwargs.setdefault('conflict_handler', 'resolve')
277 self.__verbose = verbose
278 self.__log_file = log_file
279 super(ArgumentParserWithLogging, self).__init__(**kwargs)
280
281 def _add_logging_group(self):
282 group = self.add_argument_group('Logging')
283 group.add_argument(
284 '-v', '--verbose',
285 action='count',
286 default=self.__verbose,
287 help='Use multiple times to increase verbosity')
288 if self.enable_log_file:
289 group.add_argument(
290 '-l', '--log-file',
291 default=self.__log_file,
292 help='The name of the file to store rotating log details')
293 group.add_argument(
294 '--no-log', action='store_const', const='', dest='log_file',
295 help='Disable log file')
296
297 def parse_args(self, *args, **kwargs):
298 # Make sure this group is always the last one.
299 self._add_logging_group()
300
301 args = super(ArgumentParserWithLogging, self).parse_args(*args, **kwargs)
302 prepare_logging(self.enable_log_file and args.log_file, self.logger_root)
303 set_console_level(
304 LEVELS[min(len(LEVELS) - 1, args.verbose)], self.logger_root)
305 return args