# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# Authors: Jan Safranek <jsafrane@redhat.com>
# -*- coding: utf-8 -*-
""""
Module for LMI_LVBasedOn class.
LMI_LVBasedOn
-------------
.. autoclass:: LMI_LVBasedOn
:members:
"""
from openlmi.storage.BaseProvider import BaseProvider
import pywbem
import blivet
import openlmi.common.cmpi_logging as cmpi_logging
[docs]class LMI_LVBasedOn(BaseProvider):
"""
Implementation of LMI_LVBasedOn class.
This class is not subclass of BasedOnProvider, because we need
to associate a LV with all PVs of the VG.
BasedOnProvider would associate LV with its VG.
"""
@cmpi_logging.trace_method
[docs] def __init__(self, *args, **kwargs):
super(LMI_LVBasedOn, self).__init__(*args, **kwargs)
@cmpi_logging.trace_method
[docs] def enum_instances(self, env, model, keys_only):
"""
Provider implementation of EnumerateInstances intrinsic method.
"""
model.path.update({'Dependent': None, 'Antecedent': None})
for device in self.storage.lvs:
provider = self.provider_manager.get_provider_for_device(device)
if not provider:
raise pywbem.CIMError(pywbem.CIM_ERR_FAILED,
"Cannot find provider for device " + device.path)
vg = device.vg
for base in vg.parents:
model['Dependent'] = provider.get_name_for_device(device)
model['Antecedent'] = self.provider_manager.get_name_for_device(
base)
if keys_only:
yield model
else:
yield self.get_instance(env, model, device, base)
@cmpi_logging.trace_method
# pylint: disable-msg=W0221
[docs] def get_instance(self, env, model, device=None, base=None):
"""
Provider implementation of GetInstance intrinsic method.
It just checks if Dependent and Antecedent are related.
"""
if not device:
device = self.provider_manager.get_device_for_name(
model['Dependent'])
if not device:
raise pywbem.CIMError(pywbem.CIM_ERR_NOT_FOUND,
"Cannot find Dependent device")
if not base:
base = self.provider_manager.get_device_for_name(
model['Antecedent'])
if not base:
raise pywbem.CIMError(pywbem.CIM_ERR_NOT_FOUND,
"Cannot find Antecedent device")
if not isinstance(device,
blivet.devices.LVMLogicalVolumeDevice):
raise pywbem.CIMError(pywbem.CIM_ERR_NOT_FOUND,
"Dependend device is not logical volume: " + device.path)
if not (base in device.vg.parents):
raise pywbem.CIMError(pywbem.CIM_ERR_NOT_FOUND,
"Antecedent is not related to Dependent device")
return model
@cmpi_logging.trace_method
[docs] def references(self, env, object_name, model, result_class_name, role,
result_role, keys_only):
"""Instrument Associations."""
return self.simple_references(env, object_name, model,
result_class_name, role, result_role, keys_only,
"CIM_StorageExtent",
"CIM_StorageExtent")