Boolean UNIX_BGPPeerUsesRouteMap::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "Collection")) { CIMInstance collectionValue; property.getValue().get(collectionValue); setCollection(collectionValue); } else if (String::equal(property.getName().getString(), "Member")) { CIMInstance memberValue; property.getValue().get(memberValue); setMember(memberValue); } else if (String::equal(property.getName().getString(), "MapSequence")) { Uint16 mapSequenceValue; property.getValue().get(mapSequenceValue); setMapSequence(mapSequenceValue); } } return true; }
Boolean UNIX_AssociatedSupplyCurrentSensor::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "Antecedent")) { CIMInstance antecedentValue; property.getValue().get(antecedentValue); setAntecedent(antecedentValue); } else if (String::equal(property.getName().getString(), "Dependent")) { CIMInstance dependentValue; property.getValue().get(dependentValue); setDependent(dependentValue); } else if (String::equal(property.getName().getString(), "MonitoringRange")) { Uint16 monitoringRangeValue; property.getValue().get(monitoringRangeValue); setMonitoringRange(monitoringRangeValue); } } return true; }
ObjectNormalizer::ObjectNormalizer( const CIMClass& cimClass, Boolean includeQualifiers, Boolean includeClassOrigin, const CIMNamespaceName& nameSpace, SharedPtr<NormalizerContext>& context) : _cimClass(cimClass), _includeQualifiers(includeQualifiers), _includeClassOrigin(includeClassOrigin), _context(context), _nameSpace(nameSpace) { if (!_cimClass.isUninitialized()) { // ATTN: the following code is intended to expedite normalizing // instances and instance object paths by establishing the keys // once now rather than multiple times later. it is biased // toward providers that return many instances with many properties. // build a reference object path within the class Array<CIMKeyBinding> keys; for (Uint32 i = 0, n = _cimClass.getPropertyCount(); i < n; i++) { CIMConstProperty referenceProperty = _cimClass.getProperty(i); Uint32 pos = referenceProperty.findQualifier("key"); if ((pos != PEG_NOT_FOUND) && (referenceProperty.getQualifier(pos).getValue().equal( CIMValue(true)))) { if (referenceProperty.getType() == CIMTYPE_REFERENCE) { // ATTN: a fake reference is inserted in the key so that // the _BubbleSort() method in CIMObjectPath does not // throw and exception. It implicitly validates keys of // type REFERENCE so just place a dummy value for now. // The value will be replaced by the normalized object // later. keys.append(CIMKeyBinding(referenceProperty.getName(), "class.key=\"value\"", CIMKeyBinding::REFERENCE)); } else { keys.append(CIMKeyBinding(referenceProperty.getName(), referenceProperty.getValue())); } } } // update class object path CIMObjectPath cimObjectPath(_cimClass.getPath()); cimObjectPath.setKeyBindings(keys); _cimClass.setPath(cimObjectPath); } }
void _Check(const String& name, CIMConstProperty& p, T* tag) { if (p.getName() == name) { if (IsArray(tag) != p.isArray() || GetType(tag) != p.getType()) throw CIMException(CIM_ERR_TYPE_MISMATCH, name); } }
static CMPIStatus resultReturnInstance(const CMPIResult* eRes, const CMPIInstance* eInst) { InstanceResponseHandler* res=(InstanceResponseHandler*)eRes->hdl; if ((res == NULL) || (eInst == NULL)) CMReturn(CMPI_RC_ERR_INVALID_PARAMETER); if (!eInst->hdl) CMReturn(CMPI_RC_ERR_INVALID_PARAMETER); if ((((CMPI_Result*)eRes)->flags & RESULT_set)==0) { res->processing(); ((CMPI_Result*)eRes)->flags|=RESULT_set; } CIMInstance& inst=*(CIMInstance*)(eInst->hdl); CMPI_Result *xRes=(CMPI_Result*)eRes; const CIMObjectPath& op=inst.getPath(); CIMClass *cc=mbGetClass(xRes->xBroker,op); CIMObjectPath iop=inst.buildPath(*cc); iop.setNameSpace(op.getNameSpace()); inst.setPath(iop); // Check if a property filter has been set. If yes throw out // all properties which are not found in the filter list. char **listroot=(char**)(reinterpret_cast<const CMPI_Object*>(eInst))->priv; if (listroot && *listroot) { int propertyCount = inst.getPropertyCount()-1; for (int idx=propertyCount; idx >=0 ; idx--) { CIMConstProperty prop = inst.getProperty(idx); String sName = prop.getName().getString(); char * name = strdup(sName.getCString()); char **list = listroot; int found = false; while (*list) { if (System::strcasecmp(name,*list)==0) { found = true; break; } list++; } free(name); if (!found) { inst.removeProperty(idx); } } } res->deliver(inst); CMReturn(CMPI_RC_OK); }
Boolean UNIX_AssociatedTargetMaskingGroup::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "Antecedent")) { CIMInstance antecedentValue; property.getValue().get(antecedentValue); setAntecedent(antecedentValue); } else if (String::equal(property.getName().getString(), "Dependent")) { CIMInstance dependentValue; property.getValue().get(dependentValue); setDependent(dependentValue); } } return true; }
Boolean UNIX_BGPServiceAttributes::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "GroupComponent")) { CIMInstance groupComponentValue; property.getValue().get(groupComponentValue); setGroupComponent(groupComponentValue); } else if (String::equal(property.getName().getString(), "PartComponent")) { CIMInstance partComponentValue; property.getValue().get(partComponentValue); setPartComponent(partComponentValue); } } return true; }
Boolean UNIX_BGPServiceStatistics::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "Stats")) { CIMInstance statsValue; property.getValue().get(statsValue); setStats(statsValue); } else if (String::equal(property.getName().getString(), "Element")) { CIMInstance elementValue; property.getValue().get(elementValue); setElement(elementValue); } } return true; }
// KS Mar 05 - The following removal functions are very inefficient and should // be optimized to avoid the multiple memory moves. Actually, the remove // qualifiers should be added as a function and optimized that once. void CIMInstanceRep::filter( Boolean includeQualifiers, Boolean includeClassOrigin, const CIMPropertyList& propertyList) { // Filter any qualifiers from this instance. if (!includeQualifiers && _qualifiers.getCount() > 0) { while (_qualifiers.getCount()) { _qualifiers.removeQualifier(0); } } // For each property, remove if not in propertylist for (Uint32 i = 0 ; i < _properties.size(); i++) { CIMConstProperty p = getProperty(i); CIMName name = p.getName(); Array<CIMName> pl = propertyList.getPropertyNameArray(); if (propertyList.isNull() || Contains(pl, name)) { // test ClassOrigin and possibly remove if (!includeClassOrigin) { _properties[i].setClassOrigin(CIMName()); } // remove qualifiers if required. if (!includeQualifiers && _properties[i].getQualifierCount() > 0) { while (_properties[i].getQualifierCount() > 0) { _properties[i].removeQualifier(0); } } } else { _properties.remove(i--); } } return; }
Boolean UNIX_BlockStatisticsManifestCollection::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "InstanceID")) { String instanceIDValue; property.getValue().get(instanceIDValue); setInstanceID(instanceIDValue); } else if (String::equal(property.getName().getString(), "Caption")) { String captionValue; property.getValue().get(captionValue); setCaption(captionValue); } else if (String::equal(property.getName().getString(), "Description")) { String descriptionValue; property.getValue().get(descriptionValue); setDescription(descriptionValue); } else if (String::equal(property.getName().getString(), "ElementName")) { String elementNameValue; property.getValue().get(elementNameValue); setElementName(elementNameValue); } else if (String::equal(property.getName().getString(), "Generation")) { Uint64 generationValue; property.getValue().get(generationValue); setGeneration(generationValue); } else if (String::equal(property.getName().getString(), "IsDefault")) { Boolean isDefaultValue; property.getValue().get(isDefaultValue); setIsDefault(isDefaultValue); } } return true; }
Boolean UNIX_BinarySensor::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "InstanceID")) { String instanceIDValue; property.getValue().get(instanceIDValue); setInstanceID(instanceIDValue); } else if (String::equal(property.getName().getString(), "Caption")) { String captionValue; property.getValue().get(captionValue); setCaption(captionValue); } else if (String::equal(property.getName().getString(), "Description")) { String descriptionValue; property.getValue().get(descriptionValue); setDescription(descriptionValue); } else if (String::equal(property.getName().getString(), "ElementName")) { String elementNameValue; property.getValue().get(elementNameValue); setElementName(elementNameValue); } else if (String::equal(property.getName().getString(), "Generation")) { Uint64 generationValue; property.getValue().get(generationValue); setGeneration(generationValue); } else if (String::equal(property.getName().getString(), "InstallDate")) { CIMDateTime installDateValue; property.getValue().get(installDateValue); setInstallDate(installDateValue); } else if (String::equal(property.getName().getString(), "Name")) { String nameValue; property.getValue().get(nameValue); setName(nameValue); } else if (String::equal(property.getName().getString(), "OperationalStatus")) { Array<Uint16> operationalStatusValue; property.getValue().get(operationalStatusValue); setOperationalStatus(operationalStatusValue); } else if (String::equal(property.getName().getString(), "StatusDescriptions")) { Array<String> statusDescriptionsValue; property.getValue().get(statusDescriptionsValue); setStatusDescriptions(statusDescriptionsValue); } else if (String::equal(property.getName().getString(), "Status")) { String statusValue; property.getValue().get(statusValue); setStatus(statusValue); } else if (String::equal(property.getName().getString(), "HealthState")) { Uint16 healthStateValue; property.getValue().get(healthStateValue); setHealthState(healthStateValue); } else if (String::equal(property.getName().getString(), "CommunicationStatus")) { Uint16 communicationStatusValue; property.getValue().get(communicationStatusValue); setCommunicationStatus(communicationStatusValue); } else if (String::equal(property.getName().getString(), "DetailedStatus")) { Uint16 detailedStatusValue; property.getValue().get(detailedStatusValue); setDetailedStatus(detailedStatusValue); } else if (String::equal(property.getName().getString(), "OperatingStatus")) { Uint16 operatingStatusValue; property.getValue().get(operatingStatusValue); setOperatingStatus(operatingStatusValue); } else if (String::equal(property.getName().getString(), "PrimaryStatus")) { Uint16 primaryStatusValue; property.getValue().get(primaryStatusValue); setPrimaryStatus(primaryStatusValue); } else if (String::equal(property.getName().getString(), "EnabledState")) { Uint16 enabledStateValue; property.getValue().get(enabledStateValue); setEnabledState(enabledStateValue); } else if (String::equal(property.getName().getString(), "OtherEnabledState")) { String otherEnabledStateValue; property.getValue().get(otherEnabledStateValue); setOtherEnabledState(otherEnabledStateValue); } else if (String::equal(property.getName().getString(), "RequestedState")) { Uint16 requestedStateValue; property.getValue().get(requestedStateValue); setRequestedState(requestedStateValue); } else if (String::equal(property.getName().getString(), "EnabledDefault")) { Uint16 enabledDefaultValue; property.getValue().get(enabledDefaultValue); setEnabledDefault(enabledDefaultValue); } else if (String::equal(property.getName().getString(), "TimeOfLastStateChange")) { CIMDateTime timeOfLastStateChangeValue; property.getValue().get(timeOfLastStateChangeValue); setTimeOfLastStateChange(timeOfLastStateChangeValue); } else if (String::equal(property.getName().getString(), "AvailableRequestedStates")) { Array<Uint16> availableRequestedStatesValue; property.getValue().get(availableRequestedStatesValue); setAvailableRequestedStates(availableRequestedStatesValue); } else if (String::equal(property.getName().getString(), "TransitioningToState")) { Uint16 transitioningToStateValue; property.getValue().get(transitioningToStateValue); setTransitioningToState(transitioningToStateValue); } else if (String::equal(property.getName().getString(), "AllocationState")) { String allocationStateValue; property.getValue().get(allocationStateValue); setAllocationState(allocationStateValue); } else if (String::equal(property.getName().getString(), "SystemCreationClassName")) { String systemCreationClassNameValue; property.getValue().get(systemCreationClassNameValue); setSystemCreationClassName(systemCreationClassNameValue); } else if (String::equal(property.getName().getString(), "SystemName")) { String systemNameValue; property.getValue().get(systemNameValue); setSystemName(systemNameValue); } else if (String::equal(property.getName().getString(), "CreationClassName")) { String creationClassNameValue; property.getValue().get(creationClassNameValue); setCreationClassName(creationClassNameValue); } else if (String::equal(property.getName().getString(), "DeviceID")) { String deviceIDValue; property.getValue().get(deviceIDValue); setDeviceID(deviceIDValue); } else if (String::equal(property.getName().getString(), "PowerManagementSupported")) { Boolean powerManagementSupportedValue; property.getValue().get(powerManagementSupportedValue); setPowerManagementSupported(powerManagementSupportedValue); } else if (String::equal(property.getName().getString(), "PowerManagementCapabilities")) { Array<Uint16> powerManagementCapabilitiesValue; property.getValue().get(powerManagementCapabilitiesValue); setPowerManagementCapabilities(powerManagementCapabilitiesValue); } else if (String::equal(property.getName().getString(), "Availability")) { Uint16 availabilityValue; property.getValue().get(availabilityValue); setAvailability(availabilityValue); } else if (String::equal(property.getName().getString(), "StatusInfo")) { Uint16 statusInfoValue; property.getValue().get(statusInfoValue); setStatusInfo(statusInfoValue); } else if (String::equal(property.getName().getString(), "LastErrorCode")) { Uint32 lastErrorCodeValue; property.getValue().get(lastErrorCodeValue); setLastErrorCode(lastErrorCodeValue); } else if (String::equal(property.getName().getString(), "ErrorDescription")) { String errorDescriptionValue; property.getValue().get(errorDescriptionValue); setErrorDescription(errorDescriptionValue); } else if (String::equal(property.getName().getString(), "ErrorCleared")) { Boolean errorClearedValue; property.getValue().get(errorClearedValue); setErrorCleared(errorClearedValue); } else if (String::equal(property.getName().getString(), "OtherIdentifyingInfo")) { Array<String> otherIdentifyingInfoValue; property.getValue().get(otherIdentifyingInfoValue); setOtherIdentifyingInfo(otherIdentifyingInfoValue); } else if (String::equal(property.getName().getString(), "PowerOnHours")) { Uint64 powerOnHoursValue; property.getValue().get(powerOnHoursValue); setPowerOnHours(powerOnHoursValue); } else if (String::equal(property.getName().getString(), "TotalPowerOnHours")) { Uint64 totalPowerOnHoursValue; property.getValue().get(totalPowerOnHoursValue); setTotalPowerOnHours(totalPowerOnHoursValue); } else if (String::equal(property.getName().getString(), "IdentifyingDescriptions")) { Array<String> identifyingDescriptionsValue; property.getValue().get(identifyingDescriptionsValue); setIdentifyingDescriptions(identifyingDescriptionsValue); } else if (String::equal(property.getName().getString(), "AdditionalAvailability")) { Array<Uint16> additionalAvailabilityValue; property.getValue().get(additionalAvailabilityValue); setAdditionalAvailability(additionalAvailabilityValue); } else if (String::equal(property.getName().getString(), "MaxQuiesceTime")) { Uint64 maxQuiesceTimeValue; property.getValue().get(maxQuiesceTimeValue); setMaxQuiesceTime(maxQuiesceTimeValue); } else if (String::equal(property.getName().getString(), "LocationIndicator")) { Uint16 locationIndicatorValue; property.getValue().get(locationIndicatorValue); setLocationIndicator(locationIndicatorValue); } else if (String::equal(property.getName().getString(), "SensorType")) { Uint16 sensorTypeValue; property.getValue().get(sensorTypeValue); setSensorType(sensorTypeValue); } else if (String::equal(property.getName().getString(), "OtherSensorTypeDescription")) { String otherSensorTypeDescriptionValue; property.getValue().get(otherSensorTypeDescriptionValue); setOtherSensorTypeDescription(otherSensorTypeDescriptionValue); } else if (String::equal(property.getName().getString(), "PossibleStates")) { Array<String> possibleStatesValue; property.getValue().get(possibleStatesValue); setPossibleStates(possibleStatesValue); } else if (String::equal(property.getName().getString(), "CurrentState")) { String currentStateValue; property.getValue().get(currentStateValue); setCurrentState(currentStateValue); } else if (String::equal(property.getName().getString(), "PollingInterval")) { Uint64 pollingIntervalValue; property.getValue().get(pollingIntervalValue); setPollingInterval(pollingIntervalValue); } else if (String::equal(property.getName().getString(), "SensorContext")) { String sensorContextValue; property.getValue().get(sensorContextValue); setSensorContext(sensorContextValue); } else if (String::equal(property.getName().getString(), "CurrentReading")) { Boolean currentReadingValue; property.getValue().get(currentReadingValue); setCurrentReading(currentReadingValue); } else if (String::equal(property.getName().getString(), "ExpectedReading")) { Boolean expectedReadingValue; property.getValue().get(expectedReadingValue); setExpectedReading(expectedReadingValue); } else if (String::equal(property.getName().getString(), "InterpretationOfTrue")) { String interpretationOfTrueValue; property.getValue().get(interpretationOfTrueValue); setInterpretationOfTrue(interpretationOfTrueValue); } else if (String::equal(property.getName().getString(), "InterpretationOfFalse")) { String interpretationOfFalseValue; property.getValue().get(interpretationOfFalseValue); setInterpretationOfFalse(interpretationOfFalseValue); } } return true; }
Boolean UNIX_BIOSString::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "InstanceID")) { String instanceIDValue; property.getValue().get(instanceIDValue); setInstanceID(instanceIDValue); } else if (String::equal(property.getName().getString(), "Caption")) { String captionValue; property.getValue().get(captionValue); setCaption(captionValue); } else if (String::equal(property.getName().getString(), "Description")) { String descriptionValue; property.getValue().get(descriptionValue); setDescription(descriptionValue); } else if (String::equal(property.getName().getString(), "ElementName")) { String elementNameValue; property.getValue().get(elementNameValue); setElementName(elementNameValue); } else if (String::equal(property.getName().getString(), "Generation")) { Uint64 generationValue; property.getValue().get(generationValue); setGeneration(generationValue); } else if (String::equal(property.getName().getString(), "AttributeName")) { String attributeNameValue; property.getValue().get(attributeNameValue); setAttributeName(attributeNameValue); } else if (String::equal(property.getName().getString(), "CurrentValue")) { Array<String> currentValueValue; property.getValue().get(currentValueValue); setCurrentValue(currentValueValue); } else if (String::equal(property.getName().getString(), "DefaultValue")) { Array<String> defaultValueValue; property.getValue().get(defaultValueValue); setDefaultValue(defaultValueValue); } else if (String::equal(property.getName().getString(), "PendingValue")) { Array<String> pendingValueValue; property.getValue().get(pendingValueValue); setPendingValue(pendingValueValue); } else if (String::equal(property.getName().getString(), "IsOrderedList")) { Boolean isOrderedListValue; property.getValue().get(isOrderedListValue); setIsOrderedList(isOrderedListValue); } else if (String::equal(property.getName().getString(), "IsReadOnly")) { Boolean isReadOnlyValue; property.getValue().get(isReadOnlyValue); setIsReadOnly(isReadOnlyValue); } else if (String::equal(property.getName().getString(), "StringType")) { Uint32 stringTypeValue; property.getValue().get(stringTypeValue); setStringType(stringTypeValue); } else if (String::equal(property.getName().getString(), "MinLength")) { Uint64 minLengthValue; property.getValue().get(minLengthValue); setMinLength(minLengthValue); } else if (String::equal(property.getName().getString(), "MaxLength")) { Uint64 maxLengthValue; property.getValue().get(maxLengthValue); setMaxLength(maxLengthValue); } else if (String::equal(property.getName().getString(), "ValueExpression")) { String valueExpressionValue; property.getValue().get(valueExpressionValue); setValueExpression(valueExpressionValue); } } return true; }
Boolean UNIX_CPUDiagnosticSettingData::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "InstanceID")) { String instanceIDValue; property.getValue().get(instanceIDValue); setInstanceID(instanceIDValue); } else if (String::equal(property.getName().getString(), "Caption")) { String captionValue; property.getValue().get(captionValue); setCaption(captionValue); } else if (String::equal(property.getName().getString(), "Description")) { String descriptionValue; property.getValue().get(descriptionValue); setDescription(descriptionValue); } else if (String::equal(property.getName().getString(), "ElementName")) { String elementNameValue; property.getValue().get(elementNameValue); setElementName(elementNameValue); } else if (String::equal(property.getName().getString(), "Generation")) { Uint64 generationValue; property.getValue().get(generationValue); setGeneration(generationValue); } else if (String::equal(property.getName().getString(), "ConfigurationName")) { String configurationNameValue; property.getValue().get(configurationNameValue); setConfigurationName(configurationNameValue); } else if (String::equal(property.getName().getString(), "ChangeableType")) { Uint16 changeableTypeValue; property.getValue().get(changeableTypeValue); setChangeableType(changeableTypeValue); } else if (String::equal(property.getName().getString(), "ComponentSetting")) { Array<String> componentSettingValue; property.getValue().get(componentSettingValue); setComponentSetting(componentSettingValue); } else if (String::equal(property.getName().getString(), "SoID")) { String soIDValue; property.getValue().get(soIDValue); setSoID(soIDValue); } else if (String::equal(property.getName().getString(), "SoOrgID")) { String soOrgIDValue; property.getValue().get(soOrgIDValue); setSoOrgID(soOrgIDValue); } else if (String::equal(property.getName().getString(), "HaltOnError")) { Boolean haltOnErrorValue; property.getValue().get(haltOnErrorValue); setHaltOnError(haltOnErrorValue); } else if (String::equal(property.getName().getString(), "QuickMode")) { Boolean quickModeValue; property.getValue().get(quickModeValue); setQuickMode(quickModeValue); } else if (String::equal(property.getName().getString(), "PercentOfTestCoverage")) { Uint8 percentOfTestCoverageValue; property.getValue().get(percentOfTestCoverageValue); setPercentOfTestCoverage(percentOfTestCoverageValue); } else if (String::equal(property.getName().getString(), "LoopControlParameter")) { Array<String> loopControlParameterValue; property.getValue().get(loopControlParameterValue); setLoopControlParameter(loopControlParameterValue); } else if (String::equal(property.getName().getString(), "LoopControl")) { Array<Uint16> loopControlValue; property.getValue().get(loopControlValue); setLoopControl(loopControlValue); } else if (String::equal(property.getName().getString(), "OtherLoopControlDescriptions")) { Array<String> otherLoopControlDescriptionsValue; property.getValue().get(otherLoopControlDescriptionsValue); setOtherLoopControlDescriptions(otherLoopControlDescriptionsValue); } else if (String::equal(property.getName().getString(), "ResultPersistence")) { Uint32 resultPersistenceValue; property.getValue().get(resultPersistenceValue); setResultPersistence(resultPersistenceValue); } else if (String::equal(property.getName().getString(), "LogOptions")) { Array<Uint16> logOptionsValue; property.getValue().get(logOptionsValue); setLogOptions(logOptionsValue); } else if (String::equal(property.getName().getString(), "OtherLogOptionsDescriptions")) { Array<String> otherLogOptionsDescriptionsValue; property.getValue().get(otherLogOptionsDescriptionsValue); setOtherLogOptionsDescriptions(otherLogOptionsDescriptionsValue); } else if (String::equal(property.getName().getString(), "LogStorage")) { Array<Uint16> logStorageValue; property.getValue().get(logStorageValue); setLogStorage(logStorageValue); } else if (String::equal(property.getName().getString(), "OtherLogStorageDescriptions")) { Array<String> otherLogStorageDescriptionsValue; property.getValue().get(otherLogStorageDescriptionsValue); setOtherLogStorageDescriptions(otherLogStorageDescriptionsValue); } else if (String::equal(property.getName().getString(), "VerbosityLevel")) { Array<Uint16> verbosityLevelValue; property.getValue().get(verbosityLevelValue); setVerbosityLevel(verbosityLevelValue); } else if (String::equal(property.getName().getString(), "QueryTimeout")) { Uint32 queryTimeoutValue; property.getValue().get(queryTimeoutValue); setQueryTimeout(queryTimeoutValue); } else if (String::equal(property.getName().getString(), "NonDestructive")) { Boolean nonDestructiveValue; property.getValue().get(nonDestructiveValue); setNonDestructive(nonDestructiveValue); } else if (String::equal(property.getName().getString(), "CoreVoltages")) { Array<Real32> coreVoltagesValue; property.getValue().get(coreVoltagesValue); setCoreVoltages(coreVoltagesValue); } else if (String::equal(property.getName().getString(), "CPUSpeeds")) { Array<Real32> cPUSpeedsValue; property.getValue().get(cPUSpeedsValue); setCPUSpeeds(cPUSpeedsValue); } else if (String::equal(property.getName().getString(), "Seed")) { Uint32 seedValue; property.getValue().get(seedValue); setSeed(seedValue); } } return true; }
Boolean UNIX_BIOSElement::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "InstanceID")) { String instanceIDValue; property.getValue().get(instanceIDValue); setInstanceID(instanceIDValue); } else if (String::equal(property.getName().getString(), "Caption")) { String captionValue; property.getValue().get(captionValue); setCaption(captionValue); } else if (String::equal(property.getName().getString(), "Description")) { String descriptionValue; property.getValue().get(descriptionValue); setDescription(descriptionValue); } else if (String::equal(property.getName().getString(), "ElementName")) { String elementNameValue; property.getValue().get(elementNameValue); setElementName(elementNameValue); } else if (String::equal(property.getName().getString(), "Generation")) { Uint64 generationValue; property.getValue().get(generationValue); setGeneration(generationValue); } else if (String::equal(property.getName().getString(), "InstallDate")) { CIMDateTime installDateValue; property.getValue().get(installDateValue); setInstallDate(installDateValue); } else if (String::equal(property.getName().getString(), "Name")) { String nameValue; property.getValue().get(nameValue); setName(nameValue); } else if (String::equal(property.getName().getString(), "OperationalStatus")) { Array<Uint16> operationalStatusValue; property.getValue().get(operationalStatusValue); setOperationalStatus(operationalStatusValue); } else if (String::equal(property.getName().getString(), "StatusDescriptions")) { Array<String> statusDescriptionsValue; property.getValue().get(statusDescriptionsValue); setStatusDescriptions(statusDescriptionsValue); } else if (String::equal(property.getName().getString(), "Status")) { String statusValue; property.getValue().get(statusValue); setStatus(statusValue); } else if (String::equal(property.getName().getString(), "HealthState")) { Uint16 healthStateValue; property.getValue().get(healthStateValue); setHealthState(healthStateValue); } else if (String::equal(property.getName().getString(), "CommunicationStatus")) { Uint16 communicationStatusValue; property.getValue().get(communicationStatusValue); setCommunicationStatus(communicationStatusValue); } else if (String::equal(property.getName().getString(), "DetailedStatus")) { Uint16 detailedStatusValue; property.getValue().get(detailedStatusValue); setDetailedStatus(detailedStatusValue); } else if (String::equal(property.getName().getString(), "OperatingStatus")) { Uint16 operatingStatusValue; property.getValue().get(operatingStatusValue); setOperatingStatus(operatingStatusValue); } else if (String::equal(property.getName().getString(), "PrimaryStatus")) { Uint16 primaryStatusValue; property.getValue().get(primaryStatusValue); setPrimaryStatus(primaryStatusValue); } else if (String::equal(property.getName().getString(), "Version")) { String versionValue; property.getValue().get(versionValue); setVersion(versionValue); } else if (String::equal(property.getName().getString(), "SoftwareElementState")) { Uint16 softwareElementStateValue; property.getValue().get(softwareElementStateValue); setSoftwareElementState(softwareElementStateValue); } else if (String::equal(property.getName().getString(), "SoftwareElementID")) { String softwareElementIDValue; property.getValue().get(softwareElementIDValue); setSoftwareElementID(softwareElementIDValue); } else if (String::equal(property.getName().getString(), "TargetOperatingSystem")) { Uint16 targetOperatingSystemValue; property.getValue().get(targetOperatingSystemValue); setTargetOperatingSystem(targetOperatingSystemValue); } else if (String::equal(property.getName().getString(), "OtherTargetOS")) { String otherTargetOSValue; property.getValue().get(otherTargetOSValue); setOtherTargetOS(otherTargetOSValue); } else if (String::equal(property.getName().getString(), "Manufacturer")) { String manufacturerValue; property.getValue().get(manufacturerValue); setManufacturer(manufacturerValue); } else if (String::equal(property.getName().getString(), "BuildNumber")) { String buildNumberValue; property.getValue().get(buildNumberValue); setBuildNumber(buildNumberValue); } else if (String::equal(property.getName().getString(), "SerialNumber")) { String serialNumberValue; property.getValue().get(serialNumberValue); setSerialNumber(serialNumberValue); } else if (String::equal(property.getName().getString(), "CodeSet")) { String codeSetValue; property.getValue().get(codeSetValue); setCodeSet(codeSetValue); } else if (String::equal(property.getName().getString(), "IdentificationCode")) { String identificationCodeValue; property.getValue().get(identificationCodeValue); setIdentificationCode(identificationCodeValue); } else if (String::equal(property.getName().getString(), "LanguageEdition")) { String languageEditionValue; property.getValue().get(languageEditionValue); setLanguageEdition(languageEditionValue); } else if (String::equal(property.getName().getString(), "PrimaryBIOS")) { Boolean primaryBIOSValue; property.getValue().get(primaryBIOSValue); setPrimaryBIOS(primaryBIOSValue); } else if (String::equal(property.getName().getString(), "ListOfLanguages")) { Array<String> listOfLanguagesValue; property.getValue().get(listOfLanguagesValue); setListOfLanguages(listOfLanguagesValue); } else if (String::equal(property.getName().getString(), "CurrentLanguage")) { String currentLanguageValue; property.getValue().get(currentLanguageValue); setCurrentLanguage(currentLanguageValue); } else if (String::equal(property.getName().getString(), "LoadedStartingAddress")) { Uint64 loadedStartingAddressValue; property.getValue().get(loadedStartingAddressValue); setLoadedStartingAddress(loadedStartingAddressValue); } else if (String::equal(property.getName().getString(), "LoadedEndingAddress")) { Uint64 loadedEndingAddressValue; property.getValue().get(loadedEndingAddressValue); setLoadedEndingAddress(loadedEndingAddressValue); } else if (String::equal(property.getName().getString(), "LoadUtilityInformation")) { String loadUtilityInformationValue; property.getValue().get(loadUtilityInformationValue); setLoadUtilityInformation(loadUtilityInformationValue); } else if (String::equal(property.getName().getString(), "ReleaseDate")) { CIMDateTime releaseDateValue; property.getValue().get(releaseDateValue); setReleaseDate(releaseDateValue); } else if (String::equal(property.getName().getString(), "SystemBIOSMajorRelease")) { Uint8 systemBIOSMajorReleaseValue; property.getValue().get(systemBIOSMajorReleaseValue); setSystemBIOSMajorRelease(systemBIOSMajorReleaseValue); } else if (String::equal(property.getName().getString(), "SystemBIOSMinorRelease")) { Uint8 systemBIOSMinorReleaseValue; property.getValue().get(systemBIOSMinorReleaseValue); setSystemBIOSMinorRelease(systemBIOSMinorReleaseValue); } else if (String::equal(property.getName().getString(), "EmbeddedControllerFirmwareMajorRelease")) { Uint8 embeddedControllerFirmwareMajorReleaseValue; property.getValue().get(embeddedControllerFirmwareMajorReleaseValue); setEmbeddedControllerFirmwareMajorRelease(embeddedControllerFirmwareMajorReleaseValue); } else if (String::equal(property.getName().getString(), "EmbeddedControllerFirmwareMinorRelease")) { Uint8 embeddedControllerFirmwareMinorReleaseValue; property.getValue().get(embeddedControllerFirmwareMinorReleaseValue); setEmbeddedControllerFirmwareMinorRelease(embeddedControllerFirmwareMinorReleaseValue); } else if (String::equal(property.getName().getString(), "RegistryURIs")) { Array<String> registryURIsValue; property.getValue().get(registryURIsValue); setRegistryURIs(registryURIsValue); } } return true; }
Boolean UNIX_BlockStatisticsManifest::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "InstanceID")) { String instanceIDValue; property.getValue().get(instanceIDValue); setInstanceID(instanceIDValue); } else if (String::equal(property.getName().getString(), "Caption")) { String captionValue; property.getValue().get(captionValue); setCaption(captionValue); } else if (String::equal(property.getName().getString(), "Description")) { String descriptionValue; property.getValue().get(descriptionValue); setDescription(descriptionValue); } else if (String::equal(property.getName().getString(), "ElementName")) { String elementNameValue; property.getValue().get(elementNameValue); setElementName(elementNameValue); } else if (String::equal(property.getName().getString(), "Generation")) { Uint64 generationValue; property.getValue().get(generationValue); setGeneration(generationValue); } else if (String::equal(property.getName().getString(), "ElementType")) { Uint16 elementTypeValue; property.getValue().get(elementTypeValue); setElementType(elementTypeValue); } else if (String::equal(property.getName().getString(), "IncludeStartStatisticTime")) { Boolean includeStartStatisticTimeValue; property.getValue().get(includeStartStatisticTimeValue); setIncludeStartStatisticTime(includeStartStatisticTimeValue); } else if (String::equal(property.getName().getString(), "IncludeStatisticTime")) { Boolean includeStatisticTimeValue; property.getValue().get(includeStatisticTimeValue); setIncludeStatisticTime(includeStatisticTimeValue); } else if (String::equal(property.getName().getString(), "IncludeTotalIOs")) { Boolean includeTotalIOsValue; property.getValue().get(includeTotalIOsValue); setIncludeTotalIOs(includeTotalIOsValue); } else if (String::equal(property.getName().getString(), "IncludeKBytesTransferred")) { Boolean includeKBytesTransferredValue; property.getValue().get(includeKBytesTransferredValue); setIncludeKBytesTransferred(includeKBytesTransferredValue); } else if (String::equal(property.getName().getString(), "IncludeIOTimeCounter")) { Boolean includeIOTimeCounterValue; property.getValue().get(includeIOTimeCounterValue); setIncludeIOTimeCounter(includeIOTimeCounterValue); } else if (String::equal(property.getName().getString(), "IncludeReadIOs")) { Boolean includeReadIOsValue; property.getValue().get(includeReadIOsValue); setIncludeReadIOs(includeReadIOsValue); } else if (String::equal(property.getName().getString(), "IncludeReadHitIOs")) { Boolean includeReadHitIOsValue; property.getValue().get(includeReadHitIOsValue); setIncludeReadHitIOs(includeReadHitIOsValue); } else if (String::equal(property.getName().getString(), "IncludeReadIOTimeCounter")) { Boolean includeReadIOTimeCounterValue; property.getValue().get(includeReadIOTimeCounterValue); setIncludeReadIOTimeCounter(includeReadIOTimeCounterValue); } else if (String::equal(property.getName().getString(), "IncludeReadHitIOTimeCounter")) { Boolean includeReadHitIOTimeCounterValue; property.getValue().get(includeReadHitIOTimeCounterValue); setIncludeReadHitIOTimeCounter(includeReadHitIOTimeCounterValue); } else if (String::equal(property.getName().getString(), "IncludeKBytesRead")) { Boolean includeKBytesReadValue; property.getValue().get(includeKBytesReadValue); setIncludeKBytesRead(includeKBytesReadValue); } else if (String::equal(property.getName().getString(), "IncludeWriteIOs")) { Boolean includeWriteIOsValue; property.getValue().get(includeWriteIOsValue); setIncludeWriteIOs(includeWriteIOsValue); } else if (String::equal(property.getName().getString(), "IncludeWriteHitIOs")) { Boolean includeWriteHitIOsValue; property.getValue().get(includeWriteHitIOsValue); setIncludeWriteHitIOs(includeWriteHitIOsValue); } else if (String::equal(property.getName().getString(), "IncludeWriteIOTimeCounter")) { Boolean includeWriteIOTimeCounterValue; property.getValue().get(includeWriteIOTimeCounterValue); setIncludeWriteIOTimeCounter(includeWriteIOTimeCounterValue); } else if (String::equal(property.getName().getString(), "IncludeWriteHitIOTimeCounter")) { Boolean includeWriteHitIOTimeCounterValue; property.getValue().get(includeWriteHitIOTimeCounterValue); setIncludeWriteHitIOTimeCounter(includeWriteHitIOTimeCounterValue); } else if (String::equal(property.getName().getString(), "IncludeKBytesWritten")) { Boolean includeKBytesWrittenValue; property.getValue().get(includeKBytesWrittenValue); setIncludeKBytesWritten(includeKBytesWrittenValue); } else if (String::equal(property.getName().getString(), "IncludeIdleTimeCounter")) { Boolean includeIdleTimeCounterValue; property.getValue().get(includeIdleTimeCounterValue); setIncludeIdleTimeCounter(includeIdleTimeCounterValue); } else if (String::equal(property.getName().getString(), "IncludeMaintOp")) { Boolean includeMaintOpValue; property.getValue().get(includeMaintOpValue); setIncludeMaintOp(includeMaintOpValue); } else if (String::equal(property.getName().getString(), "IncludeMaintTimeCounter")) { Boolean includeMaintTimeCounterValue; property.getValue().get(includeMaintTimeCounterValue); setIncludeMaintTimeCounter(includeMaintTimeCounterValue); } else if (String::equal(property.getName().getString(), "CSVSequence")) { Array<String> cSVSequenceValue; property.getValue().get(cSVSequenceValue); setCSVSequence(cSVSequenceValue); } else if (String::equal(property.getName().getString(), "CSVRateSequence")) { Array<String> cSVRateSequenceValue; property.getValue().get(cSVRateSequenceValue); setCSVRateSequence(cSVRateSequenceValue); } else if (String::equal(property.getName().getString(), "IncludeKBytesReadRate")) { Boolean includeKBytesReadRateValue; property.getValue().get(includeKBytesReadRateValue); setIncludeKBytesReadRate(includeKBytesReadRateValue); } else if (String::equal(property.getName().getString(), "IncludeKBytesTransferredRate")) { Boolean includeKBytesTransferredRateValue; property.getValue().get(includeKBytesTransferredRateValue); setIncludeKBytesTransferredRate(includeKBytesTransferredRateValue); } else if (String::equal(property.getName().getString(), "IncludeKBytesWrittenRate")) { Boolean includeKBytesWrittenRateValue; property.getValue().get(includeKBytesWrittenRateValue); setIncludeKBytesWrittenRate(includeKBytesWrittenRateValue); } else if (String::equal(property.getName().getString(), "IncludeMaintOpRate")) { Boolean includeMaintOpRateValue; property.getValue().get(includeMaintOpRateValue); setIncludeMaintOpRate(includeMaintOpRateValue); } else if (String::equal(property.getName().getString(), "IncludeRateIntervalEndTime")) { Boolean includeRateIntervalEndTimeValue; property.getValue().get(includeRateIntervalEndTimeValue); setIncludeRateIntervalEndTime(includeRateIntervalEndTimeValue); } else if (String::equal(property.getName().getString(), "IncludeRateIntervalStartTime")) { Boolean includeRateIntervalStartTimeValue; property.getValue().get(includeRateIntervalStartTimeValue); setIncludeRateIntervalStartTime(includeRateIntervalStartTimeValue); } else if (String::equal(property.getName().getString(), "IncludeReadHitIOsRate")) { Boolean includeReadHitIOsRateValue; property.getValue().get(includeReadHitIOsRateValue); setIncludeReadHitIOsRate(includeReadHitIOsRateValue); } else if (String::equal(property.getName().getString(), "IncludeReadIOsRate")) { Boolean includeReadIOsRateValue; property.getValue().get(includeReadIOsRateValue); setIncludeReadIOsRate(includeReadIOsRateValue); } else if (String::equal(property.getName().getString(), "IncludeTotalIOsRate")) { Boolean includeTotalIOsRateValue; property.getValue().get(includeTotalIOsRateValue); setIncludeTotalIOsRate(includeTotalIOsRateValue); } else if (String::equal(property.getName().getString(), "IncludeWriteHitIOsRate")) { Boolean includeWriteHitIOsRateValue; property.getValue().get(includeWriteHitIOsRateValue); setIncludeWriteHitIOsRate(includeWriteHitIOsRateValue); } else if (String::equal(property.getName().getString(), "IncludeWriteIOsRate")) { Boolean includeWriteIOsRateValue; property.getValue().get(includeWriteIOsRateValue); setIncludeWriteIOsRate(includeWriteIOsRateValue); } else if (String::equal(property.getName().getString(), "RateElementType")) { Uint16 rateElementTypeValue; property.getValue().get(rateElementTypeValue); setRateElementType(rateElementTypeValue); } } return true; }
CIMInstance ObjectNormalizer::processInstance( const CIMInstance& cimInstance) const { // pre-checks if (!_enableNormalization || _cimClass.isUninitialized()) { // do nothing return cimInstance; } /* // ATTN: moving similar logic to the response handlers because this // type of error should be checked regardless with or without // normalization enabled. if (cimInstance.isUninitialized()) { throw CIMException(CIM_ERR_FAILED, "unintialized instance object."); } */ CIMInstance normalizedInstance(_cimClass.getClassName()); // proces object path normalizedInstance.setPath( processInstanceObjectPath(cimInstance.getPath())); // process instance qualifiers if (_includeQualifiers) { // propagate class qualifiers for (Uint32 i = 0, n = _cimClass.getQualifierCount(); i < n; i++) { CIMConstQualifier referenceQualifier = _cimClass.getQualifier(i); Uint32 pos = cimInstance.findQualifier(referenceQualifier.getName()); // update value if qualifier is present in the specified property if (pos != PEG_NOT_FOUND) { CIMConstQualifier cimQualifier = cimInstance.getQualifier(pos); CIMQualifier normalizedQualifier = _processQualifier( referenceQualifier, cimQualifier); normalizedInstance.addQualifier(normalizedQualifier); } else { normalizedInstance.addQualifier(referenceQualifier.clone()); } } } // check property names and types. any properties in the class but not // in the instance are implicitly dropped. for (Uint32 i = 0, n = cimInstance.getPropertyCount(); i < n; i++) { CIMConstProperty instProperty = cimInstance.getProperty(i); Uint32 pos = _cimClass.findProperty(instProperty.getName()); if (pos != PEG_NOT_FOUND) { CIMConstProperty cimProperty = _cimClass.getProperty(pos); CIMProperty normalizedProperty = processProperty( cimProperty, instProperty, _includeQualifiers, _includeClassOrigin, _context.get(), _nameSpace); normalizedInstance.addProperty(normalizedProperty); } } return normalizedInstance; }
void CIMInstanceRep::resolve( DeclContext* context, const CIMNamespaceName& nameSpace, CIMConstClass& cimClassOut, Boolean propagateQualifiers) { // ATTN: Verify that references are initialized. if (!context) throw NullPointer(); //---------------------------------------------------------------------- // First obtain the class: //---------------------------------------------------------------------- CIMConstClass cimClass = context->lookupClass(nameSpace, _reference.getClassName()); if (cimClass.isUninitialized()) throw PEGASUS_CIM_EXCEPTION(CIM_ERR_INVALID_CLASS, _reference.getClassName().getString ()); cimClassOut = cimClass; //---------------------------------------------------------------------- // Disallow instantiation of abstract classes. //---------------------------------------------------------------------- if (cimClass.isAbstract()) throw InstantiatedAbstractClass(_reference.getClassName().getString ()); //---------------------------------------------------------------------- // Validate and propagate qualifiers. //---------------------------------------------------------------------- _qualifiers.resolve( context, nameSpace, (cimClass.isAssociation()) ? CIMScope::ASSOCIATION : CIMScope::CLASS, false, cimClass._rep->_qualifiers, propagateQualifiers); //---------------------------------------------------------------------- // First iterate the properties of this instance and verify that // each one is defined in the class and then resolve each one. //---------------------------------------------------------------------- CIMName className = cimClass.getClassName(); for (Uint32 i = 0, n = _properties.size(); i < n; i++) { CIMProperty& property = _properties[i]; Uint32 index = cimClass.findProperty(property.getName()); if (index == PEG_NOT_FOUND) { // // Allow addition of Creator property to Indication Subscription, // Filter and Handler instances // // l10n add language property support if (!(((className.equal (CIMName (PEGASUS_CLASSNAME_INDSUBSCRIPTION))) || (className.equal (CIMName (PEGASUS_CLASSNAME_FORMATTEDINDSUBSCRIPTION))) || (className.equal (CIMName (PEGASUS_CLASSNAME_INDHANDLER_CIMXML))) || (className.equal (CIMName (PEGASUS_CLASSNAME_LSTNRDST_CIMXML))) || (className.equal (CIMName (PEGASUS_CLASSNAME_INDHANDLER_SNMP))) || #ifdef PEGASUS_ENABLE_SYSTEM_LOG_HANDLER (className.equal (CIMName (PEGASUS_CLASSNAME_LSTNRDST_SYSTEM_LOG))) || #endif #ifdef PEGASUS_ENABLE_EMAIL_HANDLER (className.equal (CIMName (PEGASUS_CLASSNAME_LSTNRDST_EMAIL))) || #endif (className.equal (CIMName (PEGASUS_CLASSNAME_INDFILTER)))) && ((property.getName ().equal (CIMName (PEGASUS_PROPERTYNAME_INDSUB_CREATOR))) || (property.getName ().equal (CIMName (PEGASUS_PROPERTYNAME_INDSUB_ACCEPTLANGS))) || (property.getName ().equal (CIMName (PEGASUS_PROPERTYNAME_INDSUB_CONTENTLANGS)))))) { throw NoSuchProperty(property.getName().getString ()); } } else { // resolve the property Resolver::resolveProperty (property, context, nameSpace, true, cimClass.getProperty (index), propagateQualifiers); } } //---------------------------------------------------------------------- // Inject all properties from the class that are not included in the // instance. Copy over the class-origin and set the propagated flag // to true. NOTE: The propagated flag indicates that the property // was not part of the property set input with the create and // was inherited from the default in the class (see cimxml spec sect 3.1.5) //---------------------------------------------------------------------- for (Uint32 i = 0, m = 0, n = cimClass.getPropertyCount(); i < n; i++) { CIMConstProperty property = cimClass.getProperty(i); const CIMName& name = property.getName(); // See if this instance already contains a property with this name: Boolean found = false; for (Uint32 j = m, s = _properties.size(); j < s; j++) { if (name.equal(_properties[j].getName())) { found = true; break; } } if (!found) { CIMProperty p; if (propagateQualifiers) { p = property.clone(); } else { p = CIMProperty( property.getName(), property.getValue(), property.getArraySize(), property.getReferenceClassName(), property.getClassOrigin(), property.getPropagated()); } p.setPropagated(true); _properties.insert(m++, p); } } }
Boolean UNIX_CPUDiagnosticTest::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "InstanceID")) { String instanceIDValue; property.getValue().get(instanceIDValue); setInstanceID(instanceIDValue); } else if (String::equal(property.getName().getString(), "Caption")) { String captionValue; property.getValue().get(captionValue); setCaption(captionValue); } else if (String::equal(property.getName().getString(), "Description")) { String descriptionValue; property.getValue().get(descriptionValue); setDescription(descriptionValue); } else if (String::equal(property.getName().getString(), "ElementName")) { String elementNameValue; property.getValue().get(elementNameValue); setElementName(elementNameValue); } else if (String::equal(property.getName().getString(), "Generation")) { Uint64 generationValue; property.getValue().get(generationValue); setGeneration(generationValue); } else if (String::equal(property.getName().getString(), "InstallDate")) { CIMDateTime installDateValue; property.getValue().get(installDateValue); setInstallDate(installDateValue); } else if (String::equal(property.getName().getString(), "Name")) { String nameValue; property.getValue().get(nameValue); setName(nameValue); } else if (String::equal(property.getName().getString(), "OperationalStatus")) { Array<Uint16> operationalStatusValue; property.getValue().get(operationalStatusValue); setOperationalStatus(operationalStatusValue); } else if (String::equal(property.getName().getString(), "StatusDescriptions")) { Array<String> statusDescriptionsValue; property.getValue().get(statusDescriptionsValue); setStatusDescriptions(statusDescriptionsValue); } else if (String::equal(property.getName().getString(), "Status")) { String statusValue; property.getValue().get(statusValue); setStatus(statusValue); } else if (String::equal(property.getName().getString(), "HealthState")) { Uint16 healthStateValue; property.getValue().get(healthStateValue); setHealthState(healthStateValue); } else if (String::equal(property.getName().getString(), "CommunicationStatus")) { Uint16 communicationStatusValue; property.getValue().get(communicationStatusValue); setCommunicationStatus(communicationStatusValue); } else if (String::equal(property.getName().getString(), "DetailedStatus")) { Uint16 detailedStatusValue; property.getValue().get(detailedStatusValue); setDetailedStatus(detailedStatusValue); } else if (String::equal(property.getName().getString(), "OperatingStatus")) { Uint16 operatingStatusValue; property.getValue().get(operatingStatusValue); setOperatingStatus(operatingStatusValue); } else if (String::equal(property.getName().getString(), "PrimaryStatus")) { Uint16 primaryStatusValue; property.getValue().get(primaryStatusValue); setPrimaryStatus(primaryStatusValue); } else if (String::equal(property.getName().getString(), "EnabledState")) { Uint16 enabledStateValue; property.getValue().get(enabledStateValue); setEnabledState(enabledStateValue); } else if (String::equal(property.getName().getString(), "OtherEnabledState")) { String otherEnabledStateValue; property.getValue().get(otherEnabledStateValue); setOtherEnabledState(otherEnabledStateValue); } else if (String::equal(property.getName().getString(), "RequestedState")) { Uint16 requestedStateValue; property.getValue().get(requestedStateValue); setRequestedState(requestedStateValue); } else if (String::equal(property.getName().getString(), "EnabledDefault")) { Uint16 enabledDefaultValue; property.getValue().get(enabledDefaultValue); setEnabledDefault(enabledDefaultValue); } else if (String::equal(property.getName().getString(), "TimeOfLastStateChange")) { CIMDateTime timeOfLastStateChangeValue; property.getValue().get(timeOfLastStateChangeValue); setTimeOfLastStateChange(timeOfLastStateChangeValue); } else if (String::equal(property.getName().getString(), "AvailableRequestedStates")) { Array<Uint16> availableRequestedStatesValue; property.getValue().get(availableRequestedStatesValue); setAvailableRequestedStates(availableRequestedStatesValue); } else if (String::equal(property.getName().getString(), "TransitioningToState")) { Uint16 transitioningToStateValue; property.getValue().get(transitioningToStateValue); setTransitioningToState(transitioningToStateValue); } else if (String::equal(property.getName().getString(), "SystemCreationClassName")) { String systemCreationClassNameValue; property.getValue().get(systemCreationClassNameValue); setSystemCreationClassName(systemCreationClassNameValue); } else if (String::equal(property.getName().getString(), "SystemName")) { String systemNameValue; property.getValue().get(systemNameValue); setSystemName(systemNameValue); } else if (String::equal(property.getName().getString(), "CreationClassName")) { String creationClassNameValue; property.getValue().get(creationClassNameValue); setCreationClassName(creationClassNameValue); } else if (String::equal(property.getName().getString(), "PrimaryOwnerName")) { String primaryOwnerNameValue; property.getValue().get(primaryOwnerNameValue); setPrimaryOwnerName(primaryOwnerNameValue); } else if (String::equal(property.getName().getString(), "PrimaryOwnerContact")) { String primaryOwnerContactValue; property.getValue().get(primaryOwnerContactValue); setPrimaryOwnerContact(primaryOwnerContactValue); } else if (String::equal(property.getName().getString(), "StartMode")) { String startModeValue; property.getValue().get(startModeValue); setStartMode(startModeValue); } else if (String::equal(property.getName().getString(), "Started")) { Boolean startedValue; property.getValue().get(startedValue); setStarted(startedValue); } else if (String::equal(property.getName().getString(), "LoSID")) { String loSIDValue; property.getValue().get(loSIDValue); setLoSID(loSIDValue); } else if (String::equal(property.getName().getString(), "LoSOrgID")) { String loSOrgIDValue; property.getValue().get(loSOrgIDValue); setLoSOrgID(loSOrgIDValue); } else if (String::equal(property.getName().getString(), "Characteristics")) { Array<Uint16> characteristicsValue; property.getValue().get(characteristicsValue); setCharacteristics(characteristicsValue); } else if (String::equal(property.getName().getString(), "OtherCharacteristicDescription")) { String otherCharacteristicDescriptionValue; property.getValue().get(otherCharacteristicDescriptionValue); setOtherCharacteristicDescription(otherCharacteristicDescriptionValue); } else if (String::equal(property.getName().getString(), "OtherCharacteristicsDescriptions")) { Array<String> otherCharacteristicsDescriptionsValue; property.getValue().get(otherCharacteristicsDescriptionsValue); setOtherCharacteristicsDescriptions(otherCharacteristicsDescriptionsValue); } else if (String::equal(property.getName().getString(), "IsInUse")) { Boolean isInUseValue; property.getValue().get(isInUseValue); setIsInUse(isInUseValue); } else if (String::equal(property.getName().getString(), "ResourcesUsed")) { Array<Uint16> resourcesUsedValue; property.getValue().get(resourcesUsedValue); setResourcesUsed(resourcesUsedValue); } else if (String::equal(property.getName().getString(), "TestTypes")) { Array<Uint16> testTypesValue; property.getValue().get(testTypesValue); setTestTypes(testTypesValue); } else if (String::equal(property.getName().getString(), "OtherTestTypesDescriptions")) { Array<String> otherTestTypesDescriptionsValue; property.getValue().get(otherTestTypesDescriptionsValue); setOtherTestTypesDescriptions(otherTestTypesDescriptionsValue); } else if (String::equal(property.getName().getString(), "CPUTestType")) { Uint16 cPUTestTypeValue; property.getValue().get(cPUTestTypeValue); setCPUTestType(cPUTestTypeValue); } else if (String::equal(property.getName().getString(), "OtherCPUTestTypeDescription")) { String otherCPUTestTypeDescriptionValue; property.getValue().get(otherCPUTestTypeDescriptionValue); setOtherCPUTestTypeDescription(otherCPUTestTypeDescriptionValue); } } return true; }
CIMProperty ObjectNormalizer::processProperty( CIMConstProperty& referenceProperty, CIMConstProperty& instProperty, Boolean includeQualifiers, Boolean includeClassOrigin, NormalizerContext* context, const CIMNamespaceName& nameSpace) { // check name if (!referenceProperty.getName().equal(instProperty.getName())) { MessageLoaderParms message( "Common.ObjectNormalizer.INVALID_PROPERTY_NAME", "Invalid property name: $0", instProperty.getName().getString()); throw CIMException(CIM_ERR_FAILED, message); } // check type CIMType referencePropType = referenceProperty.getType(); CIMType instPropType = instProperty.getType(); if (referencePropType != instPropType) { MessageLoaderParms message( "Common.ObjectNormalizer.INVALID_PROPERTY_TYPE", "Invalid property type: $0", instProperty.getName().getString()); throw CIMException(CIM_ERR_FAILED, message); } // TODO: check array size? CIMProperty normalizedProperty( referenceProperty.getName(), referenceProperty.getValue(), // default value referenceProperty.getArraySize(), referenceProperty.getReferenceClassName(), CIMName(), false); // TODO: check override (especially for references)? // update value if (!instProperty.getValue().isNull()) { normalizedProperty.setValue(instProperty.getValue()); } // update class origin if (includeClassOrigin) { normalizedProperty.setClassOrigin(referenceProperty.getClassOrigin()); } // add qualifiers if (includeQualifiers) { // propagate class property qualifiers for (Uint32 i=0, n = referenceProperty.getQualifierCount(); i < n; i++) { CIMConstQualifier referenceQualifier = referenceProperty.getQualifier(i); Uint32 pos = instProperty.findQualifier(referenceQualifier.getName()); // update value if qualifier is present in the specified property if (pos != PEG_NOT_FOUND) { CIMConstQualifier cimQualifier = instProperty.getQualifier(pos); CIMQualifier normalizedQualifier = _processQualifier( referenceQualifier, cimQualifier); normalizedProperty.addQualifier(normalizedQualifier); } else { normalizedProperty.addQualifier(referenceQualifier.clone()); } } } #ifdef PEGASUS_SNIA_INTEROP_COMPATIBILITY else if (referenceProperty.getType() == CIMTYPE_INSTANCE) { Uin32 refPos = referenceProperty.findQualifier( PEGASUS_QUALIFIERNAME_EMBEDDEDINSTANCE); Uin32 cimPos = instProperty.findQualifier( PEGASUS_QUALIFIERNAME_EMBEDDEDINSTANCE); if (refPos != PEG_NOT_FOUND && cimPos == PEG_NOT_FOUND) { instProperty.addQualifier(refProperty.getQualifier(pos)); } } #endif // Check the type of the embedded instance against the class specified by // the EmbeddedInstance qualifier. We can only do this if the context // is non-zero. if (context != 0) { if (referenceProperty.getType() == CIMTYPE_INSTANCE) { Uint32 pos = referenceProperty.findQualifier( PEGASUS_QUALIFIERNAME_EMBEDDEDINSTANCE); PEGASUS_ASSERT(pos != PEG_NOT_FOUND); String qualClassStr; referenceProperty.getQualifier(pos).getValue().get( qualClassStr); CIMName embedInstClassName(qualClassStr); Array<CIMName> embeddedInstSubclasses = context->enumerateClassNames(nameSpace, embedInstClassName, true); embeddedInstSubclasses.append(embedInstClassName); Array<CIMInstance> embeddedInstances; if (referenceProperty.isArray()) { instProperty.getValue().get(embeddedInstances); } else { CIMInstance embeddedInst; instProperty.getValue().get(embeddedInst); embeddedInstances.append(embeddedInst); } Array<CIMClass> embeddedClassDefs; for (Uint32 i = 0, n = embeddedInstances.size(); i < n; ++i) { CIMInstance& currentInstance = embeddedInstances[i]; CIMName currentClassName = currentInstance.getClassName(); if (Contains(embeddedInstSubclasses, currentClassName)) { CIMClass embeddedClassDef; bool found = false; for (Uint32 j = 0, m = embeddedClassDefs.size(); j < m; ++j) { CIMClass& tmpClassDef = embeddedClassDefs[j]; if (tmpClassDef.getClassName() == currentClassName) { embeddedClassDef = tmpClassDef; found = true; } } if (!found) { embeddedClassDef = context->getClass(nameSpace, currentClassName); embeddedClassDefs.append(embeddedClassDef); } SharedPtr<NormalizerContext> tmpContext(context->clone()); ObjectNormalizer tmpNormalizer(embeddedClassDef, includeQualifiers, includeClassOrigin, nameSpace, tmpContext); if (currentInstance.getPath().getKeyBindings().size()==0) { currentInstance.setPath( currentInstance.buildPath(embeddedClassDef)); } embeddedInstances[i] = tmpNormalizer.processInstance(currentInstance); } else { MessageLoaderParms message( "Common.ObjectNormalizer." "INVALID_EMBEDDED_INSTANCE_TYPE", "Found embedded instance of type $0: was expecting " "$1 for property $2", currentClassName.getString(), qualClassStr, instProperty.getName().getString()); throw CIMException(CIM_ERR_FAILED, message); } } if (referenceProperty.isArray()) { normalizedProperty.setValue(CIMValue(embeddedInstances)); } else { normalizedProperty.setValue(CIMValue(embeddedInstances[0])); } } } return normalizedProperty; }
Boolean UNIX_BatchSAP::loadInstance(const CIMInstance &instance) { clearInstance(); Uint32 propertyCount = instance.getPropertyCount(); for(Uint32 i = 0; i < propertyCount; i++) { CIMConstProperty property = instance.getProperty(i); if (String::equal(property.getName().getString(), "InstanceID")) { String instanceIDValue; property.getValue().get(instanceIDValue); setInstanceID(instanceIDValue); } else if (String::equal(property.getName().getString(), "Caption")) { String captionValue; property.getValue().get(captionValue); setCaption(captionValue); } else if (String::equal(property.getName().getString(), "Description")) { String descriptionValue; property.getValue().get(descriptionValue); setDescription(descriptionValue); } else if (String::equal(property.getName().getString(), "ElementName")) { String elementNameValue; property.getValue().get(elementNameValue); setElementName(elementNameValue); } else if (String::equal(property.getName().getString(), "Generation")) { Uint64 generationValue; property.getValue().get(generationValue); setGeneration(generationValue); } else if (String::equal(property.getName().getString(), "InstallDate")) { CIMDateTime installDateValue; property.getValue().get(installDateValue); setInstallDate(installDateValue); } else if (String::equal(property.getName().getString(), "Name")) { String nameValue; property.getValue().get(nameValue); setName(nameValue); } else if (String::equal(property.getName().getString(), "OperationalStatus")) { Array<Uint16> operationalStatusValue; property.getValue().get(operationalStatusValue); setOperationalStatus(operationalStatusValue); } else if (String::equal(property.getName().getString(), "StatusDescriptions")) { Array<String> statusDescriptionsValue; property.getValue().get(statusDescriptionsValue); setStatusDescriptions(statusDescriptionsValue); } else if (String::equal(property.getName().getString(), "Status")) { String statusValue; property.getValue().get(statusValue); setStatus(statusValue); } else if (String::equal(property.getName().getString(), "HealthState")) { Uint16 healthStateValue; property.getValue().get(healthStateValue); setHealthState(healthStateValue); } else if (String::equal(property.getName().getString(), "CommunicationStatus")) { Uint16 communicationStatusValue; property.getValue().get(communicationStatusValue); setCommunicationStatus(communicationStatusValue); } else if (String::equal(property.getName().getString(), "DetailedStatus")) { Uint16 detailedStatusValue; property.getValue().get(detailedStatusValue); setDetailedStatus(detailedStatusValue); } else if (String::equal(property.getName().getString(), "OperatingStatus")) { Uint16 operatingStatusValue; property.getValue().get(operatingStatusValue); setOperatingStatus(operatingStatusValue); } else if (String::equal(property.getName().getString(), "PrimaryStatus")) { Uint16 primaryStatusValue; property.getValue().get(primaryStatusValue); setPrimaryStatus(primaryStatusValue); } else if (String::equal(property.getName().getString(), "EnabledState")) { Uint16 enabledStateValue; property.getValue().get(enabledStateValue); setEnabledState(enabledStateValue); } else if (String::equal(property.getName().getString(), "OtherEnabledState")) { String otherEnabledStateValue; property.getValue().get(otherEnabledStateValue); setOtherEnabledState(otherEnabledStateValue); } else if (String::equal(property.getName().getString(), "RequestedState")) { Uint16 requestedStateValue; property.getValue().get(requestedStateValue); setRequestedState(requestedStateValue); } else if (String::equal(property.getName().getString(), "EnabledDefault")) { Uint16 enabledDefaultValue; property.getValue().get(enabledDefaultValue); setEnabledDefault(enabledDefaultValue); } else if (String::equal(property.getName().getString(), "TimeOfLastStateChange")) { CIMDateTime timeOfLastStateChangeValue; property.getValue().get(timeOfLastStateChangeValue); setTimeOfLastStateChange(timeOfLastStateChangeValue); } else if (String::equal(property.getName().getString(), "AvailableRequestedStates")) { Array<Uint16> availableRequestedStatesValue; property.getValue().get(availableRequestedStatesValue); setAvailableRequestedStates(availableRequestedStatesValue); } else if (String::equal(property.getName().getString(), "TransitioningToState")) { Uint16 transitioningToStateValue; property.getValue().get(transitioningToStateValue); setTransitioningToState(transitioningToStateValue); } else if (String::equal(property.getName().getString(), "SystemCreationClassName")) { String systemCreationClassNameValue; property.getValue().get(systemCreationClassNameValue); setSystemCreationClassName(systemCreationClassNameValue); } else if (String::equal(property.getName().getString(), "SystemName")) { String systemNameValue; property.getValue().get(systemNameValue); setSystemName(systemNameValue); } else if (String::equal(property.getName().getString(), "CreationClassName")) { String creationClassNameValue; property.getValue().get(creationClassNameValue); setCreationClassName(creationClassNameValue); } else if (String::equal(property.getName().getString(), "BatchProtocol")) { Array<Uint16> batchProtocolValue; property.getValue().get(batchProtocolValue); setBatchProtocol(batchProtocolValue); } else if (String::equal(property.getName().getString(), "BatchProtocolInfo")) { Array<String> batchProtocolInfoValue; property.getValue().get(batchProtocolInfoValue); setBatchProtocolInfo(batchProtocolInfoValue); } } return true; }