Rename CombinedOutput to CompositeOutput
authorNikos Skalkotos <skalkoto@grnet.gr>
Thu, 23 Aug 2012 09:04:09 +0000 (12:04 +0300)
committerNikos Skalkotos <skalkoto@grnet.gr>
Thu, 23 Aug 2012 09:04:09 +0000 (12:04 +0300)
Also move it to a separate module.

image_creator/dialog_main.py
image_creator/output/__init__.py
image_creator/output/composite.py [new file with mode: 0644]

index 2ee0737..f54a749 100644 (file)
@@ -43,9 +43,10 @@ import optparse
 
 from image_creator import __version__ as version
 from image_creator.util import FatalError, MD5
 
 from image_creator import __version__ as version
 from image_creator.util import FatalError, MD5
-from image_creator.output import Output, CombinedOutput
+from image_creator.output import Output
 from image_creator.output.cli import SimpleOutput
 from image_creator.output.dialog import GaugeOutput, InfoBoxOutput
 from image_creator.output.cli import SimpleOutput
 from image_creator.output.dialog import GaugeOutput, InfoBoxOutput
+from image_creator.output.composite import CompositeOutput
 from image_creator.disk import Disk
 from image_creator.os_type import os_cls
 from image_creator.kamaki_wrapper import Kamaki, ClientError
 from image_creator.disk import Disk
 from image_creator.os_type import os_cls
 from image_creator.kamaki_wrapper import Kamaki, ClientError
@@ -950,7 +951,7 @@ def main():
                                                else Output()
             while 1:
                 try:
                                                else Output()
             while 1:
                 try:
-                    out = CombinedOutput([log])
+                    out = CompositeOutput([log])
                     out.output("Starting %s version %s..." % \
                                (parser.get_prog_name(), version))
                     ret = image_creator(d, media, out)
                     out.output("Starting %s version %s..." % \
                                (parser.get_prog_name(), version))
                     ret = image_creator(d, media, out)
index 0559242..3992846 100644 (file)
@@ -85,59 +85,4 @@ class Output(object):
             yield
         return generator
 
             yield
         return generator
 
-
-class CombinedOutput(Output):
-
-    def __init__(self, outputs=[]):
-        self._outputs = outputs
-
-    def add(self, output):
-        self._outputs.append(output)
-
-    def remove(self, output):
-        self._outputs.remove(output)
-
-    def error(self, msg, new_line=True):
-        for out in self._outputs:
-            out.error(msg, new_line)
-
-    def warn(self, msg, new_line=True):
-        for out in self._outputs:
-            out.warn(msg, new_line)
-
-    def success(self, msg, new_line=True):
-        for out in self._outputs:
-            out.success(msg, new_line)
-
-    def output(self, msg='', new_line=True):
-        for out in self._outputs:
-            out.output(msg, new_line)
-
-    def cleanup(self):
-        for out in self._outputs:
-            out.cleanup()
-
-    def clear(self):
-        for out in self._outputs:
-            out.clear()
-
-    class _Progress(object):
-
-        def __init__(self, size, title, bar_type='default'):
-            self.progresses = []
-            for out in self.output._outputs:
-                self.progresses.append(out.Progress(size, title, bar_type))
-
-        def goto(self, dest):
-            for progress in self.progresses:
-                progress.goto(dest)
-
-        def next(self):
-            for progress in self.progresses:
-                progress.next()
-
-        def success(self, result):
-            for progress in self.progresses:
-                progress.success(result)
-
 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :
 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :
diff --git a/image_creator/output/composite.py b/image_creator/output/composite.py
new file mode 100644 (file)
index 0000000..adb7c6a
--- /dev/null
@@ -0,0 +1,98 @@
+# Copyright 2012 GRNET S.A. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or
+# without modification, are permitted provided that the following
+# conditions are met:
+#
+#   1. Redistributions of source code must retain the above
+#      copyright notice, this list of conditions and the following
+#      disclaimer.
+#
+#   2. Redistributions in binary form must reproduce the above
+#      copyright notice, this list of conditions and the following
+#      disclaimer in the documentation and/or other materials
+#      provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
+# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
+# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+# The views and conclusions contained in the software and
+# documentation are those of the authors and should not be
+# interpreted as representing official policies, either expressed
+# or implied, of GRNET S.A.
+
+from image_creator.output import Output
+
+
+class CompositeOutput(Output):
+    """This class can be used to composite different outputs into a single one
+
+    You may create an instance of this class and then add other output
+    instances to it. Executing a method on this instance will cause the
+    execution of the same method in each output instance that has been added to
+    this one.
+    """
+
+    def __init__(self, outputs=[]):
+        self._outputs = outputs
+
+    def add(self, output):
+        self._outputs.append(output)
+
+    def remove(self, output):
+        self._outputs.remove(output)
+
+    def error(self, msg, new_line=True):
+        for out in self._outputs:
+            out.error(msg, new_line)
+
+    def warn(self, msg, new_line=True):
+        for out in self._outputs:
+            out.warn(msg, new_line)
+
+    def success(self, msg, new_line=True):
+        for out in self._outputs:
+            out.success(msg, new_line)
+
+    def output(self, msg='', new_line=True):
+        for out in self._outputs:
+            out.output(msg, new_line)
+
+    def cleanup(self):
+        for out in self._outputs:
+            out.cleanup()
+
+    def clear(self):
+        for out in self._outputs:
+            out.clear()
+
+    class _Progress(object):
+
+        def __init__(self, size, title, bar_type='default'):
+            self._progresses = []
+            for out in self.output._outputs:
+                self._progresses.append(out.Progress(size, title, bar_type))
+
+        def goto(self, dest):
+            for progress in self._progresses:
+                progress.goto(dest)
+
+        def next(self):
+            for progress in self._progresses:
+                progress.next()
+
+        def success(self, result):
+            for progress in self._progresses:
+                progress.success(result)
+
+# vim: set sta sts=4 shiftwidth=4 sw=4 et ai :