2014-11-14 23:14:08 +01:00
|
|
|
# (c) 2014, Michael DeHaan <michael.dehaan@gmail.com>
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible 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 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible 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 Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-04-13 22:28:01 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2014-11-14 23:14:08 +01:00
|
|
|
|
2015-08-06 23:13:39 +02:00
|
|
|
import fcntl
|
2014-11-14 23:14:08 +01:00
|
|
|
import textwrap
|
2015-05-29 02:01:39 +02:00
|
|
|
import os
|
|
|
|
import random
|
|
|
|
import subprocess
|
2015-04-04 21:14:40 +02:00
|
|
|
import sys
|
2015-07-23 16:24:50 +02:00
|
|
|
import time
|
2015-10-12 19:05:19 +02:00
|
|
|
import locale
|
2015-07-24 17:59:17 +02:00
|
|
|
import logging
|
|
|
|
import getpass
|
2015-08-06 23:13:39 +02:00
|
|
|
from struct import unpack, pack
|
|
|
|
from termios import TIOCGWINSZ
|
2015-07-23 16:24:50 +02:00
|
|
|
from multiprocessing import Lock
|
2014-11-14 23:14:08 +01:00
|
|
|
|
|
|
|
from ansible import constants as C
|
2015-04-23 05:02:15 +02:00
|
|
|
from ansible.errors import AnsibleError
|
2014-11-14 23:14:08 +01:00
|
|
|
from ansible.utils.color import stringc
|
2015-10-08 17:13:29 +02:00
|
|
|
from ansible.utils.unicode import to_bytes, to_unicode
|
2014-11-14 23:14:08 +01:00
|
|
|
|
2015-10-08 17:13:29 +02:00
|
|
|
try:
|
|
|
|
# Python 2
|
|
|
|
input = raw_input
|
|
|
|
except NameError:
|
|
|
|
# Python 3
|
|
|
|
pass
|
2015-07-26 18:21:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
# These are module level as we currently fork and serialize the whole process and locks in the objects don't play well with that
|
|
|
|
debug_lock = Lock()
|
|
|
|
|
2015-07-24 18:00:24 +02:00
|
|
|
#TODO: make this a logging callback instead
|
2015-07-24 17:59:17 +02:00
|
|
|
if C.DEFAULT_LOG_PATH:
|
|
|
|
path = C.DEFAULT_LOG_PATH
|
2015-09-26 09:15:53 +02:00
|
|
|
if (os.path.exists(path) and not os.access(path, os.W_OK)) or not os.access(os.path.dirname(path), os.W_OK):
|
2015-09-26 08:09:56 +02:00
|
|
|
print("[WARNING]: log file at %s is not writeable, aborting\n" % path, file=sys.stderr)
|
2015-07-24 17:59:17 +02:00
|
|
|
|
|
|
|
logging.basicConfig(filename=path, level=logging.DEBUG, format='%(asctime)s %(name)s %(message)s')
|
|
|
|
mypid = str(os.getpid())
|
|
|
|
user = getpass.getuser()
|
|
|
|
logger = logging.getLogger("p=%s u=%s | " % (mypid, user))
|
|
|
|
else:
|
|
|
|
logger = None
|
|
|
|
|
|
|
|
|
2014-11-14 23:14:08 +01:00
|
|
|
class Display:
|
|
|
|
|
2015-04-04 21:54:54 +02:00
|
|
|
def __init__(self, verbosity=0):
|
|
|
|
|
2015-08-06 23:13:39 +02:00
|
|
|
self.columns = None
|
2015-04-04 21:54:54 +02:00
|
|
|
self.verbosity = verbosity
|
2014-11-14 23:14:08 +01:00
|
|
|
|
|
|
|
# list of all deprecation messages to prevent duplicate display
|
|
|
|
self._deprecations = {}
|
|
|
|
self._warns = {}
|
2015-04-23 04:58:24 +02:00
|
|
|
self._errors = {}
|
2014-11-14 23:14:08 +01:00
|
|
|
|
2015-05-29 02:01:39 +02:00
|
|
|
self.cowsay = None
|
2015-10-15 16:32:55 +02:00
|
|
|
self.noncow = C.ANSIBLE_COW_SELECTION
|
|
|
|
|
2015-05-29 02:01:39 +02:00
|
|
|
self.set_cowsay_info()
|
|
|
|
|
2015-10-15 16:32:55 +02:00
|
|
|
if self.cowsay:
|
2015-10-16 21:20:10 +02:00
|
|
|
try:
|
|
|
|
cmd = subprocess.Popen([self.cowsay, "-l"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
(out, err) = cmd.communicate()
|
|
|
|
self.cows_available = list(set(C.ANSIBLE_COW_WHITELIST).intersection(out.split()))
|
|
|
|
except:
|
|
|
|
# could not execute cowsay for some reason
|
|
|
|
self.cowsay = False
|
2015-10-15 16:32:55 +02:00
|
|
|
|
2015-08-06 23:13:39 +02:00
|
|
|
self._set_column_width()
|
2015-07-24 17:59:17 +02:00
|
|
|
|
2015-05-29 02:01:39 +02:00
|
|
|
def set_cowsay_info(self):
|
|
|
|
|
|
|
|
if not C.ANSIBLE_NOCOWS:
|
|
|
|
if os.path.exists("/usr/bin/cowsay"):
|
|
|
|
self.cowsay = "/usr/bin/cowsay"
|
|
|
|
elif os.path.exists("/usr/games/cowsay"):
|
|
|
|
self.cowsay = "/usr/games/cowsay"
|
|
|
|
elif os.path.exists("/usr/local/bin/cowsay"):
|
|
|
|
# BSD path for cowsay
|
|
|
|
self.cowsay = "/usr/local/bin/cowsay"
|
|
|
|
elif os.path.exists("/opt/local/bin/cowsay"):
|
|
|
|
# MacPorts path for cowsay
|
|
|
|
self.cowsay = "/opt/local/bin/cowsay"
|
2015-07-24 17:59:17 +02:00
|
|
|
|
2014-11-14 23:14:08 +01:00
|
|
|
def display(self, msg, color=None, stderr=False, screen_only=False, log_only=False):
|
2015-10-08 17:13:29 +02:00
|
|
|
""" Display a message to the user
|
|
|
|
|
|
|
|
Note: msg *must* be a unicode string to prevent UnicodeError tracebacks.
|
|
|
|
"""
|
2015-07-24 17:59:17 +02:00
|
|
|
|
|
|
|
# FIXME: this needs to be implemented
|
|
|
|
#msg = utils.sanitize_output(msg)
|
2014-11-14 23:14:08 +01:00
|
|
|
if color:
|
2015-10-08 17:13:29 +02:00
|
|
|
msg = stringc(msg, color)
|
2015-07-24 17:59:17 +02:00
|
|
|
|
2014-11-14 23:14:08 +01:00
|
|
|
if not log_only:
|
2015-10-08 17:13:29 +02:00
|
|
|
if not msg.endswith(u'\n'):
|
|
|
|
msg2 = msg + u'\n'
|
|
|
|
else:
|
|
|
|
msg2 = msg
|
|
|
|
|
|
|
|
msg2 = to_bytes(msg2, encoding=self._output_encoding(stderr=stderr))
|
|
|
|
if sys.version_info >= (3,):
|
|
|
|
# Convert back to text string on python3
|
|
|
|
# We first convert to a byte string so that we get rid of
|
|
|
|
# characters that are invalid in the user's locale
|
|
|
|
msg2 = to_unicode(msg2, self._output_encoding(stderr=stderr))
|
|
|
|
|
2014-11-14 23:14:08 +01:00
|
|
|
if not stderr:
|
2015-10-08 17:13:29 +02:00
|
|
|
sys.stdout.write(msg2)
|
2015-07-25 15:14:41 +02:00
|
|
|
sys.stdout.flush()
|
2014-11-14 23:14:08 +01:00
|
|
|
else:
|
2015-10-08 17:13:29 +02:00
|
|
|
sys.stderr.write(msg2)
|
2015-07-25 15:14:41 +02:00
|
|
|
sys.stderr.flush()
|
2015-07-24 17:59:17 +02:00
|
|
|
|
|
|
|
if logger and not screen_only:
|
2015-10-08 17:13:29 +02:00
|
|
|
msg2 = msg.lstrip(u'\n')
|
|
|
|
|
|
|
|
msg2 = to_bytes(msg2)
|
|
|
|
if sys.version_info >= (3,):
|
|
|
|
# Convert back to text string on python3
|
|
|
|
# We first convert to a byte string so that we get rid of
|
|
|
|
# characters that are invalid in the user's locale
|
|
|
|
msg2 = to_unicode(msg2, self._output_encoding(stderr=stderr))
|
|
|
|
|
2015-07-24 17:59:17 +02:00
|
|
|
if color == 'red':
|
2015-10-08 17:13:29 +02:00
|
|
|
logger.error(msg2)
|
2015-07-24 17:59:17 +02:00
|
|
|
else:
|
2015-10-08 17:13:29 +02:00
|
|
|
logger.info(msg2)
|
2014-11-14 23:14:08 +01:00
|
|
|
|
|
|
|
def vv(self, msg, host=None):
|
|
|
|
return self.verbose(msg, host=host, caplevel=1)
|
|
|
|
|
|
|
|
def vvv(self, msg, host=None):
|
|
|
|
return self.verbose(msg, host=host, caplevel=2)
|
|
|
|
|
|
|
|
def vvvv(self, msg, host=None):
|
|
|
|
return self.verbose(msg, host=host, caplevel=3)
|
|
|
|
|
2015-04-04 21:54:54 +02:00
|
|
|
def vvvvv(self, msg, host=None):
|
|
|
|
return self.verbose(msg, host=host, caplevel=4)
|
|
|
|
|
2015-04-27 07:28:25 +02:00
|
|
|
def vvvvvv(self, msg, host=None):
|
|
|
|
return self.verbose(msg, host=host, caplevel=5)
|
|
|
|
|
2015-07-23 16:24:50 +02:00
|
|
|
def debug(self, msg):
|
|
|
|
if C.DEFAULT_DEBUG:
|
2015-07-25 15:14:41 +02:00
|
|
|
debug_lock.acquire()
|
2015-07-23 16:24:50 +02:00
|
|
|
self.display("%6d %0.5f: %s" % (os.getpid(), time.time(), msg), color='dark gray')
|
2015-07-25 15:14:41 +02:00
|
|
|
debug_lock.release()
|
2015-07-23 16:24:50 +02:00
|
|
|
|
2014-11-14 23:14:08 +01:00
|
|
|
def verbose(self, msg, host=None, caplevel=2):
|
|
|
|
# FIXME: this needs to be implemented
|
|
|
|
#msg = utils.sanitize_output(msg)
|
2015-04-04 21:54:54 +02:00
|
|
|
if self.verbosity > caplevel:
|
2014-11-14 23:14:08 +01:00
|
|
|
if host is None:
|
|
|
|
self.display(msg, color='blue')
|
|
|
|
else:
|
2015-04-23 05:02:15 +02:00
|
|
|
self.display("<%s> %s" % (host, msg), color='blue', screen_only=True)
|
2014-11-14 23:14:08 +01:00
|
|
|
|
2015-07-16 01:47:59 +02:00
|
|
|
def deprecated(self, msg, version=None, removed=False):
|
2014-11-14 23:14:08 +01:00
|
|
|
''' used to print out a deprecation message.'''
|
|
|
|
|
|
|
|
if not removed and not C.DEPRECATION_WARNINGS:
|
|
|
|
return
|
|
|
|
|
|
|
|
if not removed:
|
|
|
|
if version:
|
2015-07-24 16:31:14 +02:00
|
|
|
new_msg = "[DEPRECATION WARNING]: %s. This feature will be removed in version %s." % (msg, version)
|
2014-11-14 23:14:08 +01:00
|
|
|
else:
|
2015-07-24 16:31:14 +02:00
|
|
|
new_msg = "[DEPRECATION WARNING]: %s. This feature will be removed in a future release." % (msg)
|
2014-11-14 23:14:08 +01:00
|
|
|
new_msg = new_msg + " Deprecation warnings can be disabled by setting deprecation_warnings=False in ansible.cfg.\n\n"
|
|
|
|
else:
|
|
|
|
raise AnsibleError("[DEPRECATED]: %s. Please update your playbooks." % msg)
|
|
|
|
|
2015-08-06 23:13:39 +02:00
|
|
|
wrapped = textwrap.wrap(new_msg, self.columns, replace_whitespace=False, drop_whitespace=False)
|
|
|
|
new_msg = "\n".join(wrapped) + "\n"
|
2014-11-14 23:14:08 +01:00
|
|
|
|
2015-04-14 22:03:54 +02:00
|
|
|
if new_msg not in self._deprecations:
|
2015-08-06 23:20:07 +02:00
|
|
|
self.display(new_msg.strip(), color='purple', stderr=True)
|
2014-11-14 23:14:08 +01:00
|
|
|
self._deprecations[new_msg] = 1
|
|
|
|
|
|
|
|
def warning(self, msg):
|
|
|
|
new_msg = "\n[WARNING]: %s" % msg
|
2015-08-06 23:13:39 +02:00
|
|
|
wrapped = textwrap.wrap(new_msg, self.columns)
|
2014-11-14 23:14:08 +01:00
|
|
|
new_msg = "\n".join(wrapped) + "\n"
|
2015-04-04 21:14:40 +02:00
|
|
|
if new_msg not in self._warns:
|
|
|
|
self.display(new_msg, color='bright purple', stderr=True)
|
2014-11-14 23:14:08 +01:00
|
|
|
self._warns[new_msg] = 1
|
|
|
|
|
|
|
|
def system_warning(self, msg):
|
|
|
|
if C.SYSTEM_WARNINGS:
|
2015-04-14 22:10:19 +02:00
|
|
|
self.warning(msg)
|
2014-11-14 23:14:08 +01:00
|
|
|
|
2015-03-25 19:51:40 +01:00
|
|
|
def banner(self, msg, color=None):
|
|
|
|
'''
|
|
|
|
Prints a header-looking line with stars taking up to 80 columns
|
|
|
|
of width (3 columns, minimum)
|
|
|
|
'''
|
2015-05-29 02:01:39 +02:00
|
|
|
if self.cowsay:
|
|
|
|
try:
|
|
|
|
self.banner_cowsay(msg)
|
|
|
|
return
|
|
|
|
except OSError:
|
2015-07-24 17:59:17 +02:00
|
|
|
self.warning("somebody cleverly deleted cowsay or something during the PB run. heh.")
|
2015-05-29 02:01:39 +02:00
|
|
|
|
2015-03-25 19:51:40 +01:00
|
|
|
msg = msg.strip()
|
2015-08-06 23:21:20 +02:00
|
|
|
star_len = (79 - len(msg))
|
2015-03-25 19:51:40 +01:00
|
|
|
if star_len < 0:
|
|
|
|
star_len = 3
|
|
|
|
stars = "*" * star_len
|
|
|
|
self.display("\n%s %s" % (msg, stars), color=color)
|
2015-04-23 04:58:24 +02:00
|
|
|
|
2015-05-29 02:01:39 +02:00
|
|
|
def banner_cowsay(self, msg, color=None):
|
|
|
|
if ": [" in msg:
|
|
|
|
msg = msg.replace("[","")
|
|
|
|
if msg.endswith("]"):
|
|
|
|
msg = msg[:-1]
|
|
|
|
runcmd = [self.cowsay,"-W", "60"]
|
|
|
|
if self.noncow:
|
2015-10-15 16:32:55 +02:00
|
|
|
thecow = self.noncow
|
|
|
|
if thecow == 'random':
|
|
|
|
thecow = random.choice(self.cows_available)
|
2015-05-29 02:01:39 +02:00
|
|
|
runcmd.append('-f')
|
2015-10-15 16:32:55 +02:00
|
|
|
runcmd.append(thecow)
|
2015-05-29 02:01:39 +02:00
|
|
|
runcmd.append(msg)
|
|
|
|
cmd = subprocess.Popen(runcmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
(out, err) = cmd.communicate()
|
|
|
|
self.display("%s\n" % out, color=color)
|
|
|
|
|
2015-07-07 18:31:00 +02:00
|
|
|
def error(self, msg, wrap_text=True):
|
|
|
|
if wrap_text:
|
2015-10-08 17:31:12 +02:00
|
|
|
new_msg = u"\n[ERROR]: %s" % msg
|
2015-08-06 23:13:39 +02:00
|
|
|
wrapped = textwrap.wrap(new_msg, self.columns)
|
2015-10-08 17:31:12 +02:00
|
|
|
new_msg = u"\n".join(wrapped) + u"\n"
|
2015-07-07 18:31:00 +02:00
|
|
|
else:
|
|
|
|
new_msg = msg
|
2015-04-23 04:58:24 +02:00
|
|
|
if new_msg not in self._errors:
|
2015-04-23 05:10:46 +02:00
|
|
|
self.display(new_msg, color='red', stderr=True)
|
2015-04-23 04:58:24 +02:00
|
|
|
self._errors[new_msg] = 1
|
|
|
|
|
2015-10-08 17:13:29 +02:00
|
|
|
@staticmethod
|
2015-10-21 18:05:48 +02:00
|
|
|
def prompt(msg):
|
|
|
|
prompt_string = to_bytes(msg, encoding=Display._output_encoding())
|
2015-10-08 17:13:29 +02:00
|
|
|
if sys.version_info >= (3,):
|
|
|
|
# Convert back into text on python3. We do this double conversion
|
|
|
|
# to get rid of characters that are illegal in the user's locale
|
|
|
|
prompt_string = to_unicode(prompt_string)
|
|
|
|
return input(prompt_string)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _output_encoding(stderr=False):
|
2015-10-12 19:05:19 +02:00
|
|
|
encoding = locale.getpreferredencoding()
|
|
|
|
# https://bugs.python.org/issue6202
|
|
|
|
# Python2 hardcodes an obsolete value on Mac. Use MacOSX defaults
|
|
|
|
# instead.
|
|
|
|
if encoding in ('mac-roman',):
|
|
|
|
encoding = 'utf-8'
|
|
|
|
return encoding
|
2015-08-06 23:13:39 +02:00
|
|
|
|
|
|
|
def _set_column_width(self):
|
|
|
|
if os.isatty(0):
|
|
|
|
tty_size = unpack('HHHH', fcntl.ioctl(0, TIOCGWINSZ, pack('HHHH', 0, 0, 0, 0)))[1]
|
|
|
|
else:
|
|
|
|
tty_size = 0
|
|
|
|
self.columns = max(79, tty_size)
|