123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- 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="Parameter"/> objects.
- /// </summary>
- public class ParameterCollection : FRCollectionBase
- {
- /// <summary>
- /// Gets or sets a parameter.
- /// </summary>
- /// <param name="index">The index of a parameter in this collection.</param>
- /// <returns>The parameter with specified index.</returns>
- public Parameter this[int index]
- {
- get { return List[index] as Parameter; }
- set { List[index] = value; }
- }
- /// <summary>
- /// Finds a parameter by its name.
- /// </summary>
- /// <param name="name">The name of a parameter.</param>
- /// <returns>The <see cref="Parameter"/> object if found; otherwise <b>null</b>.</returns>
- public Parameter FindByName(string name)
- {
- foreach (Parameter c in this)
- {
- // check complete match or match without case sensitivity
- if (c.Name == name || c.Name.ToLower() == name.ToLower())
- return c;
- }
- return null;
- }
- /// <summary>
- /// Returns an unique parameter name based on given name.
- /// </summary>
- /// <param name="name">The base name.</param>
- /// <returns>The unique name.</returns>
- public string CreateUniqueName(string name)
- {
- string baseName = name;
- int i = 1;
- while (FindByName(name) != null)
- {
- name = baseName + i.ToString();
- i++;
- }
- return name;
- }
-
- /// <summary>
- /// Copies the parameters from other collection.
- /// </summary>
- /// <param name="source">Parameters to copy from.</param>
- public void Assign(ParameterCollection source)
- {
- Clear();
- foreach (Parameter par in source)
- {
- Parameter thisParam = new Parameter(par.Name);
- Add(thisParam);
- thisParam.DataType = par.DataType;
- thisParam.Value = par.Value;
- thisParam.Expression = par.Expression;
- thisParam.Description = par.Description;
-
- thisParam.Parameters.Assign(par.Parameters);
- }
- }
- private void EnumParameters(ParameterCollection root, SortedList<string,Parameter> list)
- {
- foreach (Parameter p in root)
- {
- if (!list.ContainsKey(p.FullName))
- {
- list.Add(p.FullName, p);
- EnumParameters(p.Parameters, list);
- }
- }
- }
-
- internal void AssignValues(ParameterCollection source)
- {
- SortedList<string, Parameter> this_list = new SortedList<string,Parameter>();
- EnumParameters(this, this_list);
- SortedList<string, Parameter> source_list = new SortedList<string,Parameter>();
- EnumParameters(source, source_list);
- foreach (KeyValuePair<string,Parameter> kv in source_list)
- {
- if (this_list.ContainsKey(kv.Key))
- this_list[kv.Key].Value = kv.Value.Value;
- }
- }
- internal void MoveUp(Parameter par)
- {
- int order = IndexOf(par);
- if (order > 0)
- {
- RemoveAt(order);
- Insert(order - 1, par);
- }
- }
- internal void MoveDown(Parameter par)
- {
- int order = IndexOf(par);
- if (order != -1 && order < Count - 1)
- {
- RemoveAt(order);
- Insert(order + 1, par);
- }
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="ParameterCollection"/> class with default settings.
- /// </summary>
- /// <param name="owner">The owner of this collection.</param>
- public ParameterCollection(Base owner) : base(owner)
- {
- }
- }
- }
|