sdaiGetADBValue
Table 1 – Required value buffer depending on valueType (on the example of sdaiGetADBValue but valid for all get-functions)
valueType C/C++ C#
sdaiINTEGER int_t val; int_t val;
sdaiGetADBValue (ADB, sdaiINTEGER, &val); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiINTEGER, out val);
sdaiREAL or sdaiNUMBER double val; double val;
sdaiGetADBValue (ADB, sdaiREAL, &val); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiREAL, out val);
sdaiBOOLEAN SdaiBoolean val; bool val;
sdaiGetADBValue (ADB, sdaiBOOLEAN, &val); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiBOOLEAN, out val);
sdaiLOGICAL const TCHAR* val; string val;
sdaiGetADBValue (ADB, sdaiLOGICAL, &val); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiLOGICAL, out val);
sdaiENUM const TCHAR* val; string val;
sdaiGetADBValue (ADB, sdaiENUM, &val); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiENUM, out val);
sdaiBINARY const TCHAR* val; string val;
sdaiGetADBValue (ADB, sdaiBINARY, &val); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiBINARY, out val);
sdaiSTRING const char* val; string val;
sdaiGetADBValue (ADB, sdaiSTRING, &val); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiSTRING, out val);
sdaiUNICODE const wchar_t* val; string val;
sdaiGetADBValue (ADB, sdaiUNICODE, &val); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiUNICODE, out val);
sdaiEXPRESSSTRING const char* val; string val;
sdaiGetADBValue (ADB, sdaiEXPRESSSTRING, &val); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiEXPRESSSTRING, out val);
sdaiINSTANCE SdaiInstance val; int_t val;
sdaiGetADBValue (ADB, sdaiINSTANCE, &val); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiINSTANCE, out val);
sdaiAGGR SdaiAggr aggr; int_t aggr;
sdaiGetADBValue (ADB, sdaiAGGR, &aggr); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiAGGR, out aggr);
sdaiADB SdaiADB adb = sdaiCreateEmptyADB(); int_t adb = 0; // it is important to initialize
sdaiGetADBValue (ADB, sdaiADB, adb); ifcengine.sdaiGetADBValue (ADB, ifcengine.sdaiADB, out adb);
sdaiDeleteADB (adb);
SdaiADB adb = nullptr; // it is important to initialize
sdaiGetADBValue (ADB, sdaiADB, &adb);
TCHAR is “char” or “wchar_t” depending on setStringUnicode.
(Non-standard behavior) sdaiLOGICAL behaves differently from ISO 10303-24-2001: it expects char* while standard declares int_t.
(Non-standard extension) sdiADB in C++ has an option to work without sdaiCreateEmptyADB and sdaiDeleteADB as shown in the table.
Table 2 - valueType can be requested depending on actual model data.
valueType Works for following values in the model
integer real .T. or .F. .U. other enum binary string instance list
sdaiINTEGER Yes Yes * . . . . . . .
sdaiREAL Yes Yes . . . . . . .
sdaiNUMBER Yes Yes . . . . . . .
sdaiBOOLEAN . . Yes . . . . . .
sdaiLOGICAL . . Yes Yes . . . . .
sdaiENUM . . Yes Yes Yes . . . .
sdaiBINARY . . . . . Yes . . .
sdaiSTRING Yes Yes Yes Yes Yes Yes Yes . .
sdaiUNICODE Yes Yes Yes Yes Yes Yes Yes . .
sdaiEXPRESSSTRING Yes Yes Yes Yes Yes Yes Yes . .
sdaiINSTANCE . . . . . . . Yes .
sdaiAGGR . . . . . . . . Yes
sdaiADB Yes Yes Yes Yes Yes Yes Yes Yes Yes
(Non-standard extensions) sdaiGetADBValue: sdaiADB is allowed and will success when sdaiGetADBTypePath is not NULL, returning ABD value has type path element removed.
Syntax
public const string ifcenginedll = @"ifcengine.dll"; [DllImport(IFCEngineDLL, EntryPoint = "sdaiGetADBValue")] public static extern Int32 sdaiGetADBValue(int_t ADB, int_t valueType, out bool value); [DllImport(IFCEngineDLL, EntryPoint = "sdaiGetADBValue")] public static extern Int32 sdaiGetADBValue(int_t ADB, int_t valueType, out int_t value); [DllImport(IFCEngineDLL, EntryPoint = "sdaiGetADBValue")] public static extern Int32 sdaiGetADBValue(int_t ADB, int_t valueType, out double value); [DllImport(IFCEngineDLL, EntryPoint = "sdaiGetADBValue")] public static extern Int32 sdaiGetADBValue(int_t ADB, int_t valueType, out IntPtr value);
Property ADB
Size: 32 bit / 4 byte (reference)Property valueType
Size: 32 bit / 4 byte (value)Property value
Size: 32 bit / 4 byte (reference)
Example (based on pure API calls)
Here you can find code snippits that show how the API call sdaiGetADBValue can be used.
using RDF; // include at least engine.cs within your solution // // ENTITY IfcProperty; // Name : IfcIdentifier; // Description : OPTIONAL IfcText; // INVERSE // PropertyForDependance : SET OF IfcPropertyDependencyRelationship FOR DependingProperty; // PropertyDependsOn : SET OF IfcPropertyDependencyRelationship FOR DependantProperty; // PartOfComplex : SET [0:1] OF IfcComplexProperty FOR HasProperties; // ENTITY IfcSimpleProperty; // ENTITY IfcPropertySingleValue; // NominalValue : OPTIONAL IfcValue; // Unit : OPTIONAL IfcUnit; // void GetIfcPropertySingleValue(Int64 model, Int64 ifcPropertySingleValue) { // // for example: // #31313 = IFCPROPERTYSINGLEVALUE('Category',$,IFCLABEL('Rooms'),$); // string name, description; ifcengine.sdaiGetAttrBN(ifcPropertySingleValue, "Name", ifcengine.sdaiUNICODE, out name); // name = 'Category' ifcengine.sdaiGetAttrBN(ifcPropertySingleValue, "Description", ifcengine.sdaiUNICODE, out description); // description = null Int64 nominalValueADB = 0; ifcengine.sdaiGetAttrBN(ifcPropertySingleValue, "NominalValue", ifcengine.sdaiADB, out nominalValueADB); string typePath = ifcengine.sdaiGetADBTypePathx(nominalValueADB, 0); // typePath = 'IFCLABEL' switch (ifcengine.sdaiGetADBType(nominalValueADB)) { case ifcengine.sdaiSTRING: string nominalValue; ifcengine.sdaiGetADBValue(nominalValueADB, ifcengine.sdaiUNICODE, out nominalValue); // nominalValue = 'Rooms' break; ... default: break; } string unit; ifcengine.sdaiGetAttrBN(ifcPropertySingleValue, "Unit", ifcengine.sdaiUNICODE, out unit); // unit = null }