log_printer.py 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. from __future__ import absolute_import
  2. from __future__ import unicode_literals
  3. import sys
  4. from itertools import cycle
  5. from . import colors
  6. from .multiplexer import Multiplexer
  7. from .utils import split_buffer
  8. class LogPrinter(object):
  9. def __init__(self, containers, attach_params=None, output=sys.stdout, monochrome=False):
  10. self.containers = containers
  11. self.attach_params = attach_params or {}
  12. self.prefix_width = self._calculate_prefix_width(containers)
  13. self.generators = self._make_log_generators(monochrome)
  14. self.output = output
  15. def run(self):
  16. mux = Multiplexer(self.generators)
  17. for line in mux.loop():
  18. self.output.write(line)
  19. def _calculate_prefix_width(self, containers):
  20. """
  21. Calculate the maximum width of container names so we can make the log
  22. prefixes line up like so:
  23. db_1 | Listening
  24. web_1 | Listening
  25. """
  26. prefix_width = 0
  27. for container in containers:
  28. prefix_width = max(prefix_width, len(container.name_without_project))
  29. return prefix_width
  30. def _make_log_generators(self, monochrome):
  31. color_fns = cycle(colors.rainbow())
  32. generators = []
  33. def no_color(text):
  34. return text
  35. for container in self.containers:
  36. if monochrome:
  37. color_fn = no_color
  38. else:
  39. color_fn = next(color_fns)
  40. generators.append(self._make_log_generator(container, color_fn))
  41. return generators
  42. def _make_log_generator(self, container, color_fn):
  43. prefix = color_fn(self._generate_prefix(container)).encode('utf-8')
  44. # Attach to container before log printer starts running
  45. line_generator = split_buffer(self._attach(container), '\n')
  46. for line in line_generator:
  47. yield prefix + line
  48. exit_code = container.wait()
  49. yield color_fn("%s exited with code %s\n" % (container.name, exit_code))
  50. def _generate_prefix(self, container):
  51. """
  52. Generate the prefix for a log line without colour
  53. """
  54. name = container.name_without_project
  55. padding = ' ' * (self.prefix_width - len(name))
  56. return ''.join([name, padding, ' | '])
  57. def _attach(self, container):
  58. params = {
  59. 'stdout': True,
  60. 'stderr': True,
  61. 'stream': True,
  62. }
  63. params.update(self.attach_params)
  64. params = dict((name, 1 if value else 0) for (name, value) in list(params.items()))
  65. return container.attach(**params)