2015-08-13 14:28:50 +02:00
|
|
|
###############################################################################
|
|
|
|
|
# #
|
|
|
|
|
# This file is part of IfcOpenShell. #
|
|
|
|
|
# #
|
|
|
|
|
# IfcOpenShell is free software: you can redistribute it and/or modify #
|
|
|
|
|
# it under the terms of the Lesser GNU General Public License as published by #
|
|
|
|
|
# the Free Software Foundation, either version 3.0 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 #
|
|
|
|
|
# Lesser GNU General Public License for more details. #
|
|
|
|
|
# #
|
|
|
|
|
# You should have received a copy of the Lesser GNU General Public License #
|
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
|
|
|
|
# #
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
|
|
import operator
|
|
|
|
|
|
|
|
|
|
import nodes
|
2017-12-11 13:43:06 +01:00
|
|
|
import codegen
|
2015-08-13 14:28:50 +02:00
|
|
|
import templates
|
|
|
|
|
|
2017-12-11 13:43:06 +01:00
|
|
|
class SchemaClass(codegen.Base):
|
2015-08-13 14:28:50 +02:00
|
|
|
def __init__(self, mapping):
|
|
|
|
|
|
|
|
|
|
class UnmetDependenciesException(Exception): pass
|
2015-09-08 20:40:54 +02:00
|
|
|
|
|
|
|
|
schema_name = mapping.schema.name
|
2017-12-13 13:16:49 +01:00
|
|
|
self.schema_name = schema_name_title = schema_name.capitalize()
|
|
|
|
|
|
2015-09-08 20:40:54 +02:00
|
|
|
declared_types = []
|
|
|
|
|
|
2015-08-13 14:28:50 +02:00
|
|
|
def get_declared_type(type, emitted_names=None):
|
|
|
|
|
if isinstance(type, nodes.AggregationType):
|
|
|
|
|
aggr_type = type.aggregate_type
|
|
|
|
|
make_bound = lambda b: -1 if b == '?' else int(b)
|
2017-12-11 13:43:06 +01:00
|
|
|
bound1, bound2 = map(make_bound, (type.bounds.lower, type.bounds.upper))
|
2015-08-13 14:28:50 +02:00
|
|
|
decl_type = get_declared_type(type.type)
|
|
|
|
|
return "new aggregation_type(aggregation_type::%(aggr_type)s_type, %(bound1)d, %(bound2)d, %(decl_type)s)" % locals()
|
|
|
|
|
elif isinstance(type, nodes.BinaryType):
|
|
|
|
|
return "new simple_type(simple_type::binary_type)"
|
2017-12-11 14:20:30 +01:00
|
|
|
elif isinstance(type, nodes.StringType):
|
|
|
|
|
return "new simple_type(simple_type::string_type)"
|
2015-08-13 14:28:50 +02:00
|
|
|
elif isinstance(type, str):
|
|
|
|
|
if mapping.schema.is_type(type) or mapping.schema.is_entity(type):
|
2017-12-11 14:20:30 +01:00
|
|
|
if emitted_names is None or type.lower() in emitted_types:
|
2015-08-13 14:28:50 +02:00
|
|
|
return "new named_type(%s_type)" % type
|
|
|
|
|
else:
|
|
|
|
|
raise UnmetDependenciesException(type)
|
|
|
|
|
else:
|
2017-12-11 13:43:06 +01:00
|
|
|
return "new simple_type(simple_type::%s_type)" % type
|
|
|
|
|
|
|
|
|
|
def find_inverse_name_and_index(entity_name, attribute_name):
|
|
|
|
|
attributes_per_subtype = []
|
|
|
|
|
while True:
|
|
|
|
|
entity = mapping.schema.entities[entity_name]
|
|
|
|
|
attr_names = list(map(operator.attrgetter('name'), entity.attributes))
|
|
|
|
|
if len(attr_names):
|
|
|
|
|
attributes_per_subtype.append((entity_name, attr_names))
|
|
|
|
|
if len(entity.supertypes) != 1: break
|
|
|
|
|
entity_name = entity.supertypes[0]
|
|
|
|
|
index = 0
|
|
|
|
|
for et, attrs in attributes_per_subtype[::-1]:
|
|
|
|
|
try: return et, attrs.index(attribute_name)
|
|
|
|
|
except: pass
|
2015-08-13 14:28:50 +02:00
|
|
|
|
2017-12-11 14:20:30 +01:00
|
|
|
else:
|
|
|
|
|
raise Exception("No declared type for <%r>" % type)
|
|
|
|
|
|
2015-09-08 20:40:54 +02:00
|
|
|
statements = ['',
|
|
|
|
|
'#include "../ifcparse/IfcSchema.h"',
|
2017-12-13 13:16:49 +01:00
|
|
|
'#include "../ifcparse/%(schema_name_title)s.h"' % locals(),
|
2015-09-08 20:40:54 +02:00
|
|
|
'',
|
2017-12-13 13:16:49 +01:00
|
|
|
'using namespace IfcParse;',
|
|
|
|
|
'using namespace %(schema_name_title)s;' % locals(),
|
2015-09-08 20:40:54 +02:00
|
|
|
'']
|
|
|
|
|
|
|
|
|
|
collections_by_type = (('entity', mapping.schema.entities ),
|
|
|
|
|
('type_declaration', mapping.schema.simpletypes ),
|
|
|
|
|
('select_type', mapping.schema.selects ),
|
|
|
|
|
('enumeration_type', mapping.schema.enumerations))
|
|
|
|
|
|
|
|
|
|
for cpp_type, collection in collections_by_type:
|
|
|
|
|
for name in collection.keys():
|
|
|
|
|
statements.append('%(cpp_type)s* %(name)s_type = 0;' % locals())
|
2017-12-13 13:16:49 +01:00
|
|
|
|
|
|
|
|
declarations_by_index = []
|
|
|
|
|
|
|
|
|
|
statements.append("{factory_placeholder}")
|
2017-12-11 14:20:30 +01:00
|
|
|
|
|
|
|
|
statements.append("""
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
#pragma optimize("", off)
|
|
|
|
|
#endif
|
|
|
|
|
""")
|
2017-12-13 13:16:49 +01:00
|
|
|
statements.append('IfcParse::schema_definition* populate_schema() {')
|
2015-08-13 14:28:50 +02:00
|
|
|
|
|
|
|
|
emitted_types = set()
|
|
|
|
|
while len(emitted_types) < len(mapping.schema.simpletypes):
|
|
|
|
|
for name, type in mapping.schema.simpletypes.items():
|
2017-12-11 14:20:30 +01:00
|
|
|
if name.lower() in emitted_types: continue
|
2015-08-13 14:28:50 +02:00
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
declared_type = get_declared_type(type, emitted_types)
|
|
|
|
|
except UnmetDependenciesException:
|
2017-12-11 14:20:30 +01:00
|
|
|
# print("Unmet", repr(name))
|
2015-08-13 14:28:50 +02:00
|
|
|
continue
|
|
|
|
|
|
2017-12-13 13:16:49 +01:00
|
|
|
statements.append(' %(name)s_type = new type_declaration("%(name)s", %%(index_in_schema_%(name)s)d, %(declared_type)s);' % locals())
|
2017-12-11 14:20:30 +01:00
|
|
|
emitted_types.add(name.lower())
|
2015-08-13 14:28:50 +02:00
|
|
|
|
2015-09-08 20:40:54 +02:00
|
|
|
declared_types.append('%(name)s_type' % locals())
|
2017-12-13 13:16:49 +01:00
|
|
|
declarations_by_index.append(name)
|
2015-09-08 20:40:54 +02:00
|
|
|
|
2015-08-13 14:28:50 +02:00
|
|
|
for name, enum in mapping.schema.enumerations.items():
|
|
|
|
|
statements.append(' {')
|
|
|
|
|
statements.append(' std::vector<std::string> items; items.reserve(%d);' % len(enum.values))
|
|
|
|
|
statements.extend(map(lambda v: ' items.push_back("%s");' % v, sorted(enum.values)))
|
2017-12-13 13:16:49 +01:00
|
|
|
statements.append(' %(name)s_type = new enumeration_type("%(name)s", %%(index_in_schema_%(name)s)d, items);' % locals())
|
2015-08-13 14:28:50 +02:00
|
|
|
statements.append(' }')
|
2015-09-08 20:40:54 +02:00
|
|
|
|
|
|
|
|
declared_types.append('%(name)s_type' % locals())
|
2017-12-13 13:16:49 +01:00
|
|
|
declarations_by_index.append(name)
|
2015-08-13 14:28:50 +02:00
|
|
|
|
|
|
|
|
emitted_entities = set()
|
|
|
|
|
while len(emitted_entities) < len(mapping.schema.entities):
|
|
|
|
|
for name, type in mapping.schema.entities.items():
|
2017-12-11 14:20:30 +01:00
|
|
|
if name.lower() in emitted_entities: continue
|
|
|
|
|
if len(type.supertypes) == 0 or set(map(lambda s: s.lower(), type.supertypes)) < emitted_entities:
|
2015-08-13 14:28:50 +02:00
|
|
|
supertype = '0' if len(type.supertypes) == 0 else '%s_type' % type.supertypes[0]
|
2017-12-13 13:16:49 +01:00
|
|
|
statements.append(' %(name)s_type = new entity("%(name)s", %%(index_in_schema_%(name)s)d, %(supertype)s);' % locals())
|
2017-12-11 14:20:30 +01:00
|
|
|
emitted_entities.add(name.lower())
|
2015-09-08 20:40:54 +02:00
|
|
|
|
|
|
|
|
declared_types.append('%(name)s_type' % locals())
|
2017-12-13 13:16:49 +01:00
|
|
|
declarations_by_index.append(name)
|
2015-08-13 14:28:50 +02:00
|
|
|
|
|
|
|
|
emmited = emitted_types | emitted_entities | set(mapping.schema.enumerations.keys())
|
|
|
|
|
|
|
|
|
|
emitted_selects = set()
|
|
|
|
|
while len(emitted_selects) < len(mapping.schema.selects):
|
|
|
|
|
for name, type in mapping.schema.selects.items():
|
2017-12-11 14:20:30 +01:00
|
|
|
if name.lower() in emitted_selects: continue
|
|
|
|
|
if set(map(lambda s: s.lower(),type.values)) < emmited:
|
2015-08-13 14:28:50 +02:00
|
|
|
statements.append(' {')
|
|
|
|
|
statements.append(' std::vector<const declaration*> items; items.reserve(%d);' % len(type.values))
|
|
|
|
|
statements.extend(map(lambda v: ' items.push_back(%s_type);' % v, sorted(type.values)))
|
2017-12-13 13:16:49 +01:00
|
|
|
statements.append(' %(name)s_type = new select_type("%(name)s", %%(index_in_schema_%(name)s)d, items);' % locals())
|
2015-08-13 14:28:50 +02:00
|
|
|
statements.append(' }')
|
2017-12-11 14:20:30 +01:00
|
|
|
emitted_selects.add(name.lower())
|
2015-08-13 14:28:50 +02:00
|
|
|
emmited.add(name)
|
|
|
|
|
|
2015-09-08 20:40:54 +02:00
|
|
|
declared_types.append('%(name)s_type' % locals())
|
2017-12-13 13:16:49 +01:00
|
|
|
declarations_by_index.append(name)
|
2015-09-08 20:40:54 +02:00
|
|
|
|
|
|
|
|
num_declarations = len(declared_types)
|
|
|
|
|
|
2015-08-13 14:28:50 +02:00
|
|
|
for name, type in mapping.schema.entities.items():
|
|
|
|
|
derived = set(mapping.derived_in_supertype(type))
|
|
|
|
|
attribute_names = list(map(operator.attrgetter('name'), mapping.arguments(type)))
|
|
|
|
|
|
|
|
|
|
statements.append(' {')
|
|
|
|
|
statements.append(' std::vector<const entity::attribute*> attributes; attributes.reserve(%d);' % len(type.attributes))
|
|
|
|
|
for attr in type.attributes:
|
|
|
|
|
attr_name, optional = attr.name, str(attr.optional).lower()
|
|
|
|
|
decl_type = get_declared_type(attr.type)
|
|
|
|
|
statements.append(' attributes.push_back(new entity::attribute("%(attr_name)s", %(decl_type)s, %(optional)s));' % locals())
|
|
|
|
|
statements.append(' std::vector<bool> derived; derived.reserve(%d);' % len(attribute_names))
|
|
|
|
|
statements.append(' ' + " ".join(map(lambda b: 'derived.push_back(%s);' % str(b in derived).lower(), attribute_names)))
|
|
|
|
|
statements.append(' %(name)s_type->set_attributes(attributes, derived);' % locals())
|
|
|
|
|
statements.append(' }')
|
2015-09-08 20:40:54 +02:00
|
|
|
|
2017-12-11 13:43:06 +01:00
|
|
|
for name, type in mapping.schema.entities.items():
|
|
|
|
|
if type.inverse:
|
|
|
|
|
statements.append(' {')
|
|
|
|
|
statements.append(' std::vector<const entity::inverse_attribute*> attributes; attributes.reserve(%d);' % len(type.inverse.elements))
|
|
|
|
|
for attr in type.inverse.elements:
|
|
|
|
|
if attr.bounds:
|
|
|
|
|
make_bound = lambda b: -1 if b == '?' else int(b)
|
|
|
|
|
bound1, bound2 = map(make_bound, (attr.bounds.lower, attr.bounds.upper))
|
|
|
|
|
else:
|
|
|
|
|
bound1, bound2 = -1, -1
|
|
|
|
|
attr_name, aggr_type, entity_ref = attr.name, attr.type, attr.entity
|
|
|
|
|
if aggr_type is None: aggr_type = 'unspecified'
|
|
|
|
|
attribute_entity, attribute_entity_index = find_inverse_name_and_index(entity_ref, attr.attribute)
|
|
|
|
|
statements.append(' attributes.push_back(new entity::inverse_attribute("%(attr_name)s", entity::inverse_attribute::%(aggr_type)s_type, %(bound1)d, %(bound2)d, %(entity_ref)s_type, %(attribute_entity)s_type->attributes()[%(attribute_entity_index)d]));' % locals())
|
|
|
|
|
statements.append(' %(name)s_type->set_inverse_attributes(attributes);' % locals())
|
|
|
|
|
statements.append(' }')
|
|
|
|
|
|
2015-09-08 20:40:54 +02:00
|
|
|
statements.append('')
|
|
|
|
|
statements.append(' std::vector<const declaration*> declarations; declarations.reserve(%(num_declarations)d);' % locals())
|
|
|
|
|
for type_name in declared_types:
|
|
|
|
|
statements.append(' declarations.push_back(%(type_name)s);' % locals())
|
|
|
|
|
|
2017-12-13 13:16:49 +01:00
|
|
|
statements.append(' return new schema_definition("%(schema_name)s", declarations, new %(schema_name)s_instance_factory());' % locals())
|
2015-09-08 20:40:54 +02:00
|
|
|
|
|
|
|
|
statements.extend(('}',''))
|
|
|
|
|
|
2017-12-11 14:20:30 +01:00
|
|
|
statements.append("""
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
#pragma optimize("", on)
|
|
|
|
|
#endif
|
|
|
|
|
""")
|
2017-12-11 13:43:06 +01:00
|
|
|
|
2017-12-12 10:33:24 +01:00
|
|
|
statements.append("namespace %s {" % mapping.schema.name)
|
|
|
|
|
|
2015-09-08 20:40:54 +02:00
|
|
|
statements.extend(('const schema_definition& get_schema() {',
|
|
|
|
|
'',
|
|
|
|
|
' static const schema_definition* s = populate_schema();',
|
|
|
|
|
' return *s;',
|
2017-12-12 10:33:24 +01:00
|
|
|
'}','}','',''))
|
2015-09-08 20:40:54 +02:00
|
|
|
|
2017-12-13 13:16:49 +01:00
|
|
|
declarations_by_index.sort()
|
|
|
|
|
declarations_by_index_map = dict(("index_in_schema_%s" % j,i) for i,j in enumerate(declarations_by_index))
|
|
|
|
|
|
|
|
|
|
def bind(s):
|
|
|
|
|
if "%" in s: return s % declarations_by_index_map
|
|
|
|
|
else: return s
|
|
|
|
|
|
|
|
|
|
can_be_instantiated_set = set(list(mapping.schema.entities.keys()) + list(mapping.schema.simpletypes.keys()))
|
|
|
|
|
def can_be_instantiated(idx_name):
|
|
|
|
|
name = idx_name[1]
|
|
|
|
|
return name in can_be_instantiated_set
|
|
|
|
|
|
|
|
|
|
instance_mapping = """switch(data->type()->index_in_schema()) {
|
|
|
|
|
%s
|
|
|
|
|
default: throw IfcParse::IfcException(data->type()->name() + " cannot be instantiated");
|
|
|
|
|
}
|
|
|
|
|
""" % "\n ".join(map(lambda tup: "case %d: return new %s(data);" % tup, filter(can_be_instantiated, enumerate(declarations_by_index))))
|
|
|
|
|
|
|
|
|
|
statements[statements.index("{factory_placeholder}")] = """
|
|
|
|
|
class %(schema_name)s_instance_factory : public IfcParse::instance_factory {
|
|
|
|
|
virtual IfcUtil::IfcBaseClass* operator()(IfcEntityInstanceData* data) const {
|
|
|
|
|
%(instance_mapping)s
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
""" % locals()
|
|
|
|
|
|
|
|
|
|
self.str = "\n".join(map(bind, statements))
|
2017-12-11 13:43:06 +01:00
|
|
|
|
|
|
|
|
self.file_name = '%s-schema.cpp'%self.schema_name
|
|
|
|
|
|
2015-08-13 14:28:50 +02:00
|
|
|
def __repr__(self):
|
|
|
|
|
return self.str
|