2021-01-04 15:57:12 +11:00
|
|
|
import ifcopenshell
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Usecase:
|
|
|
|
|
def __init__(self, file, settings=None):
|
|
|
|
|
self.file = file
|
|
|
|
|
self.settings = {
|
|
|
|
|
"product": None,
|
|
|
|
|
"relating_structure": None,
|
|
|
|
|
}
|
|
|
|
|
for key, value in settings.items():
|
|
|
|
|
self.settings[key] = value
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
|
contained_in_structure = self.settings["product"].ContainedInStructure
|
|
|
|
|
contains_elements = self.settings["relating_structure"].ContainsElements
|
|
|
|
|
|
2021-01-07 10:47:50 +11:00
|
|
|
if contains_elements and contained_in_structure and contained_in_structure[0] == contains_elements[0]:
|
2021-01-04 15:57:12 +11:00
|
|
|
return
|
|
|
|
|
|
|
|
|
|
if contained_in_structure:
|
|
|
|
|
related_elements = list(contained_in_structure[0].RelatedElements)
|
|
|
|
|
related_elements.remove(self.settings["product"])
|
|
|
|
|
if related_elements:
|
|
|
|
|
contained_in_structure[0].RelatedElements = related_elements
|
|
|
|
|
else:
|
2021-01-16 15:36:06 +11:00
|
|
|
self.file.remove(contained_in_structure[0])
|
2021-01-04 15:57:12 +11:00
|
|
|
|
|
|
|
|
if contains_elements:
|
|
|
|
|
related_elements = list(contains_elements[0].RelatedElements)
|
|
|
|
|
related_elements.append(self.settings["product"])
|
2021-01-06 10:28:22 +11:00
|
|
|
contains_elements[0].RelatedElements = related_elements
|
2021-01-04 15:57:12 +11:00
|
|
|
else:
|
|
|
|
|
contains_elements = self.file.create_entity(
|
|
|
|
|
"IfcRelContainedInSpatialStructure",
|
|
|
|
|
**{
|
|
|
|
|
"GlobalId": ifcopenshell.guid.new(),
|
|
|
|
|
# TODO "OwnerHistory": None
|
|
|
|
|
"RelatedElements": [self.settings["product"]],
|
|
|
|
|
"RelatingStructure": self.settings["relating_structure"],
|
|
|
|
|
}
|
|
|
|
|
)
|