Example #1
0
        /// <summary>
        /// Tests the express where-clause specified in param 'clause'
        /// </summary>
        /// <param name="clause">The express clause to test</param>
        /// <returns>true if the clause is satisfied.</returns>
        public bool ValidateClause(IfcRampClause clause)
        {
            var retVal = false;

            try
            {
                switch (clause)
                {
                case IfcRampClause.WR1:
                    retVal = (Functions.HIINDEX(this /* as IfcObjectDefinition*/.IsDecomposedBy) == 0) || ((Functions.HIINDEX(this /* as IfcObjectDefinition*/.IsDecomposedBy) == 1) && (!(Functions.EXISTS(this /* as IfcProduct*/.Representation))));
                    break;
                }
            } catch (Exception ex) {
                var log = Validation.ValidationLogging.CreateLogger <Xbim.Ifc2x3.SharedBldgElements.IfcRamp>();
                log?.LogError(string.Format("Exception thrown evaluating where-clause 'IfcRamp.{0}' for #{1}.", clause, EntityLabel), ex);
            }
            return(retVal);
        }
Example #2
0
        /// <summary>
        /// Tests the express where-clause specified in param 'clause'
        /// </summary>
        /// <param name="clause">The express clause to test</param>
        /// <returns>true if the clause is satisfied.</returns>
        public bool ValidateClause(IfcRampClause clause)
        {
            var retVal = false;

            try
            {
                switch (clause)
                {
                case IfcRampClause.CorrectPredefinedType:
                    retVal = !(Functions.EXISTS(PredefinedType)) || (PredefinedType != IfcRampTypeEnum.USERDEFINED) || ((PredefinedType == IfcRampTypeEnum.USERDEFINED) && Functions.EXISTS(this /* as IfcObject*/.ObjectType));
                    break;

                case IfcRampClause.CorrectTypeAssigned:
                    retVal = (Functions.SIZEOF(IsTypedBy) == 0) || (Functions.TYPEOF(this /* as IfcObject*/.IsTypedBy.ItemAt(0).RelatingType).Contains("IFC4.IFCRAMPTYPE"));
                    break;
                }
            } catch (Exception ex) {
                var log = Validation.ValidationLogging.CreateLogger <Xbim.Ifc4.SharedBldgElements.IfcRamp>();
                log?.LogError(string.Format("Exception thrown evaluating where-clause 'IfcRamp.{0}' for #{1}.", clause, EntityLabel), ex);
            }
            return(retVal);
        }