mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-12 02:23:34 +00:00
700cc772fb
- Begin working on verbosity levels
281 lines
10 KiB
C++
281 lines
10 KiB
C++
/********************************************************************************
|
|
* *
|
|
* 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/>. *
|
|
* *
|
|
********************************************************************************/
|
|
|
|
/********************************************************************************
|
|
* *
|
|
* This file provides functions for loading an IFC file into memory and access *
|
|
* its entities either by ID, by an Ifc2x3::Type or by reference *
|
|
* *
|
|
********************************************************************************/
|
|
|
|
#ifndef IFCPARSE_H
|
|
#define IFCPARSE_H
|
|
|
|
#define IFCOPENSHELL_VERSION "0.3.0-rc3"
|
|
|
|
#include <string>
|
|
#include <sstream>
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include <fstream>
|
|
#include <cstring>
|
|
#include <map>
|
|
|
|
#include "../ifcparse/SharedPointer.h"
|
|
#include "../ifcparse/IfcCharacterDecoder.h"
|
|
#include "../ifcparse/IfcUtil.h"
|
|
#include "../ifcparse/Ifc2x3.h"
|
|
#include "../ifcparse/IfcFile.h"
|
|
|
|
namespace IfcParse {
|
|
|
|
class Entity;
|
|
class Entities;
|
|
typedef Entity* EntityPtr;
|
|
typedef SHARED_PTR<Entities> EntitiesPtr;
|
|
|
|
typedef unsigned int Token;
|
|
|
|
/// Provides functions to convert Tokens to binary data
|
|
/// Tokens are merely offsets to where they can be read in the file
|
|
class TokenFunc {
|
|
private:
|
|
static bool startsWith(Token t, char c);
|
|
public:
|
|
/// Returns the offset at which the token is read from the file
|
|
static unsigned int Offset(Token t);
|
|
/// Returns whether the token can be interpreted as a string
|
|
static bool isString(Token t);
|
|
/// Returns whether the token can be interpreted as an identifier
|
|
static bool isIdentifier(Token t);
|
|
/// Returns whether the token can be interpreted as an syntactical operator
|
|
static bool isOperator(Token t, char op = 0);
|
|
/// Returns whether the token can be interpreted as an enumerated value
|
|
static bool isEnumeration(Token t);
|
|
/// Returns whether the token can be interpreted as an datatype name
|
|
static bool isDatatype(Token t);
|
|
/// Returns the token interpreted as an integer
|
|
static int asInt(Token t);
|
|
/// Returns the token interpreted as an boolean (.T. or .F.)
|
|
static bool asBool(Token t);
|
|
/// Returns the token as a floating point number
|
|
static double asFloat(Token t);
|
|
/// Returns the token as a string (without the dot or apostrophe)
|
|
static std::string asString(Token t);
|
|
/// Returns a string representation of the token (including the dot or apostrophe)
|
|
static std::string toString(Token t);
|
|
};
|
|
|
|
//
|
|
// Functions for creating Tokens from an arbitary file offset
|
|
// The first 4 bits are reserved for Tokens of type ()=,;$*
|
|
//
|
|
Token TokenPtr(unsigned int offset);
|
|
Token TokenPtr(char c);
|
|
Token TokenPtr();
|
|
|
|
/// A stream of tokens to be read from a File.
|
|
class Tokens {
|
|
private:
|
|
File* file;
|
|
IfcCharacterDecoder* decoder;
|
|
public:
|
|
Tokens(File* f);
|
|
Token Next();
|
|
~Tokens();
|
|
std::string TokenString(unsigned int offset);
|
|
};
|
|
|
|
/// Argument of type list, e.g.
|
|
/// #1=IfcDirection((1.,0.,0.));
|
|
/// ==========
|
|
class ArgumentList: public Argument {
|
|
private:
|
|
std::vector<ArgumentPtr> list;
|
|
void Push(ArgumentPtr l);
|
|
public:
|
|
ArgumentList(Tokens* t, std::vector<unsigned int>& ids);
|
|
~ArgumentList();
|
|
operator int() const;
|
|
operator bool() const;
|
|
operator double() const;
|
|
operator std::string() const;
|
|
operator std::vector<double>() const;
|
|
operator std::vector<int>() const;
|
|
operator std::vector<std::string>() const;
|
|
operator IfcUtil::IfcSchemaEntity() const;
|
|
//operator IfcUtil::IfcAbstractSelect::ptr() const;
|
|
operator IfcEntities() const;
|
|
unsigned int Size() const;
|
|
ArgumentPtr operator [] (unsigned int i) const;
|
|
std::string toString(bool upper=false) const;
|
|
bool isNull() const;
|
|
};
|
|
|
|
/// Argument of type scalar or string, e.g.
|
|
/// #1=IfcVector(#2,1.0);
|
|
/// == ===
|
|
class TokenArgument : public Argument {
|
|
private:
|
|
|
|
public:
|
|
Token token;
|
|
TokenArgument(Token t);
|
|
operator int() const;
|
|
operator bool() const;
|
|
operator double() const;
|
|
operator std::string() const;
|
|
operator std::vector<double>() const;
|
|
operator std::vector<int>() const;
|
|
operator std::vector<std::string>() const;
|
|
operator IfcUtil::IfcSchemaEntity() const;
|
|
//operator IfcUtil::IfcAbstractSelect::ptr() const;
|
|
operator IfcEntities() const;
|
|
unsigned int Size() const;
|
|
ArgumentPtr operator [] (unsigned int i) const;
|
|
std::string toString(bool upper=false) const;
|
|
bool isNull() const;
|
|
};
|
|
|
|
/// Argument of an IFC simple type
|
|
/// #1=IfcTrimmedCurve(#2,(IFCPARAMETERVALUE(0.)),(IFCPARAMETERVALUE(1.)),.T.,.PARAMETER.);
|
|
/// ===================== =====================
|
|
class EntityArgument : public Argument {
|
|
private:
|
|
IfcUtil::IfcArgumentSelect* entity;
|
|
public:
|
|
EntityArgument(Ifc2x3::Type::Enum ty, Token t);
|
|
~EntityArgument();
|
|
operator int() const;
|
|
operator bool() const;
|
|
operator double() const;
|
|
operator std::string() const;
|
|
operator std::vector<double>() const;
|
|
operator std::vector<int>() const;
|
|
operator std::vector<std::string>() const;
|
|
operator IfcUtil::IfcSchemaEntity() const;
|
|
//operator IfcUtil::IfcAbstractSelect::ptr() const;
|
|
operator IfcEntities() const;
|
|
unsigned int Size() const;
|
|
ArgumentPtr operator [] (unsigned int i) const;
|
|
std::string toString(bool upper=false) const;
|
|
bool isNull() const;
|
|
};
|
|
|
|
/// Entity defined in an IFC file, e.g.
|
|
/// #1=IfcDirection((1.,0.,0.));
|
|
/// ============================
|
|
class Entity : public IfcAbstractEntity {
|
|
private:
|
|
ArgumentPtr args;
|
|
Ifc2x3::Type::Enum _type;
|
|
public:
|
|
/// The EXPRESS ENTITY_NAME
|
|
unsigned int _id;
|
|
/// The offset at which the entity is read
|
|
unsigned int offset;
|
|
Entity(unsigned int i, Tokens* t);
|
|
Entity(unsigned int i, Tokens* t, unsigned int o);
|
|
~Entity();
|
|
IfcEntities getInverse(Ifc2x3::Type::Enum c = Ifc2x3::Type::ALL);
|
|
IfcEntities getInverse(Ifc2x3::Type::Enum c, int i, const std::string& a);
|
|
void Load(std::vector<unsigned int>& ids, bool seek=false);
|
|
ArgumentPtr getArgument (unsigned int i);
|
|
unsigned int getArgumentCount();
|
|
std::string toString(bool upper=false);
|
|
std::string datatype();
|
|
Ifc2x3::Type::Enum type() const;
|
|
bool is(Ifc2x3::Type::Enum v) const;
|
|
unsigned int id();
|
|
};
|
|
}
|
|
|
|
typedef IfcUtil::IfcSchemaEntity IfcEntity;
|
|
typedef IfcEntities IfcEntities;
|
|
typedef std::map<Ifc2x3::Type::Enum,IfcEntities> MapEntitiesByType;
|
|
typedef std::map<unsigned int,IfcEntity> MapEntityById;
|
|
typedef std::map<std::string,Ifc2x3::IfcRoot::ptr> MapEntityByGuid;
|
|
typedef std::map<unsigned int,IfcEntities> MapEntitiesByRef;
|
|
typedef std::map<unsigned int,unsigned int> MapOffsetById;
|
|
|
|
/// This class provides several static convenience functions and variables
|
|
/// and provide access to the entities in an IFC file
|
|
class Ifc {
|
|
private:
|
|
static MapEntityById byid;
|
|
static MapEntitiesByType bytype;
|
|
static MapEntitiesByRef byref;
|
|
static MapEntityByGuid byguid;
|
|
static MapOffsetById offsets;
|
|
static unsigned int lastId;
|
|
static std::ostream* log1;
|
|
static std::ostream* log2;
|
|
static std::stringstream log_stream;
|
|
public:
|
|
/// Returns the first entity in the file, this probably is the entity with the lowest id (EXPRESS ENTITY_NAME)
|
|
static MapEntityById::const_iterator First();
|
|
/// Returns the last entity in the file, this probably is the entity with the highes id (EXPRESS ENTITY_NAME)
|
|
static MapEntityById::const_iterator Last();
|
|
/// Determines to what stream respectively progress and errors are logged
|
|
static void SetOutput(std::ostream* l1, std::ostream* l2);
|
|
/// Log a message to the output stream
|
|
static void LogMessage(const std::string& type, const std::string& message, const IfcAbstractEntityPtr entity=0);
|
|
static IfcParse::File* file;
|
|
static IfcParse::Tokens* tokens;
|
|
/// Returns all entities in the file that match the template argument.
|
|
/// NOTE: This also returns subtypes of the requested type, for example:
|
|
/// IfcWall will also return IfcWallStandardCase entities
|
|
template <class T>
|
|
static typename T::list EntitiesByType() {
|
|
IfcEntities e = EntitiesByType(T::Class());
|
|
typename T::list l ( new IfcTemplatedEntityList<T>() );
|
|
if ( e && e->Size() )
|
|
for ( IfcEntityList::it it = e->begin(); it != e->end(); ++ it ) {
|
|
l->push(reinterpret_pointer_cast<IfcUtil::IfcBaseClass,T>(*it));
|
|
}
|
|
return l;
|
|
}
|
|
/// Returns all entities in the file that match the positional argument.
|
|
/// NOTE: This also returns subtypes of the requested type, for example:
|
|
/// IfcWall will also return IfcWallStandardCase entities
|
|
static IfcEntities EntitiesByType(Ifc2x3::Type::Enum t);
|
|
/// Returns all entities in the file that reference the id
|
|
static IfcEntities EntitiesByReference(int id);
|
|
/// Returns the entity with the specified id
|
|
static IfcEntity EntityById(int id);
|
|
/// Returns the entity with the specified GlobalId
|
|
static Ifc2x3::IfcRoot::ptr EntityByGuid(const std::string& guid);
|
|
static bool Init(const std::string& fn);
|
|
static bool Init(std::istream& fn, int len);
|
|
static bool Init(void* data, int len);
|
|
static bool Init(IfcParse::File* f);
|
|
static std::string GetLog();
|
|
static void Dispose();
|
|
static bool hasPlaneAngleUnit;
|
|
static bool SewShells;
|
|
static double LengthUnit;
|
|
static double PlaneAngleUnit;
|
|
static int CircleSegments;
|
|
static int Verbosity;
|
|
};
|
|
|
|
double UnitPrefixToValue( Ifc2x3::IfcSIPrefix::IfcSIPrefix v );
|
|
|
|
#endif
|