meson/mesonbuild/mlog.py

82 lines
2.3 KiB
Python
Raw Normal View History

2014-11-17 02:19:12 +08:00
# Copyright 2013-2014 The Meson development team
# 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
# http://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 sys, os, platform
"""This is (mostly) a standalone module used to write logging
information about Meson runs. Some output goes to screen,
some to logging dir and some goes to both."""
colorize_console = platform.system().lower() != 'windows' and os.isatty(sys.stdout.fileno())
2013-07-09 01:04:02 +08:00
log_dir = None
log_file = None
def initialize(logdir):
global log_dir, log_file
log_dir = logdir
log_file = open(os.path.join(logdir, 'meson-log.txt'), 'w')
def shutdown():
global log_file
if log_file is not None:
log_file.close()
class AnsiDecorator():
plain_code = "\033[0m"
2014-08-07 17:34:35 +08:00
def __init__(self, text, code):
self.text = text
self.code = code
2014-08-07 17:34:35 +08:00
def get_text(self, with_codes):
if with_codes:
return self.code + self.text + AnsiDecorator.plain_code
2013-07-09 01:04:02 +08:00
return self.text
def bold(text):
return AnsiDecorator(text, "\033[1m")
def red(text):
return AnsiDecorator(text, "\033[1;31m")
def green(text):
return AnsiDecorator(text, "\033[1;32m")
def cyan(text):
return AnsiDecorator(text, "\033[1;36m")
2013-07-09 01:04:02 +08:00
def process_markup(args, keep):
arr = []
for arg in args:
if isinstance(arg, str):
arr.append(arg)
elif isinstance(arg, AnsiDecorator):
2013-07-09 01:04:02 +08:00
arr.append(arg.get_text(keep))
else:
arr.append(str(arg))
2013-07-09 01:04:02 +08:00
return arr
2013-08-11 19:38:32 +08:00
def debug(*args, **kwargs):
arr = process_markup(args, False)
if log_file is not None:
print(*arr, file=log_file, **kwargs) # Log file never gets ANSI codes.
2013-07-09 01:47:55 +08:00
def log(*args, **kwargs):
2013-07-09 01:04:02 +08:00
arr = process_markup(args, False)
if log_file is not None:
2013-07-09 01:47:55 +08:00
print(*arr, file=log_file, **kwargs) # Log file never gets ANSI codes.
2013-07-09 01:04:02 +08:00
if colorize_console:
arr = process_markup(args, True)
2013-07-09 01:47:55 +08:00
print(*arr, **kwargs)