コード例 #1
0
 public static MutatorsConfigurator <TRoot, TChild, TValue> Set <TRoot, TChild, TValue>(
     this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
     Expression <Func <TChild, TValue> > value)
 {
     configurator.SetMutator(EqualsToConfiguration.Create(configurator.Root.ConfiguratorType, typeof(TChild), value, null));
     return(configurator);
 }
コード例 #2
0
        public static void FilledExactlyOneOf <TRoot, TChild>(
            this MutatorsConfigurator <TRoot, TChild, TChild> configurator,
            Expression <Func <TChild, object[]> > targets,
            Expression <Func <TChild, MultiLanguageTextBase> > message,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            Expression sum = null;

            if (targets.Body.NodeType != ExpressionType.NewArrayInit)
            {
                throw new InvalidOperationException("Expected new array creation");
            }
            Expression lcp = null;

            foreach (var expression in ((NewArrayExpression)targets.Body).Expressions)
            {
                var target = expression.NodeType == ExpressionType.Convert ? ((UnaryExpression)expression).Operand : expression;
                if (target.Type.IsValueType && !IsNullable(target.Type))
                {
                    throw new InvalidOperationException("Type '" + target.Type + "' cannot be null");
                }
                lcp = lcp == null ? target : lcp.LCP(target);
                Expression current = Expression.Condition(Expression.Equal(target, Expression.Constant(null, target.Type)), Expression.Constant(0), Expression.Constant(1));
                sum = sum == null ? current : Expression.Add(sum, current);
            }

            if (sum == null)
            {
                return;
            }
            Expression condition = Expression.NotEqual(sum, Expression.Constant(1));

            configurator.SetMutator(configurator.PathToChild.Merge(Expression.Lambda(lcp, targets.Parameters)).Body, configurator.PathToChild.Merge(targets).Body, InvalidIfConfiguration.Create(MutatorsCreator.Sharp, priority, configurator.PathToChild.Merge(Expression.Lambda <Func <TChild, bool?> >(Expression.Convert(condition, typeof(bool?)), targets.Parameters)), configurator.PathToChild.Merge(message), type));
        }
コード例 #3
0
 public static MutatorsConfigurator <TRoot, TChild, TValue> Set <TRoot, TChild, TValue>(
     this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
     TValue value)
 {
     configurator.Set(child => value);
     return(configurator);
 }
コード例 #4
0
 public static MutatorsConfigurator <TRoot, TChild, TValue> HiddenIf <TRoot, TChild, TValue>(
     this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
     Expression <Func <TChild, bool?> > condition)
 {
     configurator.SetMutator(HideIfConfiguration.Create(condition));
     return(configurator);
 }
コード例 #5
0
 public static MutatorsConfigurator <TRoot, TChild, TValue> NullifyIf <TRoot, TChild, TValue>(
     this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
     Expression <Func <TChild, bool?> > condition)
 {
     configurator.SetMutator(NullifyIfConfiguration.Create(configurator.Root.ConfiguratorType, condition));
     return(configurator);
 }
コード例 #6
0
 public static MutatorsConfigurator <TRoot, TChild, TValue> SetIf <TRoot, TChild, TValue>(
     this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
     Expression <Func <TChild, bool?> > condition,
     Expression <Func <TChild, TValue> > value)
 {
     configurator.SetMutator(EqualsToIfConfiguration.Create(typeof(TChild), condition, value, null));
     return(configurator);
 }
コード例 #7
0
 public static MutatorsConfigurator <TRoot, TChild, string> NotLongerThan <TRoot, TChild>(
     this MutatorsConfigurator <TRoot, TChild, string> configurator,
     int length,
     int priority = 0,
     ValidationResultType type = ValidationResultType.Error)
 {
     return(configurator.NotLongerThan(length, configurator.Title, priority, type));
 }
コード例 #8
0
 public static MutatorsConfigurator <TRoot, TChild, TValue> MustBeEqualTo <TRoot, TChild, TValue>(
     this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
     TValue expectedValue,
     IEqualityComparer <TValue> comparer = null,
     int priority = 0,
     ValidationResultType type = ValidationResultType.Error)
 {
     return(configurator.MustBeEqualTo(child => expectedValue, comparer, priority, type));
 }
