# 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_LVAllocatedFromStoragePool class.
LMI_LVAllocatedFromStoragePool
------------------------------
.. autoclass:: LMI_LVAllocatedFromStoragePool
:members:
"""
from openlmi.storage.BaseProvider import BaseProvider
import pywbem
import blivet
import openlmi.common.cmpi_logging as cmpi_logging
[docs]class LMI_LVAllocatedFromStoragePool(BaseProvider):
"""
Implementation of LMI_LVAllocatedFromStoragePool class.
"""
@cmpi_logging.trace_method
[docs] def __init__(self, *args, **kwargs):
super(LMI_LVAllocatedFromStoragePool, 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:
lvprovider = self.provider_manager.get_provider_for_device(device)
if not lvprovider:
raise pywbem.CIMError(pywbem.CIM_ERR_FAILED,
"Cannot find provider for device " + device.path)
vg = device.vg
vgprovider = self.provider_manager.get_provider_for_device(vg)
if not vgprovider:
raise pywbem.CIMError(pywbem.CIM_ERR_FAILED,
"Cannot find provider for device " + vg.path)
model['Dependent'] = lvprovider.get_name_for_device(device)
model['Antecedent'] = vgprovider.get_name_for_device(vg)
if keys_only:
yield model
else:
yield self.get_instance(env, model, device, vg)
@cmpi_logging.trace_method
# pylint: disable-msg=W0221
[docs] def get_instance(self, env, model, device=None, vg=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 vg:
vg = self.provider_manager.get_device_for_name(
model['Antecedent'])
if not vg:
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 isinstance(vg, blivet.devices.LVMVolumeGroupDevice):
raise pywbem.CIMError(pywbem.CIM_ERR_NOT_FOUND,
"Antecedent device is not volume vroup: " + vg.path)
if vg != device.vg:
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_StoragePool")