gtristan commented on code in PR #1903: URL: https://github.com/apache/buildstream/pull/1903#discussion_r1549289048
########## src/buildstream/sourcemirror.py: ########## @@ -0,0 +1,169 @@ +# +# 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 <[email protected]> +""" +SourceMirror - Base source mirror class +======================================= +The SourceMirror plugin allows one to customize how +:func:`Source.translate_url() <buildstream.source.Source.translate_url>` will +behave when looking up mirrors, allowing some additional flexibility in the +implementation of source mirrors. + + +.. _core_source_mirror_abstract_methods: + +Abstract Methods +---------------- +For loading and configuration purposes, SourceMirrors may optionally implement +the :func:`Plugin base class Plugin.configure() method <buildstream.plugin.Plugin.configure>` +in order to load any custom configuration in the `config` dictionary. + +The remaining :ref:`Plugin base class abstract methods <core_plugin_abstract_methods>` are +not relevant to the SourceMirror plugin object and need not be implemented. + +SourceMirrors expose the following abstract methods. Unless explicitly mentioned, +these methods are mandatory to implement. + +* :func:`SourceMirror.translate_url() <buildstream.source.SourceMirror.translate_url>` + + Produce an appropriate URL for the given URL and alias. + + +Class Reference +--------------- +""" + +from typing import Optional, Any, Dict, List, Set, TYPE_CHECKING + +from .node import MappingNode +from .plugin import Plugin +from ._exceptions import BstError, ImplError +from .exceptions import ErrorDomain + +if TYPE_CHECKING: + + # pylint: disable=cyclic-import + from ._context import Context + from ._project import Project + + # pylint: enable=cyclic-import + + +class SourceMirrorError(BstError): + """This exception should be raised by :class:`.SourceMirror` implementations + to report errors to the user. + + Args: + message: The breif error description to report to the user + detail: A possibly multiline, more detailed error message + reason: An optional machine readable reason string, used for test cases + + *Since: 2.2* + """ + + def __init__( + self, message: str, *, detail: Optional[str] = None, reason: Optional[str] = None, temporary: bool = False + ): + super().__init__(message, detail=detail, domain=ErrorDomain.SOURCE, reason=reason) + + +class SourceMirror(Plugin): + """SourceMirror() + + Base SourceMirror class. + + All SourceMirror plugins derive from this class, this interface defines how + the core will be interacting with SourceMirror plugins. + + *Since: 2.2* + """ + + # The SourceMirror plugin type is only supported since BuildStream 2.2 + BST_MIN_VERSION = "2.2" + + def __init__( + self, + context: "Context", + project: "Project", + node: MappingNode, + ): + # Note: the MappingNode passed here is already expanded with + # the project level base variables, so there is no need + # to expand them redundantly here. + # + + # Special case for the default plugin + kind = node.get_str("kind", "default") + if kind == "default": + node.validate_keys(["name", "kind", "aliases"]) Review Comment: We can drop this validation, as we do it in the "default" plugin at `Plugin.configure()` time anyway. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
