2021-01-24 14:33:56 +11:00
|
|
|
import ifcopenshell.util.element
|
|
|
|
|
|
2021-02-07 19:13:36 +11:00
|
|
|
|
2021-01-03 19:09:01 +11:00
|
|
|
class Usecase:
|
2021-03-27 19:14:32 +11:00
|
|
|
def __init__(self, file, **settings):
|
2021-01-03 19:09:01 +11:00
|
|
|
self.file = file
|
|
|
|
|
self.settings = {"representation": None}
|
|
|
|
|
for key, value in settings.items():
|
|
|
|
|
self.settings[key] = value
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
2021-10-20 14:11:49 +11:00
|
|
|
styled_items = set()
|
|
|
|
|
presentation_layer_assignments = set()
|
2021-01-20 16:03:35 +11:00
|
|
|
for subelement in self.file.traverse(self.settings["representation"]):
|
|
|
|
|
if subelement.is_a("IfcRepresentationItem") and subelement.StyledByItem:
|
2021-10-20 14:11:49 +11:00
|
|
|
[styled_items.add(s) for s in subelement.StyledByItem]
|
2021-01-24 14:33:56 +11:00
|
|
|
elif subelement.is_a("IfcRepresentation"):
|
2021-10-20 14:11:49 +11:00
|
|
|
for inverse in self.file.get_inverse(subelement):
|
|
|
|
|
if inverse.is_a("IfcPresentationLayerAssignment"):
|
|
|
|
|
presentation_layer_assignments.add(inverse)
|
|
|
|
|
|
|
|
|
|
ifcopenshell.util.element.remove_deep2(
|
|
|
|
|
self.file,
|
|
|
|
|
self.settings["representation"],
|
2021-10-21 16:28:55 +11:00
|
|
|
also_consider=list(styled_items | presentation_layer_assignments),
|
|
|
|
|
do_not_delete=self.file.by_type("IfcGeometricRepresentationContext"),
|
2021-10-20 14:11:49 +11:00
|
|
|
)
|
2021-01-27 15:02:34 +11:00
|
|
|
|
2021-10-20 14:11:49 +11:00
|
|
|
for element in styled_items:
|
|
|
|
|
if not element.Item:
|
|
|
|
|
self.file.remove(element)
|
|
|
|
|
for element in presentation_layer_assignments:
|
|
|
|
|
if len(element.AssignedItems) == 0:
|
|
|
|
|
self.file.remove(element)
|