mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 09:21:46 +00:00
Fix #3957. Fix bug where shared properties were not edited independently.
This commit is contained in:
@@ -158,9 +158,9 @@ class Usecase:
|
||||
def execute(self):
|
||||
self.update_pset_name()
|
||||
self.load_pset_template()
|
||||
self.update_existing_properties()
|
||||
new_properties = self.add_new_properties()
|
||||
self.extend_pset_with_new_properties(new_properties)
|
||||
existing_props = self.update_existing_properties()
|
||||
new_props = self.add_new_properties()
|
||||
self.assign_new_properties(existing_props + new_props)
|
||||
|
||||
def update_pset_name(self):
|
||||
if self.settings["name"]:
|
||||
@@ -198,18 +198,26 @@ class Usecase:
|
||||
# IfcPropertySingleValue. Or maybe the user should
|
||||
# just delete the property first? - vulevukusej
|
||||
def update_existing_properties(self):
|
||||
existing_props = []
|
||||
for prop in self.get_properties():
|
||||
if not self._should_update_prop(prop):
|
||||
existing_props.append(prop)
|
||||
continue
|
||||
|
||||
if self.file.get_total_inverses(prop) > 1:
|
||||
continue # Treat as a new property to avoid affecting other psets.
|
||||
|
||||
if prop.is_a("IfcPropertyEnumeratedValue"):
|
||||
self.update_existing_prop_enum(prop)
|
||||
|
||||
prop = self.update_existing_prop_enum(prop)
|
||||
if prop:
|
||||
existing_props.append(prop)
|
||||
elif prop.is_a("IfcPropertySingleValue"):
|
||||
self.update_existing_prop_single_value(prop)
|
||||
|
||||
prop = self.update_existing_prop_single_value(prop)
|
||||
if prop:
|
||||
existing_props.append(prop)
|
||||
else:
|
||||
raise NotImplementedError(f"Updating '{prop.is_a()}' properties is not supported yet")
|
||||
return existing_props
|
||||
|
||||
def update_existing_prop_enum(self, prop):
|
||||
"""
|
||||
@@ -228,10 +236,7 @@ class Usecase:
|
||||
sel_vals.append(ifc_val)
|
||||
prop.EnumerationValues = tuple(sel_vals) or None
|
||||
|
||||
elif (
|
||||
isinstance(value, ifcopenshell.entity_instance)
|
||||
and value.is_a("IfcPropertyEnumeratedValue")
|
||||
):
|
||||
elif isinstance(value, ifcopenshell.entity_instance) and value.is_a("IfcPropertyEnumeratedValue"):
|
||||
if not value.EnumerationReference.EnumerationValues:
|
||||
if self._try_purge(prop):
|
||||
return
|
||||
@@ -245,6 +250,7 @@ class Usecase:
|
||||
if unit:
|
||||
prop.Unit = unit
|
||||
del self.settings["properties"][prop.Name]
|
||||
return prop
|
||||
|
||||
def update_existing_prop_single_value(self, prop):
|
||||
"""
|
||||
@@ -267,6 +273,7 @@ class Usecase:
|
||||
if unit:
|
||||
prop.Unit = unit
|
||||
del self.settings["properties"][prop.Name]
|
||||
return prop
|
||||
|
||||
def add_new_properties(self):
|
||||
properties = []
|
||||
@@ -284,9 +291,7 @@ class Usecase:
|
||||
kwargs = {"Name": name, "NominalValue": value}
|
||||
if unit:
|
||||
kwargs["Unit"] = unit
|
||||
properties.append(
|
||||
self.file.create_entity("IfcPropertySingleValue", **kwargs)
|
||||
)
|
||||
properties.append(self.file.create_entity("IfcPropertySingleValue", **kwargs))
|
||||
|
||||
else:
|
||||
raise ValueError(f"{value.is_a()} cannot be assigned to the property set '{name}'")
|
||||
@@ -307,11 +312,8 @@ class Usecase:
|
||||
self.file.create_entity(
|
||||
"IfcPropertyListValue",
|
||||
Name=name,
|
||||
ListValues=[
|
||||
self.file.create_entity(ifc_class, v)
|
||||
for v in value
|
||||
],
|
||||
Unit=unit
|
||||
ListValues=[self.file.create_entity(ifc_class, v) for v in value],
|
||||
Unit=unit,
|
||||
)
|
||||
)
|
||||
break
|
||||
@@ -321,7 +323,7 @@ class Usecase:
|
||||
"IFCPROPERTYENUMERATION",
|
||||
Name=name,
|
||||
EnumerationValues=pset_template.Enumerators.EnumerationValues,
|
||||
**({"Unit": unit} if unit else {})
|
||||
**({"Unit": unit} if unit else {}),
|
||||
)
|
||||
prop_enum_value = self.file.create_entity(
|
||||
"IFCPROPERTYENUMERATEDVALUE",
|
||||
@@ -347,14 +349,10 @@ class Usecase:
|
||||
if unit:
|
||||
args["Unit"] = unit
|
||||
|
||||
properties.append(
|
||||
self.file.create_entity("IfcPropertySingleValue", **args)
|
||||
)
|
||||
properties.append(self.file.create_entity("IfcPropertySingleValue", **args))
|
||||
return properties
|
||||
|
||||
def extend_pset_with_new_properties(self, new_properties):
|
||||
props = list(self.get_properties())
|
||||
props.extend(new_properties)
|
||||
def assign_new_properties(self, props):
|
||||
if hasattr(self.settings["pset"], "HasProperties"):
|
||||
self.settings["pset"].HasProperties = props
|
||||
elif hasattr(self.settings["pset"], "Properties"):
|
||||
|
||||
@@ -95,6 +95,7 @@ class TestEditPset(test.bootstrap.IFC4):
|
||||
element = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWall")
|
||||
pset = ifcopenshell.api.run("pset.add_pset", self.file, product=element, name="Pset_WallCommon")
|
||||
ifcopenshell.api.run("pset.edit_pset", self.file, pset=pset, properties={"Reference": "Foo"})
|
||||
print("test")
|
||||
ifcopenshell.api.run("pset.edit_pset", self.file, pset=pset, properties={"Reference": None}, should_purge=True)
|
||||
pset = element.IsDefinedBy[0].RelatingPropertyDefinition
|
||||
assert len(pset.HasProperties) == 0
|
||||
@@ -168,7 +169,9 @@ class TestEditPset(test.bootstrap.IFC4):
|
||||
assert pset.HasProperties[0].NominalValue.wrappedValue == 34
|
||||
|
||||
def test_editing_list_valued_properties(self):
|
||||
cable = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcDistributionPort", predefined_type="CABLE")
|
||||
cable = ifcopenshell.api.run(
|
||||
"root.create_entity", self.file, ifc_class="IfcDistributionPort", predefined_type="CABLE"
|
||||
)
|
||||
pset = ifcopenshell.api.run("pset.add_pset", self.file, product=cable, name="Pset_DistributionPortTypeCable")
|
||||
ifcopenshell.api.run(
|
||||
"pset.edit_pset",
|
||||
@@ -178,10 +181,10 @@ class TestEditPset(test.bootstrap.IFC4):
|
||||
"Protocols": ["One", "Two", "Three"],
|
||||
},
|
||||
)
|
||||
assert pset.HasProperties[0].is_a('IfcPropertyListValue')
|
||||
assert pset.HasProperties[0].is_a("IfcPropertyListValue")
|
||||
assert len(pset.HasProperties[0].ListValues) == 3
|
||||
assert set(map(ifcopenshell.entity_instance.is_a, pset.HasProperties[0].ListValues)) == {'IfcIdentifier'}
|
||||
assert list(map(operator.itemgetter(0), pset.HasProperties[0].ListValues)) == ['One', 'Two', 'Three']
|
||||
assert set(map(ifcopenshell.entity_instance.is_a, pset.HasProperties[0].ListValues)) == {"IfcIdentifier"}
|
||||
assert list(map(operator.itemgetter(0), pset.HasProperties[0].ListValues)) == ["One", "Two", "Three"]
|
||||
|
||||
def test_editing_properties_with_an_explicit_type(self):
|
||||
element = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWall")
|
||||
@@ -262,10 +265,10 @@ class TestEditPset(test.bootstrap.IFC4):
|
||||
"Name": "foo",
|
||||
"TemplateType": "P_SINGLEVALUE",
|
||||
"PrimaryMeasureType": "IfcContextDependentMeasure",
|
||||
}
|
||||
},
|
||||
)
|
||||
],
|
||||
}
|
||||
},
|
||||
)
|
||||
element = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWall")
|
||||
pset = ifcopenshell.api.run("pset.add_pset", self.file, product=element, name="Foo_Bar")
|
||||
@@ -282,3 +285,19 @@ class TestEditPset(test.bootstrap.IFC4):
|
||||
assert pset.HasProperties[0].Name == "foo"
|
||||
assert pset.HasProperties[0].NominalValue.is_a("IfcContextDependentMeasure")
|
||||
assert pset.HasProperties[0].NominalValue.wrappedValue == 12
|
||||
|
||||
def test_editing_a_shared_property(self):
|
||||
element1 = self.file.createIfcMaterial()
|
||||
element2 = self.file.createIfcMaterial()
|
||||
pset1 = ifcopenshell.api.run("pset.add_pset", self.file, product=element1, name="Foo_Bar")
|
||||
pset2 = ifcopenshell.api.run("pset.add_pset", self.file, product=element2, name="Foo_Bar")
|
||||
ifcopenshell.api.run("pset.edit_pset", self.file, pset=pset1, properties={"foo": "bar"})
|
||||
ifcopenshell.api.run("pset.edit_pset", self.file, pset=pset2, properties={"foo2": "bar2"})
|
||||
element1.HasProperties[0].Properties = list(element1.HasProperties[0].Properties) + list(
|
||||
element2.HasProperties[0].Properties
|
||||
)
|
||||
assert ifcopenshell.util.element.get_pset(element1, "Foo_Bar", "foo2") == "bar2"
|
||||
assert ifcopenshell.util.element.get_pset(element2, "Foo_Bar", "foo2") == "bar2"
|
||||
ifcopenshell.api.run("pset.edit_pset", self.file, pset=pset1, properties={"foo2": "bar3"})
|
||||
assert ifcopenshell.util.element.get_pset(element1, "Foo_Bar", "foo2") == "bar3"
|
||||
assert ifcopenshell.util.element.get_pset(element2, "Foo_Bar", "foo2") == "bar2"
|
||||
|
||||
Reference in New Issue
Block a user