Fix a warning message in linux fix_acpid sysprep
[snf-image-creator] / image_creator / output / cli.py
1 # Copyright 2012 GRNET S.A. All rights reserved.
2 #
3 # Redistribution and use in source and binary forms, with or
4 # without modification, are permitted provided that the following
5 # conditions are met:
6 #
7 #   1. Redistributions of source code must retain the above
8 #      copyright notice, this list of conditions and the following
9 #      disclaimer.
10 #
11 #   2. Redistributions in binary form must reproduce the above
12 #      copyright notice, this list of conditions and the following
13 #      disclaimer in the documentation and/or other materials
14 #      provided with the distribution.
15 #
16 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 # POSSIBILITY OF SUCH DAMAGE.
28 #
29 # The views and conclusions contained in the software and
30 # documentation are those of the authors and should not be
31 # interpreted as representing official policies, either expressed
32 # or implied, of GRNET S.A.
33
34 from image_creator.output import Output
35
36 import sys
37 from colors import red, green, yellow
38 from progress.bar import Bar
39
40
41 def output(msg='', new_line=True, decorate=lambda x: x):
42     nl = "\n" if new_line else ' '
43     sys.stderr.write(decorate(msg) + nl)
44
45
46 def error(msg, new_line=True, colored=True):
47     color = red if colored else lambda x: x
48     output("Error: %s" % msg, new_line, color)
49
50
51 def warn(msg, new_line=True, colored=True):
52     color = yellow if colored else lambda x: x
53     output("Warning: %s" % msg, new_line, color)
54
55
56 def success(msg, new_line=True, colored=True):
57     color = green if colored else lambda x: x
58     output(msg, new_line, color)
59
60
61 class SilentOutput(Output):
62     pass
63
64
65 class SimpleOutput(Output):
66     def __init__(self, colored=True):
67         self.colored = colored
68
69     def error(self, msg, new_line=True):
70         error(msg, new_line, self.colored)
71
72     def warn(self, msg, new_line=True):
73         warn(msg, new_line, self.colored)
74
75     def success(self, msg, new_line=True):
76         success(msg, new_line, self.colored)
77
78     def output(self, msg='', new_line=True):
79         output(msg, new_line)
80
81
82 class OutputWthProgress(SimpleOutput):
83     class _Progress(Bar):
84         MESSAGE_LENGTH = 30
85
86         template = {
87             'default': '%(index)d/%(max)d',
88             'percent': '%(percent)d%%',
89             'b': '%(index)d/%(max)d B',
90             'kb': '%(index)d/%(max)d KB',
91             'mb': '%(index)d/%(max)d MB'
92         }
93
94         def __init__(self, size, title, bar_type='default'):
95             super(OutputWthProgress._Progress, self).__init__()
96             self.title = title
97             self.fill = '#'
98             self.bar_prefix = ' ['
99             self.bar_suffix = '] '
100             self.message = ("%s:" % self.title).ljust(self.MESSAGE_LENGTH)
101             self.suffix = self.template[bar_type]
102             self.max = size
103
104             # print empty progress bar workaround
105             self.goto(1)
106
107         def success(self, result):
108             self.output.output("\r%s...\033[K" % self.title, False)
109             self.output.success(result)
110
111
112 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :