#region Apache Notice /***************************************************************************** * $Revision: 374175 $ * $LastChangedDate$ * $LastChangedBy$ * * iBATIS.NET Data Mapper * Copyright (C) 2008/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 using System.Collections; using System.Collections.Generic; using System.Data; using Apache.Ibatis.Common.Utilities.Objects; using Apache.Ibatis.DataMapper.Model.ResultMapping; using Apache.Ibatis.DataMapper.MappedStatements.PropertyStrategy; using Apache.Ibatis.DataMapper.Scope; namespace Apache.Ibatis.DataMapper.MappedStatements.PropertStrategy { /// /// implementation when a 'resultMapping' attribute exists /// on a ant the resulMap have a groupBy attribute. /// public sealed class GroupByStrategy : BaseStrategy, IPropertyStrategy { private readonly IPropertyStrategy resultMapStrategy = null; private readonly IPropertyStrategy circularResultMapStrategy = null; /// /// Initializes the class. /// /// The result map strategy. /// The circular result map strategy. public GroupByStrategy(IPropertyStrategy resultMapStrategy, IPropertyStrategy circularResultMapStrategy) { this.resultMapStrategy = resultMapStrategy; this.circularResultMapStrategy = circularResultMapStrategy; } #region IPropertyStrategy Members /// /// Sets value of the specified on the target object /// when a 'resultMapping' attribute exists /// on the . /// /// The request. /// The result map. /// The ResultProperty. /// The target. /// The reader. /// The keys public void Set(RequestScope request, IResultMap resultMap, ResultProperty mapping, ref object target, IDataReader reader, object keys) { Get(request, resultMap, mapping, ref target, reader); } /// /// Gets the value of the specified that must be set on the target object. /// /// The request. /// The result map. /// The mapping. /// The reader. /// The target object public object Get(RequestScope request, IResultMap resultMap, ResultProperty mapping, ref object target, IDataReader reader) { // The property is a IList IList list = null; // Get the IList property object property = ObjectProbe.GetMemberValue(target, mapping.PropertyName, request.DataExchangeFactory.AccessorFactory); if (property == null)// Create the list if need { property = mapping.ListFactory.CreateInstance(null); mapping.Set(target, property); } list = (IList)property; object result = null; IResultMap propertyRresultMap = mapping.NestedResultMap.ResolveSubMap(reader); if (propertyRresultMap.GroupByProperties.Count > 0) { string uniqueKey = GetUniqueKey(propertyRresultMap, reader); // Gets the [key, result object] already build IDictionary buildObjects = request.GetUniqueKeys(propertyRresultMap); if (buildObjects != null && buildObjects.ContainsKey(uniqueKey)) { // Unique key is already known, so get the existing result object and process additional results. result = buildObjects[uniqueKey]; //In some cases (nested groupings) our object may be null, so there is //no point in going on if (result != null) { // process resulMapping attribute which point to a groupBy attribute for (int index = 0; index < propertyRresultMap.Properties.Count; index++) { ResultProperty resultProperty = propertyRresultMap.Properties[index]; if (resultProperty.PropertyStrategy is GroupByStrategy) { resultProperty.PropertyStrategy.Set(request, propertyRresultMap, resultProperty, ref result, reader, null); } } } result = SKIP; } else if (uniqueKey == null || buildObjects == null || !buildObjects.ContainsKey(uniqueKey)) { // Unique key is NOT known, so create a new result object and then process additional results. result = resultMapStrategy.Get(request, resultMap, mapping, ref target, reader); if (buildObjects == null) { buildObjects = new Dictionary(); request.SetUniqueKeys(propertyRresultMap, buildObjects); } buildObjects[uniqueKey] = result; } } else // Last resultMap have no groupBy attribute { if (propertyRresultMap.KeyPropertyNames.Count > 0) { result = circularResultMapStrategy.Get(request, resultMap, mapping, ref target, reader); } else { result = resultMapStrategy.Get(request, resultMap, mapping, ref target, reader); } } if ((result != null) && (result != SKIP)) { list.Add(result); } return result; } #endregion } }