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-02-24 21:07:27 +11:00
|
|
|
import ifcopenshell.util.element
|
|
|
|
|
|
|
|
|
|
|
2024-05-10 11:21:53 +05:00
|
|
|
def remove_prop_template(file: ifcopenshell.file, prop_template: ifcopenshell.entity_instance) -> None:
|
2024-05-06 14:35:39 +10:00
|
|
|
"""Removes a property template
|
|
|
|
|
|
2026-03-21 15:56:12 +11:00
|
|
|
Note that a property set template should always have at least one property
|
|
|
|
|
template to be valid. So a property set template will not be removed if it
|
|
|
|
|
is the only template ina a property ste template.
|
2024-05-06 14:35:39 +10:00
|
|
|
|
|
|
|
|
:param prop_template: The IfcSimplePropertyTemplate to remove.
|
|
|
|
|
:return: None
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
2024-06-28 12:36:31 +10:00
|
|
|
template = ifcopenshell.api.pset_template.add_pset_template(model, name="ABC_RiskFactors")
|
2024-05-06 14:35:39 +10:00
|
|
|
|
|
|
|
|
# Here's two propertes with just default values.
|
2024-06-28 12:36:31 +10:00
|
|
|
prop1 = ifcopenshell.api.pset_template.add_prop_template(model, pset_template=template)
|
|
|
|
|
prop2 = ifcopenshell.api.pset_template.add_prop_template(model, pset_template=template)
|
2024-05-06 14:35:39 +10:00
|
|
|
|
|
|
|
|
# Let's remove the second one.
|
2024-06-28 12:36:31 +10:00
|
|
|
ifcopenshell.api.pset_template.remove_prop_template(model, prop_template=prop2)
|
2024-05-06 14:35:39 +10:00
|
|
|
"""
|
2025-03-14 10:43:47 +05:00
|
|
|
for inverse in file.get_inverse(prop_template):
|
2026-03-21 15:56:12 +11:00
|
|
|
if len(inverse.HasPropertyTemplates) > 1:
|
2024-05-06 14:35:39 +10:00
|
|
|
has_property_templates = list(inverse.HasPropertyTemplates)
|
2025-03-14 10:43:47 +05:00
|
|
|
has_property_templates.remove(prop_template)
|
2024-05-06 14:35:39 +10:00
|
|
|
inverse.HasPropertyTemplates = has_property_templates
|
2026-03-21 15:56:12 +11:00
|
|
|
ifcopenshell.util.element.remove_deep2(file, prop_template)
|