Exemple #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(IfcConstructionMaterialResourceClause clause)
        {
            var retVal = false;

            try
            {
                switch (clause)
                {
                case IfcConstructionMaterialResourceClause.CorrectPredefinedType:
                    retVal = !(Functions.EXISTS(PredefinedType)) || (PredefinedType != IfcConstructionMaterialResourceTypeEnum.USERDEFINED) || ((PredefinedType == IfcConstructionMaterialResourceTypeEnum.USERDEFINED) && Functions.EXISTS(this /* as IfcObject*/.ObjectType));
                    break;
                }
            } catch (Exception ex) {
                var log = Validation.ValidationLogging.CreateLogger <Xbim.Ifc4.ConstructionMgmtDomain.IfcConstructionMaterialResource>();
                log?.LogError(string.Format("Exception thrown evaluating where-clause 'IfcConstructionMaterialResource.{0}' for #{1}.", clause, EntityLabel), ex);
            }
            return(retVal);
        }
        /// <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(IfcConstructionMaterialResourceClause clause)
        {
            var retVal = false;

            try
            {
                switch (clause)
                {
                case IfcConstructionMaterialResourceClause.WR1:
                    retVal = Functions.SIZEOF(this /* as IfcResource*/.ResourceOf) <= 1;
                    break;

                case IfcConstructionMaterialResourceClause.WR2:
                    retVal = !(Functions.EXISTS(this /* as IfcResource*/.ResourceOf.ItemAt(0))) || (this /* as IfcResource*/.ResourceOf.ItemAt(0).RelatedObjectsType == IfcObjectTypeEnum.PRODUCT);
                    break;
                }
            } catch (Exception ex) {
                var log = Validation.ValidationLogging.CreateLogger <Xbim.Ifc2x3.ConstructionMgmtDomain.IfcConstructionMaterialResource>();
                log?.LogError(string.Format("Exception thrown evaluating where-clause 'IfcConstructionMaterialResource.{0}' for #{1}.", clause, EntityLabel), ex);
            }
            return(retVal);
        }