Search in sources :

Example 1 with IfcMaterialSelect

use of org.bimserver.models.ifc2x3tc1.IfcMaterialSelect in project BIMserver by opensourceBIM.

the class IfcUtils method getMaterial.

public static String getMaterial(IfcProduct ifcProduct) {
    Set<IfcMaterial> materials = new HashSet<>();
    for (IfcRelAssociates ifcRelAssociates : ifcProduct.getHasAssociations()) {
        if (ifcRelAssociates instanceof IfcRelAssociatesMaterial) {
            IfcRelAssociatesMaterial ifcRelAssociatesMaterial = (IfcRelAssociatesMaterial) ifcRelAssociates;
            IfcMaterialSelect relatingMaterial = ifcRelAssociatesMaterial.getRelatingMaterial();
            if (relatingMaterial instanceof IfcMaterial) {
                materials.add((IfcMaterial) relatingMaterial);
            } else if (relatingMaterial instanceof IfcMaterialLayerSetUsage) {
                IfcMaterialLayerSetUsage ifcMaterialLayerSetUsage = (IfcMaterialLayerSetUsage) relatingMaterial;
                IfcMaterialLayerSet forLayerSet = ifcMaterialLayerSetUsage.getForLayerSet();
                for (IfcMaterialLayer ifcMaterialLayer : forLayerSet.getMaterialLayers()) {
                    IfcMaterial material = ifcMaterialLayer.getMaterial();
                    materials.add(material);
                }
            } else if (relatingMaterial instanceof IfcMaterialList) {
                materials.addAll(((IfcMaterialList) relatingMaterial).getMaterials());
            } else if (relatingMaterial instanceof IfcMaterialLayerSet) {
                for (IfcMaterialLayer ifcMaterialLayer : ((IfcMaterialLayerSet) relatingMaterial).getMaterialLayers()) {
                    materials.add(ifcMaterialLayer.getMaterial());
                }
            } else {
                throw new UnsupportedOperationException(relatingMaterial.toString());
            }
        }
    }
    Iterator<IfcMaterial> iterator = materials.iterator();
    while (iterator.hasNext()) {
        IfcMaterial next = iterator.next();
        if (next == null || next.getName() == null) {
            iterator.remove();
        }
    }
    return Joiner.on(", ").join(materials.stream().map(new Function<IfcMaterial, String>() {

        @Override
        public String apply(IfcMaterial input) {
            return input.getName();
        }
    }).iterator());
}
Also used : IfcMaterialList(org.bimserver.models.ifc2x3tc1.IfcMaterialList) IfcRelAssociatesMaterial(org.bimserver.models.ifc2x3tc1.IfcRelAssociatesMaterial) IfcMaterialLayer(org.bimserver.models.ifc2x3tc1.IfcMaterialLayer) IfcMaterial(org.bimserver.models.ifc2x3tc1.IfcMaterial) IfcMaterialSelect(org.bimserver.models.ifc2x3tc1.IfcMaterialSelect) IfcMaterialLayerSet(org.bimserver.models.ifc2x3tc1.IfcMaterialLayerSet) IfcMaterialLayerSetUsage(org.bimserver.models.ifc2x3tc1.IfcMaterialLayerSetUsage) HashSet(java.util.HashSet) LinkedHashSet(java.util.LinkedHashSet) IfcRelAssociates(org.bimserver.models.ifc2x3tc1.IfcRelAssociates)

Example 2 with IfcMaterialSelect

use of org.bimserver.models.ifc2x3tc1.IfcMaterialSelect in project BIMserver by opensourceBIM.

the class TestGetMaterials method getMaterials.