コード例 #9
0
 public static MutatorsConfigurator <TRoot, TChild, TValue> MustBeEqualTo <TRoot, TChild, TValue>(
     this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
     TValue expectedValue,
     Expression <Func <TValue, TValue, MultiLanguageTextBase> > message,
     int priority = 0,
     ValidationResultType type = ValidationResultType.Error)
 {
     return(configurator.MustBeEqualTo(child => expectedValue, message, priority, type));
 }
コード例 #10
0
 public static MutatorsConfigurator <TRoot, TChild, TValue> Required <TRoot, TChild, TValue>(
     this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
     int priority = 0,
     ValidationResultType type = ValidationResultType.Error)
 {
     return(configurator.Required(child => new ValueRequiredText {
         Title = configurator.Title
     }, priority, type));
 }
コード例 #11
0
 public static MutatorsConfigurator <TRoot, TChild, string> IsLike <TRoot, TChild>(
     this MutatorsConfigurator <TRoot, TChild, string> configurator,
     string pattern,
     int priority = 0,
     ValidationResultType type = ValidationResultType.Error)
 {
     return(configurator.IsLike(pattern, child => new ValueShouldMatchPatternText {
         Title = configurator.Title, Pattern = pattern
     }, priority, type));
 }
コード例 #12
0
 public static MutatorsConfigurator <TRoot, TChild, TValue> InvalidIfFromRoot <TRoot, TChild, TValue>(
     this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
     Expression <Func <TRoot, bool?> > condition,
     Expression <Func <TRoot, MultiLanguageTextBase> > message,
     int priority = 0,
     ValidationResultType type = ValidationResultType.Error)
 {
     configurator.SetMutator(InvalidIfConfiguration.Create(MutatorsCreator.Sharp, priority, condition, message, type));
     return(configurator);
 }
コード例 #13
0
 public static MutatorsConfigurator <TRoot, TChild, TValue> RequiredIf <TRoot, TChild, TValue>(
     this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
     Expression <Func <TChild, bool?> > condition,
     int priority = 0,
     ValidationResultType type = ValidationResultType.Error)
 {
     return(configurator.RequiredIf(condition, child => new ValueRequiredText {
         Title = configurator.Title
     }, priority, type));
 }
コード例 #14
0
        public static MutatorsConfigurator <TRoot, TChild, TValue> Required <TRoot, TChild, TValue>(
            this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
            Expression <Func <TChild, TValue, MultiLanguageTextBase> > message,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var pathToValue = (Expression <Func <TRoot, TValue> >)configurator.PathToValue.ReplaceEachWithCurrent();
            var pathToChild = (Expression <Func <TRoot, TChild> >)configurator.PathToChild.ReplaceEachWithCurrent();

            configurator.SetMutator(RequiredIfConfiguration.Create(MutatorsCreator.Sharp, priority, null, pathToValue, message.Merge(pathToChild, pathToValue), type));
            return(configurator);
        }
コード例 #15
0
        public static MutatorsConfigurator <TRoot, TChild, TValue> Required <TRoot, TChild, TValue>(
            this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
            Expression <Func <TChild, TValue, MultiLanguageTextBase> > message,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var methodReplacer = new MethodReplacer(MutatorsHelperFunctions.EachMethod, MutatorsHelperFunctions.CurrentMethod);
            var pathToValue    = (Expression <Func <TRoot, TValue> >)methodReplacer.Visit(configurator.PathToValue);
            var pathToChild    = (Expression <Func <TRoot, TChild> >)methodReplacer.Visit(configurator.PathToChild);

            configurator.SetMutator(RequiredIfConfiguration.Create(MutatorsCreator.Sharp, priority, null, pathToValue, message.Merge(pathToChild, pathToValue), type));
            return(configurator);
        }
コード例 #16
0
        public static MutatorsConfigurator <TRoot, TChild, string> IsLike <TRoot, TChild>(
            this MutatorsConfigurator <TRoot, TChild, string> configurator,
            string pattern,
            Expression <Func <TChild, string, MultiLanguageTextBase> > message,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var pathToValue = (Expression <Func <TRoot, string> >)configurator.PathToValue.ReplaceEachWithCurrent();
            var pathToChild = (Expression <Func <TRoot, TChild> >)configurator.PathToChild.ReplaceEachWithCurrent();

            configurator.SetMutator(RegexValidatorConfiguration.Create(MutatorsCreator.Sharp, priority, pathToValue, null, message.Merge(pathToChild, pathToValue), pattern, type));
            return(configurator);
        }
コード例 #17
0
        public static MutatorsConfigurator <TRoot, TChild, TValue> MustBeEqualTo <TRoot, TChild, TValue>(
            this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
            Expression <Func <TChild, TValue> > expectedValue,
            Expression <Func <TChild, MultiLanguageTextBase> > message,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var pathToValue = (Expression <Func <TRoot, TValue> >)configurator.PathToValue.ReplaceEachWithCurrent();
            var pathToChild = (Expression <Func <TRoot, TChild> >)configurator.PathToChild.ReplaceEachWithCurrent();
            var condition   = Expression.Convert(Expression.NotEqual(pathToValue.ReplaceParameter(pathToChild.Parameters[0]).Body, pathToChild.Merge(expectedValue).Body), typeof(bool?));

            configurator.SetMutator(InvalidIfConfiguration.Create(MutatorsCreator.Sharp, priority, Expression.Lambda <Func <TRoot, bool?> >(condition, pathToChild.Parameters), pathToChild.Merge(message), type));
            return(configurator);
        }
コード例 #18
0
        public static MutatorsConfigurator <TRoot, TChild, string> IsLike <TRoot, TChild>(
            this MutatorsConfigurator <TRoot, TChild, string> configurator,
            string pattern,
            Expression <Func <TChild, MultiLanguageTextBase> > message,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var methodReplacer = new MethodReplacer(MutatorsHelperFunctions.EachMethod, MutatorsHelperFunctions.CurrentMethod);
            var pathToValue    = (Expression <Func <TRoot, string> >)methodReplacer.Visit(configurator.PathToValue);
            var pathToChild    = (Expression <Func <TRoot, TChild> >)methodReplacer.Visit(configurator.PathToChild);

            configurator.SetMutator(RegexValidatorConfiguration.Create(MutatorsCreator.Sharp, priority, pathToValue, null, pathToChild.Merge(message), pattern, type));
            return(configurator);
        }
コード例 #19
0
        public static MutatorsConfigurator <TRoot, TChild, TValue> IfFilledMustBelongTo <TRoot, TChild, TValue>(
            this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
            IEnumerable <TValue> values,
            Expression <Func <TChild, TValue, MultiLanguageTextBase> > message,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var pathToValue = (Expression <Func <TRoot, TValue> >)configurator.PathToValue.ReplaceEachWithCurrent();
            var pathToChild = (Expression <Func <TRoot, TChild> >)configurator.PathToChild.ReplaceEachWithCurrent();
            var contains    = Expression.Call(containsMethod.MakeGenericMethod(typeof(TValue)), Expression.Constant(values), pathToValue.Body);
            var condition   = Expression.Convert(Expression.AndAlso(Expression.NotEqual(pathToValue.Body, Expression.Constant(null, typeof(TValue))), Expression.Not(contains)), typeof(bool?));

            configurator.SetMutator(InvalidIfConfiguration.Create(MutatorsCreator.Sharp, priority, Expression.Lambda <Func <TRoot, bool?> >(condition, pathToValue.Parameters), message.Merge(pathToChild, pathToValue), type));
            return(configurator);
        }
コード例 #20
0
        public static MutatorsConfigurator <TRoot, TChild, TValue> MustBelongTo <TRoot, TChild, TValue>(
            this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
            IEnumerable <TValue> values,
            Expression <Func <TChild, MultiLanguageTextBase> > message,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var methodReplacer = new MethodReplacer(MutatorsHelperFunctions.EachMethod, MutatorsHelperFunctions.CurrentMethod);
            var pathToValue    = (Expression <Func <TRoot, TValue> >)methodReplacer.Visit(configurator.PathToValue);
            var pathToChild    = (Expression <Func <TRoot, TChild> >)methodReplacer.Visit(configurator.PathToChild);
            var contains       = Expression.Call(containsMethod.MakeGenericMethod(typeof(TValue)), Expression.Constant(values), pathToValue.Body);
            var condition      = Expression.Convert(Expression.Not(contains), typeof(bool?));

            configurator.SetMutator(InvalidIfConfiguration.Create(MutatorsCreator.Sharp, priority, Expression.Lambda <Func <TRoot, bool?> >(condition, pathToValue.Parameters), pathToChild.Merge(message), type));
            return(configurator);
        }
