2021-01-21 21:58:27 +11:00
|
|
|
import ifcopenshell
|
|
|
|
|
import ifcopenshell.util.schema
|
2021-01-22 16:55:38 +11:00
|
|
|
import ifcopenshell.util.date
|
2021-01-21 21:58:27 +11:00
|
|
|
|
|
|
|
|
class Usecase:
|
2021-03-27 19:14:32 +11:00
|
|
|
def __init__(self, file, **settings):
|
2021-01-21 21:58:27 +11:00
|
|
|
self.file = file
|
|
|
|
|
self.settings = {
|
|
|
|
|
"classification": None,
|
|
|
|
|
}
|
|
|
|
|
for key, value in settings.items():
|
|
|
|
|
self.settings[key] = value
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
2021-01-22 16:55:38 +11:00
|
|
|
edition_date = None
|
|
|
|
|
if self.settings["classification"].EditionDate:
|
|
|
|
|
edition_date = ifcopenshell.util.date.ifc2datetime(self.settings["classification"].EditionDate)
|
|
|
|
|
self.settings["classification"].EditionDate = None
|
|
|
|
|
|
2021-01-21 21:58:27 +11:00
|
|
|
migrator = ifcopenshell.util.schema.Migrator()
|
|
|
|
|
result = migrator.migrate(self.settings["classification"], self.file)
|
2021-01-22 16:55:38 +11:00
|
|
|
|
|
|
|
|
# TODO: should auto date migration be part of the migrator?
|
|
|
|
|
if self.file.schema == "IFC2X3" and edition_date:
|
|
|
|
|
result.EditionDate = ifcopenshell.util.date.datetime2ifc(edition_date, "IfcCalendarDate")
|
|
|
|
|
else:
|
|
|
|
|
result.EditionDate = ifcopenshell.util.date.datetime2ifc(edition_date, "IfcDate")
|
|
|
|
|
|
2021-01-21 21:58:27 +11:00
|
|
|
self.file.create_entity("IfcRelAssociatesClassification", **{
|
|
|
|
|
"GlobalId": ifcopenshell.guid.new(),
|
|
|
|
|
"RelatedObjects": [self.file.by_type("IfcProject")[0]],
|
|
|
|
|
"RelatingClassification": result
|
|
|
|
|
})
|
|
|
|
|
return # See bug #1272
|
|
|
|
|
try:
|
|
|
|
|
result = self.file.add(self.settings["classification"])
|
|
|
|
|
except:
|
|
|
|
|
migrator = ifcopenshell.util.schema.Migrator()
|
|
|
|
|
result = migrator.migrate(self.settings["classification"], self.file)
|