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/>.
|
|
|
|
|
|
2020-11-25 13:13:46 +11:00
|
|
|
import os
|
|
|
|
|
import json
|
|
|
|
|
import time
|
|
|
|
|
import ifcopenshell
|
|
|
|
|
|
|
|
|
|
# This is highly experimental and incomplete, however, it may work for simple datasets.
|
|
|
|
|
# In this simple implementation, we only support 2X3<->4 right now
|
|
|
|
|
|
|
|
|
|
cwd = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
|
|
2020-12-02 09:51:00 +11:00
|
|
|
|
|
|
|
|
def is_a(entity, ifc_class):
|
2022-06-06 10:31:33 +02:00
|
|
|
ifc_class = ifc_class.upper()
|
|
|
|
|
if entity.name_uc() == ifc_class:
|
2020-12-02 09:51:00 +11:00
|
|
|
return True
|
|
|
|
|
if entity.supertype():
|
|
|
|
|
return is_a(entity.supertype(), ifc_class)
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
2021-08-10 17:35:18 +10:00
|
|
|
def get_subtypes(entity):
|
|
|
|
|
def get_classes(declaration):
|
|
|
|
|
results = []
|
|
|
|
|
if not declaration.is_abstract():
|
|
|
|
|
results.append(declaration)
|
|
|
|
|
for subtype in declaration.subtypes():
|
|
|
|
|
results.extend(get_classes(subtype))
|
|
|
|
|
return results
|
2021-09-09 21:27:23 +10:00
|
|
|
|
2021-08-10 17:35:18 +10:00
|
|
|
return get_classes(entity)
|
|
|
|
|
|
|
|
|
|
|
2021-01-04 13:07:29 +11:00
|
|
|
def reassign_class(ifc_file, element, new_class):
|
|
|
|
|
try:
|
|
|
|
|
new_element = ifc_file.create_entity(new_class)
|
|
|
|
|
except:
|
|
|
|
|
print(f"Class of {element} could not be changed to {new_class}")
|
|
|
|
|
return element
|
|
|
|
|
new_attributes = [new_element.attribute_name(i) for i, attribute in enumerate(new_element)]
|
|
|
|
|
for i, attribute in enumerate(element):
|
|
|
|
|
try:
|
|
|
|
|
new_element[new_attributes.index(element.attribute_name(i))] = attribute
|
|
|
|
|
except:
|
|
|
|
|
continue
|
|
|
|
|
for inverse in ifc_file.get_inverse(element):
|
|
|
|
|
ifcopenshell.util.element.replace_attribute(inverse, element, new_element)
|
|
|
|
|
ifc_file.remove(element)
|
|
|
|
|
return new_element
|
|
|
|
|
|
|
|
|
|
|
2020-11-25 13:13:46 +11:00
|
|
|
class Migrator:
|
|
|
|
|
def __init__(self):
|
|
|
|
|
self.migrated_ids = {}
|
|
|
|
|
self.class_4_to_2x3 = json.load(open(os.path.join(cwd, "class_4_to_2x3.json"), "r"))
|
|
|
|
|
|
|
|
|
|
# IFC4 classes, and their IFC4 attribute : IFC2X3 attributes
|
|
|
|
|
self.attribute_4_to_2x3 = json.load(open(os.path.join(cwd, "attribute_4_to_2x3.json"), "r"))
|
|
|
|
|
|
|
|
|
|
self.default_values = {
|
|
|
|
|
"ChangeAction": "NOCHANGE",
|
|
|
|
|
"CompositionType": "ELEMENT",
|
|
|
|
|
"CrossSectionArea": 1,
|
|
|
|
|
"DataValue": 0,
|
|
|
|
|
"DefinedValues": [0],
|
|
|
|
|
"DefiningValues": [0],
|
|
|
|
|
"DestabilizingLoad": False,
|
|
|
|
|
"Edition": "",
|
|
|
|
|
"EndParam": 1.0,
|
|
|
|
|
"EnumerationValues": [0],
|
|
|
|
|
"GeodeticDatum": "",
|
|
|
|
|
"Intent": "",
|
|
|
|
|
"IsHeading": False,
|
|
|
|
|
"ListValues": [0],
|
|
|
|
|
"LongitudinalBarCrossSectionArea": 1,
|
|
|
|
|
"LongitudinalBarNominalDiameter": 1,
|
|
|
|
|
"LongitudinalBarSpacing": 1,
|
|
|
|
|
"Name": "",
|
|
|
|
|
"NominalDiameter": 1,
|
|
|
|
|
"PredefinedType": "NOTDEFINED",
|
|
|
|
|
"RowCells": [0],
|
|
|
|
|
"SequenceType": "NOTDEFINED",
|
|
|
|
|
"Source": "",
|
|
|
|
|
"StartParam": 0.0,
|
|
|
|
|
"TransverseBarCrossSectionArea": 1,
|
|
|
|
|
"TransverseBarNominalDiameter": 1,
|
|
|
|
|
"TransverseBarSpacing": 1,
|
|
|
|
|
# Manual additions from experience
|
|
|
|
|
"InteriorOrExteriorSpace": "NOTDEFINED",
|
2022-01-10 15:42:24 +11:00
|
|
|
"AssemblyPlace": "NOTDEFINED", # See bug https://github.com/Autodesk/revit-ifc/issues/395
|
2020-11-25 13:13:46 +11:00
|
|
|
}
|
|
|
|
|
self.default_entities = {
|
|
|
|
|
"CurrentValue": None,
|
|
|
|
|
"DepreciatedValue": None,
|
|
|
|
|
"Jurisdiction": None,
|
|
|
|
|
"OriginalValue": None,
|
|
|
|
|
"Owner": None,
|
|
|
|
|
"OwnerHistory": None,
|
|
|
|
|
"Position": None,
|
|
|
|
|
"PropertyReference": None,
|
|
|
|
|
"RepresentationContexts": None,
|
|
|
|
|
"ResponsiblePerson": None,
|
|
|
|
|
"ResponsiblePersons": None,
|
|
|
|
|
"Rows": None,
|
|
|
|
|
"TotalReplacementCost": None,
|
|
|
|
|
"UnitsInContext": None,
|
|
|
|
|
"User": None,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def migrate(self, element, new_file):
|
2022-09-20 22:46:07 +10:00
|
|
|
if element.id() == 0:
|
|
|
|
|
return new_file.create_entity(element.is_a(), element.wrappedValue)
|
2020-11-25 13:13:46 +11:00
|
|
|
try:
|
|
|
|
|
return new_file.by_id(self.migrated_ids[element.id()])
|
|
|
|
|
except:
|
|
|
|
|
pass
|
2020-12-02 09:51:00 +11:00
|
|
|
# print("Migrating", element)
|
2020-11-25 13:13:46 +11:00
|
|
|
schema = ifcopenshell.ifcopenshell_wrapper.schema_by_name(new_file.schema)
|
|
|
|
|
new_element = self.migrate_class(element, new_file)
|
2020-12-02 09:51:00 +11:00
|
|
|
# print("Migrated class from {} to {}".format(element, new_element))
|
2020-11-25 13:13:46 +11:00
|
|
|
new_element_schema = schema.declaration_by_name(new_element.is_a())
|
|
|
|
|
if not hasattr(new_element_schema, "all_attributes"):
|
2020-12-02 09:51:00 +11:00
|
|
|
return element # The element has no attributes, so migration is done
|
2020-11-25 13:13:46 +11:00
|
|
|
new_element = self.migrate_attributes(element, new_file, new_element, new_element_schema)
|
|
|
|
|
self.migrated_ids[element.id()] = new_element.id()
|
|
|
|
|
return new_element
|
|
|
|
|
|
|
|
|
|
def migrate_class(self, element, new_file):
|
|
|
|
|
try:
|
|
|
|
|
new_element = new_file.create_entity(element.is_a())
|
|
|
|
|
except:
|
|
|
|
|
# The element does not exist in this schema
|
|
|
|
|
# Complex migration is not yet supported (e.g. polygonal face set to faceted brep)
|
|
|
|
|
if new_file.schema == "IFC2X3":
|
|
|
|
|
new_element = new_file.create_entity(self.class_4_to_2x3[element.is_a()])
|
|
|
|
|
elif new_file.schema == "IFC4":
|
|
|
|
|
print("Class migration to IFC4 not yet supported for", element)
|
2020-11-25 20:17:17 +11:00
|
|
|
pass
|
2020-11-25 13:13:46 +11:00
|
|
|
return new_element
|
|
|
|
|
|
|
|
|
|
def migrate_attributes(self, element, new_file, new_element, new_element_schema):
|
|
|
|
|
for i, attribute in enumerate(new_element_schema.all_attributes()):
|
|
|
|
|
if new_element_schema.derived()[i]:
|
|
|
|
|
continue
|
|
|
|
|
self.migrate_attribute(attribute, element, new_file, new_element, new_element_schema)
|
|
|
|
|
return new_element
|
|
|
|
|
|
|
|
|
|
def migrate_attribute(self, attribute, element, new_file, new_element, new_element_schema):
|
2020-12-02 09:51:00 +11:00
|
|
|
# print("Migrating attribute", element, new_element, attribute.name())
|
2020-11-25 13:13:46 +11:00
|
|
|
if hasattr(element, attribute.name()):
|
|
|
|
|
value = getattr(element, attribute.name())
|
2020-12-02 09:51:00 +11:00
|
|
|
# print("Attribute names matched", value)
|
2020-11-25 13:13:46 +11:00
|
|
|
elif new_file.schema == "IFC2X3":
|
|
|
|
|
# IFC4 to IFC2X3: We know the IFC2X3 attribute name, but not its IFC4 equivalent
|
2020-12-02 09:51:00 +11:00
|
|
|
# print("Searching for an equivalent", new_element, attribute.name())
|
2020-11-25 13:13:46 +11:00
|
|
|
try:
|
|
|
|
|
equivalent_map = self.attribute_4_to_2x3[new_element.is_a()]
|
|
|
|
|
equivalent = list(equivalent_map.keys())[list(equivalent_map.values()).index(attribute.name())]
|
|
|
|
|
if hasattr(element, equivalent):
|
2020-12-02 09:51:00 +11:00
|
|
|
# print("Equivalent found", equivalent)
|
2020-11-25 13:13:46 +11:00
|
|
|
value = getattr(element, equivalent)
|
|
|
|
|
else:
|
|
|
|
|
return
|
|
|
|
|
except:
|
2020-12-02 09:51:00 +11:00
|
|
|
print(
|
|
|
|
|
"Unable to find equivalent attribute of {} to migrate from {} to {}".format(
|
|
|
|
|
attribute.name(), element, new_element
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
return # We tried our best
|
2020-11-25 13:13:46 +11:00
|
|
|
elif new_file.schema == "IFC4":
|
|
|
|
|
# IFC2X3 to IFC4: We know the IFC4 attribute name, but not its IFC2X3 equivalent
|
2020-12-02 09:51:00 +11:00
|
|
|
# print("Searching for an equivalent", element, new_element, attribute.name())
|
2020-11-25 13:13:46 +11:00
|
|
|
try:
|
|
|
|
|
equivalent = self.attribute_4_to_2x3[new_element.is_a()][attribute.name()]
|
2020-12-02 09:51:00 +11:00
|
|
|
# print("Searching for equivalent", equivalent)
|
2020-11-25 13:13:46 +11:00
|
|
|
if hasattr(element, equivalent):
|
|
|
|
|
value = getattr(element, equivalent)
|
|
|
|
|
else:
|
|
|
|
|
return
|
|
|
|
|
except:
|
2020-12-02 09:51:00 +11:00
|
|
|
print(
|
|
|
|
|
"Unable to find equivalent attribute of {} to migrate from {} to {}".format(
|
|
|
|
|
attribute.name(), element, new_element
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
return # We tried our best
|
2020-11-25 13:13:46 +11:00
|
|
|
|
2020-12-02 09:51:00 +11:00
|
|
|
# print("Continuing migration of {} to migrate from {} to {}".format(attribute.name(), element, new_element))
|
2020-11-25 13:13:46 +11:00
|
|
|
if value is None and not attribute.optional():
|
|
|
|
|
value = self.generate_default_value(attribute, new_file)
|
|
|
|
|
if value is None:
|
|
|
|
|
print("Failed to generate default value for {} on {}".format(attribute.name(), element))
|
|
|
|
|
elif isinstance(value, ifcopenshell.entity_instance):
|
|
|
|
|
value = self.migrate(value, new_file)
|
|
|
|
|
elif isinstance(value, (list, tuple)):
|
|
|
|
|
if value and isinstance(value[0], ifcopenshell.entity_instance):
|
|
|
|
|
new_value = []
|
|
|
|
|
for item in value:
|
|
|
|
|
new_value.append(self.migrate(item, new_file))
|
|
|
|
|
value = new_value
|
2022-09-20 22:46:07 +10:00
|
|
|
if value is not None:
|
|
|
|
|
setattr(new_element, attribute.name(), value)
|
2020-11-25 13:13:46 +11:00
|
|
|
|
|
|
|
|
def generate_default_value(self, attribute, new_file):
|
|
|
|
|
if attribute.name() in self.default_values:
|
|
|
|
|
return self.default_values[attribute.name()]
|
|
|
|
|
elif attribute.name() == "OwnerHistory":
|
2020-12-02 09:51:00 +11:00
|
|
|
self.default_entities[attribute.name()] = new_file.create_entity(
|
|
|
|
|
"IfcOwnerHistory",
|
|
|
|
|
**{
|
|
|
|
|
"OwningUser": new_file.create_entity(
|
|
|
|
|
"IfcPersonAndOrganization",
|
|
|
|
|
**{
|
|
|
|
|
"ThePerson": new_file.create_entity("IfcPerson"),
|
|
|
|
|
"TheOrganization": new_file.create_entity(
|
|
|
|
|
"IfcOrganization", **{"Name": "IfcOpenShell Migrator"}
|
|
|
|
|
),
|
2021-09-09 21:27:23 +10:00
|
|
|
},
|
2020-12-02 09:51:00 +11:00
|
|
|
),
|
|
|
|
|
"OwningApplication": new_file.create_entity(
|
|
|
|
|
"IfcApplication",
|
|
|
|
|
**{
|
|
|
|
|
"ApplicationDeveloper": new_file.create_entity(
|
|
|
|
|
"IfcOrganization", **{"Name": "IfcOpenShell Migrator"}
|
|
|
|
|
),
|
|
|
|
|
"Version": "Works for me",
|
|
|
|
|
"ApplicationFullName": "IfcOpenShell Migrator",
|
|
|
|
|
"ApplicationIdentifier": "IfcOpenShell Migrator",
|
2021-09-09 21:27:23 +10:00
|
|
|
},
|
2020-12-02 09:51:00 +11:00
|
|
|
),
|
|
|
|
|
"ChangeAction": "NOCHANGE",
|
|
|
|
|
"CreationDate": int(time.time()),
|
2021-09-09 21:27:23 +10:00
|
|
|
},
|
2020-12-02 09:51:00 +11:00
|
|
|
)
|
2022-09-20 22:46:07 +10:00
|
|
|
return self.default_entities.get(attribute.name(), None)
|