interpolation.py 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. from __future__ import absolute_import
  2. from __future__ import unicode_literals
  3. import logging
  4. import re
  5. from string import Template
  6. import six
  7. from .errors import ConfigurationError
  8. from compose.const import COMPOSEFILE_V2_0 as V2_0
  9. from compose.utils import parse_bytes
  10. from compose.utils import parse_nanoseconds_int
  11. log = logging.getLogger(__name__)
  12. class Interpolator(object):
  13. def __init__(self, templater, mapping):
  14. self.templater = templater
  15. self.mapping = mapping
  16. def interpolate(self, string):
  17. try:
  18. return self.templater(string).substitute(self.mapping)
  19. except ValueError:
  20. raise InvalidInterpolation(string)
  21. def interpolate_environment_variables(version, config, section, environment):
  22. if version <= V2_0:
  23. interpolator = Interpolator(Template, environment)
  24. else:
  25. interpolator = Interpolator(TemplateWithDefaults, environment)
  26. def process_item(name, config_dict):
  27. return dict(
  28. (key, interpolate_value(name, key, val, section, interpolator))
  29. for key, val in (config_dict or {}).items()
  30. )
  31. return dict(
  32. (name, process_item(name, config_dict or {}))
  33. for name, config_dict in config.items()
  34. )
  35. def get_config_path(config_key, section, name):
  36. return '{}/{}/{}'.format(section, name, config_key)
  37. def interpolate_value(name, config_key, value, section, interpolator):
  38. try:
  39. return recursive_interpolate(value, interpolator, get_config_path(config_key, section, name))
  40. except InvalidInterpolation as e:
  41. raise ConfigurationError(
  42. 'Invalid interpolation format for "{config_key}" option '
  43. 'in {section} "{name}": "{string}"'.format(
  44. config_key=config_key,
  45. name=name,
  46. section=section,
  47. string=e.string))
  48. except UnsetRequiredSubstitution as e:
  49. raise ConfigurationError(
  50. 'Missing mandatory value for "{config_key}" option in {section} "{name}": {err}'.format(
  51. config_key=config_key,
  52. name=name,
  53. section=section,
  54. err=e.err
  55. )
  56. )
  57. def recursive_interpolate(obj, interpolator, config_path):
  58. def append(config_path, key):
  59. return '{}/{}'.format(config_path, key)
  60. if isinstance(obj, six.string_types):
  61. return converter.convert(config_path, interpolator.interpolate(obj))
  62. if isinstance(obj, dict):
  63. return dict(
  64. (key, recursive_interpolate(val, interpolator, append(config_path, key)))
  65. for (key, val) in obj.items()
  66. )
  67. if isinstance(obj, list):
  68. return [recursive_interpolate(val, interpolator, config_path) for val in obj]
  69. return converter.convert(config_path, obj)
  70. class TemplateWithDefaults(Template):
  71. pattern = r"""
  72. %(delim)s(?:
  73. (?P<escaped>%(delim)s) |
  74. (?P<named>%(id)s) |
  75. {(?P<braced>%(bid)s)} |
  76. (?P<invalid>)
  77. )
  78. """ % {
  79. 'delim': re.escape('$'),
  80. 'id': r'[_a-z][_a-z0-9]*',
  81. 'bid': r'[_a-z][_a-z0-9]*(?:(?P<sep>:?[-?])[^}]*)?',
  82. }
  83. @staticmethod
  84. def process_braced_group(braced, sep, mapping):
  85. if ':-' == sep:
  86. var, _, default = braced.partition(':-')
  87. return mapping.get(var) or default
  88. elif '-' == sep:
  89. var, _, default = braced.partition('-')
  90. return mapping.get(var, default)
  91. elif ':?' == sep:
  92. var, _, err = braced.partition(':?')
  93. result = mapping.get(var)
  94. if not result:
  95. raise UnsetRequiredSubstitution(err)
  96. return result
  97. elif '?' == sep:
  98. var, _, err = braced.partition('?')
  99. if var in mapping:
  100. return mapping.get(var)
  101. raise UnsetRequiredSubstitution(err)
  102. # Modified from python2.7/string.py
  103. def substitute(self, mapping):
  104. # Helper function for .sub()
  105. def convert(mo):
  106. named = mo.group('named') or mo.group('braced')
  107. braced = mo.group('braced')
  108. if braced is not None:
  109. sep = mo.group('sep')
  110. if sep:
  111. return self.process_braced_group(braced, sep, mapping)
  112. if named is not None:
  113. val = mapping[named]
  114. if isinstance(val, six.binary_type):
  115. val = val.decode('utf-8')
  116. return '%s' % (val,)
  117. if mo.group('escaped') is not None:
  118. return self.delimiter
  119. if mo.group('invalid') is not None:
  120. self._invalid(mo)
  121. raise ValueError('Unrecognized named group in pattern',
  122. self.pattern)
  123. return self.pattern.sub(convert, self.template)
  124. class InvalidInterpolation(Exception):
  125. def __init__(self, string):
  126. self.string = string
  127. class UnsetRequiredSubstitution(Exception):
  128. def __init__(self, custom_err_msg):
  129. self.err = custom_err_msg
  130. PATH_JOKER = '[^/]+'
  131. FULL_JOKER = '.+'
  132. def re_path(*args):
  133. return re.compile('^{}$'.format('/'.join(args)))
  134. def re_path_basic(section, name):
  135. return re_path(section, PATH_JOKER, name)
  136. def service_path(*args):
  137. return re_path('service', PATH_JOKER, *args)
  138. def to_boolean(s):
  139. if not isinstance(s, six.string_types):
  140. return s
  141. s = s.lower()
  142. if s in ['y', 'yes', 'true', 'on']:
  143. return True
  144. elif s in ['n', 'no', 'false', 'off']:
  145. return False
  146. raise ValueError('"{}" is not a valid boolean value'.format(s))
  147. def to_int(s):
  148. if not isinstance(s, six.string_types):
  149. return s
  150. # We must be able to handle octal representation for `mode` values notably
  151. if six.PY3 and re.match('^0[0-9]+$', s.strip()):
  152. s = '0o' + s[1:]
  153. try:
  154. return int(s, base=0)
  155. except ValueError:
  156. raise ValueError('"{}" is not a valid integer'.format(s))
  157. def to_float(s):
  158. if not isinstance(s, six.string_types):
  159. return s
  160. try:
  161. return float(s)
  162. except ValueError:
  163. raise ValueError('"{}" is not a valid float'.format(s))
  164. def to_str(o):
  165. if isinstance(o, (bool, float, int)):
  166. return '{}'.format(o)
  167. return o
  168. def bytes_to_int(s):
  169. v = parse_bytes(s)
  170. if v is None:
  171. raise ValueError('"{}" is not a valid byte value'.format(s))
  172. return v
  173. def to_microseconds(v):
  174. if not isinstance(v, six.string_types):
  175. return v
  176. return int(parse_nanoseconds_int(v) / 1000)
  177. class ConversionMap(object):
  178. map = {
  179. service_path('blkio_config', 'weight'): to_int,
  180. service_path('blkio_config', 'weight_device', 'weight'): to_int,
  181. service_path('build', 'labels', FULL_JOKER): to_str,
  182. service_path('cpus'): to_float,
  183. service_path('cpu_count'): to_int,
  184. service_path('cpu_quota'): to_microseconds,
  185. service_path('cpu_period'): to_microseconds,
  186. service_path('cpu_rt_period'): to_microseconds,
  187. service_path('cpu_rt_runtime'): to_microseconds,
  188. service_path('configs', 'mode'): to_int,
  189. service_path('secrets', 'mode'): to_int,
  190. service_path('healthcheck', 'retries'): to_int,
  191. service_path('healthcheck', 'disable'): to_boolean,
  192. service_path('deploy', 'labels', PATH_JOKER): to_str,
  193. service_path('deploy', 'replicas'): to_int,
  194. service_path('deploy', 'update_config', 'parallelism'): to_int,
  195. service_path('deploy', 'update_config', 'max_failure_ratio'): to_float,
  196. service_path('deploy', 'rollback_config', 'parallelism'): to_int,
  197. service_path('deploy', 'rollback_config', 'max_failure_ratio'): to_float,
  198. service_path('deploy', 'restart_policy', 'max_attempts'): to_int,
  199. service_path('mem_swappiness'): to_int,
  200. service_path('labels', FULL_JOKER): to_str,
  201. service_path('oom_kill_disable'): to_boolean,
  202. service_path('oom_score_adj'): to_int,
  203. service_path('ports', 'target'): to_int,
  204. service_path('ports', 'published'): to_int,
  205. service_path('scale'): to_int,
  206. service_path('ulimits', PATH_JOKER): to_int,
  207. service_path('ulimits', PATH_JOKER, 'soft'): to_int,
  208. service_path('ulimits', PATH_JOKER, 'hard'): to_int,
  209. service_path('privileged'): to_boolean,
  210. service_path('read_only'): to_boolean,
  211. service_path('stdin_open'): to_boolean,
  212. service_path('tty'): to_boolean,
  213. service_path('volumes', 'read_only'): to_boolean,
  214. service_path('volumes', 'volume', 'nocopy'): to_boolean,
  215. service_path('volumes', 'tmpfs', 'size'): bytes_to_int,
  216. re_path_basic('network', 'attachable'): to_boolean,
  217. re_path_basic('network', 'external'): to_boolean,
  218. re_path_basic('network', 'internal'): to_boolean,
  219. re_path('network', PATH_JOKER, 'labels', FULL_JOKER): to_str,
  220. re_path_basic('volume', 'external'): to_boolean,
  221. re_path('volume', PATH_JOKER, 'labels', FULL_JOKER): to_str,
  222. re_path_basic('secret', 'external'): to_boolean,
  223. re_path('secret', PATH_JOKER, 'labels', FULL_JOKER): to_str,
  224. re_path_basic('config', 'external'): to_boolean,
  225. re_path('config', PATH_JOKER, 'labels', FULL_JOKER): to_str,
  226. }
  227. def convert(self, path, value):
  228. for rexp in self.map.keys():
  229. if rexp.match(path):
  230. try:
  231. return self.map[rexp](value)
  232. except ValueError as e:
  233. raise ConfigurationError(
  234. 'Error while attempting to convert {} to appropriate type: {}'.format(
  235. path.replace('/', '.'), e
  236. )
  237. )
  238. return value
  239. converter = ConversionMap()