| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591 |
- //
- // System.Xml.Query.XQueryConvert
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // Copyright (C) 2004 Novell Inc.
- //
- //
- // 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.
- //
- #if NET_2_0
- using System;
- using System.Globalization;
- using System.IO;
- using System.Text;
- using System.Xml;
- using System.Xml.Schema;
- namespace System.Xml
- {
- // basically this class is obsoleted and removed from .NET 2.0.
- internal class XQueryConvert
- {
- private XQueryConvert ()
- {
- }
- public static XmlTypeCode GetFallbackType (XmlTypeCode type)
- {
- switch (type) {
- case XmlTypeCode.AnyAtomicType:
- return XmlTypeCode.Item;
- case XmlTypeCode.UntypedAtomic:
- return XmlTypeCode.String;
- case XmlTypeCode.Notation:
- return XmlTypeCode.QName;
- case XmlTypeCode.NormalizedString:
- case XmlTypeCode.Token:
- case XmlTypeCode.Language:
- case XmlTypeCode.NmToken:
- case XmlTypeCode.Name:
- case XmlTypeCode.NCName:
- case XmlTypeCode.Id:
- case XmlTypeCode.Idref:
- case XmlTypeCode.Entity:
- return XmlTypeCode.String;
- case XmlTypeCode.NonPositiveInteger:
- return XmlTypeCode.Decimal;
- case XmlTypeCode.NegativeInteger:
- return XmlTypeCode.NonPositiveInteger;
- case XmlTypeCode.Long:
- return XmlTypeCode.Integer;
- case XmlTypeCode.Short:
- return XmlTypeCode.Int;
- case XmlTypeCode.Byte:
- return XmlTypeCode.Int;
- case XmlTypeCode.NonNegativeInteger:
- return XmlTypeCode.Decimal;
- case XmlTypeCode.UnsignedLong:
- return XmlTypeCode.NonNegativeInteger;
- case XmlTypeCode.UnsignedInt:
- return XmlTypeCode.Integer;
- case XmlTypeCode.UnsignedShort:
- return XmlTypeCode.Int;
- case XmlTypeCode.UnsignedByte:
- return XmlTypeCode.UnsignedShort;
- case XmlTypeCode.PositiveInteger:
- return XmlTypeCode.NonNegativeInteger;
- default:
- return XmlTypeCode.None;
- }
- }
- // Individual conversion
- public static string AnyUriToString (string value)
- {
- return value;
- }
- public static byte [] Base64BinaryToHexBinary (byte [] value)
- {
- return XmlConvert.FromBinHexString (Convert.ToBase64String (value));
- }
- public static string Base64BinaryToString (byte [] value)
- {
- return Convert.ToBase64String (value);
- }
- public static decimal BooleanToDecimal (bool value)
- {
- return Convert.ToDecimal (value);
- }
- public static double BooleanToDouble (bool value)
- {
- return Convert.ToDouble (value);
- }
- public static float BooleanToFloat (bool value)
- {
- return Convert.ToSingle (value);
- }
- public static int BooleanToInt (bool value)
- {
- return Convert.ToInt32 (value);
- }
- public static long BooleanToInteger (bool value)
- {
- return Convert.ToInt64 (value);
- }
- public static string BooleanToString (bool value)
- {
- // It looks not returning "True"
- return value ? "true" : "false";
- }
- public static DateTime DateTimeToDate (DateTime value)
- {
- return value.Date;
- }
- public static DateTime DateTimeToGDay (DateTime value)
- {
- return new DateTime (0, 0, value.Day);
- }
- public static DateTime DateTimeToGMonth (DateTime value)
- {
- return new DateTime (0, value.Month, 0);
- }
- public static DateTime DateTimeToGMonthDay (DateTime value)
- {
- return new DateTime (0, value.Month, value.Day);
- }
- public static DateTime DateTimeToGYear (DateTime value)
- {
- return new DateTime (value.Year, 0, 0);
- }
- public static DateTime DateTimeToGYearMonth (DateTime value)
- {
- return new DateTime (value.Year, value.Month, 0);
- }
- public static DateTime DateTimeToTime (DateTime value)
- {
- return new DateTime (value.TimeOfDay.Ticks);
- }
- public static DateTime DateToDateTime (DateTime value)
- {
- return value.Date;
- }
- public static DateTime DateToGDay (DateTime value)
- {
- return new DateTime (0, 0, value.Day);
- }
- public static DateTime DateToGMonth (DateTime value)
- {
- return new DateTime (0, value.Month, 0);
- }
- public static DateTime DateToGMonthDay (DateTime value)
- {
- return new DateTime (0, value.Month, value.Day);
- }
- public static DateTime DateToGYear (DateTime value)
- {
- return new DateTime (value.Year, 0, 0);
- }
- public static DateTime DateToGYearMonth (DateTime value)
- {
- return new DateTime (value.Year, value.Month, 0);
- }
- public static string DateToString (DateTime value)
- {
- return XmlConvert.ToString (value);
- }
- public static string DateTimeToString (DateTime value)
- {
- return XmlConvert.ToString (value);
- }
- public static string DayTimeDurationToDuration (TimeSpan value)
- {
- return XmlConvert.ToString (value);
- }
- public static string DayTimeDurationToString (TimeSpan value)
- {
- return DayTimeDurationToDuration (value);
- }
- public static bool DecimalToBoolean (decimal value)
- {
- return value != 0;
- }
- public static double DecimalToDouble (decimal value)
- {
- return Convert.ToDouble (value);
- }
- public static float DecimalToFloat (decimal value)
- {
- return Convert.ToSingle (value);
- }
- public static int DecimalToInt (decimal value)
- {
- return Convert.ToInt32 (value);
- }
- public static long DecimalToInteger (decimal value)
- {
- return Convert.ToInt64 (value);
- }
- public static string DecimalToString (decimal value)
- {
- return XmlConvert.ToString (value);
- }
- public static bool DoubleToBoolean (double value)
- {
- return value != 0;
- }
- public static decimal DoubleToDecimal (double value)
- {
- return (decimal) value;
- }
- public static float DoubleToFloat (double value)
- {
- return Convert.ToSingle (value);
- }
- public static int DoubleToInt (double value)
- {
- return Convert.ToInt32 (value);
- }
- public static long DoubleToInteger (double value)
- {
- return Convert.ToInt64 (value);
- }
- public static string DoubleToString (double value)
- {
- return XmlConvert.ToString (value);
- }
- public static TimeSpan DurationToDayTimeDuration (string value)
- {
- return XmlConvert.ToTimeSpan (value);
- }
- public static string DurationToString (string value)
- {
- return XmlConvert.ToString (XmlConvert.ToTimeSpan (value));
- }
- public static TimeSpan DurationToYearMonthDuration (string value)
- {
- return XmlConvert.ToTimeSpan (value);
- }
- public static bool FloatToBoolean (float value)
- {
- return value != 0;
- }
- public static decimal FloatToDecimal (float value)
- {
- return (decimal) value;
- }
- public static double FloatToDouble (float value)
- {
- return Convert.ToDouble (value);
- }
- public static int FloatToInt (float value)
- {
- return Convert.ToInt32 (value);
- }
- public static long FloatToInteger (float value)
- {
- return Convert.ToInt64 (value);
- }
- public static string FloatToString (float value)
- {
- return XmlConvert.ToString (value);
- }
- public static string GDayToString (DateTime value)
- {
- return XmlConvert.ToString (TimeSpan.FromDays (value.Day));
- }
- public static string GMonthDayToString (DateTime value)
- {
- return XmlConvert.ToString (new TimeSpan (value.Day, value.Hour, value.Minute, value.Second));
- }
- public static string GMonthToString (DateTime value)
- {
- return XmlConvert.ToString (new TimeSpan (0, value.Month, 1));
- }
- public static string GYearMonthToString (DateTime value)
- {
- return XmlConvert.ToString (new TimeSpan (value.Year, value.Month, 1));
- }
- public static string GYearToString (DateTime value)
- {
- return XmlConvert.ToString (new TimeSpan (new DateTime (value.Year, 1, 1).Ticks));
- }
- public static string HexBinaryToString (byte [] data)
- {
- return XmlConvert.ToBinHexString (data);
- }
- public static byte [] HexBinaryToBase64Binary (byte [] data)
- {
- return data;//XmlConvert.ToBinHexString (data);
- }
- public static bool IntegerToBoolean (long value)
- {
- return value != 0;
- }
- public static decimal IntegerToDecimal (long value)
- {
- return (decimal) value;
- }
- public static decimal IntegerToDecimal (ulong value)
- {
- return (decimal) value;
- }
- public static double IntegerToDouble (long value)
- {
- return Convert.ToDouble (value);
- }
- public static float IntegerToFloat (long value)
- {
- return Convert.ToSingle (value);
- }
- public static int IntegerToInt (long value)
- {
- return Convert.ToInt32 (value);
- }
- public static string IntegerToString (long value)
- {
- return XmlConvert.ToString (value);
- }
- public static bool IntToBoolean (int value)
- {
- return value != 0;
- }
- public static decimal IntToDecimal (int value)
- {
- return (decimal) value;
- }
- public static double IntToDouble (int value)
- {
- return Convert.ToDouble (value);
- }
- public static float IntToFloat (int value)
- {
- return Convert.ToSingle (value);
- }
- public static long IntToInteger (int value)
- {
- return value;
- }
- public static string IntToString (int value)
- {
- return XmlConvert.ToString (value);
- }
- public static string NonNegativeIntegerToString (decimal value)
- {
- return XmlConvert.ToString (value);
- }
- public static string NonPositiveIntegerToString (decimal value)
- {
- return XmlConvert.ToString (value);
- }
- public static DateTime TimeToDateTime (DateTime value)
- {
- return value;
- }
- public static string TimeToString (DateTime value)
- {
- return XmlConvert.ToString (value, "HH:mm:ssZ");
- }
- public static string YearMonthDurationToDuration (TimeSpan value)
- {
- return XmlConvert.ToString (value);
- }
- public static string YearMonthDurationToString (TimeSpan value)
- {
- return YearMonthDurationToDuration (value);
- }
- public static string StringToAnyUri (string value)
- {
- return value;
- }
- public static byte [] StringToBase64Binary (string value)
- {
- return Convert.FromBase64String (value);
- }
- public static bool StringToBoolean (string value)
- {
- return XmlConvert.ToBoolean (value);
- }
- public static DateTime StringToDate (string value)
- {
- return XmlConvert.ToDateTime (value);
- }
- public static DateTime StringToDateTime (string value)
- {
- return XmlConvert.ToDateTime (value);
- }
- public static TimeSpan StringToDayTimeDuration (string value)
- {
- return XmlConvert.ToTimeSpan (value);
- }
- public static decimal StringToDecimal (string value)
- {
- return XmlConvert.ToDecimal (value);
- }
- public static double StringToDouble (string value)
- {
- return XmlConvert.ToDouble (value);
- }
- public static string StringToDuration (string value)
- {
- return XmlConvert.ToString (XmlConvert.ToTimeSpan (value));
- }
- public static float StringToFloat (string value)
- {
- return XmlConvert.ToSingle (value);
- }
- public static DateTime StringToGDay (string value)
- {
- return XmlConvert.ToDateTime (value);
- }
- public static DateTime StringToGMonth (string value)
- {
- return XmlConvert.ToDateTime (value);
- }
- public static DateTime StringToGMonthDay (string value)
- {
- return XmlConvert.ToDateTime (value);
- }
- public static DateTime StringToGYear (string value)
- {
- return XmlConvert.ToDateTime (value);
- }
- public static DateTime StringToGYearMonth (string value)
- {
- return XmlConvert.ToDateTime (value);
- }
- public static byte [] StringToHexBinary (string value)
- {
- return XmlConvert.FromBinHexString (value);
- }
- public static int StringToInt (string value)
- {
- return XmlConvert.ToInt32 (value);
- }
- public static long StringToInteger (string value)
- {
- return XmlConvert.ToInt64 (value);
- }
- public static decimal StringToNonNegativeInteger (string value)
- {
- return XmlConvert.ToDecimal (value);
- }
- public static decimal StringToNonPositiveInteger (string value)
- {
- return XmlConvert.ToDecimal (value);
- }
- public static DateTime StringToTime (string value)
- {
- return XmlConvert.ToDateTime (value);
- }
- public static UInt32 StringToUnsignedInt (string value)
- {
- return XmlConvert.ToUInt32 (value);
- }
- public static UInt64 StringToUnsignedLong (string value)
- {
- return XmlConvert.ToUInt64 (value);
- }
- public static UInt16 StringToUnsignedShort (string value)
- {
- return XmlConvert.ToUInt16 (value);
- }
- public static TimeSpan StringToYearMonthDuration (string value)
- {
- return XmlConvert.ToTimeSpan (value);
- }
- }
- }
- #endif
|