2021-01-13 21:26:10 +11:00
|
|
|
import ifcopenshell
|
2021-05-28 10:59:20 +10:00
|
|
|
import ifcopenshell.api
|
2021-01-13 21:26:10 +11:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class Usecase:
|
2021-03-27 19:14:32 +11:00
|
|
|
def __init__(self, file, **settings):
|
2021-01-13 21:26:10 +11:00
|
|
|
self.file = file
|
2021-05-28 10:59:20 +10:00
|
|
|
self.settings = {"product": None, "name": None}
|
2021-01-13 21:26:10 +11:00
|
|
|
for key, value in settings.items():
|
|
|
|
|
self.settings[key] = value
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
|
if self.settings["product"].is_a("IfcObject"):
|
2021-05-14 15:13:24 +10:00
|
|
|
for rel in self.settings["product"].IsDefinedBy or []:
|
|
|
|
|
if (
|
|
|
|
|
rel.is_a("IfcRelDefinesByProperties")
|
2021-05-28 10:59:20 +10:00
|
|
|
and rel.RelatingPropertyDefinition.Name == self.settings["name"]
|
2021-05-14 15:13:24 +10:00
|
|
|
):
|
|
|
|
|
return rel.RelatingPropertyDefinition
|
|
|
|
|
|
2021-01-13 21:26:10 +11:00
|
|
|
qto = self.file.create_entity(
|
2021-05-28 10:59:20 +10:00
|
|
|
"IfcElementQuantity", **{"GlobalId": ifcopenshell.guid.new(), "Name": self.settings["name"]}
|
2021-01-13 21:26:10 +11:00
|
|
|
)
|
|
|
|
|
self.file.create_entity(
|
|
|
|
|
"IfcRelDefinesByProperties",
|
|
|
|
|
**{
|
|
|
|
|
"GlobalId": ifcopenshell.guid.new(),
|
2021-05-28 10:59:20 +10:00
|
|
|
"OwnerHistory": ifcopenshell.api.run("owner.create_owner_history", self.file),
|
2021-01-13 21:26:10 +11:00
|
|
|
"RelatedObjects": [self.settings["product"]],
|
|
|
|
|
"RelatingPropertyDefinition": qto,
|
|
|
|
|
}
|
|
|
|
|
)
|
2021-05-10 09:27:31 +10:00
|
|
|
return qto
|