[13718] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 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 |
|
---|
[16728] | 22 | using System;
|
---|
[13718] | 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.MainForm;
|
---|
[13722] | 25 | using HeuristicLab.MainForm.WindowsForms;
|
---|
| 26 | using HeuristicLab.Optimization;
|
---|
[13718] | 27 | using HeuristicLab.OptimizationExpertSystem.Common;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.OptimizationExpertSystem {
|
---|
| 30 | [View("Expert-System View")]
|
---|
[13722] | 31 | public partial class KnowledgeCenterViewBase : AsynchronousContentView {
|
---|
| 32 | public OptimizationKnowledgeCenter MainForm {
|
---|
| 33 | get { return (OptimizationKnowledgeCenter)HeuristicLab.MainForm.MainFormManager.MainForm; }
|
---|
[13718] | 34 | }
|
---|
| 35 |
|
---|
[13722] | 36 | public new KnowledgeCenter Content {
|
---|
| 37 | get { return (KnowledgeCenter)base.Content; }
|
---|
[13718] | 38 | set { base.Content = value; }
|
---|
| 39 | }
|
---|
| 40 |
|
---|
[13722] | 41 | protected KnowledgeCenterViewBase() {
|
---|
[13718] | 42 | InitializeComponent();
|
---|
| 43 | }
|
---|
| 44 |
|
---|
[13720] | 45 | #region Event Registration
|
---|
[13718] | 46 | protected override void RegisterContentEvents() {
|
---|
| 47 | base.RegisterContentEvents();
|
---|
| 48 | Content.DownloadStarted += ContentOnDownloadStarted;
|
---|
[13722] | 49 | Content.AlgorithmInstanceStarted += ContentOnAlgorithmInstanceStarted;
|
---|
[13787] | 50 | Content.RecommendationModelChanged += ContentOnRecommendationModelChanged;
|
---|
[13720] | 51 | RegisterContentProblemEvents();
|
---|
| 52 | RegisterContentProblemInstancesEvents();
|
---|
| 53 | RegisterContentSolutionSeedingPoolEvents();
|
---|
| 54 | RegisterContentSuggestedInstancesEvents();
|
---|
[13718] | 55 | }
|
---|
| 56 |
|
---|
[13720] | 57 | private void RegisterContentProblemEvents() {
|
---|
| 58 | Content.Problem.ProblemChanged += ContentOnProblemChanged;
|
---|
| 59 | Content.Problem.Solutions.CollectionReset += ContentOnProblemSolutionsChanged;
|
---|
| 60 | Content.Problem.Solutions.ItemsAdded += ContentOnProblemSolutionsChanged;
|
---|
| 61 | Content.Problem.Solutions.ItemsReplaced += ContentOnProblemSolutionsChanged;
|
---|
| 62 | Content.Problem.Solutions.ItemsRemoved += ContentOnProblemSolutionsChanged;
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | private void RegisterContentProblemInstancesEvents() {
|
---|
| 66 | Content.ProblemInstances.UpdateOfRunsInProgressChanged += ContentOnProblemInstancesChanged;
|
---|
| 67 | Content.ProblemInstances.ItemsAdded += ContentOnProblemInstancesChanged;
|
---|
| 68 | Content.ProblemInstances.ItemsRemoved += ContentOnProblemInstancesChanged;
|
---|
| 69 | Content.ProblemInstances.CollectionReset += ContentOnProblemInstancesChanged;
|
---|
| 70 | Content.ProblemInstances.ItemChanged += ContentOnProblemInstancesChanged;
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | private void RegisterContentSolutionSeedingPoolEvents() {
|
---|
| 74 | Content.SolutionSeedingPool.CheckedItemsChanged += ContentOnSolutionSeedingPoolChanged;
|
---|
| 75 | Content.SolutionSeedingPool.CollectionReset += ContentOnSolutionSeedingPoolChanged;
|
---|
| 76 | Content.SolutionSeedingPool.ItemsAdded += ContentOnSolutionSeedingPoolChanged;
|
---|
| 77 | Content.SolutionSeedingPool.ItemsRemoved += ContentOnSolutionSeedingPoolChanged;
|
---|
| 78 | Content.SolutionSeedingPool.ItemsReplaced += ContentOnSolutionSeedingPoolChanged;
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | private void RegisterContentSuggestedInstancesEvents() {
|
---|
[13787] | 82 | Content.AlgorithmInstances.CollectionReset += ContentOnAlgorithmInstancesChanged;
|
---|
| 83 | Content.AlgorithmInstances.ItemsAdded += ContentOnAlgorithmInstancesChanged;
|
---|
| 84 | Content.AlgorithmInstances.ItemsMoved += ContentOnAlgorithmInstancesChanged;
|
---|
| 85 | Content.AlgorithmInstances.ItemsRemoved += ContentOnAlgorithmInstancesChanged;
|
---|
| 86 | Content.AlgorithmInstances.ItemsReplaced += ContentOnAlgorithmInstancesChanged;
|
---|
[13720] | 87 | }
|
---|
| 88 |
|
---|
[13718] | 89 | protected override void DeregisterContentEvents() {
|
---|
| 90 | base.DeregisterContentEvents();
|
---|
| 91 | Content.DownloadStarted -= ContentOnDownloadStarted;
|
---|
[13722] | 92 | Content.AlgorithmInstanceStarted -= ContentOnAlgorithmInstanceStarted;
|
---|
[13787] | 93 | Content.RecommendationModelChanged -= ContentOnRecommendationModelChanged;
|
---|
[13720] | 94 | DeregisterContentProblemEvents();
|
---|
| 95 | DeregisterContentProblemInstancesEvents();
|
---|
| 96 | DeregisterContentSolutionSeedingPoolEvents();
|
---|
| 97 | DeregisterContentSuggestedInstancesEvents();
|
---|
[13718] | 98 | }
|
---|
| 99 |
|
---|
[13720] | 100 | private void DeregisterContentProblemEvents() {
|
---|
| 101 | Content.Problem.ProblemChanged -= ContentOnProblemChanged;
|
---|
| 102 | Content.Problem.Solutions.CollectionReset -= ContentOnProblemSolutionsChanged;
|
---|
| 103 | Content.Problem.Solutions.ItemsAdded -= ContentOnProblemSolutionsChanged;
|
---|
| 104 | Content.Problem.Solutions.ItemsReplaced -= ContentOnProblemSolutionsChanged;
|
---|
| 105 | Content.Problem.Solutions.ItemsRemoved -= ContentOnProblemSolutionsChanged;
|
---|
| 106 | }
|
---|
| 107 |
|
---|
| 108 | private void DeregisterContentProblemInstancesEvents() {
|
---|
| 109 | Content.ProblemInstances.UpdateOfRunsInProgressChanged -= ContentOnProblemInstancesChanged;
|
---|
| 110 | Content.ProblemInstances.ItemsAdded -= ContentOnProblemInstancesChanged;
|
---|
| 111 | Content.ProblemInstances.ItemsRemoved -= ContentOnProblemInstancesChanged;
|
---|
| 112 | Content.ProblemInstances.CollectionReset -= ContentOnProblemInstancesChanged;
|
---|
| 113 | Content.ProblemInstances.ItemChanged -= ContentOnProblemInstancesChanged;
|
---|
| 114 | }
|
---|
| 115 |
|
---|
| 116 | private void DeregisterContentSolutionSeedingPoolEvents() {
|
---|
| 117 | Content.SolutionSeedingPool.CheckedItemsChanged -= ContentOnSolutionSeedingPoolChanged;
|
---|
| 118 | Content.SolutionSeedingPool.CollectionReset -= ContentOnSolutionSeedingPoolChanged;
|
---|
| 119 | Content.SolutionSeedingPool.ItemsAdded -= ContentOnSolutionSeedingPoolChanged;
|
---|
| 120 | Content.SolutionSeedingPool.ItemsRemoved -= ContentOnSolutionSeedingPoolChanged;
|
---|
| 121 | Content.SolutionSeedingPool.ItemsReplaced -= ContentOnSolutionSeedingPoolChanged;
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | private void DeregisterContentSuggestedInstancesEvents() {
|
---|
[13787] | 125 | Content.AlgorithmInstances.CollectionReset -= ContentOnAlgorithmInstancesChanged;
|
---|
| 126 | Content.AlgorithmInstances.ItemsAdded -= ContentOnAlgorithmInstancesChanged;
|
---|
| 127 | Content.AlgorithmInstances.ItemsMoved -= ContentOnAlgorithmInstancesChanged;
|
---|
| 128 | Content.AlgorithmInstances.ItemsRemoved -= ContentOnAlgorithmInstancesChanged;
|
---|
| 129 | Content.AlgorithmInstances.ItemsReplaced -= ContentOnAlgorithmInstancesChanged;
|
---|
[13720] | 130 | }
|
---|
| 131 | #endregion
|
---|
| 132 |
|
---|
| 133 | protected virtual void OnDownloadStarted(IProgress progress) { }
|
---|
[13718] | 134 | protected virtual void OnDownloadEnded() { }
|
---|
[13722] | 135 | protected virtual void OnAlgorithmInstanceStarted(IAlgorithm algorithm) { }
|
---|
[13787] | 136 | protected virtual void OnRecommendationModelChanged() { }
|
---|
[13720] | 137 | protected virtual void OnPropertyChanged(string propertyName) { }
|
---|
| 138 | protected virtual void OnProblemChanged() { }
|
---|
| 139 | protected virtual void OnProblemSolutionsChanged() { }
|
---|
| 140 | protected virtual void OnProblemInstancesChanged() { }
|
---|
| 141 | protected virtual void OnSolutionSeedingPoolChanged() { }
|
---|
[13787] | 142 | protected virtual void OnAlgorithmInstancesChanged() { }
|
---|
[13722] | 143 | protected virtual void OnKnowledgeBaseChanged() { }
|
---|
[13718] | 144 |
|
---|
[13720] | 145 | #region Content Event Handlers
|
---|
[13718] | 146 | private void ContentOnDownloadStarted(object sender, EventArgs<IProgress> e) {
|
---|
| 147 | if (InvokeRequired) { Invoke((Action<object, EventArgs<IProgress>>)ContentOnDownloadStarted, sender, e); return; }
|
---|
[16728] | 148 | Progress.Show(this, e.Value);
|
---|
[13718] | 149 | e.Value.ProgressStateChanged += ProgressOnStateChanged;
|
---|
[13720] | 150 | OnDownloadStarted(e.Value);
|
---|
[13718] | 151 | }
|
---|
| 152 |
|
---|
[13722] | 153 | private void ContentOnAlgorithmInstanceStarted(object sender, EventArgs<IAlgorithm> e) {
|
---|
| 154 | if (InvokeRequired) { Invoke((Action<object, EventArgs<IAlgorithm>>)ContentOnAlgorithmInstanceStarted, sender, e); return; }
|
---|
| 155 | OnAlgorithmInstanceStarted(e.Value);
|
---|
| 156 | }
|
---|
| 157 |
|
---|
[13787] | 158 | private void ContentOnRecommendationModelChanged(object sender, EventArgs e) {
|
---|
| 159 | if (InvokeRequired) { Invoke((Action<object, EventArgs<IAlgorithm>>)ContentOnRecommendationModelChanged, sender, e); return; }
|
---|
| 160 | OnRecommendationModelChanged();
|
---|
| 161 | }
|
---|
| 162 |
|
---|
[13718] | 163 | private void ProgressOnStateChanged(object sender, EventArgs e) {
|
---|
| 164 | if (InvokeRequired) { Invoke((Action<object, EventArgs>)ProgressOnStateChanged, sender, e); return; }
|
---|
| 165 | var progress = (IProgress)sender;
|
---|
| 166 | if (progress == null || progress.ProgressState == ProgressState.Started) return;
|
---|
| 167 | OnDownloadEnded();
|
---|
| 168 | }
|
---|
[13720] | 169 |
|
---|
| 170 | private void ContentOnProblemChanged(object sender, EventArgs e) {
|
---|
| 171 | if (InvokeRequired) Invoke((Action)OnProblemChanged);
|
---|
| 172 | else OnProblemChanged();
|
---|
| 173 | }
|
---|
| 174 |
|
---|
| 175 | private void ContentOnProblemSolutionsChanged(object sender, EventArgs e) {
|
---|
| 176 | if (InvokeRequired) Invoke((Action)OnProblemSolutionsChanged);
|
---|
| 177 | else OnProblemSolutionsChanged();
|
---|
| 178 | }
|
---|
| 179 |
|
---|
| 180 | private void ContentOnProblemInstancesChanged(object sender, EventArgs e) {
|
---|
| 181 | if (InvokeRequired) Invoke((Action)OnProblemInstancesChanged);
|
---|
| 182 | else OnProblemInstancesChanged();
|
---|
| 183 | }
|
---|
| 184 |
|
---|
| 185 | private void ContentOnSolutionSeedingPoolChanged(object sender, EventArgs e) {
|
---|
| 186 | if (InvokeRequired) Invoke((Action)OnSolutionSeedingPoolChanged);
|
---|
| 187 | else OnSolutionSeedingPoolChanged();
|
---|
| 188 | }
|
---|
| 189 |
|
---|
[13787] | 190 | private void ContentOnAlgorithmInstancesChanged(object sender, EventArgs e) {
|
---|
| 191 | if (InvokeRequired) Invoke((Action)OnAlgorithmInstancesChanged);
|
---|
| 192 | else OnAlgorithmInstancesChanged();
|
---|
[13720] | 193 | }
|
---|
| 194 | #endregion
|
---|
[13718] | 195 | }
|
---|
| 196 | }
|
---|