| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| # Authors: |
| # Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> |
| |
| from .._exceptions import LoadError |
| from ..exceptions import LoadErrorReason |
| from .option import Option, OPTION_SYMBOLS |
| |
| |
| # OptionEnum |
| # |
| # An enumeration project option |
| # |
| class OptionEnum(Option): |
| |
| OPTION_TYPE = "enum" |
| |
| def __init__(self, name, definition, pool): |
| self.values = None |
| super().__init__(name, definition, pool) |
| |
| def load(self, node): |
| self.load_special(node) |
| |
| def load_special(self, node, allow_default_definition=True): |
| super().load(node) |
| |
| valid_symbols = OPTION_SYMBOLS + ["values"] |
| if allow_default_definition: |
| valid_symbols += ["default"] |
| |
| node.validate_keys(valid_symbols) |
| |
| self.values = node.get_str_list("values", default=[]) |
| if not self.values: |
| raise LoadError( |
| "{}: No values specified for {} option '{}'".format( |
| node.get_provenance(), self.OPTION_TYPE, self.name |
| ), |
| LoadErrorReason.INVALID_DATA, |
| ) |
| |
| # Allow subclass to define the default value |
| self.value = self.load_default_value(node) |
| |
| def load_value(self, node): |
| value_node = node.get_scalar(self.name) |
| self.value = value_node.as_str() |
| |
| self.validate(self.value, value_node) |
| |
| def set_value(self, value): |
| self.validate(value) |
| self.value = value |
| |
| def get_value(self): |
| return self.value |
| |
| def validate(self, value, node=None): |
| if value not in self.values: |
| if node is not None: |
| provenance = node.get_provenance() |
| prefix = "{}: ".format(provenance) |
| else: |
| prefix = "" |
| raise LoadError( |
| "{}Invalid value for {} option '{}': {}\n".format(prefix, self.OPTION_TYPE, self.name, value) |
| + "Valid values: {}".format(", ".join(self.values)), |
| LoadErrorReason.INVALID_DATA, |
| ) |
| |
| def load_default_value(self, node): |
| value_node = node.get_scalar("default") |
| value = value_node.as_str() |
| self.validate(value, value_node) |
| return value |