# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-## Copyright 2020-2021,2024 Canonical Ltd.## This program is free software; you can redistribute it and/or# modify it under the terms of the GNU Lesser General Public# License version 3 as published by the Free Software Foundation.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU# Lesser General Public License for more details.## You should have received a copy of the GNU Lesser General Public License# along with this program. If not, see <http://www.gnu.org/licenses/>."""The Go plugin."""importloggingfromtypingimportLiteral,castfromoverridesimportoverridefromcraft_partsimporterrorsfrom.importvalidatorfrom.baseimportPluginfrom.propertiesimportPluginPropertieslogger=logging.getLogger(__name__)
[docs]classGoPluginProperties(PluginProperties,frozen=True):"""The part properties used by the Go plugin."""plugin:Literal["go"]="go"go_buildtags:list[str]=[]go_generate:list[str]=[]# part properties required by the pluginsource:str# pyright: ignore[reportGeneralTypeIssues]
[docs]classGoPluginEnvironmentValidator(validator.PluginEnvironmentValidator):"""Check the execution environment for the Go plugin. :param part_name: The part whose build environment is being validated. :param env: A string containing the build step environment setup. """
[docs]@overridedefvalidate_environment(self,*,part_dependencies:list[str]|None=None)->None:"""Ensure the environment contains dependencies needed by the plugin. :param part_dependencies: A list of the parts this part depends on. :raises PluginEnvironmentValidationError: If go is invalid and there are no parts named go. """version=self.validate_dependency(dependency="go",plugin_name="go",part_dependencies=part_dependencies,argument="version",)ifnotversion.startswith("go version")and(part_dependenciesisNoneor"go-deps"notinpart_dependencies):raiseerrors.PluginEnvironmentValidationError(part_name=self._part_name,reason=f"invalid go compiler version {version!r}",)
[docs]classGoPlugin(Plugin):"""A plugin for go projects using go.mod. The go plugin requires a go compiler installed on your system. This can be achieved by adding the appropriate golang package to ``build-packages``, or to have it installed or built in a different part. In this case, the name of the part supplying the go compiler must be "go". The go plugin uses the common plugin keywords as well as those for "sources". Additionally, the following plugin-specific keywords can be used: - ``go-buildtags`` (list of strings) Tags to use during the go build. Default is not to use any build tags. - ``go-generate`` (list of strings) Parameters to pass to `go generate` before building. Each item on the list will be a separate `go generate` call. Default is not to call `go generate`. """properties_class=GoPluginPropertiesvalidator_class=GoPluginEnvironmentValidator
[docs]@overridedefget_build_snaps(self)->set[str]:"""Return a set of required snaps to install in the build environment."""returnset()
[docs]@overridedefget_build_packages(self)->set[str]:"""Return a set of required packages to install in the build environment."""returnset()
[docs]@overridedefget_build_environment(self)->dict[str,str]:"""Return a dictionary with the environment to use in the build step."""return{"GOBIN":f"{self._part_info.part_install_dir}/bin",}
[docs]@overridedefget_build_commands(self)->list[str]:"""Return a list of commands to run during the build step."""options=cast(GoPluginProperties,self._options)# Matches go-use plugin expectation.workspace_dir=self._part_info.project_info.dirs.parts_dirworkspace=workspace_dir/"go.work"ifworkspace.exists():init_cmd=f"go work use {self._part_info.part_build_dir}"else:init_cmd="go mod download all"tags=f"-tags={','.join(options.go_buildtags)}"ifoptions.go_buildtagselse""generate_cmds:list[str]=[f"go generate {cmd}"forcmdinoptions.go_generate]return[init_cmd,*generate_cmds,f'go install -p "{self._part_info.parallel_build_count}" {tags} ./...',]