TypeAliasResolver.cs :  » Persistence-Frameworks » iBATIS.NET » IBatisNet » Common » Utilities » TypesResolver » 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 » Persistence Frameworks » iBATIS.NET 
iBATIS.NET » IBatisNet » Common » Utilities » TypesResolver » TypeAliasResolver.cs

#region Apache Notice
/*****************************************************************************
 * $Header: $
 * $Revision: $
 * $Date: $
 * 
 * iBATIS.NET Data Mapper
 * Copyright (C) 2004 - Gilles Bayon
 *  
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 ********************************************************************************/
#endregion

#region Imports
using System;
using System.Collections;
using System.Collections.Specialized;

using IBatisNet.Common.Exceptions;
#endregion

namespace IBatisNet.Common.Utilities.TypesResolver{
  /// <summary>
  /// Provides (and resolves) alias' for the common types.
  /// </summary>
  /// <remarks>
  /// <p>
  /// It's really just syntactic sugar so that a type definition
  /// (in, say, a config file) can use 'int' instead of 'System.Int32'.
  /// </p>
  /// </remarks>
  public class TypeAliasResolver
  {
    #region Constants

    /// <summary>
    /// The alias around the 'list' type.
    /// </summary>
    public const string ArrayListAlias1 = "arraylist";
    /// <summary>
    /// An other alias around the 'list' type.
    /// </summary>
    public const string ArrayListAlias2 = "list";

    /// <summary>
    /// The alias around the 'bool' type.
    /// </summary>
    public const string BoolAlias1 = "boolean";
    /// <summary>
    /// An other alias around the 'bool' type.
    /// </summary>
    public const string BoolAlias2 = "bool";

    /// <summary>
    /// The alias around the 'byte' type.
    /// </summary>
    public const string ByteAlias = "byte";

    /// <summary>
    /// The alias around the 'char' type.
    /// </summary>
    public const string CharAlias = "char";

    /// <summary>
    /// The alias around the 'DateTime' type.
    /// </summary>
    public const string DateAlias1 = "datetime";
    /// <summary>
    /// An other alias around the 'DateTime' type.
    /// </summary>
    public const string DateAlias2 = "date";

    /// <summary>
    /// The alias around the 'decimal' type.
    /// </summary>
    public const string DecimalAlias = "decimal";

    /// <summary>
    /// The alias around the 'double' type.
    /// </summary>
    public const string DoubleAlias = "double";

    /// <summary>
    /// The alias around the 'float' type.
    /// </summary>
    public const string FloatAlias1 = "float";
    /// <summary>
    /// An other alias around the 'float' type.
    /// </summary>
    public const string FloatAlias2 = "single";

    /// <summary>
    /// The alias around the 'guid' type.
    /// </summary>
    public const string GuidAlias = "guid";

    /// <summary>
    /// The alias around the 'Hashtable' type.
    /// </summary>
    public const string HashtableAlias1 = "hashtable";
    /// <summary>
    /// An other alias around the 'Hashtable' type.
    /// </summary>
    public const string HashtableAlias2 = "map";
    /// <summary>
    /// An other alias around the 'Hashtable' type.
    /// </summary>
    public const string HashtableAlias3 = "hashmap";

    /// <summary>
    /// The alias around the 'short' type.
    /// </summary>
    public const string Int16Alias1 = "int16";
    /// <summary>
    /// An other alias around the 'short' type.
    /// </summary>
    public const string Int16Alias2 = "short";

    /// <summary>
    /// The alias around the 'int' type.
    /// </summary>
    public const string Int32Alias1 = "Int32";
    /// <summary>
    /// An other alias around the 'int' type.
    /// </summary>
    public const string Int32Alias2 = "int";
    /// <summary>
    /// An other alias around the 'int' type.
    /// </summary>
    public const string Int32Alias3 = "integer";

    /// <summary>
    /// The alias around the 'long' type.
    /// </summary>
    public const string Int64Alias1 = "int64";
    /// <summary>
    /// An other alias around the 'long' type.
    /// </summary>
    public const string Int64Alias2 = "long";

    /// <summary>
    /// The alias around the 'unsigned short' type.
    /// </summary>
    public const string UInt16Alias1 = "uint16";
    /// <summary>
    /// An other alias around the 'unsigned short' type.
    /// </summary>
    public const string UInt16Alias2 = "ushort";

    /// <summary>
    /// The alias around the 'unsigned int' type.
    /// </summary>
    public const string UInt32Alias1 = "uint32";
    /// <summary>
    /// An other alias around the 'unsigned int' type.
    /// </summary>
    public const string UInt32Alias2 = "uint";

    /// <summary>
    /// The alias around the 'unsigned long' type.
    /// </summary>
    public const string UInt64Alias1 = "uint64";
    /// <summary>
    /// An other alias around the 'unsigned long' type.
    /// </summary>
    public const string UInt64Alias2 = "ulong";

    /// <summary>
    /// The alias around the 'SByte' type.
    /// </summary>
    public const string SByteAlias = "sbyte";

    /// <summary>
    /// The alias around the 'string' type.
    /// </summary>
    public const string StringAlias = "string";

    /// <summary>
    /// The alias around the 'TimeSpan' type.
    /// </summary>
    public const string TimeSpanAlias = "timespan";

    #endregion

    #region Fields
    private static StringDictionary _aliases = new StringDictionary();
    #endregion

    #region Constructor (s) / Destructor
    /// <summary>
    /// Creates a new instance of the TypeAliasFactory class.
    /// </summary>
    /// <remarks>
    /// <p>
    /// This is a utility class, and as such has no publicly visible
    /// constructors.
    /// </p>
    /// </remarks>
    private TypeAliasResolver() {}

