1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-21 09:46:19 +02:00
github.com_openSUSE_osc/osc/util/packagequery.py

155 lines
4.6 KiB
Python
Raw Normal View History

from __future__ import print_function
class PackageError(Exception):
"""base class for all package related errors"""
def __init__(self, fname, msg):
Exception.__init__(self)
self.fname = fname
self.msg = msg
class PackageQueries(dict):
"""Dict of package name keys and package query values. When assigning a
package query, to a name, the package is evaluated to see if it matches the
wanted architecture and if it has a greater version than the current value.
"""
2010-02-28 02:30:13 +01:00
# map debian arches to common obs arches
architectureMap = {'i386': ['i586', 'i686'], 'amd64': ['x86_64'], 'ppc64el': ['ppc64le']}
2010-02-28 02:30:13 +01:00
2010-02-27 20:11:15 +01:00
def __init__(self, wanted_architecture):
self.wanted_architecture = wanted_architecture
super(PackageQueries, self).__init__()
2010-02-28 02:30:13 +01:00
def add(self, query):
"""Adds package query to dict if it is of the correct architecture and
is newer (has a greater version) than the currently assigned package.
2010-02-28 02:30:13 +01:00
@param a PackageQuery
"""
self.__setitem__(query.name(), query)
2010-02-28 02:30:13 +01:00
def __setitem__(self, name, query):
if name != query.name():
raise ValueError("key '%s' does not match "
"package query name '%s'" % (name, query.name()))
2010-02-28 02:30:13 +01:00
architecture = query.arch()
2010-02-28 02:30:13 +01:00
if (architecture in [self.wanted_architecture, 'noarch', 'all', 'any']
or self.wanted_architecture in self.architectureMap.get(architecture,
[])):
2010-02-27 20:11:15 +01:00
current_query = self.get(name)
2010-02-28 02:30:13 +01:00
# if current query does not exist or is older than this new query
2010-02-27 20:11:15 +01:00
if current_query is None or current_query.vercmp(query) <= 0:
super(PackageQueries, self).__setitem__(name, query)
2009-09-20 19:19:33 +02:00
class PackageQuery:
"""abstract base class for all package types"""
def read(self, all_tags = False, *extra_tags):
raise NotImplementedError
def name(self):
raise NotImplementedError
def version(self):
raise NotImplementedError
def release(self):
raise NotImplementedError
def epoch(self):
raise NotImplementedError
def arch(self):
raise NotImplementedError
def description(self):
raise NotImplementedError
2010-02-28 02:30:13 +01:00
def path(self):
raise NotImplementedError
2010-02-28 02:30:13 +01:00
def provides(self):
raise NotImplementedError
def requires(self):
raise NotImplementedError
def conflicts(self):
raise NotImplementedError
def obsoletes(self):
raise NotImplementedError
2010-02-27 20:11:15 +01:00
def gettag(self):
raise NotImplementedError
2010-02-27 20:11:15 +01:00
def vercmp(self, pkgquery):
raise NotImplementedError
def canonname(self):
raise NotImplementedError
def evr(self):
evr = self.version() + "-" + self.release()
epoch = self.epoch()
if epoch is not None and epoch != 0:
evr = epoch + ":" + evr
return evr
@staticmethod
def query(filename, all_tags=False, extra_rpmtags=(), extra_debtags=(), self_provides=True):
f = open(filename, 'rb')
magic = f.read(7)
f.seek(0)
extra_tags = ()
2010-02-27 20:11:15 +01:00
pkgquery = None
if magic[:4] == '\xed\xab\xee\xdb':
from . import rpmquery
2010-02-27 20:11:15 +01:00
pkgquery = rpmquery.RpmQuery(f)
extra_tags = extra_rpmtags
elif magic == '!<arch>':
from . import debquery
2010-02-27 20:11:15 +01:00
pkgquery = debquery.DebQuery(f)
extra_tags = extra_debtags
elif magic[:5] == '<?xml':
2012-04-03 15:59:42 +02:00
f.close()
return None
elif magic[:5] == '\375\067zXZ' or magic[:2] == '\037\213':
from . import archquery
2012-04-03 15:59:42 +02:00
pkgquery = archquery.ArchQuery(f)
else:
raise PackageError(filename, 'unsupported package type. magic: \'%s\'' % magic)
pkgquery.read(all_tags, self_provides, *extra_tags)
f.close()
2010-02-27 20:11:15 +01:00
return pkgquery
@staticmethod
def queryhdrmd5(filename):
f = open(filename, 'rb')
magic = f.read(7)
f.seek(0)
if magic[:4] == '\xed\xab\xee\xdb':
from . import rpmquery
f.close()
return rpmquery.RpmQuery.queryhdrmd5(filename)
return None
if __name__ == '__main__':
import sys
try:
pkgq = PackageQuery.query(sys.argv[1])
except PackageError as e:
print(e.msg)
sys.exit(2)
print(pkgq.name())
print(pkgq.version())
print(pkgq.release())
print(pkgq.description())
print('##########')
print('\n'.join(pkgq.provides()))
print('##########')
print('\n'.join(pkgq.requires()))