mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 01:41:57 +00:00
Implement metric constraints in the ifcopenshell.api
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import ifcopenshell
|
||||
|
||||
class Usecase:
|
||||
def __init__(self, file, **settings):
|
||||
self.file = file
|
||||
self.settings = {
|
||||
"objective": None,
|
||||
}
|
||||
for key, value in settings.items():
|
||||
self.settings[key] = value
|
||||
|
||||
def execute(self):
|
||||
metric = self.file.create_entity("IfcMetric", **{
|
||||
"Name": "Unnamed",
|
||||
"ConstraintGrade": "NOTDEFINED",
|
||||
"Benchmark": "EQUALTO",
|
||||
})
|
||||
if self.settings["objective"]:
|
||||
benchmark_values = list(self.settings["objective"].BenchmarkValues or [])
|
||||
benchmark_values.append(metric)
|
||||
return metric
|
||||
@@ -16,6 +16,7 @@ class Usecase:
|
||||
related_objects = set(rel.RelatedObjects) if rel.RelatedObjects else set()
|
||||
related_objects.add(self.settings["product"])
|
||||
rel.RelatedObjects = list(related_objects)
|
||||
return rel
|
||||
|
||||
def get_constraint_rel(self):
|
||||
for rel in self.file.by_type("IfcRelAssociatesConstraint"):
|
||||
|
||||
@@ -7,12 +7,17 @@ class Data:
|
||||
is_loaded = False
|
||||
products = {}
|
||||
objectives = {}
|
||||
metrics = {}
|
||||
references = {}
|
||||
|
||||
@classmethod
|
||||
def purge(cls):
|
||||
cls.is_loaded = False
|
||||
cls.products = {}
|
||||
cls.objectives = {}
|
||||
cls.metrics ={}
|
||||
cls.references = {}
|
||||
|
||||
|
||||
@classmethod
|
||||
def load(cls, file, product_id=None):
|
||||
@@ -22,6 +27,8 @@ class Data:
|
||||
if product_id:
|
||||
return cls.load_product(product_id)
|
||||
cls.load_objectives()
|
||||
cls.load_metrics()
|
||||
cls.load_references()
|
||||
cls.is_loaded = True
|
||||
|
||||
@classmethod
|
||||
@@ -41,8 +48,41 @@ class Data:
|
||||
cls.objectives = {}
|
||||
for constraint in cls._file.by_type("IfcObjective"):
|
||||
data = constraint.get_info()
|
||||
for key, value in data.items():
|
||||
if not value:
|
||||
continue
|
||||
|
||||
if cls._file.schema == "IFC2X3":
|
||||
for attribute in ["CreationTime"]:
|
||||
if data[attribute]:
|
||||
data[attribute] = ifcopenshell.util.date.ifc2datetime(data[attribute]).isoformat()
|
||||
data["BenchmarkValues"] = [metric.id() for metric in constraint.BenchmarkValues or []]
|
||||
cls.objectives[constraint.id()] = data
|
||||
|
||||
@classmethod
|
||||
def load_metrics(cls):
|
||||
cls.metrics = {}
|
||||
for metric in cls._file.by_type("IfcMetric"):
|
||||
data = metric.get_info()
|
||||
for key, value in data.items():
|
||||
if not value:
|
||||
continue
|
||||
data["ConstrainedObjects"] = []
|
||||
for association in cls._file.by_type("IfcRelAssociatesConstraint"):
|
||||
if association.RelatingConstraint.id() == metric.id():
|
||||
data["ConstrainedObjects"] = [o.id() for o in association.RelatedObjects or []]
|
||||
if metric.DataValue:
|
||||
data["DataValue"] = data["DataValue"].id()
|
||||
if metric.ReferencePath:
|
||||
data["ReferencePath"] = data["ReferencePath"].id()
|
||||
cls.metrics[metric.id()] = data
|
||||
|
||||
@classmethod
|
||||
def load_references(cls):
|
||||
cls.references = {}
|
||||
for reference in cls._file.by_type("IfcReference"):
|
||||
data = reference.get_info()
|
||||
for key, value in data.items():
|
||||
if not value:
|
||||
continue
|
||||
cls.references[refenrece.id()] = data
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
class Usecase:
|
||||
def __init__(self, file, **settings):
|
||||
self.file = file
|
||||
self.settings = {
|
||||
"metric": None,
|
||||
"attributes": {}
|
||||
}
|
||||
for key, value in settings.items():
|
||||
self.settings[key] = value
|
||||
|
||||
def execute(self):
|
||||
for name, value in self.settings["attributes"].items():
|
||||
setattr(self.settings["metric"], name, value)
|
||||
@@ -0,0 +1,15 @@
|
||||
class Usecase:
|
||||
def __init__(self, file, **settings):
|
||||
self.file = file
|
||||
self.settings = {"metric": None}
|
||||
for key, value in settings.items():
|
||||
self.settings[key] = value
|
||||
|
||||
def execute(self):
|
||||
self.file.remove(self.settings["metric"])
|
||||
for rel in self.file.by_type("IfcRelAssociatesConstraint"):
|
||||
if not rel.RelatingConstraint:
|
||||
self.file.remove(rel)
|
||||
for resource_rel in self.file.by_type("IfcResourceConstraintRelationship"):
|
||||
if not resource_rel.RelatingConstraint:
|
||||
self.file.remove(resource_rel)
|
||||
Reference in New Issue
Block a user