Click here to Skip to main content
15,886,873 members
Articles / Web Development / HTML

Transformalizing NorthWind

Rate me:
Please Sign up or sign in to vote.
4.95/5 (29 votes)
24 Jul 2014GPL37 min read 57.6K   341   53  
Combining de-normalization, transformation, replication, and awesome-ness.
//===============================================================================
// Microsoft patterns & practices Enterprise Library
// Validation Application Block
//===============================================================================
// Copyright © Microsoft Corporation.  All rights reserved.
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
// FITNESS FOR A PARTICULAR PURPOSE.
//===============================================================================

using System.Collections.Generic;
using Transformalize.Libs.EnterpriseLibrary.Common.Configuration;
using Transformalize.Libs.EnterpriseLibrary.Validation.Configuration;

namespace Transformalize.Libs.EnterpriseLibrary.Validation.Validators
{
	/// <summary>
	/// Validates an object by checking if it belongs to a set.
	/// </summary>
	[ConfigurationElementType(typeof(DomainValidatorData))]
	public class DomainValidator<T> : ValueValidator<T>
	{
		private IEnumerable<T> domain;

		/// <summary>
		/// <para>Initializes a new instance of the <see cref="DomainValidator{T}"/>.</para>
		/// </summary>
		/// <param name="domain">List of values to be used in the validation.</param>
		public DomainValidator(IEnumerable<T> domain)
			: this(domain, false)
		{ }

		/// <summary>
		/// <para>Initializes a new instance of the <see cref="DomainValidator{T}"/>.</para>
		/// </summary>
		/// <param name="negated">True if the validator must negate the result of the validation.</param>
		/// <param name="domain">List of values to be used in the validation.</param>
		public DomainValidator(bool negated, params T[] domain)
			: this(new List<T>(domain), null, negated)
		{
		}

		/// <summary>
		/// <para>Initializes a new instance of the <see cref="DomainValidator{T}"/>.</para>
		/// </summary>
		/// <param name="messageTemplate">The message template to use when logging results.</param>
		/// <param name="domain">List of values to be used in the validation.</param>
		public DomainValidator(string messageTemplate, params T[] domain)
			: this(new List<T>(domain), messageTemplate, false)
		{ }

		/// <summary>
		/// <para>Initializes a new instance of the <see cref="DomainValidator{T}"/>.</para>
		/// </summary>
		/// <param name="domain">List of values to be used in the validation.</param>
		/// <param name="negated">True if the validator must negate the result of the validation.</param>
		public DomainValidator(IEnumerable<T> domain, bool negated)
			: this(domain, null, negated)
		{
		}

		/// <summary>
		/// <para>Initializes a new instance of the <see cref="DomainValidator{T}"/>.</para>
		/// </summary>
		/// <param name="domain">List of values to be used in the validation.</param>
		/// <param name="messageTemplate">The message template to use when logging results.</param>
		/// <param name="negated">True if the validator must negate the result of the validation.</param>
		public DomainValidator(IEnumerable<T> domain, string messageTemplate, bool negated)
			: base(messageTemplate, null, negated)
		{
			ValidatorArgumentsValidatorHelper.ValidateDomainValidator(domain);

			this.domain = domain;
		}

		/// <summary>
		/// Implements the validation logic for the receiver.
		/// </summary>
		/// <param name="objectToValidate">The object to validate.</param>
		/// <param name="currentTarget">The object on the behalf of which the validation is performed.</param>
		/// <param name="key">The key that identifies the source of <paramref name="objectToValidate"/>.</param>
		/// <param name="validationResults">The validation results to which the outcome of the validation should be stored.</param>
		protected override void DoValidate(T objectToValidate, object currentTarget, string key, ValidationResults validationResults)
		{
			bool logError = false;
			bool isObjectToValidateNull = objectToValidate == null;

			if (!isObjectToValidateNull)
			{
				logError = true;
				foreach (T element in domain)
				{
					if (element.Equals(objectToValidate))
					{
						logError = false;
						break;
					}
				}
			}

			if (isObjectToValidateNull || (logError != Negated))
			{
				this.LogValidationResult(validationResults,
					GetMessage(objectToValidate, key),
					currentTarget,
					key);
			}
		}

		/// <summary>
		/// Gets the Default Message Template when the validator is non negated.
		/// </summary>
		protected override string DefaultNonNegatedMessageTemplate
		{
			get { return Resources.DomainNonNegatedDefaultMessageTemplate; }
		}

		/// <summary>
		/// Gets the Default Message Template when the validator is negated.
		/// </summary>
		protected override string DefaultNegatedMessageTemplate
		{
			get { return Resources.DomainNegatedDefaultMessageTemplate; }
		}

        /// <summary>
        /// The set of items we're checking for membership in.
        /// </summary>
		public List<T> Domain
		{
			get { return new List<T>(this.domain); }
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions