AbstractValidationControl.cs :  » Inversion-of-Control-Dependency-Injection » Spring.net » Spring » Web » UI » Controls » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Inversion of Control Dependency Injection » Spring.net 
Spring.net » Spring » Web » UI » Controls » AbstractValidationControl.cs
#region License

/*
 * Copyright  2002-2008 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#endregion

using System;
using System.Collections;
using System.Web.UI;
using Spring.Context;
using Spring.Util;
using Spring.Validation;
using Spring.Web.UI.Validation;

namespace Spring.Web.UI.Controls{
    /// <summary>
    /// Provides common functionality to all validation renderer controls.
    /// </summary>
    /// <author>Erich Eichinger</author>
    public abstract class AbstractValidationControl : Control
    {
        private string _provider;
        private string _validationContainerName;
        private IValidationErrorsRenderer renderer;
        private IValidationErrors _validationErrors;
        private IMessageSource _messageSource;

#if !NET_2_0
        private bool initialized;

        /// <summary>
        /// Raises the <see cref="E:System.Web.UI.Control.Init"/> event.
        /// </summary>
        protected override void OnInit(System.EventArgs e)
        {
            initialized = true;
            base.OnInit(e);
        }

        /// <summary>
        /// Gets a value indicating whether this instance is in design mode.
        /// </summary>
        /// <value>
        ///   <c>true</c> if this instance is in design mode; otherwise, <c>false</c>.
        /// </value>
        protected bool DesignMode
        {
            get
            {
                if (this.Site != null)
                {
                    return this.Site.DesignMode;
                }
                return initialized && (this.Context == null);
            }
        }
#endif
        /// <summary>
        /// Set a particular message source to be used for
        /// resolving error messages to display texts.
        /// </summary>
        /// <remarks>
        /// If not set, the control will probe the control hierarchy
        /// for containing controls implementing <see cref="IValidationContainer"/>
        /// and use the container's <see cref="IValidationContainer.MessageSource"/>.
        /// </remarks>
        public IMessageSource MessageSource
        {
            get { return _messageSource; }
            set { _messageSource = value; }
        }

        /// <summary>
        /// Allows to set a particular instance of the validation errors
        /// collection to render.
        /// </summary>
        /// <remarks>
        /// If not set, the control will probe the control hierarchy for 
        /// containing controls implementing <see cref="IValidationContainer"/>
        /// and use the container's <see cref="IValidationContainer.ValidationErrors"/>
        /// </remarks>
        public IValidationErrors ValidationErrors
        {
            get { return _validationErrors; }
            set { _validationErrors = value; }
        }

        /// <summary>
        /// If set, <see cref="FindValidationContainer"/> will resolve to the named control specified
        /// by this property. The behavior of name resolution is identical to 
        /// <see cref="System.Web.UI.WebControls.BaseValidator.ControlToValidate"/>, except that if the name
        /// starts with "::", the resolution will start at the page level instead of relative to this
        /// control
        /// </summary>
        public string ValidationContainerName
        {
            get { return _validationContainerName; }
            set { _validationContainerName = value; }
        }

        /// <summary>
        /// Gets or sets the provider.
        /// </summary>
        /// <value>The provider.</value>
        public virtual string Provider
        {
            get
            {
                if (this._provider == null)
                {
                    this._provider = this.ID;
                    if (this._provider == null)
                    {
                        this._provider = string.Empty;
                    }
                }
                return this._provider;
            }
            set
            {
                AssertUtils.ArgumentNotNull(value, "Provider");
                this._provider = value;
            }
        }

        /// <summary>
        /// Gets or sets the validation errors renderer to use. 
        /// </summary>
        /// <remarks>
        /// If not explicitly specified, defaults to <see cref="SpanValidationErrorsRenderer"/>.
        /// </remarks>
        /// <value>The validation errors renderer to use.</value>
        public IValidationErrorsRenderer Renderer
        {
            get
            {
                if (this.renderer == null)
                {
                    this.renderer = CreateValidationErrorsRenderer();
                    AssertUtils.ArgumentNotNull(this.renderer, "Renderer", "CreateValidationErrorsRenderer must not return null");
                }
                return this.renderer;
            }
            set
            {
                AssertUtils.ArgumentNotNull(value, "Renderer");
                this.renderer = value;
            }
        }

        /// <summary>
        /// Create the default <see cref="IValidationErrorsRenderer"/> 
        /// for this ValidationControl if none is configured.
        /// </summary>
        protected abstract IValidationErrorsRenderer CreateValidationErrorsRenderer();

        /// <summary>
        /// Gets the MessageSource to be used for resolve error messages
        /// </summary>
        /// <remarks>
        /// By default, returns <see cref="FindValidationContainer"/>'s MessageSource.
        /// </remarks>
        /// <returns>the <see cref="IMessageSource"/> to resolve message texts. May be <c>null</c></returns>
        protected virtual IMessageSource ResolveMessageSource()
        {
            IMessageSource messageSource = this.MessageSource;
            if (messageSource == null)
            {
                IValidationContainer validationContainer = FindValidationContainer();
                messageSource = (validationContainer == null) 
                                ? null 
                                : validationContainer.MessageSource;
            }
            return messageSource;
        }

        /// <summary>
        /// Gets the list of validation errors to render
        /// </summary>
        /// <returns>the <see cref="IValidationErrors"/> to render. May be <c>null</c></returns>
        protected virtual IValidationErrors ResolveValidationErrors()
        {
            IValidationErrors validationErrors = this.ValidationErrors;

            if (validationErrors == null)
            {
                IValidationContainer container = this.FindValidationContainer();
                if (container != null)
                {
                    validationErrors = container.ValidationErrors;
                }
            }
            return validationErrors;
        }

        /// <summary>
        /// Gets the <see cref="IValidationContainer"/>, who's <see cref="IValidationContainer.ValidationErrors"/> 
        /// shall be rendered by this control.
        /// </summary>
        /// <remarks>
        /// First, it tries to resolve the specified <see cref="ValidationContainerName"/>, if any. If no explicit name
        /// is set, will probe the control hierarchy for controls implementing <see cref="IValidationContainer"/>.
        /// </remarks>
        protected virtual IValidationContainer FindValidationContainer()
        {
            // is an explicit container specified?
            if (ValidationContainerName != null && ValidationContainerName.Length > 0)
            {
                Control start = this.NamingContainer;
                string containerName = this.ValidationContainerName;
                // shall we do a global search?
                if (containerName.StartsWith("::"))
                {
                    containerName = containerName.Substring(2);
                    start = this.Page;
                }
                IValidationContainer container = start as IValidationContainer;
                if (containerName.Length > 0)
                {
                    container = start.FindControl(containerName) as IValidationContainer;
                }
                if (container == null)
                {
                    throw new ArgumentException(
                        string.Format(
                            "Validation Container Control specified by {0} does not exist or does not implement IValidationContainer",
                            this.ValidationContainerName));
                }
                return container;
            }

            for (Control parent = this.Parent; parent != null; parent = parent.Parent)
            {
                IValidationContainer container = parent as IValidationContainer;
                if (container != null
                    && container.ValidationErrors != null)
                {
                    return container;
                }
            }
            return null;
        }

        /// <summary>
        /// Resolves the list of validation errors either explicitely specified using
        /// <see cref="ValidationErrors"/> or obtained from the containing <see cref="IValidationContainer"/> 
        /// resolved by <see cref="FindValidationContainer"/> to a list
        /// of <see cref="string"/> elements containing the error messages to be rendered.
        /// </summary>
        /// <remarks>
        /// <para>
        /// The list of validation errors may either be explicitely specified using <see cref="ValidationErrors"/>
        /// or will automatically be obtained from the containing <see cref="IValidationContainer"/> resolved by
        /// <see cref="FindValidationContainer"/>.
        /// </para>
        /// <para>
        /// Error Messages are resolved using either an explicitely specified <see cref="MessageSource"/> or the 
        /// <see cref="IMessageSource"/> obtained from the validation container.
        /// </para>
        /// </remarks>
        /// <returns>a list containing <see cref="string"/> elements. May return <c>null</c></returns>
        protected virtual IList ResolveErrorMessages()
        {
            IList errorMessages;

            // good catch - idea & patch from Roberto Paterlini
            if (DesignMode)
            {
                errorMessages = new string[] { GetType().Name + ":" + ID };
                return errorMessages;
            }

            IValidationErrors validationErrors = ResolveValidationErrors();
            if (validationErrors == null)
            {
                return null;
            }
            IMessageSource messageSource = this.ResolveMessageSource();

            errorMessages = validationErrors.GetResolvedErrors(this.Provider, messageSource);
            return errorMessages;
        }

        /// <summary>
        /// Renders error messages using the specified <see cref="Renderer"/>.
        /// </summary>
        /// <param name="writer"></param>
        protected override void Render(HtmlTextWriter writer)
        {
            IList errorMessages;

            errorMessages = ResolveErrorMessages();

            Renderer.RenderErrors(Page as Page, writer, errorMessages);
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.