From b8d240902f956b5522710c63609880f29464e30e Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 15 Dec 2010 11:03:19 -0700 Subject: oe.utils: add 'inherits' function This is simply a more convenient form of bb.data.inherits_class, as it can accept any number of classes, and will return True if it inherits any of them. This is similar to how isinstance() behaves. Signed-off-by: Chris Larson --- lib/oe/utils.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'lib/oe') diff --git a/lib/oe/utils.py b/lib/oe/utils.py index 2169ed212e..f7d2946a6a 100644 --- a/lib/oe/utils.py +++ b/lib/oe/utils.py @@ -1,3 +1,5 @@ +import bb.data + def uniq(iterable): seen = set() for i in iterable: @@ -7,8 +9,8 @@ def uniq(iterable): def read_file(filename): try: - f = file( filename, "r" ) - except IOError, reason: + f = file(filename, "r") + except IOError: return "" # WARNING: can't raise an error now because of the new RDEPENDS handling. This is a bit ugly. :M: else: return f.read().strip() @@ -60,7 +62,7 @@ def both_contain(variable1, variable2, checkvalue, d): return "" def prune_suffix(var, suffixes, d): - # See if var ends with any of the suffixes listed and + # See if var ends with any of the suffixes listed and # remove it if found for suffix in suffixes: if var.endswith(suffix): @@ -85,3 +87,7 @@ def param_bool(cfg, field, dflt = None): elif strvalue in ('no', 'n', 'false', 'f', '0'): return False raise ValueError("invalid value for boolean parameter '%s': '%s'" % (field, value)) + +def inherits(d, *classes): + """Return True if the metadata inherits any of the specified classes""" + return any(bb.data.inherits_class(cls, d) for cls in classes) -- cgit 1.2.3-korg