Cast.cs :  » Script » IronRuby » Microsoft » Scripting » Runtime » 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 » Script » IronRuby 
IronRuby » Microsoft » Scripting » Runtime » Cast.cs
/* ****************************************************************************
 *
 * Copyright (c) Microsoft Corporation. 
 *
 * This source code is subject to terms and conditions of the Microsoft Public License. A 
 * copy of the license can be found in the License.html file at the root of this distribution. If 
 * you cannot locate the  Microsoft Public License, please send an email to 
 * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound 
 * by the terms of the Microsoft Public License.
 *
 * You must not remove this notice, or any other, from this software.
 *
 *
 * ***************************************************************************/

using System;
using System.Diagnostics;

namespace Microsoft.Scripting.Runtime{
    /// <summary>
    /// Implements explicit casts supported by the runtime.
    /// </summary>
    public static partial class Cast {

        /// <summary>
        /// Explicitly casts the object to a given type (and returns it as object)
        /// </summary>
        public static object Explicit(object o, Type to) {
            if (o == null) {
                // Null objects can be only cast to Nullable<T> or any reference type
                if (to.IsValueType) {
                    if (to.IsGenericType && to.GetGenericTypeDefinition() == NullableType) {
                        return NewNullableInstance(to.GetGenericArguments()[0]);
                    } else if (to == typeof(void)) {
                        return null;
                    } else {
                        throw new InvalidCastException(String.Format("Cannot cast null to a value type {0}", to.Name));
                    }
                } else {
                    // Explicit cast to reference type is simply null
                    return null;
                }
            }

            if (to.IsValueType) {
                return ExplicitCastToValueType(o, to);
            } else {
                Type type = o.GetType();
                if (to.IsInstanceOfType(o) || to.IsAssignableFrom(type)) {
                    return o;
                } else {
                    throw new InvalidCastException(String.Format("Cannot cast {0} to {1}", type.Name, to.Name));
                }
            }
        }

        public static T Explicit<T>(object o) {
            return (T)Explicit(o, typeof(T));
        }

        private static object ExplicitCastToValueType(object o, Type to) {
            Debug.Assert(o != null);
            Debug.Assert(to.IsValueType);

            if (to == Int32Type) return ScriptingRuntimeHelpers.Int32ToObject(ExplicitCastToInt32(o));
            if (to == DoubleType) return ExplicitCastToDouble(o);
            if (to == BooleanType) return ScriptingRuntimeHelpers.BooleanToObject(ExplicitCastToBoolean(o));
            if (to == ByteType) return ExplicitCastToByte(o);
            if (to == CharType) return ExplicitCastToChar(o);
            if (to == DecimalType) return ExplicitCastToDecimal(o);
            if (to == Int16Type) return ExplicitCastToInt16(o);
            if (to == Int64Type) return ExplicitCastToInt64(o);
            if (to == SByteType) return ExplicitCastToSByte(o);
            if (to == SingleType) return ExplicitCastToSingle(o);
            if (to == UInt16Type) return ExplicitCastToUInt16(o);
            if (to == UInt32Type) return ExplicitCastToUInt32(o);
            if (to == UInt64Type) return ExplicitCastToUInt64(o);

            if (to == NullableBooleanType) return ExplicitCastToNullableBoolean(o);
            if (to == NullableByteType) return ExplicitCastToNullableByte(o);
            if (to == NullableCharType) return ExplicitCastToNullableChar(o);
            if (to == NullableDecimalType) return ExplicitCastToNullableDecimal(o);
            if (to == NullableDoubleType) return ExplicitCastToNullableDouble(o);
            if (to == NullableInt16Type) return ExplicitCastToNullableInt16(o);
            if (to == NullableInt32Type) return ExplicitCastToNullableInt32(o);
            if (to == NullableInt64Type) return ExplicitCastToNullableInt64(o);
            if (to == NullableSByteType) return ExplicitCastToNullableSByte(o);
            if (to == NullableSingleType) return ExplicitCastToNullableSingle(o);
            if (to == NullableUInt16Type) return ExplicitCastToNullableUInt16(o);
            if (to == NullableUInt32Type) return ExplicitCastToNullableUInt32(o);
            if (to == NullableUInt64Type) return ExplicitCastToNullableUInt64(o);

            if (to.IsAssignableFrom(o.GetType())) {
                return o;
            }

            throw new InvalidCastException();
        }

        private static object NewNullableInstanceSlow(Type type) {
            Type concrete = NullableType.MakeGenericType(type);
            return Activator.CreateInstance(concrete);
        }

        private static InvalidCastException InvalidCast(object o, string typeName) {
            return new InvalidCastException(String.Format("Cannot cast {0} to {1}", o == null ? "(null)" : o.GetType().Name, typeName));
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.