|
| 1 | +# Copyright 2020 The Pigweed Authors |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 4 | +# use this file except in compliance with the License. You may obtain a copy of |
| 5 | +# the License at |
| 6 | +# |
| 7 | +# https://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | +# License for the specific language governing permissions and limitations under |
| 13 | +# the License. |
| 14 | +"""Install and remove optional packages.""" |
| 15 | + |
| 16 | +import argparse |
| 17 | +import logging |
| 18 | +import os |
| 19 | +import pathlib |
| 20 | +import shutil |
| 21 | +from typing import List |
| 22 | + |
| 23 | +_LOG: logging.Logger = logging.getLogger(__name__) |
| 24 | + |
| 25 | + |
| 26 | +class Package: |
| 27 | + """Package to be installed. |
| 28 | +
|
| 29 | + Subclass this to implement installation of a specific package. |
| 30 | + """ |
| 31 | + def __init__(self, name): |
| 32 | + self._name = name |
| 33 | + |
| 34 | + @property |
| 35 | + def name(self): |
| 36 | + return self._name |
| 37 | + |
| 38 | + def install(self, path: pathlib.Path) -> None: # pylint: disable=no-self-use |
| 39 | + """Install the package at path. |
| 40 | +
|
| 41 | + Install the package in path. Cannot assume this directory is empty—it |
| 42 | + may need to be deleted or updated. |
| 43 | + """ |
| 44 | + |
| 45 | + def remove(self, path: pathlib.Path) -> None: # pylint: disable=no-self-use |
| 46 | + """Remove the package from path. |
| 47 | +
|
| 48 | + Removes the directory containing the package. For most packages this |
| 49 | + should be sufficient to remove the package, and subclasses should not |
| 50 | + need to override this package. |
| 51 | + """ |
| 52 | + if os.path.exists(path): |
| 53 | + shutil.rmtree(path) |
| 54 | + |
| 55 | + def status(self, path: pathlib.Path) -> bool: # pylint: disable=no-self-use |
| 56 | + """Returns if package is installed at path and current. |
| 57 | +
|
| 58 | + This method will be skipped if the directory does not exist. |
| 59 | + """ |
| 60 | + |
| 61 | + |
| 62 | +_PACKAGES = {} |
| 63 | + |
| 64 | + |
| 65 | +def register(package_class: type) -> None: |
| 66 | + obj = package_class() |
| 67 | + _PACKAGES[obj.name] = obj |
| 68 | + |
| 69 | + |
| 70 | +class PackageManager: |
| 71 | + """Install and remove optional packages.""" |
| 72 | + def __init__(self): |
| 73 | + self._pkg_root: pathlib.Path = None |
| 74 | + |
| 75 | + def install(self, package: str, force=False): |
| 76 | + pkg = _PACKAGES[package] |
| 77 | + if force: |
| 78 | + self.remove(package) |
| 79 | + _LOG.info('Installing %s...', pkg.name) |
| 80 | + pkg.install(self._pkg_root / pkg.name) |
| 81 | + _LOG.info('Installing %s...done.', pkg.name) |
| 82 | + return 0 |
| 83 | + |
| 84 | + def remove(self, package: str): # pylint: disable=no-self-use |
| 85 | + pkg = _PACKAGES[package] |
| 86 | + _LOG.info('Removing %s...', pkg.name) |
| 87 | + pkg.remove(self._pkg_root / pkg.name) |
| 88 | + _LOG.info('Removing %s...done.', pkg.name) |
| 89 | + return 0 |
| 90 | + |
| 91 | + def status(self, package: str): # pylint: disable=no-self-use |
| 92 | + pkg = _PACKAGES[package] |
| 93 | + path = self._pkg_root / pkg.name |
| 94 | + if os.path.isdir(path) and pkg.status(path): |
| 95 | + _LOG.info('%s is installed.', pkg.name) |
| 96 | + return 0 |
| 97 | + |
| 98 | + _LOG.info('%s is not installed.', pkg.name) |
| 99 | + return -1 |
| 100 | + |
| 101 | + def list(self): # pylint: disable=no-self-use |
| 102 | + _LOG.info('Installed packages:') |
| 103 | + available = [] |
| 104 | + for package in sorted(_PACKAGES.keys()): |
| 105 | + pkg = _PACKAGES[package] |
| 106 | + if pkg.status(self._pkg_root / pkg.name): |
| 107 | + _LOG.info(' %s', pkg.name) |
| 108 | + else: |
| 109 | + available.append(pkg.name) |
| 110 | + _LOG.info('') |
| 111 | + |
| 112 | + _LOG.info('Available packages:') |
| 113 | + for pkg_name in available: |
| 114 | + _LOG.info(' %s', pkg_name) |
| 115 | + _LOG.info('') |
| 116 | + |
| 117 | + return 0 |
| 118 | + |
| 119 | + def run(self, command: str, pkg_root: pathlib.Path, **kwargs): |
| 120 | + os.makedirs(pkg_root, exist_ok=True) |
| 121 | + self._pkg_root = pkg_root |
| 122 | + return getattr(self, command)(**kwargs) |
| 123 | + |
| 124 | + |
| 125 | +def parse_args(argv: List[str] = None) -> argparse.Namespace: |
| 126 | + parser = argparse.ArgumentParser("Manage packages.") |
| 127 | + parser.add_argument( |
| 128 | + '--package-root', |
| 129 | + '-e', |
| 130 | + dest='pkg_root', |
| 131 | + type=pathlib.Path, |
| 132 | + default=(pathlib.Path(os.environ['_PW_ACTUAL_ENVIRONMENT_ROOT']) / |
| 133 | + 'packages'), |
| 134 | + ) |
| 135 | + subparsers = parser.add_subparsers(dest='command', required=True) |
| 136 | + install = subparsers.add_parser('install') |
| 137 | + install.add_argument('--force', '-f', action='store_true') |
| 138 | + remove = subparsers.add_parser('remove') |
| 139 | + status = subparsers.add_parser('status') |
| 140 | + for cmd in (install, remove, status): |
| 141 | + cmd.add_argument('package', choices=_PACKAGES.keys()) |
| 142 | + _ = subparsers.add_parser('list') |
| 143 | + return parser.parse_args(argv) |
| 144 | + |
| 145 | + |
| 146 | +def run(**kwargs): |
| 147 | + return PackageManager().run(**kwargs) |
0 commit comments