summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2008-12-01 19:09:58 +0000
committerNick Mathewson <nickm@torproject.org>2008-12-01 19:09:58 +0000
commita652dbb56a191f3ed215db318e5c603cce8aaeee (patch)
treef0683425322beb4165983213e5807f268ec2bc04
parentd9796c284303fd14f4c1b53f0eb18ec87658c70c (diff)
More pydoc
git-svn-id: file:///home/or/svnrepo/updater/trunk@17433 55e972cd-5a19-0410-ae62-a4d7a52db4cd
-rw-r--r--lib/thandy/packagesys/PackageSystem.py37
1 files changed, 35 insertions, 2 deletions
diff --git a/lib/thandy/packagesys/PackageSystem.py b/lib/thandy/packagesys/PackageSystem.py
index 94d788c..749df9c 100644
--- a/lib/thandy/packagesys/PackageSystem.py
+++ b/lib/thandy/packagesys/PackageSystem.py
@@ -141,48 +141,81 @@ class PackageItem:
return self._installer
class Checker:
- """
+ """Abstract base class. A Checker knows how to detect whether a given
+ installable item is installed, and how to tell what version is installed.
+
+ All version checking functions may raise CheckNotSupported if they need
+ an OS-dependent package detection mechanism that we don't have.
+ Examples include checking the Windows Registry on a non-win32 platform.
"""
def __init__(self):
self._transaction = None
def setTransaction(self, transaction):
+ """Associate this Checker with a given transaction. Future actions
+ will take place in the given transaction context, if this Checker
+ supports transactions.
+ """
self._transaction = transaction
# def checkInstall(self):
# raise NotImplemented()
def anyVersionInstalled(self):
+ """Return true iff any version of this item is installed."""
raise len(self.getInstalledVersions()) > 1
def getInstalledVersions(self):
+ """Return a list of all versions of this item that are
+ installed. Version types are item-dependent: a tuple or a
+ string is most common.
+ """
raise NotImplemented
def isInstalled(self):
+ """Return true iff this particular version of this item is installed.
+ """
raise NotImplemented
class Installer:
+ """Abstract base class. An Installer knows how to install or remove an
+ installable item.
+ """
def __init__(self, relativePath):
self._transaction = None
self._cacheRoot = None
self._relPath = relativePath
def setTransaction(self, transaction):
+ """Associate this Installer with a given transaction. Future actions
+ will take place in the given transaction context, if this Checker
+ supports transactions.
+ """
self._transaction = transaction
def setCacheRoot(self, cacheRoot):
+ """Associate this Installer with a given cache root directory. It
+ looks for downloaded files under this directory.
+ """
self._cacheRoot = cacheRoot
def getFilename(self):
+ """Return the absolute pathname for this installable item as cached
+ on disk.
+ """
rp = self._relPath
if rp.startswith('/'):
rp = rp[1:]
return os.path.normpath(os.path.join(self._cacheRoot, rp))
- def install(self, relativePath, root):
+ def install(self):
+ """Install the item from the cache. May raise InstallFailed if we
+ the installation failed.
+ """
raise NotImplemented()
def remove(self):
+ """Remove the installed item. May raise RemoveNotSupported"""
raise NotImplemented()
def getInstallResult(self):