Files
IfcOpenShell/src/ifcparse/IfcSchema.cpp
T

78 lines
2.5 KiB
C++
Raw Normal View History

2015-09-08 20:40:54 +02:00
#include "IfcSchema.h"
2017-12-12 10:33:24 +01:00
#include <map>
2015-09-08 20:40:54 +02:00
bool IfcParse::declaration::is(const std::string& name) const {
2017-12-31 12:20:13 +01:00
if (name_lower_ == boost::to_lower_copy(name)) return true;
2015-09-08 20:40:54 +02:00
if (this->as_entity()) {
return this->as_entity()->is(name);
2017-12-13 13:58:58 +01:00
} else if (this->as_type_declaration()) {
const IfcParse::named_type* nt = this->as_type_declaration()->declared_type()->as_named_type();
if (nt) return nt->is(name);
2015-09-08 20:40:54 +02:00
}
2017-12-13 13:58:58 +01:00
return false;
}
bool IfcParse::declaration::is(const IfcParse::declaration& decl) const {
if (this == &decl) return true;
if (this->as_entity()) {
return this->as_entity()->is(decl);
} else if (this->as_type_declaration()) {
const IfcParse::named_type* nt = this->as_type_declaration()->declared_type()->as_named_type();
if (nt) return nt->is(decl);
}
return false;
2015-09-08 20:40:54 +02:00
}
bool IfcParse::named_type::is(const std::string& name) const {
return declared_type()->is(name);
}
2017-12-13 13:58:58 +01:00
bool IfcParse::named_type::is(const IfcParse::declaration& decl) const {
return declared_type()->is(decl);
2017-12-12 10:33:24 +01:00
}
static std::map<std::string, const IfcParse::schema_definition*> schemas;
2017-12-13 13:58:58 +01:00
IfcParse::schema_definition::schema_definition(const std::string& name, const std::vector<const declaration*>& declarations, instance_factory* factory)
2017-12-12 10:33:24 +01:00
: name_(name)
, declarations_(declarations)
, factory_(factory)
2017-12-12 10:33:24 +01:00
{
std::sort(declarations_.begin(), declarations_.end(), declaration_by_index_sort());
2017-12-22 13:51:11 +01:00
for (std::vector<const declaration*>::iterator it = declarations_.begin(); it != declarations_.end(); ++it) {
(**it).schema_ = this;
2017-12-12 10:33:24 +01:00
if ((**it).as_type_declaration()) type_declarations_.push_back((**it).as_type_declaration());
if ((**it).as_select_type()) select_types_.push_back((**it).as_select_type());
if ((**it).as_enumeration_type()) enumeration_types_.push_back((**it).as_enumeration_type());
if ((**it).as_entity()) entities_.push_back((**it).as_entity());
}
schemas[name_] = this;
}
IfcParse::schema_definition::~schema_definition() {
schemas.erase(name_);
for (std::vector<const declaration*>::const_iterator it = declarations_.begin(); it != declarations_.end(); ++it) {
delete *it;
}
}
2017-12-21 14:14:04 +01:00
#include "../ifcparse/Ifc2x3.h"
#include "../ifcparse/Ifc4.h"
2017-12-20 16:38:55 +01:00
const IfcParse::schema_definition* IfcParse::schema_by_name(const std::string& name) {
2017-12-21 14:14:04 +01:00
// TODO: initialize automatically somehow
Ifc2x3::get_schema();
Ifc4::get_schema();
std::map<std::string, const IfcParse::schema_definition*>::const_iterator it = schemas.find(name);
2017-12-12 10:33:24 +01:00
if (it == schemas.end()) {
throw IfcParse::IfcException("No schema named " + name);
}
return it->second;
2015-09-08 20:40:54 +02:00
}