-
Notifications
You must be signed in to change notification settings - Fork 614
Known issues
#summary Known issues that won't be fixed anytime soon
= Introduction =
Some issues are hard/impossible to fix, therefore we mention them here.
= Paths = Because the BIMserver is starting separate processes for the IFCEngine (used for generating geometry and clasdetection), paths are a peculiar (and operating system based) thing. For windows:
- Paths can contain spaces, but not multiple spaces together:
- Right: "C:\Program Files\BIMserver 1.0"
- Wrong: "C:\Program Files\BIMserver 1.0" For OSX:
- Paths cannot contain any spaces at all For linux:
- Paths cannot contain any spaces at all
= Inverses =
IFC has the notion of "inverse" relations. EMF has the notion of "opposites", where possible those have been mapped, but it's not always possible so sometimes "inverses" won't work the way you would think.
The problem with inverses in IFC is that one can be defined on type "A", referencing a certain field on type "B" which in turn does not point to the field of type "A", but to a field on a super- or subtype of "A". EMF does not support these kind of opposites. The effect of this is that opposites won't automatically be set when setting one reference, you will have to set the other as well.
Real IFC Example:
http://bimserver.googlecode.com/svn/wiki/images/inverseproblem.png
And another:
http://bimserver.googlecode.com/svn/wiki/images/inverses2.png
Discussion: http://support.bimserver.org/bimserver/topics/initialization_of_inverse_slots_in_ifcobject_hasassociations
= Derived attributes =
This is not really an issue, but it's good to know why not all schema data can be stored in the EMF meta model. In IFC, derived attributes can be defined, those attributes are usually calculated based on explicit attributes. Derived attributes usually do not appear in the IFC files, but there is one exception. When a derived attribute is defined, but one of the superclasses of the class has the same attribute, the field should be serialized as a "*". For serializers/deserializers, this information is necessary, but we cannot store this in the EMF meta model. Because in EMF all structural features are created only once (also when subclasses exist), so we cannot store class-specific information in the structural features.
= Eclipse/Java 7 = Compiling the BIMserver in Eclipse 3.7.1 and then running in Java 7 (update 2) currently generates the following error, which is probably a bug in the eclipse compiler:
{{{ java.lang.VerifyError: Inconsistent stackmap frames at branch target 196 in method nl.tue.buildingsmart.express.parser.Express2DictWalker.select_list(Lantlr/collections/AST;)Ljava/util/List; at offset 156 }}}
Update on 2012-04-09: According to the Eclipse bugtracking system this bug should be fixed in Eclipse 3.7.2 but I am still getting the error, a workaround has been posted on https://bugs.eclipse.org/bugs/show_bug.cgi?id=362591.
The workaround: Add "-XX:-UseSplitVerifier" when running.
= Select subtype of type enum =
The following is an example, there could be more.
[http://www.steptools.com/support/stdev_docs/express/ifc2x3/html/t_ifcpr-30.html IfcPresentationStyleSelect] has [http://www.steptools.com/support/stdev_docs/express/ifc2x3/html/t_ifcnu-02.html IfcNullStyle] as a 'subtype', but IfcNullStyle is en enum. This is not supported in Java or EMF, files containing this construction will fail to deserialize at the moment.
= Other IFC2x3 problems =
[http://www.steptools.com/support/stdev_docs/express/ifc2x3/html/t_ifcco-03.html IfcCompoundPlaneAngleMeasure] is a type defined as a list, which does not work in EMF/Java
[http://www.steptools.com/support/stdev_docs/express/ifc2x3/html/t_ifcco-07.html IfcComplexNumber] is a type defined as an array, which does not work in EMF/Java
= More issues = For more know issues have a look at the issue list: http://code.google.com/p/bimserver/issues/list
Get Started
- Quick Guide
- Requirements Version 1.2
- Requirements Version 1.3
- Requirements Version 1.4
- Requirements Version 1.4 > 2015-09-12
- Requirements Version 1.5
- Download
- JAR Starter
- Setup
Deployment
- Ubuntu installation 1.3
- Windows installation
- Security
- Memory Usage
- More memory
- Performance statistics
- Large databases
Developers
- Service Interfaces
- Common functions
- Data Model
- Low Level Calls
- Endpoints
Clients
BIMServer Developers
- Plugins in 1.5
- Plugin Development
- Eclipse
- Eclipse Modeling Framework
- Embedding
- Terminology
- Database/Versioning
- IFC STEP Encoding
- Communication
- Global changes in 1.5
- Writing a service
- Services/Notifications
- BIMserver 1.5 Developers
- Extended data
- Extended data schema
- Object IDM
New developments
- New remote service interface
- Plugins new
- Deprecated
- New query language
- Visual query language
- Reorganizing BIMserver JavaScript API
General