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/>.
|
|
|
|
|
|
2022-01-14 18:00:08 +11:00
|
|
|
import ifcopenshell
|
2024-06-28 12:36:31 +10:00
|
|
|
import ifcopenshell.api.owner
|
2023-11-27 18:31:42 +11:00
|
|
|
import ifcopenshell.util.element
|
2022-01-14 18:00:08 +11:00
|
|
|
|
|
|
|
|
|
2024-05-09 14:18:36 +05:00
|
|
|
def unassign_product(
|
|
|
|
|
file: ifcopenshell.file,
|
|
|
|
|
relating_product: ifcopenshell.entity_instance,
|
|
|
|
|
related_object: ifcopenshell.entity_instance,
|
|
|
|
|
) -> None:
|
2024-05-06 14:35:39 +10:00
|
|
|
"""Unassigns a product and an object (typically an annotation)
|
2022-11-23 11:23:40 +09:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
Smart annotation objects can be associated with products so that they
|
|
|
|
|
can annotate attributes and properties. This function lets you remove
|
|
|
|
|
the association, so that you may change the assocation with another
|
|
|
|
|
object later or leave the annotation as a "dumb" annotation.
|
2022-11-23 11:23:40 +09:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
:param relating_product: The IfcProduct the object is related to
|
|
|
|
|
:param related_object: The object (typically IfcAnnotation) that the
|
|
|
|
|
product is related to
|
2024-05-09 14:18:36 +05:00
|
|
|
:return: None
|
2022-11-23 11:23:40 +09:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
Example:
|
2023-01-10 10:16:28 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
.. code:: python
|
2022-11-23 11:23:40 +09:00
|
|
|
|
2024-06-28 12:36:31 +10:00
|
|
|
furniture = ifcopenshell.api.root.create_entity(model, ifc_class="IfcFurniture")
|
|
|
|
|
annotation = ifcopenshell.api.root.create_entity(model, ifc_class="IfcAnnotation")
|
|
|
|
|
ifcopenshell.api.drawing.assign_product(model,
|
2024-05-06 14:35:39 +10:00
|
|
|
relating_product=furniture, related_object=annotation)
|
2022-11-23 11:23:40 +09:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
# Let's change our mind and remove the relationship
|
2024-06-28 12:36:31 +10:00
|
|
|
ifcopenshell.api.drawing.unassign_product(model,
|
2024-05-06 14:35:39 +10:00
|
|
|
relating_product=furniture, related_object=annotation)
|
|
|
|
|
"""
|
2025-05-26 13:49:06 +10:00
|
|
|
if relating_product.is_a("IfcGridAxis"):
|
|
|
|
|
grid = None
|
|
|
|
|
for attribute in ("PartOfW", "PartOfV", "PartOfU"):
|
|
|
|
|
if getattr(relating_product, attribute, None):
|
|
|
|
|
grid = getattr(relating_product, attribute)[0]
|
|
|
|
|
break
|
|
|
|
|
relating_product = grid
|
|
|
|
|
|
2025-03-14 10:43:47 +05:00
|
|
|
for rel in related_object.HasAssignments or []:
|
|
|
|
|
if not rel.is_a("IfcRelAssignsToProduct") or rel.RelatingProduct != relating_product:
|
2024-05-06 14:35:39 +10:00
|
|
|
continue
|
|
|
|
|
if len(rel.RelatedObjects) == 1:
|
|
|
|
|
history = rel.OwnerHistory
|
|
|
|
|
file.remove(rel)
|
|
|
|
|
if history:
|
|
|
|
|
ifcopenshell.util.element.remove_deep2(file, history)
|
|
|
|
|
return
|
|
|
|
|
related_objects = list(rel.RelatedObjects)
|
2025-03-14 10:43:47 +05:00
|
|
|
related_objects.remove(related_object)
|
2024-05-06 14:35:39 +10:00
|
|
|
rel.RelatedObjects = related_objects
|
2024-06-28 12:36:31 +10:00
|
|
|
ifcopenshell.api.owner.update_owner_history(file, element=rel)
|