Search in sources :

Example 1 with LsbootDef

use of com.emc.cloud.platform.ucs.out.model.LsbootDef in project coprhd-controller by CoprHD.

the class UcsDiscoveryWorker method reconcileServiceProfileTemplatesBootDefinitions.

private void reconcileServiceProfileTemplatesBootDefinitions(ComputeSystem cs, List<LsServer> lsServers) {
    URIQueryResultList uris = new URIQueryResultList();
    _dbClient.queryByConstraint(ContainmentConstraint.Factory.getComputeSystemServiceProfileTemplateConstraint(cs.getId()), uris);
    Map<String, LsServer> lsServerMap = new HashMap<>();
    for (LsServer lsServer : lsServers) {
        lsServerMap.put(lsServer.getDn(), lsServer);
    }
    List<UCSServiceProfileTemplate> serviceTemplates = _dbClient.queryObject(UCSServiceProfileTemplate.class, uris, true);
    for (UCSServiceProfileTemplate serviceProfileTemplate : serviceTemplates) {
        LsServer lsServer = lsServerMap.get(serviceProfileTemplate.getDn());
        if (lsServer == null) {
            continue;
        }
        Map<String, Object> serviceProfileTemplateDetails = getServiceProfileTemplateDetails(lsServer);
        LsbootDef lsbootDef = (LsbootDef) serviceProfileTemplateDetails.get("associatedBootPolicy");
        if (lsbootDef != null) {
            _log.debug("Reconcile bootdef for SPT:" + serviceProfileTemplate.getLabel());
            ComputeBootDef computeBootDef = reconcileComputeBootDef(lsbootDef, serviceProfileTemplate, cs);
        } else {
            // Remove any computeBootDefs that are no longer needed.
            URIQueryResultList bootDefUris = new URIQueryResultList();
            _dbClient.queryByConstraint(ContainmentConstraint.Factory.getServiceProfileTemplateComputeBootDefsConstraint(serviceProfileTemplate.getId()), bootDefUris);
            List<ComputeBootDef> bootDefs = _dbClient.queryObject(ComputeBootDef.class, bootDefUris, true);
            deleteComputeBootDefs(bootDefs);
        }
    }
}
Also used : UCSServiceProfileTemplate(com.emc.storageos.db.client.model.UCSServiceProfileTemplate) ComputeBootDef(com.emc.storageos.db.client.model.ComputeBootDef) HashMap(java.util.HashMap) LsServer(com.emc.cloud.platform.ucs.out.model.LsServer) DiscoveredSystemObject(com.emc.storageos.db.client.model.DiscoveredSystemObject) DataObject(com.emc.storageos.db.client.model.DataObject) DiscoveredDataObject(com.emc.storageos.db.client.model.DiscoveredDataObject) LsbootDef(com.emc.cloud.platform.ucs.out.model.LsbootDef) URIQueryResultList(com.emc.storageos.db.client.constraint.URIQueryResultList)

Example 2 with LsbootDef

use of com.emc.cloud.platform.ucs.out.model.LsbootDef in project coprhd-controller by CoprHD.

the class UcsDiscoveryWorker method getServiceProfileTemplateDetails.

private Map<String, Object> getServiceProfileTemplateDetails(LsServer spt) {
    Map<String, Object> serviceProfileTemplateDetails = new HashMap<>();
    int vhbaCount = 0;
    int vnicCount = 0;
    List<VnicEther> vnics = new ArrayList<>();
    List<VnicFc> vhbas = new ArrayList<>();
    if (spt.getContent() != null && !spt.getContent().isEmpty()) {
        for (Serializable element : spt.getContent()) {
            if (element instanceof JAXBElement<?>) {
                if (((JAXBElement) element).getValue() instanceof LsRequirement) {
                    LsRequirement lsRequirement = (LsRequirement) ((JAXBElement) element).getValue();
                    serviceProfileTemplateDetails.put("associatedServerPool", lsRequirement.getName());
                } else if (((JAXBElement) element).getValue() instanceof VnicEther) {
                    vnics.add(((VnicEther) ((JAXBElement) element).getValue()));
                    vnicCount++;
                } else if (((JAXBElement) element).getValue() instanceof VnicFc) {
                    vhbas.add(((VnicFc) ((JAXBElement) element).getValue()));
                    vhbaCount++;
                } else if (((JAXBElement) element).getValue() instanceof LsbootDef) {
                    LsbootDef lsbootDef = (LsbootDef) ((JAXBElement) element).getValue();
                    serviceProfileTemplateDetails.put("associatedBootPolicy", lsbootDef);
                }
            }
        }
        serviceProfileTemplateDetails.put("vhbaCount", vhbaCount);
        serviceProfileTemplateDetails.put("vnicCount", vnicCount);
        serviceProfileTemplateDetails.put("vhbas", vhbas);
        serviceProfileTemplateDetails.put("vnics", vnics);
    }
    return serviceProfileTemplateDetails;
}
Also used : Serializable(java.io.Serializable) HashMap(java.util.HashMap) ArrayList(java.util.ArrayList) VnicEther(com.emc.cloud.platform.ucs.out.model.VnicEther) JAXBElement(javax.xml.bind.JAXBElement) ContainmentConstraint(com.emc.storageos.db.client.constraint.ContainmentConstraint) VnicFc(com.emc.cloud.platform.ucs.out.model.VnicFc) LsRequirement(com.emc.cloud.platform.ucs.out.model.LsRequirement) DiscoveredSystemObject(com.emc.storageos.db.client.model.DiscoveredSystemObject) DataObject(com.emc.storageos.db.client.model.DataObject) DiscoveredDataObject(com.emc.storageos.db.client.model.DiscoveredDataObject) LsbootDef(com.emc.cloud.platform.ucs.out.model.LsbootDef)

Aggregations

LsbootDef (com.emc.cloud.platform.ucs.out.model.LsbootDef)2 DataObject (com.emc.storageos.db.client.model.DataObject)2 DiscoveredDataObject (com.emc.storageos.db.client.model.DiscoveredDataObject)2 DiscoveredSystemObject (com.emc.storageos.db.client.model.DiscoveredSystemObject)2 HashMap (java.util.HashMap)2 LsRequirement (com.emc.cloud.platform.ucs.out.model.LsRequirement)1 LsServer (com.emc.cloud.platform.ucs.out.model.LsServer)1 VnicEther (com.emc.cloud.platform.ucs.out.model.VnicEther)1 VnicFc (com.emc.cloud.platform.ucs.out.model.VnicFc)1 ContainmentConstraint (com.emc.storageos.db.client.constraint.ContainmentConstraint)1 URIQueryResultList (com.emc.storageos.db.client.constraint.URIQueryResultList)1 ComputeBootDef (com.emc.storageos.db.client.model.ComputeBootDef)1 UCSServiceProfileTemplate (com.emc.storageos.db.client.model.UCSServiceProfileTemplate)1 Serializable (java.io.Serializable)1 ArrayList (java.util.ArrayList)1 JAXBElement (javax.xml.bind.JAXBElement)1