| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957 |
- //
- // 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;
- using System.Xml.XPath;
- namespace System.Xml
- {
- internal class XQueryConvert
- {
- private XQueryConvert ()
- {
- }
- public static bool ShouldCheckValueFacets (XmlSchemaType schemaTypeDest)
- {
- XmlSchemaObjectCollection facets = null;
- XmlSchemaSimpleType st = schemaTypeDest as XmlSchemaSimpleType;
- if (st != null) {
- XmlSchemaSimpleTypeRestriction r = st.Content
- as XmlSchemaSimpleTypeRestriction;
- if (r != null)
- facets = r.Facets;
- }
- else {
- XmlSchemaComplexType ct =
- schemaTypeDest as XmlSchemaComplexType;
- XmlSchemaSimpleContent sc = ct.ContentModel
- as XmlSchemaSimpleContent;
- if (sc != null) {
- XmlSchemaSimpleContentRestriction r =
- sc.Content as XmlSchemaSimpleContentRestriction;
- if (r != null)
- facets = r.Facets;
- }
- }
- return facets != null && facets.Count > 0;
- }
- 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;
- }
- }
- [MonoTODO]
- // See XQuery & XPath 2.0 functions & operators section 17.
- public static bool CanConvert (XPathItem item, XmlSchemaType schemaTypeDest)
- {
- if (item == null)
- throw new ArgumentNullException ("item");
- if (schemaTypeDest == null)
- throw new ArgumentNullException ("schemaTypeDest");
- XmlTypeCode src = item.XmlType.TypeCode;
- XmlTypeCode dst = schemaTypeDest.TypeCode;
- // Notation cannot be converted from other than Notation
- if (src == XmlTypeCode.Notation && dst != XmlTypeCode.Notation)
- return false;
- // untypedAtomic and string are convertable unless source type is QName.
- switch (dst) {
- case XmlTypeCode.UntypedAtomic:
- case XmlTypeCode.String:
- return src != XmlTypeCode.QName;
- }
- switch (src) {
- case XmlTypeCode.None:
- case XmlTypeCode.Item:
- case XmlTypeCode.Node:
- case XmlTypeCode.Document:
- case XmlTypeCode.Element:
- case XmlTypeCode.Attribute:
- case XmlTypeCode.Namespace:
- case XmlTypeCode.ProcessingInstruction:
- case XmlTypeCode.Comment:
- case XmlTypeCode.Text:
- throw new NotImplementedException (); // FIXME: check what happens
- case XmlTypeCode.AnyAtomicType:
- throw new NotImplementedException (); // FIXME: check what happens
- case XmlTypeCode.UntypedAtomic:
- case XmlTypeCode.String:
- // 'M'
- throw new NotImplementedException (); // FIXME: check what happens
- case XmlTypeCode.Boolean:
- case XmlTypeCode.Decimal:
- switch (dst) {
- case XmlTypeCode.Float:
- case XmlTypeCode.Double:
- case XmlTypeCode.Decimal:
- case XmlTypeCode.Boolean:
- return true;
- }
- return false;
- case XmlTypeCode.Float:
- case XmlTypeCode.Double:
- if (dst == XmlTypeCode.Decimal)
- // 'M'
- throw new NotImplementedException (); // FIXME: check what happens
- goto case XmlTypeCode.Decimal;
- case XmlTypeCode.Duration:
- switch (dst) {
- case XmlTypeCode.Duration:
- case XmlTypeCode.YearMonthDuration:
- case XmlTypeCode.DayTimeDuration:
- return true;
- }
- return false;
- case XmlTypeCode.DateTime:
- switch (dst) {
- case XmlTypeCode.DateTime:
- case XmlTypeCode.Time:
- case XmlTypeCode.Date:
- case XmlTypeCode.GYearMonth:
- case XmlTypeCode.GYear:
- case XmlTypeCode.GMonthDay:
- case XmlTypeCode.GDay:
- case XmlTypeCode.GMonth:
- return true;
- }
- return false;
- case XmlTypeCode.Time:
- switch (dst) {
- case XmlTypeCode.Time:
- case XmlTypeCode.Date:
- return true;
- }
- return false;
- case XmlTypeCode.Date:
- if (dst == XmlTypeCode.Time)
- return false;
- goto case XmlTypeCode.DateTime;
- case XmlTypeCode.GYearMonth:
- case XmlTypeCode.GYear:
- case XmlTypeCode.GMonthDay:
- case XmlTypeCode.GDay:
- case XmlTypeCode.GMonth:
- return src == dst;
- case XmlTypeCode.HexBinary:
- case XmlTypeCode.Base64Binary:
- if (src == dst)
- return true;
- switch (dst) {
- case XmlTypeCode.HexBinary:
- case XmlTypeCode.Base64Binary:
- return true;
- }
- return false;
- case XmlTypeCode.AnyUri:
- case XmlTypeCode.QName:
- case XmlTypeCode.Notation:
- return src == dst;
- 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:
- case XmlTypeCode.Integer:
- case XmlTypeCode.NonPositiveInteger:
- case XmlTypeCode.NegativeInteger:
- case XmlTypeCode.Long:
- case XmlTypeCode.Int:
- case XmlTypeCode.Short:
- case XmlTypeCode.Byte:
- case XmlTypeCode.NonNegativeInteger:
- case XmlTypeCode.UnsignedLong:
- case XmlTypeCode.UnsignedInt:
- case XmlTypeCode.UnsignedShort:
- case XmlTypeCode.UnsignedByte:
- case XmlTypeCode.PositiveInteger:
- throw new NotImplementedException ();
- // xdt:*
- case XmlTypeCode.YearMonthDuration:
- if (dst == XmlTypeCode.DayTimeDuration)
- return false;
- goto case XmlTypeCode.Duration;
- case XmlTypeCode.DayTimeDuration:
- if (dst == XmlTypeCode.YearMonthDuration)
- return false;
- goto case XmlTypeCode.Duration;
- }
- throw new NotImplementedException ();
- }
- // 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);
- }
- [MonoTODO] // what if value was negative?
- public static decimal DecimalToNonNegativeInteger (decimal value)
- {
- // MS has a bug that does not reject negative values.
- throw new NotImplementedException ();
- }
- [MonoTODO] // what if value was positive?
- public static decimal DecimalToNonPositiveInteger (decimal value)
- {
- throw new NotImplementedException ();
- }
- 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);
- }
- [MonoTODO] // what if value was negative?
- public static decimal DoubleToNonNegativeInteger (double value)
- {
- // MS has a bug that does not reject negative values.
- throw new NotImplementedException ();
- }
- [MonoTODO] // what if value was positive?
- public static decimal DoubleToNonPositiveInteger (double value)
- {
- throw new NotImplementedException ();
- }
- 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);
- }
- [MonoTODO] // what if value was negative?
- public static decimal FloatToNonNegativeInteger (float value)
- {
- // MS has a bug that does not reject negative values.
- throw new NotImplementedException ();
- }
- [MonoTODO] // what if value was positive?
- public static decimal FloatToNonPositiveInteger (float value)
- {
- throw new NotImplementedException ();
- }
- 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, 0));
- }
- public static string GYearMonthToString (DateTime value)
- {
- return XmlConvert.ToString (new TimeSpan (value.Year, value.Month, 0));
- }
- public static string GYearToString (DateTime value)
- {
- return XmlConvert.ToString (new TimeSpan (new DateTime (value.Year, 0, 0).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 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 long StringToUnsignedInt (string value)
- {
- return XmlConvert.ToUInt32 (value);
- }
- public static decimal StringToUnsignedLong (string value)
- {
- return XmlConvert.ToUInt64 (value);
- }
- public static int StringToUnsignedShort (string value)
- {
- return XmlConvert.ToUInt16 (value);
- }
- public static TimeSpan StringToYearMonthDuration (string value)
- {
- return XmlConvert.ToTimeSpan (value);
- }
- public static string ItemToAnyUri (XPathItem value)
- {
- return value.Value;
- }
- public static byte [] ItemToBase64Binary (XPathItem value)
- {
- return Convert.FromBase64String (value.Value);
- }
- public static bool ItemToBoolean (XPathItem value)
- {
- return XmlConvert.ToBoolean (value.Value);
- }
- public static DateTime ItemToDate (XPathItem value)
- {
- return XmlConvert.ToDateTime (value.Value);
- }
- public static DateTime ItemToDateTime (XPathItem value)
- {
- return XmlConvert.ToDateTime (value.Value);
- }
- public static TimeSpan ItemToDayTimeDuration (XPathItem value)
- {
- return XmlConvert.ToTimeSpan (value.Value);
- }
- public static decimal ItemToDecimal (XPathItem value)
- {
- return XmlConvert.ToDecimal (value.Value);
- }
- public static double ItemToDouble (XPathItem value)
- {
- return XmlConvert.ToDouble (value.Value);
- }
- public static string ItemToDuration (XPathItem value)
- {
- return XmlConvert.ToString (XmlConvert.ToTimeSpan (value.Value));
- }
- public static float ItemToFloat (XPathItem value)
- {
- return XmlConvert.ToSingle (value.Value);
- }
- public static DateTime ItemToGDay (XPathItem value)
- {
- return XmlConvert.ToDateTime (value.Value);
- }
- public static DateTime ItemToGMonth (XPathItem value)
- {
- return XmlConvert.ToDateTime (value.Value);
- }
- public static DateTime ItemToGMonthDay (XPathItem value)
- {
- return XmlConvert.ToDateTime (value.Value);
- }
- public static DateTime ItemToGYear (XPathItem value)
- {
- return XmlConvert.ToDateTime (value.Value);
- }
- public static DateTime ItemToGYearMonth (XPathItem value)
- {
- return XmlConvert.ToDateTime (value.Value);
- }
- public static byte [] ItemToHexBinary (XPathItem value)
- {
- return XmlConvert.FromBinHexString (value.Value);
- }
- public static int ItemToInt (XPathItem value)
- {
- return XmlConvert.ToInt32 (value.Value);
- }
- public static long ItemToInteger (XPathItem value)
- {
- return XmlConvert.ToInt64 (value.Value);
- }
- public static XPathItem ItemToItem (XPathItem value, XmlSchemaType schemaTypeDest)
- {
- return new XmlAtomicValue (value.Value, schemaTypeDest);
- }
- public static decimal ItemToNonNegativeInteger (XPathItem value)
- {
- return XmlConvert.ToDecimal (value.Value);
- }
- public static decimal ItemToNonPositiveInteger (XPathItem value)
- {
- return XmlConvert.ToDecimal (value.Value);
- }
- public static XmlQualifiedName ItemToQName (XPathItem value)
- {
- return (XmlQualifiedName) value.TypedValue;
- }
- public static string ItemToString (XPathItem value)
- {
- if (value.ValueType == typeof (DateTime))
- return XmlConvert.ToString ((DateTime) value.TypedValue);
- if (value.TypedValue is XmlQualifiedName)
- throw new ArgumentException ("Invalid cast from schema QName type to string type.");
- return value.Value;
- }
- public static DateTime ItemToTime (XPathItem value)
- {
- return XmlConvert.ToDateTime (value.Value);
- }
- [MonoTODO]
- public static long ItemToUnsignedInt (XPathItem value)
- {
- // FIXME: signed
- return XmlConvert.ToInt32 (value.Value);
- }
- [MonoTODO]
- public static decimal ItemToUnsignedLong (XPathItem value)
- {
- // FIXME: signed
- return XmlConvert.ToInt32 (value.Value);
- }
- [MonoTODO]
- public static int ItemToUnsignedShort (XPathItem value)
- {
- // FIXME: signed
- return XmlConvert.ToInt32 (value.Value);
- }
- public static TimeSpan ItemToYearMonthDuration (XPathItem value)
- {
- return XmlConvert.ToTimeSpan (value.Value);
- }
- }
- }
- #endif
|