1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Collections;
- using FastReport.Utils;
- namespace FastReport.Data
- {
- /// <summary>
- /// Represents the collection of <see cref="DataSourceBase"/> objects.
- /// </summary>
- public class DataSourceCollection : FRCollectionBase
- {
- /// <summary>
- /// Gets or sets a data source.
- /// </summary>
- /// <param name="index">The index of a data source in this collection.</param>
- /// <returns>The data source with specified index.</returns>
- public DataSourceBase this[int index]
- {
- get { return List[index] as DataSourceBase; }
- set { List[index] = value; }
- }
- /// <summary>
- /// Finds a datasource by its name.
- /// </summary>
- /// <param name="name">The name of a datasource.</param>
- /// <returns>The <see cref="DataSourceBase"/> object if found; otherwise <b>null</b>.</returns>
- public DataSourceBase FindByName(string name)
- {
- foreach (DataSourceBase c in this)
- {
- if (c.Name == name)
- return c;
- }
- return null;
- }
- /// <summary>
- /// Finds a datasource by its alias.
- /// </summary>
- /// <param name="alias">The alias of a datasource.</param>
- /// <returns>The <see cref="DataSourceBase"/> object if found; otherwise <b>null</b>.</returns>
- public DataSourceBase FindByAlias(string alias)
- {
- foreach (DataSourceBase c in this)
- {
- if (c.Alias == alias)
- return c;
- }
- return null;
- }
- /// <summary>
- /// Sorts data sources by theirs names.
- /// </summary>
- public void Sort()
- {
- InnerList.Sort(new DataSourceComparer());
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="DataSourceCollection"/> class with default settings.
- /// </summary>
- /// <param name="owner">The owner of this collection.</param>
- public DataSourceCollection(Base owner) : base(owner)
- {
- }
- }
- /// <summary>
- /// Represents the comparer class that used for sorting the collection of data sources.
- /// </summary>
- public class DataSourceComparer : IComparer
- {
- /// <inheritdoc/>
- public int Compare(object x, object y)
- {
- object xValue = x.GetType().GetProperty("Name").GetValue(x, null);
- object yValue = y.GetType().GetProperty("Name").GetValue(y, null);
- IComparable comp = xValue as IComparable;
- return comp.CompareTo(yValue);
- }
- }
- }
|