| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Class: BaseCompareValidator
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Implementation: yes
- * Contact: <[email protected]>
- * Status: 100%
- *
- * (C) Gaurav Vaish (2001)
- */
- using System;
- using System.Collections;
- using System.Globalization;
- using System.Text;
- using System.Text.RegularExpressions;
- using System.Web;
- using System.Web.UI;
- using System.ComponentModel;
- namespace System.Web.UI.WebControls
- {
- public abstract class BaseCompareValidator: BaseValidator
- {
- protected BaseCompareValidator(): base()
- {
- }
- public static bool CanConvert(string text, ValidationDataType type)
- {
- object o = null;
- return Convert(text, type, out o);
- }
- [DefaultValue(ValidationDataType.String)]
- [WebCategory("Behaviour")]
- [WebSysDescription("RangeValidator_Type")]
- public ValidationDataType Type
- {
- get
- {
- object o = ViewState["Type"];
- if(o!=null)
- return (ValidationDataType)o;
- return ValidationDataType.String;
- }
- set
- {
- if(!System.Enum.IsDefined(typeof(ValidationDataType), value))
- throw new ArgumentException();
- ViewState["Type"] = value;
- }
- }
- protected static int CutoffYear
- {
- get
- {
- return DateTimeFormatInfo.CurrentInfo.Calendar.TwoDigitYearMax;
- }
- }
- protected static int GetFullYear(int shortYear)
- {
- int century = DateTime.Today.Year - (DateTime.Today.Year % 100);
- if(century < CutoffYear)
- {
- return (shortYear + century);
- }
- return (shortYear + century - 100);
- }
- protected override void AddAttributesToRender(HtmlTextWriter writer)
- {
- base.AddAttributesToRender(writer);
- if(RenderUplevel)
- {
- writer.AddAttribute("type", PropertyConverter.EnumToString(typeof(ValidationDataType), Type));
- NumberFormatInfo currInfo = NumberFormatInfo.CurrentInfo;
- if(Type == ValidationDataType.Double)
- {
- writer.AddAttribute("decimalchar", currInfo.NumberDecimalSeparator);
- return;
- }
- if(Type == ValidationDataType.Currency)
- {
- writer.AddAttribute("decimalchar", currInfo.CurrencyDecimalSeparator);
- string grpSep = currInfo.CurrencyGroupSeparator;
- if(grpSep[0] == 0xA0)
- {
- grpSep = " ";
- }
- writer.AddAttribute("groupchar", grpSep);
- writer.AddAttribute("digits", currInfo.CurrencyDecimalDigits.ToString(NumberFormatInfo.InvariantInfo));
- return;
- }
- if(Type == ValidationDataType.Date)
- {
- writer.AddAttribute("cutoffyear", CutoffYear.ToString());
- writer.AddAttribute("century", ( DateTime.Today.Year - (DateTime.Today.Year % 100) ).ToString());
- return;
- }
- }
- }
- protected override bool DetermineRenderUplevel()
- {
- if(Type == ValidationDataType.Date && DateTimeFormatInfo.CurrentInfo.Calendar.GetType() != typeof(GregorianCalendar))
- {
- return false;
- }
- return base.DetermineRenderUplevel();
- }
- /// <summary>
- /// Undocumented
- /// </summary>
- protected static bool Compare(string leftText, string rightText, ValidationCompareOperator op, ValidationDataType type)
- {
- object left = null, right = null;
- if(!Convert(leftText, type, out left))
- {
- return false;
- }
- if(op == ValidationCompareOperator.DataTypeCheck)
- {
- return true;
- }
- if(!Convert(rightText, type, out right))
- {
- return true;
- }
- int compareResult = 0;
- switch(type)
- {
- case ValidationDataType.String:
- compareResult = ((String)left).CompareTo(right);
- break;
- case ValidationDataType.Integer:
- compareResult = ((int)left).CompareTo(right);
- break;
- case ValidationDataType.Double:
- compareResult = ((Double)left).CompareTo(right);
- break;
- case ValidationDataType.Date:
- compareResult = ((DateTime)left).CompareTo(right);
- break;
- case ValidationDataType.Currency:
- compareResult = ((Decimal)left).CompareTo(right);
- break;
- }
- switch(op)
- {
- case ValidationCompareOperator.Equal:
- return (compareResult == 0);
- case ValidationCompareOperator.NotEqual:
- return (compareResult != 0);
- case ValidationCompareOperator.GreaterThan:
- return (compareResult > 0);
- case ValidationCompareOperator.GreaterThanEqual:
- return (compareResult >= 0);
- case ValidationCompareOperator.LessThan:
- return (compareResult < 0);
- case ValidationCompareOperator.LessThanEqual:
- return (compareResult <= 0);
- }
- return false;
- }
- /// <summary>
- /// Undocumented
- /// </summary>
- protected static string GetDateElementOrder()
- {
- string pattern = DateTimeFormatInfo.CurrentInfo.ShortDatePattern;
- //TODO: What are the various possibilities?
- // I can think of only y*/M*/d*, d*/M*/y*, M*/d*/y*
- if(pattern.IndexOf('y') < pattern.IndexOf('M'))
- {
- return "ymd";
- }
- if(pattern.IndexOf('M') < pattern.IndexOf('d'))
- {
- return "mdy";
- }
- return "dmy";
- }
- static bool ConvertDate (string text, ValidationDataType type, ref object convertedValue)
- {
- //Console.WriteLine (DateTimeFormatInfo.CurrentInfo.Calendar.GetType ());
- // FIXME: sometime, somehow, the condition is true even when GetType () says
- // it's a GregorianCalendar.
- if (DateTimeFormatInfo.CurrentInfo.Calendar.GetType () != typeof (GregorianCalendar)) {
- convertedValue = DateTime.Parse (text);
- return true;
- }
- string order = GetDateElementOrder ();
- int date = 0, mth = 0, year = 0;
- string dateStr = null;
- string mthStr = null;
- string yearStr = null;
- Match match = Regex.Match (text, @"^\s*((\d{4})|(\d{2}))([\.\/-])(\d{1,2})\4(\d{1,2})\s*$");
- if (match.Success || order == "ymd") {
- dateStr = match.Groups [6].Value;
- mthStr = match.Groups [5].Value;
- if (match.Groups [2].Success)
- yearStr = match.Groups [2].Value;
- else
- yearStr = match.Groups [3].Value;
- } else {
- match = Regex.Match(text, @"^\s*(\d{1,2})([\.\/-])(\d{1,2})\2((\d{4}|\d{2}))\s*$");
- if (!match.Success)
- return false;
- if (order == "dmy") {
- dateStr = match.Groups [1].Value;
- mthStr = match.Groups [3].Value;
- if (match.Groups [5].Success)
- yearStr = match.Groups [5].Value;
- else
- yearStr = match.Groups [6].Value;
- } else if (order == "mdy") {
- dateStr = match.Groups [3].Value;
- mthStr = match.Groups [1].Value;
- if (match.Groups [5].Success)
- yearStr = match.Groups [5].Value;
- else
- yearStr = match.Groups [6].Value;
- }
- }
- if (dateStr == null || mthStr == null || yearStr == null) {
- return false;
- }
- CultureInfo inv = CultureInfo.InvariantCulture;
- date = Int32.Parse (dateStr, inv);
- mth = Int32.Parse (mthStr, inv);
- year = Int32.Parse (yearStr, inv);
- year = (year < 100 ? GetFullYear (year) : year);
- if (date != 0 && mth != 0 && year != 0) {
- convertedValue = new DateTime (year, mth, date);
- return true;
- }
- return false;
- }
- static bool ConvertDouble (string text, ValidationDataType type, ref object convertedValue)
- {
- Match match = Regex.Match (text, @"^\s*([-\+])?(\d+)?(\" +
- NumberFormatInfo.CurrentInfo.NumberDecimalSeparator +
- @"(\d+))?\s*$");
- if (!match.Success)
- return false;
- string sign = (match.Groups [1].Success ? match.Groups [1].Value : "+");
- string decPart = (match.Groups [2].Success ? match.Groups [2].Value : "0");
- string mantissa = (match.Groups [4].Success ? match.Groups [4].Value : "0");
- string num = sign + decPart + "." + mantissa;
- convertedValue = Double.Parse (num, CultureInfo.InvariantCulture);
- return true;
- }
- static bool ConvertCurrency (string text, ValidationDataType type, ref object convertedValue)
- {
- string decSep = NumberFormatInfo.CurrentInfo.CurrencyDecimalSeparator;
- string grpSep = NumberFormatInfo.CurrentInfo.CurrencyGroupSeparator;
- int decDig = NumberFormatInfo.CurrentInfo.CurrencyDecimalDigits;
- if (grpSep [0] == 0xA0)
- grpSep = " ";
- string [] patternArray = new string [5];
- patternArray [0] = "^\\s*([-\\+])?(((\\d+)\\";
- patternArray [1] = grpSep;
- patternArray [2] = @")*)(\d+)";
- if (decDig > 0) {
- string [] decPattern = new string [5];
- decPattern [0] = "(\\";
- decPattern [1] = decSep;
- decPattern [2] = @"(\d{1,";
- decPattern [3] = decDig.ToString (NumberFormatInfo.InvariantInfo);
- decPattern [4] = @"}))";
- patternArray [3] = String.Concat (decPattern);
- } else {
- patternArray [3] = String.Empty;
- }
- patternArray [4] = @"?\s*$";
- Match match = Regex.Match (text, String.Concat (patternArray));
- if (!match.Success)
- return false;
- StringBuilder sb = new StringBuilder ();
- sb.Append (match.Groups [1]);
- CaptureCollection cc = match.Groups [4].Captures;
- foreach (IEnumerable current in cc)
- sb.Append ((Capture) current);
- sb.Append (match.Groups [5]);
- if (decDig > 0) {
- sb.Append (".");
- sb.Append (match.Groups [7]);
- }
- convertedValue = Decimal.Parse (sb.ToString (), CultureInfo.InvariantCulture);
- return true;
- }
- /// <summary>
- /// Undocumented
- /// </summary>
- protected static bool Convert (string text, ValidationDataType type, out object convertedValue)
- {
- CultureInfo inv = CultureInfo.InvariantCulture;
- convertedValue = null;
- try {
- switch(type) {
- case ValidationDataType.String:
- convertedValue = text;
- break;
- case ValidationDataType.Integer:
- convertedValue = Int32.Parse (text, inv);
- break;
- case ValidationDataType.Double:
- return ConvertDouble (text, type, ref convertedValue);
- case ValidationDataType.Date:
- return ConvertDate (text, type, ref convertedValue);
- case ValidationDataType.Currency:
- return ConvertCurrency (text, type, ref convertedValue);
- }
- } catch (Exception e) {
- convertedValue = null;
- }
- return (convertedValue != null);
- }
- }
- }
|