    /// <summary>
    /// Initialises the static properties of the TypeAliasResolver class.
    /// </summary>
    static TypeAliasResolver()
    {
      // Initialize a dictionary with some fully qualifiaed name 
      _aliases [TypeAliasResolver.ArrayListAlias1] = typeof (ArrayList).FullName;
      _aliases [TypeAliasResolver.ArrayListAlias2] = typeof (ArrayList).FullName;

      _aliases [TypeAliasResolver.BoolAlias1] = typeof (bool).FullName;
      _aliases [TypeAliasResolver.BoolAlias2] = typeof (bool).FullName;

      _aliases [TypeAliasResolver.ByteAlias] = typeof (byte).FullName;

      _aliases [TypeAliasResolver.CharAlias] = typeof (char).FullName;

      _aliases [TypeAliasResolver.DateAlias1] = typeof (DateTime).FullName;
      _aliases [TypeAliasResolver.DateAlias2] = typeof (DateTime).FullName;

      _aliases [TypeAliasResolver.DecimalAlias] = typeof (decimal).FullName;

      _aliases [TypeAliasResolver.DoubleAlias] = typeof (double).FullName;

      _aliases [TypeAliasResolver.FloatAlias1] = typeof (float).FullName;
      _aliases [TypeAliasResolver.FloatAlias2] = typeof (float).FullName;

      _aliases [TypeAliasResolver.GuidAlias] = typeof (System.Guid).FullName;

      _aliases [TypeAliasResolver.HashtableAlias1] = typeof (Hashtable).FullName;
      _aliases [TypeAliasResolver.HashtableAlias2] = typeof (Hashtable).FullName;
      _aliases [TypeAliasResolver.HashtableAlias3] = typeof (Hashtable).FullName;

      _aliases [TypeAliasResolver.Int16Alias1] = typeof (short).FullName;
      _aliases [TypeAliasResolver.Int16Alias2] = typeof (short).FullName;

      _aliases [TypeAliasResolver.Int32Alias1] = typeof (int).FullName;
      _aliases [TypeAliasResolver.Int32Alias2] = typeof (int).FullName;
      _aliases [TypeAliasResolver.Int32Alias3] = typeof (int).FullName;

      _aliases [TypeAliasResolver.Int64Alias1] = typeof (long).FullName;
      _aliases [TypeAliasResolver.Int64Alias2] = typeof (long).FullName;

      _aliases [TypeAliasResolver.UInt16Alias1] = typeof (ushort).FullName;
      _aliases [TypeAliasResolver.UInt16Alias2] = typeof (ushort).FullName;

      _aliases [TypeAliasResolver.UInt32Alias1] = typeof (uint).FullName;
      _aliases [TypeAliasResolver.UInt32Alias2] = typeof (uint).FullName;

      _aliases [TypeAliasResolver.UInt64Alias1] = typeof (ulong).FullName;
      _aliases [TypeAliasResolver.UInt64Alias2] = typeof (ulong).FullName;

      _aliases [TypeAliasResolver.SByteAlias] = typeof (sbyte).FullName;

      _aliases [TypeAliasResolver.StringAlias] = typeof (string).FullName;

      _aliases [TypeAliasResolver.TimeSpanAlias] = typeof (string).FullName;

    }
    #endregion

    #region Methods
    
    /// <summary>
    /// Resolves the supplied type name.
    /// </summary>
    /// <remarks>
    /// <p>
    /// If the supplied type name is an alias, the fully resolved
    /// type name is returned. If no alias could be found that matches
    /// the supplied type name, then the type name will be returned as is.
    /// </p>
    /// </remarks>
    /// <param name="type">The supplied type name.</param>
    /// <returns>
    /// If the supplied type name is an alias, the fully resolved
    /// type name is returned. If no alias could be found that matches
    /// the supplied type name, then the type name will be returned as is.
    /// </returns>
    public static string Resolve (string type) 
    {
      if (type != null)
      {
        if (_aliases.ContainsKey (type.ToLower ())) 
        {
          return _aliases [type] as string;
        }
      }
      return type;
    }


    /// <summary>
    /// Instantiate a 'Primitive' Type.
    /// </summary>
    /// <param name="typeCode">a typeCode.</param>
    /// <returns>An object.</returns>
    public static object InstantiatePrimitiveType(TypeCode typeCode)
    {
      object resultObject = null;

      switch(typeCode)
      {
        case TypeCode.Boolean :
          resultObject = new Boolean();
          break;
        case TypeCode.Byte :
          resultObject = new Byte();
          break;
        case TypeCode.Char :
          resultObject = new Char();
          break;            
        case TypeCode.DateTime :
          resultObject = new DateTime();
          break;
        case TypeCode.Decimal :
          resultObject = new Decimal();
          break;
        case TypeCode.Double :
          resultObject = new Double();
          break;  
        case TypeCode.Int16 :
          resultObject = new Int16();
          break;  
        case TypeCode.Int32 :
          resultObject = new Int32();
          break;  
        case TypeCode.Int64 :
          resultObject = new Int64();
          break;  
        case TypeCode.SByte :
          resultObject = new SByte();
          break;  
        case TypeCode.Single :
          resultObject = new Single();
          break;  
        case TypeCode.String :
          resultObject = "";
          break;  
        case TypeCode.UInt16 :
          resultObject = new UInt16();
          break;    
        case TypeCode.UInt32 :
          resultObject = new UInt32();
          break;  
        case TypeCode.UInt64 :
          resultObject = new UInt64();
          break;    
      }
      return resultObject;
    }

    #endregion

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