BaseCompareValidator.cs :  » 2.6.4-mono-.net-core » System.Web » System » Web » UI » WebControls » 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 » 2.6.4 mono .net core » System.Web 
System.Web » System » Web » UI » WebControls » BaseCompareValidator.cs
//
// System.Web.UI.WebControls.BaseCompareValidator
//
// Authors:
//  Chris Toshok (toshok@novell.com)
//
// (C) 2005 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//

using System.Text;
using System.Threading;
using System.Globalization;
using System.ComponentModel;
using System.Security.Permissions;
using System.Web.Util;

namespace System.Web.UI.WebControls{

  // CAS
  [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
  [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
  public abstract class BaseCompareValidator : BaseValidator {

#if NET_2_0
    protected
#else
    public
#endif
    BaseCompareValidator ()
    {
    }

    protected override void AddAttributesToRender (HtmlTextWriter w)
    {
      if (RenderUplevel) {
#if NET_2_0
        if (Page!=null){
          RegisterExpandoAttribute (ClientID, "type", Type.ToString ());

          switch (Type) {
          case ValidationDataType.Date:
            DateTimeFormatInfo dateTimeFormat = CultureInfo.CurrentCulture.DateTimeFormat;
            string pattern = dateTimeFormat.ShortDatePattern;
            string dateorder = (pattern.StartsWith ("y", true, Helpers.InvariantCulture) ? "ymd" : (pattern.StartsWith ("m", true, Helpers.InvariantCulture) ? "mdy" : "dmy"));
            RegisterExpandoAttribute (ClientID, "dateorder", dateorder);
            RegisterExpandoAttribute (ClientID, "cutoffyear", dateTimeFormat.Calendar.TwoDigitYearMax.ToString ());
            break;
          case ValidationDataType.Currency:
            NumberFormatInfo numberFormat = CultureInfo.CurrentCulture.NumberFormat;
            RegisterExpandoAttribute (ClientID, "decimalchar", numberFormat.CurrencyDecimalSeparator, true);
            RegisterExpandoAttribute (ClientID, "groupchar", numberFormat.CurrencyGroupSeparator, true);
            RegisterExpandoAttribute (ClientID, "digits", numberFormat.CurrencyDecimalDigits.ToString());
            RegisterExpandoAttribute (ClientID, "groupsize", numberFormat.CurrencyGroupSizes [0].ToString ());
            break;
          }
        }
#else
        w.AddAttribute ("datatype", Type.ToString());
#endif
      }

      base.AddAttributesToRender (w);
    }

    public static bool CanConvert (string text,
                 ValidationDataType type)
    {
      object value;

      return Convert (text, type, out value);
    }

    protected static bool Convert (string text,
                 ValidationDataType type,
                 out object value)
    {
                return BaseCompareValidator.Convert(text, type, false, out value);
    }

    protected static bool Compare (string left,
                 string right,
                 ValidationCompareOperator op,
                 ValidationDataType type)
    {
                return BaseCompareValidator.Compare(left, false, right, false, op, type);  
    }

    protected override bool DetermineRenderUplevel ()
    {
      /* presumably the CompareValidator client side
       * code makes use of newer dom/js stuff than
       * the rest of the validators.  but ours
       * doesn't for the moment, so let's just use
       * our present implementation
       */
      return base.DetermineRenderUplevel();
    }

    protected static string GetDateElementOrder ()
    {
      // I hope there's a better way to implement this...
      string pattern = Thread.CurrentThread.CurrentCulture.DateTimeFormat.ShortDatePattern;
      StringBuilder order = new StringBuilder();
      bool seen_date = false;
      bool seen_year = false;
      bool seen_month = false;

      pattern = pattern.ToLower (Helpers.InvariantCulture);

      for (int i = 0; i < pattern.Length; i ++) {
        char c = pattern[ i ];
        if (c != 'm' && c != 'd' && c != 'y')
          continue;

        if (c == 'm') {
          if (!seen_month) order.Append ("m");
          seen_month = true;
        }
        else if (c == 'y') {
          if (!seen_year) order.Append ("y");
          seen_year = true;
        }
        else /* (c == 'd') */ {
          if (!seen_date) order.Append ("d");
          seen_date = true;
        }
      }

      return order.ToString ();
    }

    protected static int GetFullYear (int two_digit_year)
    {
#if NET_2_0
      /* This is an implementation that matches the
       * docs on msdn, but MS doesn't seem to go by
       * their docs (at least in 1.0). */
      int cutoff = CutoffYear;
      int twodigitcutoff = cutoff % 100;

      if (two_digit_year <= twodigitcutoff) {
        return cutoff - twodigitcutoff + two_digit_year;
      }
      else {
        return cutoff - twodigitcutoff - 100 + two_digit_year;
      }
#else
      /* This is the broken implementation in 1.0 */
      int cutoff = CutoffYear;
      int twodigitcutoff = cutoff % 100;

      return cutoff - twodigitcutoff + two_digit_year;
#endif
    }

#if NET_2_0
    [DefaultValue (false)]
    [Themeable (false)]
    public
#else 
          internal
#endif
            bool CultureInvariantValues {
      get { return ViewState.GetBool ("CultureInvariantValues", false); }
      set { ViewState ["CultureInvariantValues"] = value; }
    }


    
          protected static int CutoffYear {
      get {
        return CultureInfo.CurrentCulture.Calendar.TwoDigitYearMax;
      }
    }


    [DefaultValue(ValidationDataType.String)]
#if NET_2_0
    [Themeable (false)]
#endif
    [WebSysDescription("")]
    [WebCategory("Behavior")]
    public ValidationDataType Type {
      get { return ViewState ["Type"] == null ? ValidationDataType.String : (ValidationDataType) ViewState ["Type"]; }
      set { ViewState ["Type"] = value; }
    }

#if NET_2_0
    
    public
#else 
        internal
#endif 
        static bool CanConvert (string text, 
                 ValidationDataType type, 
                 bool cultureInvariant)
    {
                object value;
                return Convert(text, type, cultureInvariant, out value);
    }

#if NET_2_0
    protected
#else 
        internal
#endif 
        static bool Compare (string left, 
                 bool cultureInvariantLeftText, 
                 string right, 
                 bool cultureInvariantRightText, 
                 ValidationCompareOperator op, 
                 ValidationDataType type)
    {
            object lo, ro;

            if (!Convert(left, type, cultureInvariantLeftText, out lo))
                return false;

            /* DataTypeCheck is a unary operator that only
             * depends on the lhs */
            if (op == ValidationCompareOperator.DataTypeCheck)
                return true;

            /* pretty crackladen, but if we're unable to
             * convert the rhs to @type, the comparison
             * succeeds */
            if (!Convert(right, type, cultureInvariantRightText, out ro))
                return true;

            int comp = ((IComparable)lo).CompareTo((IComparable)ro);

            switch (op)
            {
                case ValidationCompareOperator.Equal:
                    return comp == 0;
                case ValidationCompareOperator.NotEqual:
                    return comp != 0;
                case ValidationCompareOperator.LessThan:
                    return comp < 0;
                case ValidationCompareOperator.LessThanEqual:
                    return comp <= 0;
                case ValidationCompareOperator.GreaterThan:
                    return comp > 0;
                case ValidationCompareOperator.GreaterThanEqual:
                    return comp >= 0;
                default:
                    return false;
            }
    }

#if NET_2_0
  protected
#else
  internal
#endif
    static bool Convert (string text,
                 ValidationDataType type,
                 bool cultureInvariant,
                 out object value)
    {
            try
            {
                switch (type)
                {
                    case ValidationDataType.String:
                        value = text;
                        return value != null;

                    case ValidationDataType.Integer:
                        IFormatProvider intFormatProvider = (cultureInvariant) ? 
                            NumberFormatInfo.InvariantInfo :
                            NumberFormatInfo.CurrentInfo;
                        value = Int32.Parse(text, intFormatProvider);
                        return true;

                    case ValidationDataType.Double:
                        IFormatProvider doubleFormatProvider = (cultureInvariant) ?
                            NumberFormatInfo.InvariantInfo :
                            NumberFormatInfo.CurrentInfo;
                        value = Double.Parse(text, doubleFormatProvider);
                        return true;

                    case ValidationDataType.Date:
                        
                        IFormatProvider dateFormatProvider = (cultureInvariant) ? 
                            DateTimeFormatInfo.InvariantInfo :
                            DateTimeFormatInfo.CurrentInfo;

                        value = DateTime.Parse(text, dateFormatProvider);
                        return true;

                    case ValidationDataType.Currency:
                        IFormatProvider currencyFormatProvider = (cultureInvariant) ?
                            NumberFormatInfo.InvariantInfo :
                            NumberFormatInfo.CurrentInfo;
                        value = Decimal.Parse(text, NumberStyles.Currency, currencyFormatProvider);
                        return true;

                    default:
                        value = null;
                        return false;
                }
            }
            catch
            {
                value = null;
                return false;
            }
    }
  }

}







www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.