[3332] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14185] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3332] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
[11344] | 24 | using System.ComponentModel;
|
---|
[3332] | 25 | using System.Linq;
|
---|
| 26 | using System.Windows.Forms;
|
---|
[4888] | 27 | using HeuristicLab.Core;
|
---|
[4068] | 28 | using HeuristicLab.Data.Views;
|
---|
[3332] | 29 | using HeuristicLab.MainForm;
|
---|
| 30 |
|
---|
| 31 | namespace HeuristicLab.Optimization.Views {
|
---|
[9910] | 32 | [View("Table")]
|
---|
[3332] | 33 | [Content(typeof(RunCollection), false)]
|
---|
[9910] | 34 | public sealed partial class RunCollectionTableView : StringConvertibleMatrixView {
|
---|
[4200] | 35 | private int[] runToRowMapping;
|
---|
[4883] | 36 | private bool suppressUpdates = false;
|
---|
[9910] | 37 | public RunCollectionTableView() {
|
---|
[3332] | 38 | InitializeComponent();
|
---|
[4771] | 39 | dataGridView.RowHeaderMouseDoubleClick += new DataGridViewCellMouseEventHandler(dataGridView_RowHeaderMouseDoubleClick);
|
---|
[3332] | 40 | }
|
---|
| 41 |
|
---|
[3350] | 42 | public override bool ReadOnly {
|
---|
[4435] | 43 | get { return true; }
|
---|
[3350] | 44 | set { /*not needed because results are always readonly */}
|
---|
| 45 | }
|
---|
| 46 |
|
---|
[3332] | 47 | public new RunCollection Content {
|
---|
[3423] | 48 | get { return (RunCollection)base.Content; }
|
---|
[3332] | 49 | set { base.Content = value; }
|
---|
| 50 | }
|
---|
| 51 |
|
---|
[3614] | 52 | protected override void OnContentChanged() {
|
---|
| 53 | base.OnContentChanged();
|
---|
| 54 | if (Content != null) {
|
---|
[4200] | 55 | UpdateRowAttributes();
|
---|
[3614] | 56 | }
|
---|
[8738] | 57 | UpdateCaption();
|
---|
[3614] | 58 | }
|
---|
| 59 |
|
---|
[4200] | 60 | #region events
|
---|
[3448] | 61 | protected override void RegisterContentEvents() {
|
---|
| 62 | base.RegisterContentEvents();
|
---|
| 63 | Content.ItemsAdded += new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_ItemsAdded);
|
---|
| 64 | Content.ItemsRemoved += new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_ItemsRemoved);
|
---|
| 65 | Content.CollectionReset += new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
|
---|
[4888] | 66 | Content.UpdateOfRunsInProgressChanged += new EventHandler(Content_UpdateOfRunsInProgressChanged);
|
---|
[8962] | 67 | Content.OptimizerNameChanged += new EventHandler(Content_AlgorithmNameChanged);
|
---|
[3448] | 68 | RegisterRunEvents(Content);
|
---|
| 69 | }
|
---|
[4200] | 70 | private void RegisterRunEvents(IEnumerable<IRun> runs) {
|
---|
[3448] | 71 | foreach (IRun run in runs)
|
---|
[11344] | 72 | run.PropertyChanged += run_PropertyChanged;
|
---|
[3448] | 73 | }
|
---|
| 74 | protected override void DeregisterContentEvents() {
|
---|
| 75 | base.DeregisterContentEvents();
|
---|
| 76 | Content.ItemsAdded -= new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_ItemsAdded);
|
---|
| 77 | Content.ItemsRemoved -= new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_ItemsRemoved);
|
---|
| 78 | Content.CollectionReset -= new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
|
---|
[4888] | 79 | Content.UpdateOfRunsInProgressChanged -= new EventHandler(Content_UpdateOfRunsInProgressChanged);
|
---|
[8962] | 80 | Content.OptimizerNameChanged -= new EventHandler(Content_AlgorithmNameChanged);
|
---|
[3448] | 81 | DeregisterRunEvents(Content);
|
---|
| 82 | }
|
---|
[4200] | 83 | private void DeregisterRunEvents(IEnumerable<IRun> runs) {
|
---|
[3448] | 84 | foreach (IRun run in runs)
|
---|
[11344] | 85 | run.PropertyChanged -= run_PropertyChanged;
|
---|
[3448] | 86 | }
|
---|
| 87 | private void Content_CollectionReset(object sender, HeuristicLab.Collections.CollectionItemsChangedEventArgs<IRun> e) {
|
---|
| 88 | DeregisterRunEvents(e.OldItems);
|
---|
| 89 | RegisterRunEvents(e.Items);
|
---|
| 90 | }
|
---|
| 91 | private void Content_ItemsRemoved(object sender, HeuristicLab.Collections.CollectionItemsChangedEventArgs<IRun> e) {
|
---|
[3449] | 92 | DeregisterRunEvents(e.Items);
|
---|
[3448] | 93 | }
|
---|
| 94 | private void Content_ItemsAdded(object sender, HeuristicLab.Collections.CollectionItemsChangedEventArgs<IRun> e) {
|
---|
| 95 | RegisterRunEvents(e.Items);
|
---|
| 96 | }
|
---|
[8738] | 97 | private void Content_AlgorithmNameChanged(object sender, EventArgs e) {
|
---|
| 98 | if (InvokeRequired)
|
---|
| 99 | Invoke(new EventHandler(Content_AlgorithmNameChanged), sender, e);
|
---|
| 100 | else UpdateCaption();
|
---|
| 101 | }
|
---|
[11344] | 102 | private void run_PropertyChanged(object sender, PropertyChangedEventArgs e) {
|
---|
[9506] | 103 | if (suppressUpdates) return;
|
---|
[3632] | 104 | if (InvokeRequired)
|
---|
[11344] | 105 | this.Invoke((Action<object, PropertyChangedEventArgs>)run_PropertyChanged, sender, e);
|
---|
[3632] | 106 | else {
|
---|
| 107 | IRun run = (IRun)sender;
|
---|
[11344] | 108 | if (e.PropertyName == "Color" || e.PropertyName == "Visible")
|
---|
| 109 | UpdateRun(run);
|
---|
[3632] | 110 | }
|
---|
[3614] | 111 | }
|
---|
[4200] | 112 | #endregion
|
---|
[3614] | 113 |
|
---|
[8738] | 114 | private void UpdateCaption() {
|
---|
[9910] | 115 | Caption = Content != null ? Content.OptimizerName + " Table" : ViewAttribute.GetViewName(GetType());
|
---|
[8738] | 116 | }
|
---|
| 117 |
|
---|
[12077] | 118 | protected override void UpdateData() {
|
---|
| 119 | if (suppressUpdates) return;
|
---|
| 120 | base.UpdateData();
|
---|
| 121 | }
|
---|
| 122 |
|
---|
[13570] | 123 | public override void UpdateColumnHeaders() {
|
---|
[13054] | 124 | string[] colNames = base.Content.ColumnNames.ToArray();
|
---|
| 125 | int colCount = colNames.Length;
|
---|
[4819] | 126 | for (int i = 0; i < dataGridView.ColumnCount; i++) {
|
---|
[13054] | 127 | if (i < colCount)
|
---|
| 128 | dataGridView.Columns[i].HeaderText = colNames[i];
|
---|
[4819] | 129 | else
|
---|
| 130 | dataGridView.Columns[i].HeaderText = "Column " + (i + 1);
|
---|
[13036] | 131 | }
|
---|
| 132 |
|
---|
[13054] | 133 | HashSet<string> visibleColumnNames = new HashSet<string>(
|
---|
| 134 | dataGridView.Columns.OfType<DataGridViewColumn>()
|
---|
| 135 | .Where(c => c.Visible)
|
---|
| 136 | .Where(c => !string.IsNullOrEmpty(c.HeaderText))
|
---|
| 137 | .Where(c => !IsConstant(c.HeaderText))
|
---|
| 138 | .Select(c => c.HeaderText));
|
---|
[13036] | 139 |
|
---|
| 140 | for (int i = 0; i < dataGridView.ColumnCount; i++) {
|
---|
[4819] | 141 | dataGridView.Columns[i].Visible = visibleColumnNames.Count == 0 || visibleColumnNames.Contains(dataGridView.Columns[i].HeaderText);
|
---|
| 142 | }
|
---|
| 143 | }
|
---|
| 144 |
|
---|
[13054] | 145 | // returns true when all values in the column are the same (missing values are included in the count)
|
---|
| 146 | private bool IsConstant(string columnName) {
|
---|
[13036] | 147 | Func<IRun, string, string> GetStringValue = (IRun r, string colName) => {
|
---|
| 148 | // also include missing values in the count
|
---|
[13054] | 149 | IItem v = null;
|
---|
| 150 | if (r.Parameters.TryGetValue(colName, out v)) return v.ToString();
|
---|
| 151 | if (r.Results.TryGetValue(colName, out v)) return v.ToString();
|
---|
[13036] | 152 | return string.Empty;
|
---|
| 153 | };
|
---|
[13054] | 154 |
|
---|
| 155 | var firstRun = Content.First();
|
---|
| 156 | string firstValue = GetStringValue(firstRun, columnName);
|
---|
| 157 | return Content.Skip(1).All(run => firstValue == GetStringValue(run, columnName));
|
---|
[13036] | 158 | }
|
---|
| 159 |
|
---|
[3614] | 160 | private void UpdateRun(IRun run) {
|
---|
[4883] | 161 | foreach (int runIndex in GetIndexOfRun(run)) {
|
---|
| 162 | int rowIndex = runToRowMapping[runIndex];
|
---|
| 163 | this.dataGridView.Rows[rowIndex].Visible = run.Visible;
|
---|
| 164 | this.dataGridView.Rows[rowIndex].DefaultCellStyle.ForeColor = run.Color;
|
---|
| 165 | }
|
---|
[4200] | 166 | this.UpdateRowHeaders();
|
---|
[3448] | 167 | }
|
---|
| 168 |
|
---|
[4883] | 169 |
|
---|
[4888] | 170 | private void Content_UpdateOfRunsInProgressChanged(object sender, EventArgs e) {
|
---|
[4883] | 171 | if (InvokeRequired)
|
---|
[4888] | 172 | Invoke(new EventHandler(Content_UpdateOfRunsInProgressChanged), sender, e);
|
---|
[4883] | 173 | else {
|
---|
[4888] | 174 | suppressUpdates = Content.UpdateOfRunsInProgress;
|
---|
[12077] | 175 | if (!suppressUpdates) {
|
---|
[12692] | 176 | UpdateData();
|
---|
[12077] | 177 | UpdateRowAttributes();
|
---|
| 178 | }
|
---|
[4883] | 179 | }
|
---|
| 180 | }
|
---|
| 181 |
|
---|
| 182 | private IEnumerable<int> GetIndexOfRun(IRun run) {
|
---|
[4200] | 183 | int i = 0;
|
---|
| 184 | foreach (IRun actualRun in Content) {
|
---|
| 185 | if (actualRun == run)
|
---|
[4883] | 186 | yield return i;
|
---|
[4200] | 187 | i++;
|
---|
| 188 | }
|
---|
| 189 | }
|
---|
| 190 |
|
---|
[3332] | 191 | private void dataGridView_RowHeaderMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e) {
|
---|
[3546] | 192 | if (e.RowIndex >= 0) {
|
---|
[4200] | 193 | IRun run = Content.ElementAt(runToRowMapping.ToList().IndexOf(e.RowIndex));
|
---|
[3557] | 194 | IContentView view = MainFormManager.MainForm.ShowContent(run);
|
---|
[3423] | 195 | if (view != null) {
|
---|
| 196 | view.ReadOnly = this.ReadOnly;
|
---|
| 197 | view.Locked = this.Locked;
|
---|
| 198 | }
|
---|
| 199 | }
|
---|
[3332] | 200 | }
|
---|
[3447] | 201 |
|
---|
[4518] | 202 | protected override void ClearSorting() {
|
---|
| 203 | base.ClearSorting();
|
---|
[4523] | 204 | UpdateRowAttributes();
|
---|
[4518] | 205 | }
|
---|
| 206 |
|
---|
[3447] | 207 | protected override int[] Sort(IEnumerable<KeyValuePair<int, SortOrder>> sortedColumns) {
|
---|
| 208 | int[] newSortedIndex = Enumerable.Range(0, Content.Count).ToArray();
|
---|
| 209 | RunCollectionRowComparer rowComparer = new RunCollectionRowComparer();
|
---|
| 210 | if (sortedColumns.Count() != 0) {
|
---|
[8139] | 211 | rowComparer.SortedIndices = sortedColumns;
|
---|
[3447] | 212 | rowComparer.Matrix = Content;
|
---|
| 213 | Array.Sort(newSortedIndex, rowComparer);
|
---|
| 214 | }
|
---|
[4200] | 215 |
|
---|
| 216 | runToRowMapping = new int[newSortedIndex.Length];
|
---|
| 217 | int i = 0;
|
---|
| 218 | foreach (int runIndex in newSortedIndex) {
|
---|
| 219 | runToRowMapping[runIndex] = i;
|
---|
| 220 | i++;
|
---|
| 221 | }
|
---|
[12692] | 222 | UpdateRowAttributes(rebuild: false);
|
---|
[3447] | 223 | return newSortedIndex;
|
---|
| 224 | }
|
---|
| 225 |
|
---|
[12692] | 226 | private void UpdateRowAttributes(bool rebuild = true) {
|
---|
| 227 | if (rebuild) runToRowMapping = Enumerable.Range(0, Content.Count).ToArray();
|
---|
[4200] | 228 | int runIndex = 0;
|
---|
| 229 | foreach (IRun run in Content) {
|
---|
| 230 | int rowIndex = this.runToRowMapping[runIndex];
|
---|
| 231 | this.dataGridView.Rows[rowIndex].Visible = run.Visible;
|
---|
| 232 | this.dataGridView.Rows[rowIndex].DefaultCellStyle.ForeColor = run.Color;
|
---|
| 233 | runIndex++;
|
---|
| 234 | }
|
---|
[9506] | 235 | rowsTextBox.Text = dataGridView.Rows.GetRowCount(DataGridViewElementStates.Visible).ToString();
|
---|
[4883] | 236 | UpdateRowHeaders();
|
---|
[4200] | 237 | }
|
---|
| 238 |
|
---|
[3447] | 239 | public class RunCollectionRowComparer : IComparer<int> {
|
---|
| 240 | public RunCollectionRowComparer() {
|
---|
| 241 | }
|
---|
| 242 |
|
---|
[8139] | 243 | private List<KeyValuePair<int, SortOrder>> sortedIndices;
|
---|
| 244 | public IEnumerable<KeyValuePair<int, SortOrder>> SortedIndices {
|
---|
| 245 | get { return this.sortedIndices; }
|
---|
| 246 | set { sortedIndices = new List<KeyValuePair<int, SortOrder>>(value); }
|
---|
[3447] | 247 | }
|
---|
| 248 | private RunCollection matrix;
|
---|
| 249 | public RunCollection Matrix {
|
---|
| 250 | get { return this.matrix; }
|
---|
| 251 | set { this.matrix = value; }
|
---|
| 252 | }
|
---|
| 253 |
|
---|
| 254 | public int Compare(int x, int y) {
|
---|
| 255 | int result = 0;
|
---|
| 256 | IItem value1, value2;
|
---|
| 257 | IComparable comparable1, comparable2;
|
---|
| 258 |
|
---|
| 259 | if (matrix == null)
|
---|
| 260 | throw new InvalidOperationException("Could not sort IStringConvertibleMatrix if the matrix member is null.");
|
---|
[8139] | 261 | if (sortedIndices == null)
|
---|
[3447] | 262 | return 0;
|
---|
| 263 |
|
---|
[8139] | 264 | foreach (KeyValuePair<int, SortOrder> pair in sortedIndices.Where(p => p.Value != SortOrder.None)) {
|
---|
[3447] | 265 | value1 = matrix.GetValue(x, pair.Key);
|
---|
| 266 | value2 = matrix.GetValue(y, pair.Key);
|
---|
| 267 | comparable1 = value1 as IComparable;
|
---|
| 268 | comparable2 = value2 as IComparable;
|
---|
| 269 | if (comparable1 != null)
|
---|
| 270 | result = comparable1.CompareTo(comparable2);
|
---|
| 271 | else {
|
---|
| 272 | string string1 = value1 != null ? value1.ToString() : string.Empty;
|
---|
| 273 | string string2 = value2 != null ? value2.ToString() : string.Empty;
|
---|
| 274 | result = string1.CompareTo(string2);
|
---|
| 275 | }
|
---|
| 276 | if (pair.Value == SortOrder.Descending)
|
---|
| 277 | result *= -1;
|
---|
| 278 | if (result != 0)
|
---|
| 279 | return result;
|
---|
| 280 | }
|
---|
| 281 | return result;
|
---|
| 282 | }
|
---|
| 283 | }
|
---|
[3332] | 284 | }
|
---|
| 285 | }
|
---|