コード例 #21
0
        public static MutatorsConfigurator <TRoot, TChild, TValue> MustBeEqualTo <TRoot, TChild, TValue>(
            this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
            Expression <Func <TRoot, TChild, TValue> > expectedValue,
            Expression <Func <TRoot, TChild, MultiLanguageTextBase> > message,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var methodReplacer = new MethodReplacer(MutatorsHelperFunctions.EachMethod, MutatorsHelperFunctions.CurrentMethod);
            var pathToValue    = (Expression <Func <TRoot, TValue> >)methodReplacer.Visit(configurator.PathToValue);
            var pathToChild    = (Expression <Func <TRoot, TChild> >)methodReplacer.Visit(configurator.PathToChild);
            var rootParameter  = pathToChild.Parameters[0];
            var root           = Expression.Lambda <Func <TRoot, TRoot> >(rootParameter, rootParameter);
            var condition      = Expression.Convert(Expression.NotEqual(pathToValue.ReplaceParameter(rootParameter).Body, expectedValue.Merge(root, pathToChild).Body), typeof(bool?));

            configurator.SetMutator(InvalidIfConfiguration.Create(MutatorsCreator.Sharp, priority, Expression.Lambda <Func <TRoot, bool?> >(condition, pathToChild.Parameters), message.Merge(root, pathToChild), type));
            return(configurator);
        }
コード例 #22
0
        public static MutatorsConfigurator <TRoot, TChild, string> NotLongerThan <TRoot, TChild>(
            this MutatorsConfigurator <TRoot, TChild, string> configurator,
            int length,
            MultiLanguageTextBase title,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var pathToValue = (Expression <Func <TRoot, string> >)configurator.PathToValue.ReplaceEachWithCurrent();
            var condition   = Expression.Convert(Expression.GreaterThan(Expression.MakeMemberAccess(pathToValue.Body, stringLengthProperty), Expression.Constant(length)), typeof(bool?));
            var message     = Expression.Lambda <Func <TRoot, MultiLanguageTextBase> >(Expression.MemberInit(
                                                                                           Expression.New(typeof(LengthOutOfRangeText)),
                                                                                           Expression.Bind(lengthOutOfRangeTextToProperty, Expression.Constant(length, typeof(int?))),
                                                                                           Expression.Bind(lengthOutOfRangeTextTitleProperty, Expression.Constant(title, typeof(MultiLanguageTextBase)))), pathToValue.Parameters);

            configurator.SetMutator(InvalidIfConfiguration.Create(MutatorsCreator.Sharp, priority, Expression.Lambda <Func <TRoot, bool?> >(condition, pathToValue.Parameters), message, type));
            return(configurator);
        }
コード例 #23
0
        public static MutatorsConfigurator <TRoot, TChild, TValue> MustBeEqualTo <TRoot, TChild, TValue>(
            this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
            Expression <Func <TChild, TValue> > expectedValue,
            IEqualityComparer <TValue> comparer = null,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var pathToChild = (Expression <Func <TRoot, TChild> >)configurator.PathToChild.ReplaceEachWithCurrent();
            var pathToValue = ((Expression <Func <TRoot, TValue> >)configurator.PathToValue.ReplaceEachWithCurrent()).ReplaceParameter(pathToChild.Parameters[0]).Body;
            var equal       = comparer == null
                            ? (Expression)Expression.Equal(pathToValue, pathToChild.Merge(expectedValue).Body)
                            : Expression.Call(Expression.Constant(comparer, typeof(IEqualityComparer <TValue>)), "Equals", Type.EmptyTypes, pathToValue, pathToChild.Merge(expectedValue).Body);
            var condition = Expression.Convert(Expression.Not(equal), typeof(bool?));
            var message   = Expression.MemberInit(Expression.New(typeof(ValueMustBeEqualToText)),
                                                  Expression.Bind(valueMustBeEqualToTextExpectedValueProperty, Expression.Convert(expectedValue.Body, typeof(object))),
                                                  Expression.Bind(valueMustBeEqualToTextActualValueProperty, Expression.Convert(pathToValue, typeof(object))));

            configurator.SetMutator(InvalidIfConfiguration.Create(MutatorsCreator.Sharp, priority, Expression.Lambda <Func <TRoot, bool?> >(condition, pathToChild.Parameters), pathToChild.Merge(Expression.Lambda <Func <TChild, MultiLanguageTextBase> >(message, expectedValue.Parameters)), type));
            return(configurator);
        }
