2022-01-19 12:18:33 +11:00
|
|
|
# IfcOpenShell - IFC toolkit and geometry engine
|
|
|
|
|
# Copyright (C) 2021 Dion Moult <dion@thinkmoult.com>
|
|
|
|
|
#
|
|
|
|
|
# This file is part of IfcOpenShell.
|
|
|
|
|
#
|
|
|
|
|
# IfcOpenShell is free software: you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# IfcOpenShell is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2021-01-07 19:09:55 +11:00
|
|
|
import ifcopenshell
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Usecase:
|
2021-03-27 19:14:32 +11:00
|
|
|
def __init__(self, file, **settings):
|
2021-01-07 19:09:55 +11:00
|
|
|
self.file = file
|
2021-05-28 10:59:20 +10:00
|
|
|
self.settings = {"product": None, "name": None}
|
2021-01-07 19:09:55 +11:00
|
|
|
for key, value in settings.items():
|
|
|
|
|
self.settings[key] = value
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
2022-01-21 12:01:19 +11:00
|
|
|
if self.settings["product"].is_a("IfcObject") or self.settings["product"].is_a("IfcContext"):
|
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-07 19:09:55 +11:00
|
|
|
pset = self.file.create_entity(
|
2021-06-23 10:35:13 +10:00
|
|
|
"IfcPropertySet",
|
|
|
|
|
**{
|
|
|
|
|
"GlobalId": ifcopenshell.guid.new(),
|
|
|
|
|
"OwnerHistory": ifcopenshell.api.run("owner.create_owner_history", self.file),
|
|
|
|
|
"Name": self.settings["name"],
|
|
|
|
|
}
|
2021-01-07 19:09:55 +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-07 19:09:55 +11:00
|
|
|
"RelatedObjects": [self.settings["product"]],
|
|
|
|
|
"RelatingPropertyDefinition": pset,
|
|
|
|
|
}
|
|
|
|
|
)
|
2021-05-10 09:27:31 +10:00
|
|
|
return pset
|
2021-01-07 19:09:55 +11:00
|
|
|
elif self.settings["product"].is_a("IfcTypeObject"):
|
2021-05-14 15:13:24 +10:00
|
|
|
for definition in self.settings["product"].HasPropertySets or []:
|
2021-05-28 10:59:20 +10:00
|
|
|
if definition.Name == self.settings["name"]:
|
2021-05-14 15:13:24 +10:00
|
|
|
return definition
|
|
|
|
|
|
2021-01-07 19:09:55 +11:00
|
|
|
pset = self.file.create_entity(
|
2021-06-23 10:35:13 +10:00
|
|
|
"IfcPropertySet",
|
|
|
|
|
**{
|
|
|
|
|
"GlobalId": ifcopenshell.guid.new(),
|
|
|
|
|
"OwnerHistory": ifcopenshell.api.run("owner.create_owner_history", self.file),
|
|
|
|
|
"Name": self.settings["name"],
|
|
|
|
|
}
|
2021-01-07 19:09:55 +11:00
|
|
|
)
|
2021-04-07 13:15:16 +10:00
|
|
|
has_property_sets = list(self.settings["product"].HasPropertySets or [])
|
2021-01-07 19:09:55 +11:00
|
|
|
has_property_sets.append(pset)
|
|
|
|
|
self.settings["product"].HasPropertySets = has_property_sets
|
2021-05-10 09:27:31 +10:00
|
|
|
return pset
|
2021-01-07 19:09:55 +11:00
|
|
|
elif self.settings["product"].is_a("IfcMaterialDefinition"):
|
2021-05-30 13:32:59 +02:00
|
|
|
for definition in self.settings["product"].HasProperties or []:
|
2021-06-01 16:33:47 +02:00
|
|
|
if definition.Name == self.settings["name"]:
|
2021-05-14 15:13:24 +10:00
|
|
|
return definition
|
|
|
|
|
|
2021-05-10 09:27:31 +10:00
|
|
|
return self.file.create_entity(
|
2021-01-17 21:53:31 +11:00
|
|
|
"IfcMaterialProperties",
|
2021-01-07 19:09:55 +11:00
|
|
|
**{
|
2021-05-28 10:59:20 +10:00
|
|
|
"Name": self.settings["name"],
|
2021-01-07 19:09:55 +11:00
|
|
|
"Material": self.settings["product"],
|
|
|
|
|
}
|
|
|
|
|
)
|
2021-08-14 13:01:22 +10:00
|
|
|
elif self.settings["product"].is_a("IfcProfileDef"):
|
|
|
|
|
for definition in self.settings["product"].HasProperties or []:
|
|
|
|
|
if definition.Name == self.settings["name"]:
|
|
|
|
|
return definition
|
|
|
|
|
|
|
|
|
|
return self.file.create_entity(
|
|
|
|
|
"IfcProfileProperties",
|
|
|
|
|
**{
|
|
|
|
|
"Name": self.settings["name"],
|
|
|
|
|
"ProfileDefinition": self.settings["product"],
|
|
|
|
|
}
|
|
|
|
|
)
|