summaryrefslogtreecommitdiffstats
path: root/src/software
diff options
context:
space:
mode:
authorMichal Minar <miminar@redhat.com>2013-11-08 13:27:27 +0100
committerMichal Minar <miminar@redhat.com>2013-11-08 13:35:04 +0100
commite9a5f34061fce27345dc65c50e4e7b609807c663 (patch)
tree2123e697fc7bc51687a174f1a4494bb48d827043 /src/software
parent7b41eb4a5b9f1a07d61cee9f4bab970fe68d1305 (diff)
downloadopenlmi-providers-e9a5f34061fce27345dc65c50e4e7b609807c663.tar.gz
openlmi-providers-e9a5f34061fce27345dc65c50e4e7b609807c663.tar.xz
openlmi-providers-e9a5f34061fce27345dc65c50e4e7b609807c663.zip
software: more efficient listing of associators
This greatly speeds up listing of associators of LMI_SoftwareIdentityResource. Packages of particular reposity can now be listed in few seconds (for 2000 pkgs large repository) instead of minutes.
Diffstat (limited to 'src/software')
-rw-r--r--src/software/lmi/software/LMI_ResourceForSoftwareIdentity.py60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/software/lmi/software/LMI_ResourceForSoftwareIdentity.py b/src/software/lmi/software/LMI_ResourceForSoftwareIdentity.py
index 71923d3..98765f1 100644
--- a/src/software/lmi/software/LMI_ResourceForSoftwareIdentity.py
+++ b/src/software/lmi/software/LMI_ResourceForSoftwareIdentity.py
@@ -243,6 +243,66 @@ class LMI_ResourceForSoftwareIdentity(CIMProvider2):
raise pywbem.CIMError(pywbem.CIM_ERR_NOT_SUPPORTED)
@cmpi_logging.trace_method
+ def MI_associators(self,
+ env,
+ objectName,
+ assocClassName,
+ resultClassName,
+ role,
+ resultRole,
+ propertyList):
+ """
+ Yield identities associated to ``LMI_SoftwareIdentityResource``
+ instances.
+
+ This overrides method of superclass for a very good reason. Original
+ method calls ``GetInstance()`` on every single object path returned by
+ :py:meth:`LMI_ResourceForSoftwareIdentity.references` which is very time
+ consuming operation on ``LMI_SoftwareIdentity`` class in particular.
+ On slow machine this could take several minutes. This method just
+ enumerates requested instances directly.
+ """
+ ns = util.Configuration.get_instance().namespace
+ ch = env.get_cimom_handle()
+ if ( (not role or role.lower() == "availablesap")
+ and (not resultRole or resultRole.lower() == "managedelement")
+ and ch.is_subclass(ns,
+ sub=objectName.classname,
+ super="LMI_SoftwareIdentityResource")):
+ try:
+ repo = IdentityResource.object_path2repo(
+ env, objectName, 'all')
+ except pywbem.CIMError as e:
+ if e.args[0] != pywbem.CIM_ERR_NOT_FOUND:
+ raise
+ raise pywbem.CIMError(pywbem.CIM_ERR_INVALID_PARAMETER,
+ e.args[1])
+
+ model = pywbem.CIMInstance(classname='LMI_SoftwareIdentity')
+ model.path = util.new_instance_name("LMI_SoftwareIdentity")
+
+ with YumDB.get_instance() as ydb:
+ pkglist = ydb.get_package_list('available',
+ allow_duplicates=True, sort=True,
+ include_repos=repo.repoid,
+ exclude_repos='*')
+ for pkg_info in pkglist:
+ yield Identity.pkg2model(pkg_info, model=model,
+ keys_only=False)
+
+ else:
+ # no need to optimize associators for SoftwareIdentity
+ for obj in CIMProvider2.MI_associators(self,
+ env,
+ objectName,
+ assocClassName,
+ resultClassName,
+ role,
+ resultRole,
+ propertyList):
+ yield obj
+
+ @cmpi_logging.trace_method
def references(self, env, object_name, model, result_class_name, role,
result_role, keys_only):
"""Instrument Associations.