コード例 #24
0
        public static MutatorsConfigurator <TRoot, TChild, TValue> MustBelongTo <TRoot, TChild, TValue>(
            this MutatorsConfigurator <TRoot, TChild, TValue> configurator,
            IEnumerable <TValue> values,
            IEqualityComparer <TValue> comparer = null,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var        pathToValue = (Expression <Func <TRoot, TValue> >)configurator.PathToValue.ReplaceEachWithCurrent();
            var        pathToChild = (Expression <Func <TRoot, TChild> >)configurator.PathToChild.ReplaceEachWithCurrent();
            Expression contains    = comparer == null
                                      ? Expression.Call(containsMethod.MakeGenericMethod(typeof(TValue)), Expression.Constant(values), pathToValue.Body)
                                      : Expression.Call(containsWithComparerMethod.MakeGenericMethod(typeof(TValue)), Expression.Constant(values), pathToValue.Body, Expression.Constant(comparer));

            var condition = Expression.Convert(Expression.Not(contains), typeof(bool?));
            var message   = Expression.MemberInit(Expression.New(typeof(ValueMustBelongToText)),
                                                  Expression.Bind(typeof(ValueMustBelongToText).GetMember("Value").Single(), pathToValue.Body),
                                                  Expression.Bind(typeof(ValueMustBelongToText).GetMember("Values").Single(), Expression.Constant(values.Cast <object>().ToArray())));

            configurator.SetMutator(InvalidIfConfiguration.Create(MutatorsCreator.Sharp, priority, Expression.Lambda <Func <TRoot, bool?> >(condition, pathToValue.Parameters), Expression.Lambda <Func <TRoot, MultiLanguageTextBase> >(message, pathToChild.Parameters), type));
            return(configurator);
        }
コード例 #25
0
        public static MutatorsConfigurator <TRoot, TChild, string> LengthInRange <TRoot, TChild>(
            this MutatorsConfigurator <TRoot, TChild, string> configurator,
            int fromLength,
            int toLength,
            MultiLanguageTextBase title,
            int priority = 0,
            ValidationResultType type = ValidationResultType.Error)
        {
            var methodReplacer  = new MethodReplacer(MutatorsHelperFunctions.EachMethod, MutatorsHelperFunctions.CurrentMethod);
            var pathToValue     = (Expression <Func <TRoot, string> >)methodReplacer.Visit(configurator.PathToValue);
            var leftExpression  = Expression.LessThan(Expression.MakeMemberAccess(pathToValue.Body, stringLengthProperty), Expression.Constant(fromLength));
            var rigthExpression = Expression.GreaterThan(Expression.MakeMemberAccess(pathToValue.Body, stringLengthProperty), Expression.Constant(toLength));

            var condition = Expression.Convert(Expression.OrElse(leftExpression, rigthExpression), typeof(bool?));
            var message   = Expression.Lambda <Func <TRoot, MultiLanguageTextBase> >(Expression.MemberInit(
                                                                                         Expression.New(typeof(LengthOutOfRangeText)),
                                                                                         Expression.Bind(lengthOutOfRangeTextToProperty, Expression.Constant(toLength, typeof(int?))),
                                                                                         Expression.Bind(lengthOutOfRangeTextFromProperty, Expression.Constant(fromLength, typeof(int?))),
                                                                                         Expression.Bind(lengthOutOfRangeTextTitleProperty, Expression.Constant(title, typeof(MultiLanguageTextBase)))), pathToValue.Parameters);

            configurator.SetMutator(InvalidIfConfiguration.Create(MutatorsCreator.Sharp, priority, Expression.Lambda <Func <TRoot, bool?> >(condition, pathToValue.Parameters), message, type));
            return(configurator);
        }
コード例 #26
0
 protected abstract void Configure(MutatorsContext context, MutatorsConfigurator <TData> configurator);
コード例 #27
0
 public static MutatorsConfigurator <TRoot, TChild, TValue[]> SetArrayLength <TRoot, TChild, TValue>(this MutatorsConfigurator <TRoot, TChild, TValue[]> configurator, Expression <Func <TChild, int> > length)
 {
     configurator.SetMutator(SetArrayLengthConfiguration.Create(null, configurator.PathToChild.Merge(length)));
     return(configurator);
 }
コード例 #28
0
 public static MutatorsConfigurator <TRoot, TChild, string> LengthInRange <TRoot, TChild>(this MutatorsConfigurator <TRoot, TChild, string> configurator, int fromLength, int toLength,
                                                                                          int priority = 0,
                                                                                          ValidationResultType type = ValidationResultType.Error)
 {
     return(configurator.LengthInRange(fromLength, toLength, configurator.Title, priority, type));
 }