public static Set<IfcMaterial> getMaterials(IfcProduct ifcProduct) {
    Set<IfcMaterial> materials = new HashSet<>();
    for (IfcRelAssociates ifcRelAssociates : ifcProduct.getHasAssociations()) {
        if (ifcRelAssociates instanceof IfcRelAssociatesMaterial) {
            IfcRelAssociatesMaterial ifcRelAssociatesMaterial = (IfcRelAssociatesMaterial) ifcRelAssociates;
            IfcMaterialSelect relatingMaterial = ifcRelAssociatesMaterial.getRelatingMaterial();
            // System.out.println(relatingMaterial);
            if (relatingMaterial instanceof IfcMaterial) {
                materials.add((IfcMaterial) relatingMaterial);
            } else if (relatingMaterial instanceof IfcMaterialLayerSetUsage) {
                IfcMaterialLayerSetUsage ifcMaterialLayerSetUsage = (IfcMaterialLayerSetUsage) relatingMaterial;
                IfcMaterialLayerSet forLayerSet = ifcMaterialLayerSetUsage.getForLayerSet();
                if (forLayerSet != null) {
                    for (IfcMaterialLayer ifcMaterialLayer : forLayerSet.getMaterialLayers()) {
                        IfcMaterial material = ifcMaterialLayer.getMaterial();
                        materials.add(material);
                    }
                }
            } else if (relatingMaterial instanceof IfcMaterialList) {
                materials.addAll(((IfcMaterialList) relatingMaterial).getMaterials());
            } else if (relatingMaterial instanceof IfcMaterialLayerSet) {
                for (IfcMaterialLayer ifcMaterialLayer : ((IfcMaterialLayerSet) relatingMaterial).getMaterialLayers()) {
                    materials.add(ifcMaterialLayer.getMaterial());
                }
            } else {
                throw new UnsupportedOperationException(relatingMaterial.toString());
            }
        }
    }
    Iterator<IfcMaterial> iterator = materials.iterator();
    while (iterator.hasNext()) {
        IfcMaterial next = iterator.next();
        if (next == null || next.getName() == null) {
            System.out.println(next.getOid());
            iterator.remove();
        }
    }
    if (materials.size() > 0) {
        System.out.println(ifcProduct.eClass().getName() + ": " + Joiner.on(", ").join(materials));
    }
    return new HashSet<>(materials);
}
Also used : IfcMaterialLayer(org.bimserver.models.ifc2x3tc1.IfcMaterialLayer) IfcMaterialList(org.bimserver.models.ifc2x3tc1.IfcMaterialList) IfcMaterial(org.bimserver.models.ifc2x3tc1.IfcMaterial) IfcMaterialSelect(org.bimserver.models.ifc2x3tc1.IfcMaterialSelect) IfcMaterialLayerSet(org.bimserver.models.ifc2x3tc1.IfcMaterialLayerSet) IfcMaterialLayerSetUsage(org.bimserver.models.ifc2x3tc1.IfcMaterialLayerSetUsage) HashSet(java.util.HashSet) IfcRelAssociates(org.bimserver.models.ifc2x3tc1.IfcRelAssociates) IfcRelAssociatesMaterial(org.bimserver.models.ifc2x3tc1.IfcRelAssociatesMaterial)

Aggregations

HashSet (java.util.HashSet)2 IfcMaterial (org.bimserver.models.ifc2x3tc1.IfcMaterial)2 IfcMaterialLayer (org.bimserver.models.ifc2x3tc1.IfcMaterialLayer)2 IfcMaterialLayerSet (org.bimserver.models.ifc2x3tc1.IfcMaterialLayerSet)2 IfcMaterialLayerSetUsage (org.bimserver.models.ifc2x3tc1.IfcMaterialLayerSetUsage)2 IfcMaterialList (org.bimserver.models.ifc2x3tc1.IfcMaterialList)2 IfcMaterialSelect (org.bimserver.models.ifc2x3tc1.IfcMaterialSelect)2 IfcRelAssociates (org.bimserver.models.ifc2x3tc1.IfcRelAssociates)2 IfcRelAssociatesMaterial (org.bimserver.models.ifc2x3tc1.IfcRelAssociatesMaterial)2 LinkedHashSet (java.util.LinkedHashSet)1