ResultProperty.cs :  » Persistence-Frameworks » iBATIS.NET » IBatisNet » DataMapper » Configuration » ResultMapping » 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 » DataMapper » Configuration » ResultMapping » ResultProperty.cs

#region Apache Notice
/*****************************************************************************
 * $Revision: 609139 $
 * $LastChangedDate: 2008-01-05 14:47:58 +0100 (sam., 05 janv. 2008) $
 * $LastChangedBy: gbayon $
 * 
 * iBATIS.NET Data Mapper
 * Copyright (C) 2006/2005 - The Apache Software Foundation
 *  
 * 
 * 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 Using

using System;
using System.Collections;
#if dotnet2
using System.Collections.Generic;
#endif
using System.Data;
using System.Globalization;
using System.Reflection;
using System.Xml.Serialization;
using IBatisNet.Common.Exceptions;
using IBatisNet.Common.Utilities;
using IBatisNet.Common.Utilities.Objects;
using IBatisNet.Common.Utilities.Objects.Members;
using IBatisNet.DataMapper.Exceptions;
using IBatisNet.DataMapper.MappedStatements.ArgumentStrategy;
using IBatisNet.DataMapper.MappedStatements.PropertyStrategy;
using IBatisNet.DataMapper.Scope;
using IBatisNet.DataMapper.TypeHandlers;
using IBatisNet.DataMapper.Proxy;

#endregion

namespace IBatisNet.DataMapper.Configuration.ResultMapping{
  /// <summary>
  /// Summary description for ResultProperty.
  /// </summary>
  [Serializable]
  [XmlRoot("result", Namespace="http://ibatis.apache.org/mapping")]
  public class ResultProperty 
  {
    #region Const

    /// <summary>
    /// 
    /// </summary>    
    public const int UNKNOWN_COLUMN_INDEX = -999999;

    #endregion 

    #region Fields
    [NonSerialized]
    private ISetAccessor _setAccessor = null;
    [NonSerialized]
    private string _nullValue = null;
    [NonSerialized]
    private string _propertyName = string.Empty;
    [NonSerialized]
    private string _columnName = string.Empty;
    [NonSerialized]
    private int _columnIndex = UNKNOWN_COLUMN_INDEX;
    [NonSerialized]
    private string _select = string.Empty;
    [NonSerialized]
    private string _nestedResultMapName = string.Empty; 
    [NonSerialized]
    private IResultMap _nestedResultMap = null;
    [NonSerialized]
    private string _dbType = null;
    [NonSerialized]
    private string _clrType = string.Empty;
    [NonSerialized]
    private bool _isLazyLoad = false;
    [NonSerialized]
    private ITypeHandler _typeHandler = null;
    [NonSerialized]
    private string _callBackName= string.Empty;
    [NonSerialized]
    private bool _isComplexMemberName = false;
    [NonSerialized]
    private IPropertyStrategy _propertyStrategy = null;
        [NonSerialized]
        private ILazyFactory _lazyFactory = null;
        [NonSerialized]
        private bool _isIList = false;
        [NonSerialized]    
      private bool _isGenericIList = false;
        [NonSerialized]
        private IFactory _listFactory = null;
      [NonSerialized]
        private static readonly IFactory _arrayListFactory = new ArrayListFactory();
      
    #endregion

    #region Properties

        /// <summary>
        /// Tell us if the member type implement generic Ilist interface.
        /// </summary>
        [XmlIgnore]
        public bool IsGenericIList
        {
            get { return _isGenericIList; }
        }

        /// <summary>
        /// Tell us if the member type implement Ilist interface.
        /// </summary>
        [XmlIgnore]
        public bool IsIList
        {
            get { return _isIList; }
        }
        /// <summary>
        /// List factory for <see cref="IList"/> property
        /// </summary>
        /// <remarks>Used by N+1 Select solution</remarks>
        [XmlIgnore]
        public IFactory ListFactory
        {
            get { return _listFactory; }
        }
      
        /// <summary>
        /// The lazy loader factory
        /// </summary>
        [XmlIgnore]
        public ILazyFactory LazyFactory
        {
            get { return _lazyFactory; }
        }

    /// <summary>
    /// Sets or gets the <see cref="IArgumentStrategy"/> used to fill the object property.
    /// </summary>
    [XmlIgnore]
    public virtual IArgumentStrategy ArgumentStrategy
    {
      set { throw new NotImplementedException("Valid on ArgumentProperty") ; }
      get { throw new NotImplementedException("Valid on ArgumentProperty") ; }
    }

    /// <summary>
    /// Sets or gets the <see cref="IPropertyStrategy"/> used to fill the object property.
    /// </summary>
    [XmlIgnore]
    public IPropertyStrategy PropertyStrategy
    {
      set { _propertyStrategy = value ; }
      get { return _propertyStrategy; }
    }

    /// <summary>
    /// Specify the custom type handlers to used.
    /// </summary>
    /// <remarks>Will be an alias to a class wchic implement ITypeHandlerCallback</remarks>
    [XmlAttribute("typeHandler")]
    public string CallBackName
    {
      get { return _callBackName; }
      set { _callBackName = value; }
    }

    /// <summary>
    /// Tell us if we must lazy load this property..
    /// </summary>
    [XmlAttribute("lazyLoad")]
    public virtual bool IsLazyLoad
    {
      get { return _isLazyLoad; }
      set { _isLazyLoad = value; }
    }

    /// <summary>
    /// The typeHandler used to work with the result property.
    /// </summary>
    [XmlIgnore]
    public ITypeHandler TypeHandler
    {
      get
      {
                if (_typeHandler == null)
                {
                    throw new DataMapperException(
                        String.Format("Error on Result property {0}, type handler for {1} is not registered.", PropertyName , MemberType.Name));
                }
          return _typeHandler;
      }
      set { _typeHandler = value; }
    }

    /// <summary>
    /// Give an entry in the 'DbType' enumeration
    /// </summary>
    /// <example >
    /// For Sql Server, give an entry of SqlDbType : Bit, Decimal, Money...
    /// <br/>
    /// For Oracle, give an OracleType Enumeration : Byte, Int16, Number...
    /// </example>
    [XmlAttribute("dbType")]
    public string DbType
    {
      get { return _dbType; }
      set { _dbType = value; }
    }

    
    /// <summary>
    /// Specify the CLR type of the result.
    /// </summary>
    /// <remarks>
    /// The type attribute is used to explicitly specify the property type of the property to be set.
    /// Normally this can be derived from a property through reflection, but certain mappings such as
    /// HashTable cannot provide the type to the framework.
    /// </remarks>
    [XmlAttribute("type")]
    public string CLRType
    {
      get { return _clrType; }
      set { _clrType = value; }
    }


    /// <summary>
    /// The name of the statement to retrieve the property
    /// </summary>
    [XmlAttribute("select")]
    public string Select
    {
      get { return _select; }
      set { _select = value; }
    }

    /// <summary>
    /// The name of a nested ResultMap to set the property
    /// </summary>
    [XmlAttribute("resultMapping")]
    public string NestedResultMapName
    {
      get { return _nestedResultMapName; }
      set { _nestedResultMapName = value; }
    }

    /// <summary>
    /// The property name used to identify the property amongst the others.
    /// </summary>
    [XmlAttribute("property")]
    public string PropertyName
    {
      get { return _propertyName; }
      set
      {
        _propertyName = value;
        if (_propertyName.IndexOf('.')<0)
        {
          _isComplexMemberName = false;
        }
        else // complex member name FavouriteLineItem.Id
        {
          _isComplexMemberName = true;
        }
      }
    }

    /// <summary>
        /// Defines a field/property <see cref="ISetAccessor"/>
    /// </summary>
    [XmlIgnore]
    public ISetAccessor SetAccessor
    {
      get { return _setAccessor; }
    }

    /// <summary>
    /// Get the field/property type
    /// </summary>
    [XmlIgnore]
    public virtual Type MemberType
    {
            get
            {
                if (_setAccessor != null)
                {
                    return _setAccessor.MemberType;
                }
                else if (_nestedResultMap != null)
                {
                    return _nestedResultMap.Class;
                }
                else
                {
                    throw new IBatisNetException(
                        String.Format(CultureInfo.InvariantCulture,
                                      "Could not resolve member type for result property '{0}'. Neither nested result map nor typed setter was provided.",
                                      _propertyName));
                }
            }
    }

    /// <summary>
    /// Tell if a nullValue is defined.
    /// </summary>
    [XmlIgnore]
    public bool HasNullValue
    {
      get { return (_nullValue!=null); }
    }

    /// <summary>
    /// Null value replacement.
    /// </summary>
    /// <example>"no_email@provided.com"</example>
    [XmlAttribute("nullValue")]
    public string NullValue
    {
      get { return _nullValue; }
      set { _nullValue = value; }
    }

    /// <summary>
    /// A nested ResultMap use to set a property
    /// </summary>
    [XmlIgnore]
    public IResultMap NestedResultMap
    {
      get { return _nestedResultMap; }
      set { _nestedResultMap = value; }
    }

    /// <summary>
    /// Indicate if we have a complex member name as [FavouriteLineItem.Id]
    /// </summary>
    public bool IsComplexMemberName
    {
      get { return _isComplexMemberName; }
    }

    /// <summary>
    /// Column Index
    /// </summary>
    [XmlAttribute("columnIndex")]
    public int ColumnIndex
    {
      get { return _columnIndex; }
      set { _columnIndex = value; }
    }

    /// <summary>
    /// Column Name
    /// </summary>
    [XmlAttribute("column")]
    public string ColumnName
    {
      get { return _columnName; }
      set { _columnName = value; }
    }

    #endregion

    #region Methods

    /// <summary>
    /// Initialize the PropertyInfo of the result property.
    /// </summary>
    /// <param name="resultClass"></param>
    /// <param name="configScope"></param>
    public void Initialize( ConfigurationScope configScope, Type resultClass )
    {
      if ( _propertyName.Length>0 && 
         _propertyName != "value" && 
        !typeof(IDictionary).IsAssignableFrom(resultClass) )
      {
        if (!_isComplexMemberName)
        {
                    _setAccessor = configScope.DataExchangeFactory.AccessorFactory.SetAccessorFactory.CreateSetAccessor(resultClass, _propertyName);
        }
        else // complex member name FavouriteLineItem.Id
        {
          MemberInfo propertyInfo = ObjectProbe.GetMemberInfoForSetter(resultClass, _propertyName);
          string memberName = _propertyName.Substring( _propertyName.LastIndexOf('.')+1);
                    _setAccessor = configScope.DataExchangeFactory.AccessorFactory.SetAccessorFactory.CreateSetAccessor(propertyInfo.ReflectedType, memberName);
        }

#if dotnet2
                _isGenericIList = TypeUtils.IsImplementGenericIListInterface(MemberType);
#endif          
                _isIList = typeof(IList).IsAssignableFrom(MemberType);
          
          // set the list factory
#if dotnet2         
          if (_isGenericIList)
          {
              if (MemberType.IsArray)
              {
                        _listFactory = _arrayListFactory;
              }
              else
              {
                        Type[] typeArgs = MemberType.GetGenericArguments();

                        if (typeArgs.Length == 0)// Custom collection which derive from List<T>
                  {
                            _listFactory = configScope.DataExchangeFactory.ObjectFactory.CreateFactory(MemberType, Type.EmptyTypes);
                  }
                  else
                  {
                            Type genericIList = typeof(IList<>);
                            Type interfaceListType = genericIList.MakeGenericType(typeArgs);

                            Type genericList = typeof(List<>);
                            Type listType = genericList.MakeGenericType(typeArgs);

                            if ((interfaceListType == MemberType) || (listType == MemberType))
                            {
                                Type constructedType = genericList.MakeGenericType(typeArgs);
                                _listFactory = configScope.DataExchangeFactory.ObjectFactory.CreateFactory(
                                    constructedType,
                                    Type.EmptyTypes);
                            }
                            else // Custom collection which derive from List<T>
                            {
                                _listFactory = configScope.DataExchangeFactory.ObjectFactory.CreateFactory(MemberType, Type.EmptyTypes);
                            }  
                  }                  
              }
          }
          else 
#endif              
                    if (_isIList)
          {
                    if (MemberType.IsArray)
                    {
                        _listFactory = _arrayListFactory;
                    }
              else
                    {
                        if (MemberType == typeof(IList))
                        {
                            _listFactory = _arrayListFactory;
                        }
                        else // custom collection
                        {
                            _listFactory = configScope.DataExchangeFactory.ObjectFactory.CreateFactory(MemberType,                                                                                                   Type.EmptyTypes);
                        }                        
                    }
          }
      }

      if (CallBackName!=null && CallBackName.Length >0)
      {
        configScope.ErrorContext.MoreInfo = "Result property '"+_propertyName+"' check the typeHandler attribute '" + CallBackName + "' (must be a ITypeHandlerCallback implementation).";
        try 
        {
          Type type = configScope.SqlMapper.TypeHandlerFactory.GetType(CallBackName);
          ITypeHandlerCallback typeHandlerCallback = (ITypeHandlerCallback) Activator.CreateInstance( type );
          _typeHandler = new CustomTypeHandler(typeHandlerCallback);
        }
        catch (Exception e) 
        {
          throw new ConfigurationException("Error occurred during custom type handler configuration.  Cause: " + e.Message, e);
        }
      }
      else
      {
        configScope.ErrorContext.MoreInfo = "Result property '"+_propertyName+"' set the typeHandler attribute.";
        _typeHandler = configScope.ResolveTypeHandler( resultClass, _propertyName, _clrType, _dbType, true);
      }

            if (IsLazyLoad)
            {
                _lazyFactory = new LazyFactoryBuilder().GetLazyFactory(_setAccessor.MemberType);
            }
    }

    /// <summary>
    /// Initialize a the result property
    /// for AutoMapper
    /// </summary>
        /// <param name="setAccessor">An <see cref="ISetAccessor"/>.</param>
    /// <param name="typeHandlerFactory"></param>
    internal void Initialize(TypeHandlerFactory typeHandlerFactory, ISetAccessor setAccessor )
    {
            _setAccessor = setAccessor;
            _typeHandler = typeHandlerFactory.GetTypeHandler(setAccessor.MemberType);
    }

    /// <summary>
    /// 
    /// </summary>
    /// <param name="dataReader"></param>
    /// <returns></returns>
    public object GetDataBaseValue(IDataReader dataReader)
    {
      object value = null;

      if (_columnIndex == UNKNOWN_COLUMN_INDEX)  
      {
                value = TypeHandler.GetValueByName(this, dataReader);
      } 
      else 
      {
                value = TypeHandler.GetValueByIndex(this, dataReader);
      }

      bool wasNull = (value == DBNull.Value);
      if (wasNull)
      {
        if (HasNullValue) 
        {
                    if (_setAccessor != null)
          {
                        value = TypeHandler.ValueOf(_setAccessor.MemberType, _nullValue);
          }
          else
          {
                        value = TypeHandler.ValueOf(null, _nullValue);
          }
        }
        else
        {
                    value = TypeHandler.NullValue;
        }      
      }

      return value;
    }

    /// <summary>
    /// 
    /// </summary>
    /// <param name="value"></param>
    /// <returns></returns>
    public object TranslateValue(object value)
    {
      if (value == null)
      {
                return TypeHandler.NullValue;
      }
      else
      {
        return value;
      }
    }

    #endregion

        #region ICloneable Members

        /// <summary>
        /// Clones this instance.
        /// </summary>
        /// <returns>An <see cref="ResultProperty"/></returns>
        public ResultProperty Clone()
        {
            ResultProperty resultProperty = new ResultProperty();

            resultProperty.CLRType = CLRType;
            resultProperty.CallBackName = CallBackName;
            resultProperty.ColumnIndex = ColumnIndex;
            resultProperty.ColumnName = ColumnName;
            resultProperty.DbType = DbType;
            resultProperty.IsLazyLoad = IsLazyLoad;
            resultProperty.NestedResultMapName = NestedResultMapName;
            resultProperty.NullValue = NullValue;
            resultProperty.PropertyName = PropertyName;
            resultProperty.Select = Select;

            return resultProperty;
        }

        #endregion
      
      /// <summary>
        /// <see cref="IFactory"/> that constructs <see cref="ArrayList"/> instance
      /// </summary>
      private class ArrayListFactory : IFactory
      {

            #region IFactory Members

            /// <summary>
            /// Create a new instance with the specified parameters
            /// </summary>
            /// <param name="parameters">An array of values that matches the number, order and type
            /// of the parameters for this constructor.</param>
            /// <returns>A new instance</returns>
            /// <remarks>
            /// If you call a constructor with no parameters, pass null.
            /// Anyway, what you pass will be ignore.
            /// </remarks>
            public object CreateInstance(object[] parameters)
            {
              return new ArrayList();
            }

            #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.