You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

235 lines
9.5 KiB

"""EasyEngine package installation using apt-get module."""
10 years ago
import apt
import sys
10 years ago
class EEAptGet:
10 years ago
"""Generic apt-get intialisation"""
10 years ago
def __init__(self):
10 years ago
self.cache = apt.Cache()
self.fprogress = apt.progress.text.AcquireProgress()
self.iprogress = apt.progress.base.InstallProgress()
10 years ago
def update(self):
10 years ago
"""Similar to apt-get update"""
# self.app.log.debug("Update cache")
10 years ago
self.cache.update(self.fprogress)
10 years ago
self.cache.open()
10 years ago
def upgrade(self, packages):
"""Similar to apt-get update"""
10 years ago
my_selected_packages = []
# Cache Initialization
10 years ago
if not self.cache:
self.cache = apt.Cache()
10 years ago
# Cache Read
self.cache.open()
for package in packages:
pkg = self.cache[package]
# Check Package Installed
if pkg.is_installed:
# Check Package is Upgradeble
if pkg.is_upgradable:
10 years ago
with self.cache.actiongroup():
# Mark Package for Upgrade
pkg.mark_upgrade()
my_selected_packages.append(pkg.installed)
10 years ago
else:
print("\'{package_name}-{package_ver.version}\'"
"already the newest version"
.format(package_name=pkg.name,
package_ver=pkg.installed))
10 years ago
# Check if packages available for install.
if len(my_selected_packages) > 0:
print("The following packages will be upgraded:"
"\n {pkg_name}"
.format(pkg_name=my_selected_packages))
print("{pkg_install_count} newly installed."
.format(pkg_upgrade_count=len(my_selected_packages)))
print("Need to get {req_download} bytes of archives"
.format(req_download=self.cache.required_download))
print("After this operation, {space} bytes of"
"additional disk space will be used."
.format(space=self.cache.required_space))
try:
# Commit changes in cache (actually install)
self.cache.commit(self.fprogress, self.iprogress)
except Exception as e:
print("package installation failed. [{err}]"
.format(err=str(e)))
return(False)
return(True)
def install(self, packages):
"""Installation of packages"""
my_selected_packages = []
# Cache Initialization
10 years ago
if not self.cache:
self.cache = apt.Cache()
10 years ago
# Cache Read
self.cache.open()
10 years ago
10 years ago
for package in packages:
try:
pkg = self.cache[package]
except KeyError as e:
continue
10 years ago
# Check Package Installed
if pkg.is_installed or pkg.marked_install:
# Check Package is Upgradeble
if pkg.is_upgradable:
print("latest version of \'{package_name}\' available."
.format(package_name=pkg.installed))
else:
# Check if package already marked for install
if not pkg.marked_install:
print("\'{package_name}-{package_ver}\'"
"already the newest version"
.format(package_name=pkg.shortname,
10 years ago
package_ver=pkg.installed))
10 years ago
else:
with self.cache.actiongroup():
# Mark Package for Installation
pkg.mark_install()
my_selected_packages.append(pkg.name)
10 years ago
10 years ago
# Check if packages available for install.
if self.cache.install_count > 0:
print("The following NEW packages will be installed:"
"\n {pkg_name}"
.format(pkg_name=my_selected_packages))
print("{pkg_install_count} newly installed."
.format(pkg_install_count=self.cache.install_count))
print("Need to get {req_download} bytes of archives"
.format(req_download=self.cache.required_download))
print("After this operation, {space} bytes of"
"additional disk space will be used."
.format(space=self.cache.required_space))
try:
# Commit changes in cache (actually install)
self.cache.commit(self.fprogress, self.iprogress)
10 years ago
except Exception as e:
10 years ago
print("package installation failed. [{err}]"
10 years ago
.format(err=str(e)))
10 years ago
return(False)
return(True)
10 years ago
def __dependencies_loop(self, deplist, pkg, onelevel=False):
""" Loops through pkg's dependencies.
Returns a list with every package found. """
if not self.cache:
self.cache = apt.Cache()
if onelevel:
onelevellist = []
if not pkg.is_installed:
return
for depf in pkg.installed.dependencies:
for dep in depf:
if (dep.name in self.cache and not self.cache[dep.name]
in deplist):
deplist.append(self.cache[dep.name])
self.__dependencies_loop(deplist, self.cache[dep.name])
if onelevel:
if dep.name in self.cache:
onelevellist.append(self.cache[dep.name])
if onelevel:
return onelevellist
def remove(self, packages, auto=True, purge=False):
10 years ago
my_selected_packages = []
10 years ago
# Cache Initialization
if not self.cache:
self.cache = apt.Cache()
# Cache Read
self.cache.open()
10 years ago
for package in packages:
print("processing", package)
package = self.cache[package]
if not package.is_installed:
print("Package '{package_name}' is not installed,"
" so not removed."
.format(package_name=package.name))
continue
if package.marked_delete:
continue
else:
my_selected_packages.append(package.name)
# How logic works:
# 1) We loop trough dependencies's dependencies and add them to
# the list.
# 2) We sequentially remove every package in list
# - via is_auto_installed we check if we can safely remove it
deplist = []
onelevel = self.__dependencies_loop(deplist, package,
onelevel=True)
# Mark for deletion the first package, to fire up auto_removable
# Purge?
if purge:
package.mark_delete(purge=True)
10 years ago
else:
package.mark_delete(purge=False)
# Also ensure we remove AT LEAST the first level of dependencies
# (that is, the actual package's dependencies).
if auto:
markedauto = []
for pkg in onelevel:
if (not pkg.marked_install and pkg.is_installed
and not pkg.is_auto_installed):
pkg.mark_auto()
markedauto.append(pkg)
for pkg in deplist:
if (not pkg.marked_install and pkg.is_installed and
pkg.is_auto_removable):
# Purge?
if purge:
pkg.mark_delete(purge=True)
else:
pkg.mark_delete(purge=False)
# Restore auted items
for pkg in markedauto:
if not pkg.marked_delete:
pkg.mark_auto(False)
else:
# We need to ensure that the onelevel packages are not marked
# as automatically installed, otherwise the user may drop
# them via autoremove or aptitude.
for pkg in onelevel:
if pkg.is_installed and pkg.is_auto_installed:
pkg.mark_auto(auto=False)
10 years ago
# Check if packages available for remove/update.
if self.cache.delete_count > 0:
# self.app.log.debug('packages will be REMOVED ')
10 years ago
print("The following packages will be REMOVED:"
10 years ago
"\n {pkg_name}"
.format(pkg_name=my_selected_packages))
print("{pkg_remove_count} to remove."
.format(pkg_remove_count=self.cache.delete_count))
# self.app.log.debug('bytes disk space will be freed')
10 years ago
print("After this operation, {space} bytes disk spac"
"e will be freed.".format(space=self.cache.required_space))
10 years ago
try:
10 years ago
self.cache.commit(self.fprogress, self.iprogress)
10 years ago
except Exception as e:
# self.app.log.error('Sorry, package installation failed ')
10 years ago
print("Sorry, package installation failed [{err}]"
.format(err=str(e)))
10 years ago
return(False)
return(True)
def is_installed(self, package):
# Cache Initialization
if not self.cache:
self.cache = apt.Cache()
# Cache Read
self.cache.open()
pkg = self.cache[package]
# Check Package Installed
if pkg.is_installed:
return True
else:
return False