Viewing file:      packaging.py (12.15 KB)      -rw-r--r-- Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
'''Abstraction of packaging operations.'''
  # Copyright (C) 2007 - 2011 Canonical Ltd. # Author: Martin Pitt <martin.pitt@ubuntu.com> # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; either version 2 of the License, or (at your # option) any later version.  See http://www.gnu.org/copyleft/gpl.html for # the full text of the license.
  import os import sys import re import subprocess
 
  class PackageInfo:     # default global configuration file     configuration = '/etc/default/apport'
      def get_version(self, package):         '''Return the installed version of a package.
          Throw ValueError if package does not exist.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def get_available_version(self, package):         '''Return the latest available version of a package.
          Throw ValueError if package does not exist.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def get_dependencies(self, package):         '''Return a list of packages a package depends on.'''
          raise NotImplementedError('this method must be implemented by a concrete subclass')
      def get_source(self, package):         '''Return the source package name for a package.
          Throw ValueError if package does not exist.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def get_package_origin(self, package):         '''Return package origin.
          Return the repository name from which a package was installed, or None         if it cannot be determined.
          Throw ValueError if package is not installed.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def is_distro_package(self, package):         '''Check package origin.
          Return True if the package is a genuine distro package, or False if it         comes from a third-party source.
          Throw ValueError if package does not exist.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def get_architecture(self, package):         '''Return the architecture of a package.
          This might differ on multiarch architectures (e. g. an i386 Firefox         package on a x86_64 system)         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def get_files(self, package):         '''Return list of files shipped by a package.
          Throw ValueError if package does not exist.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def get_modified_files(self, package):         '''Return list of all modified files of a package.'''
          raise NotImplementedError('this method must be implemented by a concrete subclass')
      def get_modified_conffiles(self, package):         '''Return modified configuration files of a package.
          Return a file name -> file contents map of all configuration files of         package. Please note that apport.hookutils.attach_conffiles() is the         official user-facing API for this, which will ask for confirmation and         allows filtering.         '''         return {}
      def get_file_package(self, file, uninstalled=False, map_cachedir=None,                          release=None, arch=None):         '''Return the package a file belongs to.
          Return None if the file is not shipped by any package.
          If uninstalled is True, this will also find files of uninstalled         packages; this is very expensive, though, and needs network access and         lots of CPU and I/O resources. In this case, map_cachedir can be set to         an existing directory which will be used to permanently store the         downloaded maps. If it is not set, a temporary directory will be used.         Also, release and arch can be set to a foreign release/architecture         instead of the one from the current system.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def get_system_architecture(self):         '''Return the architecture of the system.
          This should use the notation of the particular distribution.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def get_library_paths(self):         '''Return a list of default library search paths.
          The entries should be separated with a colon ':', like for         $LD_LIBRARY_PATH. This needs to take any multiarch directories into         account.         '''         # dummy default implementation         return '/lib:/usr/lib'
      def set_mirror(self, url):         '''Explicitly set a distribution mirror URL.
          This might be called for operations that need to fetch distribution         files/packages from the network.
          By default, the mirror will be read from the system configuration         files.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def get_source_tree(self, srcpackage, dir, version=None):         '''Download a source package and unpack it into dir..
          dir should exist and be empty.
          This also has to care about applying patches etc., so that dir will         eventually contain the actually compiled source.
          If version is given, this particular version will be retrieved.         Otherwise this will fetch the latest available version.
          Return the directory that contains the actual source root directory         (which might be a subdirectory of dir). Return None if the source is         not available.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def compare_versions(self, ver1, ver2):         '''Compare two package versions.
          Return -1 for ver < ver2, 0 for ver1 == ver2, and 1 for ver1 > ver2.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def enabled(self):         '''Return whether Apport should generate crash reports.
          Signal crashes are controlled by /proc/sys/kernel/core_pattern, but         some init script needs to set that value based on a configuration file.         This also determines whether Apport generates reports for Python,         package, or kernel crashes.
          Implementations should parse the configuration file which controls         Apport (such as /etc/default/apport in Debian/Ubuntu).         '''         try:             with open(self.configuration) as f:                 conf = f.read()         except IOError:             # if the file does not exist, assume it's enabled             return True
          return re.search(r'^\s*enabled\s*=\s*0\s*$', conf, re.M) is None
      def get_kernel_package(self):         '''Return the actual Linux kernel package name.
          This is used when the user reports a bug against the "linux" package.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def install_packages(self, rootdir, configdir, release, packages,                          verbose=False, cache_dir=None,                          permanent_rootdir=False, architecture=None,                          origins=None, install_dbg=True, install_deps=False):         '''Install packages into a sandbox (for apport-retrace).
          In order to work without any special permissions and without touching         the running system, this should only download and unpack packages into         the given root directory, not install them into the system.
          configdir points to a directory with by-release configuration files for         the packaging system; this is completely dependent on the backend         implementation, the only assumption is that this looks into         configdir/release/, so that you can use retracing for multiple         DistroReleases. As a special case, if configdir is None, it uses the         current system configuration, and "release" is ignored.
          release is the value of the report's 'DistroRelease' field.
          packages is a list of ('packagename', 'version') tuples. If the version         is None, it should install the most current available version.
          If cache_dir is given, then the downloaded packages will be stored         there, to speed up subsequent retraces.
          If permanent_rootdir is True, then the sandbox created from the         downloaded packages will be reused, to speed up subsequent retraces.
          If architecture is given, the sandbox will be created with packages of         the given architecture (as specified in a report's "Architecture"         field). If not given it defaults to the host system's architecture.
          If origins is given, the sandbox will be created with apt data sources         for foreign origins.
          If install_deps is True, then the dependencies of packages will also         be installed.
          Return a string with outdated packages, or None if all packages were         installed.
          If something is wrong with the environment (invalid configuration,         package servers down, etc.), this should raise a SystemError with a         meaningful error message.         '''         raise NotImplementedError('this method must be implemented by a concrete subclass')
      def package_name_glob(self, glob):         '''Return known package names which match given glob.'''
          raise NotImplementedError('this method must be implemented by a concrete subclass')
      def is_native_origin_package(self, package):         '''Check if a package is one which has been white listed.
          Return True for a package which came from an origin which is listed in         native-origins.d, False if it comes from a third-party source.         '''         # Default implementation does nothing, i. e. native origins are not         # supported.         return False
      def get_uninstalled_package(self):         '''Return a valid package name which is not installed.
          This is only used in the test suite. The default implementation should         work, but might be slow for your backend, so you might want to         reimplement this.         '''         for p in self.package_name_glob('*'):             if not self.is_distro_package(p):                 continue             try:                 self.get_version(p)                 continue             except ValueError:                 return p
      _os_version = None
      def get_os_version(self):         '''Return (osname, osversion) tuple.
          This is read from /etc/os-release, or if that doesn't exist,         'lsb_release -sir' output.         '''         if self._os_version:             return self._os_version
          if os.path.exists('/etc/os-release'):             name = None             version = None             with open('/etc/os-release') as f:                 for l in f:                     if l.startswith('NAME='):                         name = l.split('=', 1)[1]                         if name.startswith('"'):                             name = name[1:-2].strip()                         # work around inconsistent "Debian GNU/Linux" in os-release                         if name.endswith('GNU/Linux'):                             name = name.split()[0:-1]                     elif l.startswith('VERSION_ID='):                         version = l.split('=', 1)[1]                         if version.startswith('"'):                             version = version[1:-2].strip()             if name and version:                 self._os_version = (name, version)                 return self._os_version             else:                 sys.stderr.write('invalid /etc/os-release: Does not contain NAME and VERSION_ID\n')
          # fall back to lsb_release         p = subprocess.Popen(['lsb_release', '-sir'], stdout=subprocess.PIPE,                              stderr=subprocess.PIPE)         (name, version) = p.communicate()[0].decode().strip().replace('\n', ' ').split()         self._os_version = (name.strip(), version.strip())         return self._os_version 
  |