summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Schiffer <pschiffe@redhat.com>2013-12-17 16:36:23 +0100
committerPeter Schiffer <pschiffe@redhat.com>2013-12-19 13:51:14 +0100
commit0aabbce2a9d7e21a7ff5e4118b1ac7b98f5aa06b (patch)
treebbec4d433fea90cfacda1b662610a9f38faa3ed8
parent2eaeadd8e8609bbde5f5a0a141946c9cd7cc0216 (diff)
downloadopenlmi-providers-0aabbce2a9d7e21a7ff5e4118b1ac7b98f5aa06b.tar.gz
openlmi-providers-0aabbce2a9d7e21a7ff5e4118b1ac7b98f5aa06b.tar.xz
openlmi-providers-0aabbce2a9d7e21a7ff5e4118b1ac7b98f5aa06b.zip
Hardware: added DiskDriveElementSoftwareIdentity association
New provider: * LMI_DiskDriveElementSoftwareIdentity
-rw-r--r--mof/60_LMI_Hardware.mof10
-rw-r--r--src/hardware/LMI_DiskDriveElementSoftwareIdentityProvider.c274
2 files changed, 284 insertions, 0 deletions
diff --git a/mof/60_LMI_Hardware.mof b/mof/60_LMI_Hardware.mof
index c094208..c50ee54 100644
--- a/mof/60_LMI_Hardware.mof
+++ b/mof/60_LMI_Hardware.mof
@@ -1414,3 +1414,13 @@ class LMI_DiskDriveSoftwareIdentity: CIM_SoftwareIdentity
boolean IsLargeBuildNumber;
};
+[ Version("0.5.0"), Provider("cmpi:cmpiLMI_DiskDriveElementSoftwareIdentity"), Association ]
+class LMI_DiskDriveElementSoftwareIdentity: CIM_ElementSoftwareIdentity
+{
+ [ Override("Antecedent") ]
+ LMI_DiskDriveSoftwareIdentity REF Antecedent;
+
+ [ Override("Dependent") ]
+ LMI_DiskDrive REF Dependent;
+};
+
diff --git a/src/hardware/LMI_DiskDriveElementSoftwareIdentityProvider.c b/src/hardware/LMI_DiskDriveElementSoftwareIdentityProvider.c
new file mode 100644
index 0000000..9b0cff8
--- /dev/null
+++ b/src/hardware/LMI_DiskDriveElementSoftwareIdentityProvider.c
@@ -0,0 +1,274 @@
+/*
+ * Copyright (C) 2013 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: Peter Schiffer <pschiffe@redhat.com>
+ */
+
+#include <konkret/konkret.h>
+#include "LMI_DiskDriveElementSoftwareIdentity.h"
+#include "LMI_Hardware.h"
+#include "globals.h"
+#include "lsblk.h"
+
+static const CMPIBroker* _cb;
+
+static void LMI_DiskDriveElementSoftwareIdentityInitialize(const CMPIContext *ctx)
+{
+ lmi_init(provider_name, _cb, ctx, provider_config_defaults);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityCleanup(
+ CMPIInstanceMI* mi,
+ const CMPIContext* cc,
+ CMPIBoolean term)
+{
+ CMReturn(CMPI_RC_OK);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityEnumInstanceNames(
+ CMPIInstanceMI* mi,
+ const CMPIContext* cc,
+ const CMPIResult* cr,
+ const CMPIObjectPath* cop)
+{
+ return KDefaultEnumerateInstanceNames(
+ _cb, mi, cc, cr, cop);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityEnumInstances(
+ CMPIInstanceMI* mi,
+ const CMPIContext* cc,
+ const CMPIResult* cr,
+ const CMPIObjectPath* cop,
+ const char** properties)
+{
+ LMI_DiskDriveElementSoftwareIdentity lmi_hdd_swi_el;
+ LMI_DiskDriveSoftwareIdentityRef lmi_hdd_swi;
+ LMI_DiskDriveRef lmi_hdd;
+ const char *ns = KNameSpace(cop);
+ char instance_id[INSTANCE_ID_LEN];
+ unsigned i;
+ LsblkHdd *lsblk_hdds = NULL;
+ unsigned lsblk_hdds_nb = 0;
+
+ if (lsblk_get_hdds(&lsblk_hdds, &lsblk_hdds_nb) != 0 || lsblk_hdds_nb < 1) {
+ goto done;
+ }
+
+ for (i = 0; i < lsblk_hdds_nb; i++) {
+ /* use only disk devices from lsblk */
+ if (strcmp(lsblk_hdds[i].type, "disk") != 0) {
+ continue;
+ }
+
+ LMI_DiskDriveElementSoftwareIdentity_Init(&lmi_hdd_swi_el, _cb, ns);
+
+ LMI_DiskDriveRef_Init(&lmi_hdd, _cb, ns);
+ LMI_DiskDriveRef_Set_SystemCreationClassName(&lmi_hdd,
+ get_system_creation_class_name());
+ LMI_DiskDriveRef_Set_SystemName(&lmi_hdd, get_system_name());
+ LMI_DiskDriveRef_Set_CreationClassName(&lmi_hdd,
+ ORGID "_" DISK_DRIVE_CLASS_NAME);
+ LMI_DiskDriveRef_Set_DeviceID(&lmi_hdd, lsblk_hdds[i].name);
+
+ snprintf(instance_id, INSTANCE_ID_LEN,
+ ORGID ":" ORGID "_" DISK_DRIVE_SW_IDENTITY_CLASS_NAME ":%s",
+ lsblk_hdds[i].name);
+
+ LMI_DiskDriveSoftwareIdentityRef_Init(&lmi_hdd_swi, _cb, ns);
+ LMI_DiskDriveSoftwareIdentityRef_Set_InstanceID(&lmi_hdd_swi,
+ instance_id);
+
+ LMI_DiskDriveElementSoftwareIdentity_Set_Dependent(&lmi_hdd_swi_el,
+ &lmi_hdd);
+ LMI_DiskDriveElementSoftwareIdentity_Set_Antecedent(&lmi_hdd_swi_el,
+ &lmi_hdd_swi);
+
+ KReturnInstance(cr, lmi_hdd_swi_el);
+ }
+
+done:
+ lsblk_free_hdds(&lsblk_hdds, &lsblk_hdds_nb);
+
+ CMReturn(CMPI_RC_OK);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityGetInstance(
+ CMPIInstanceMI* mi,
+ const CMPIContext* cc,
+ const CMPIResult* cr,
+ const CMPIObjectPath* cop,
+ const char** properties)
+{
+ return KDefaultGetInstance(
+ _cb, mi, cc, cr, cop, properties);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityCreateInstance(
+ CMPIInstanceMI* mi,
+ const CMPIContext* cc,
+ const CMPIResult* cr,
+ const CMPIObjectPath* cop,
+ const CMPIInstance* ci)
+{
+ CMReturn(CMPI_RC_ERR_NOT_SUPPORTED);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityModifyInstance(
+ CMPIInstanceMI* mi,
+ const CMPIContext* cc,
+ const CMPIResult* cr,
+ const CMPIObjectPath* cop,
+ const CMPIInstance* ci,
+ const char**properties)
+{
+ CMReturn(CMPI_RC_ERR_NOT_SUPPORTED);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityDeleteInstance(
+ CMPIInstanceMI* mi,
+ const CMPIContext* cc,
+ const CMPIResult* cr,
+ const CMPIObjectPath* cop)
+{
+ CMReturn(CMPI_RC_ERR_NOT_SUPPORTED);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityExecQuery(
+ CMPIInstanceMI* mi,
+ const CMPIContext* cc,
+ const CMPIResult* cr,
+ const CMPIObjectPath* cop,
+ const char* lang,
+ const char* query)
+{
+ CMReturn(CMPI_RC_ERR_NOT_SUPPORTED);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityAssociationCleanup(
+ CMPIAssociationMI* mi,
+ const CMPIContext* cc,
+ CMPIBoolean term)
+{
+ CMReturn(CMPI_RC_OK);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityAssociators(
+ CMPIAssociationMI* mi,
+ const CMPIContext* cc,
+ const CMPIResult* cr,
+ const CMPIObjectPath* cop,
+ const char* assocClass,
+ const char* resultClass,
+ const char* role,
+ const char* resultRole,
+ const char** properties)
+{
+ return KDefaultAssociators(
+ _cb,
+ mi,
+ cc,
+ cr,
+ cop,
+ LMI_DiskDriveElementSoftwareIdentity_ClassName,
+ assocClass,
+ resultClass,
+ role,
+ resultRole,
+ properties);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityAssociatorNames(
+ CMPIAssociationMI* mi,
+ const CMPIContext* cc,
+ const CMPIResult* cr,
+ const CMPIObjectPath* cop,
+ const char* assocClass,
+ const char* resultClass,
+ const char* role,
+ const char* resultRole)
+{
+ return KDefaultAssociatorNames(
+ _cb,
+ mi,
+ cc,
+ cr,
+ cop,
+ LMI_DiskDriveElementSoftwareIdentity_ClassName,
+ assocClass,
+ resultClass,
+ role,
+ resultRole);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityReferences(
+ CMPIAssociationMI* mi,
+ const CMPIContext* cc,
+ const CMPIResult* cr,
+ const CMPIObjectPath* cop,
+ const char* assocClass,
+ const char* role,
+ const char** properties)
+{
+ return KDefaultReferences(
+ _cb,
+ mi,
+ cc,
+ cr,
+ cop,
+ LMI_DiskDriveElementSoftwareIdentity_ClassName,
+ assocClass,
+ role,
+ properties);
+}
+
+static CMPIStatus LMI_DiskDriveElementSoftwareIdentityReferenceNames(
+ CMPIAssociationMI* mi,
+ const CMPIContext* cc,
+ const CMPIResult* cr,
+ const CMPIObjectPath* cop,
+ const char* assocClass,
+ const char* role)
+{
+ return KDefaultReferenceNames(
+ _cb,
+ mi,
+ cc,
+ cr,
+ cop,
+ LMI_DiskDriveElementSoftwareIdentity_ClassName,
+ assocClass,
+ role);
+}
+
+CMInstanceMIStub(
+ LMI_DiskDriveElementSoftwareIdentity,
+ LMI_DiskDriveElementSoftwareIdentity,
+ _cb,
+ LMI_DiskDriveElementSoftwareIdentityInitialize(ctx))
+
+CMAssociationMIStub(
+ LMI_DiskDriveElementSoftwareIdentity,
+ LMI_DiskDriveElementSoftwareIdentity,
+ _cb,
+ LMI_DiskDriveElementSoftwareIdentityInitialize(ctx))
+
+KONKRET_REGISTRATION(
+ "root/cimv2",
+ "LMI_DiskDriveElementSoftwareIdentity",
+ "LMI_DiskDriveElementSoftwareIdentity",
+ "instance association")