mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 01:41:57 +00:00
bcfad8d96d
remove_deep is deprecated and can silently delete elements still in use. remove_deep2 requires zero inverses before removal, making it safer. Also fixes a double-removal bug in remove_grid_axis and prevents removing the last prop template from a pset template. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
51 lines
2.1 KiB
Python
51 lines
2.1 KiB
Python
# 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/>.
|
|
|
|
import ifcopenshell.util.element
|
|
|
|
|
|
def remove_prop_template(file: ifcopenshell.file, prop_template: ifcopenshell.entity_instance) -> None:
|
|
"""Removes a property template
|
|
|
|
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.
|
|
|
|
:param prop_template: The IfcSimplePropertyTemplate to remove.
|
|
:return: None
|
|
|
|
Example:
|
|
|
|
.. code:: python
|
|
|
|
template = ifcopenshell.api.pset_template.add_pset_template(model, name="ABC_RiskFactors")
|
|
|
|
# Here's two propertes with just default values.
|
|
prop1 = ifcopenshell.api.pset_template.add_prop_template(model, pset_template=template)
|
|
prop2 = ifcopenshell.api.pset_template.add_prop_template(model, pset_template=template)
|
|
|
|
# Let's remove the second one.
|
|
ifcopenshell.api.pset_template.remove_prop_template(model, prop_template=prop2)
|
|
"""
|
|
for inverse in file.get_inverse(prop_template):
|
|
if len(inverse.HasPropertyTemplates) > 1:
|
|
has_property_templates = list(inverse.HasPropertyTemplates)
|
|
has_property_templates.remove(prop_template)
|
|
inverse.HasPropertyTemplates = has_property_templates
|
|
ifcopenshell.util.element.remove_deep2(file, prop_template)
|