[3163] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[11205] | 3 | * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3163] | 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;
|
---|
[11205] | 23 | using System.Collections.Generic;
|
---|
[3202] | 24 | using System.IO;
|
---|
| 25 | using System.Linq;
|
---|
| 26 | using System.Reflection;
|
---|
[4068] | 27 | using System.Threading;
|
---|
[3202] | 28 | using System.Windows.Forms;
|
---|
[3376] | 29 | using HeuristicLab.Common;
|
---|
[3202] | 30 | using HeuristicLab.Core;
|
---|
[3163] | 31 | using HeuristicLab.MainForm;
|
---|
[3202] | 32 | using HeuristicLab.Persistence.Default.Xml;
|
---|
[3163] | 33 |
|
---|
| 34 | namespace HeuristicLab.Optimizer {
|
---|
| 35 | [View("Start Page")]
|
---|
[3202] | 36 | public partial class StartPage : HeuristicLab.MainForm.WindowsForms.View {
|
---|
[11205] | 37 | private const string StandardProblemsGroupName = "Standard Problems";
|
---|
| 38 | private const string DataAnalysisGroupName = "Data Analysis";
|
---|
| 39 | private const string ScriptsGroupName = "Scripts";
|
---|
| 40 | private const string UncategorizedGroupName = "Uncategorized";
|
---|
| 41 | private const string SampleNamePrefix = "HeuristicLab.Optimizer.Documents.";
|
---|
| 42 | private const string SampleNameSuffix = ".hl";
|
---|
| 43 |
|
---|
| 44 | private readonly Dictionary<ListViewGroup, List<string>> groupLookup = new Dictionary<ListViewGroup, List<string>>();
|
---|
| 45 | private readonly ListViewGroup standardProblemsGroup = new ListViewGroup(StandardProblemsGroupName);
|
---|
| 46 | private readonly ListViewGroup dataAnalysisGroup = new ListViewGroup(DataAnalysisGroupName);
|
---|
| 47 | private readonly ListViewGroup scriptsGroup = new ListViewGroup(ScriptsGroupName);
|
---|
| 48 | private readonly ListViewGroup uncategorizedGroup = new ListViewGroup(UncategorizedGroupName);
|
---|
| 49 |
|
---|
| 50 | private IProgress progress;
|
---|
| 51 |
|
---|
[3163] | 52 | public StartPage() {
|
---|
| 53 | InitializeComponent();
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | protected override void OnInitialized(EventArgs e) {
|
---|
| 57 | base.OnInitialized(e);
|
---|
[3202] | 58 | Assembly assembly = Assembly.GetExecutingAssembly();
|
---|
| 59 | AssemblyFileVersionAttribute version = assembly.GetCustomAttributes(typeof(AssemblyFileVersionAttribute), true).
|
---|
| 60 | Cast<AssemblyFileVersionAttribute>().FirstOrDefault();
|
---|
| 61 | titleLabel.Text = "HeuristicLab Optimizer";
|
---|
| 62 | if (version != null) titleLabel.Text += " " + version.Version;
|
---|
| 63 |
|
---|
| 64 | try {
|
---|
| 65 | using (Stream stream = assembly.GetManifestResourceStream(typeof(StartPage), "Documents.FirstSteps.rtf"))
|
---|
| 66 | firstStepsRichTextBox.LoadFile(stream, RichTextBoxStreamType.RichText);
|
---|
[11205] | 67 | } catch (Exception) { }
|
---|
[3202] | 68 |
|
---|
[3291] | 69 | samplesListView.Enabled = false;
|
---|
[11205] | 70 | samplesListView.Groups.Add(standardProblemsGroup);
|
---|
| 71 | samplesListView.Groups.Add(dataAnalysisGroup);
|
---|
| 72 | samplesListView.Groups.Add(scriptsGroup);
|
---|
| 73 | samplesListView.Groups.Add(uncategorizedGroup);
|
---|
| 74 | FillGroupLookup();
|
---|
| 75 |
|
---|
[3291] | 76 | showStartPageCheckBox.Checked = Properties.Settings.Default.ShowStartPage;
|
---|
| 77 |
|
---|
| 78 | ThreadPool.QueueUserWorkItem(new WaitCallback(LoadSamples));
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | protected override void OnClosing(FormClosingEventArgs e) {
|
---|
| 82 | base.OnClosing(e);
|
---|
| 83 | if (e.CloseReason == CloseReason.UserClosing) {
|
---|
| 84 | e.Cancel = true;
|
---|
| 85 | this.Hide();
|
---|
| 86 | }
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | private void LoadSamples(object state) {
|
---|
[11205] | 90 | progress = MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>().AddOperationProgressToView(samplesListView, "Loading...");
|
---|
| 91 | try {
|
---|
| 92 | var assembly = Assembly.GetExecutingAssembly();
|
---|
| 93 | var samples = assembly.GetManifestResourceNames().Where(x => x.EndsWith(SampleNameSuffix));
|
---|
| 94 | int count = samples.Count();
|
---|
[3291] | 95 |
|
---|
[11205] | 96 | foreach (var entry in groupLookup) {
|
---|
| 97 | var group = entry.Key;
|
---|
| 98 | var sampleList = entry.Value;
|
---|
| 99 | foreach (var sampleName in sampleList) {
|
---|
| 100 | string resourceName = SampleNamePrefix + sampleName + SampleNameSuffix;
|
---|
| 101 | LoadSample(resourceName, assembly, group, count);
|
---|
[3202] | 102 | }
|
---|
| 103 | }
|
---|
[11205] | 104 |
|
---|
| 105 | var categorizedSamples = groupLookup.Select(x => x.Value).SelectMany(x => x).Select(x => SampleNamePrefix + x + SampleNameSuffix);
|
---|
| 106 | var uncategorizedSamples = samples.Except(categorizedSamples);
|
---|
| 107 |
|
---|
| 108 | foreach (var resourceName in uncategorizedSamples) {
|
---|
| 109 | LoadSample(resourceName, assembly, uncategorizedGroup, count);
|
---|
| 110 | }
|
---|
| 111 |
|
---|
| 112 | OnAllSamplesLoaded();
|
---|
| 113 | } finally {
|
---|
| 114 | MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(samplesListView);
|
---|
[3202] | 115 | }
|
---|
[3291] | 116 | }
|
---|
[11205] | 117 |
|
---|
| 118 | private void LoadSample(string name, Assembly assembly, ListViewGroup group, int count) {
|
---|
| 119 | string path = Path.GetTempFileName();
|
---|
| 120 | try {
|
---|
| 121 | using (var stream = assembly.GetManifestResourceStream(name)) {
|
---|
| 122 | WriteStreamToTempFile(stream, path); // create a file in a temporary folder (persistence cannot load these files directly from the stream)
|
---|
| 123 | var item = XmlParser.Deserialize<INamedItem>(path);
|
---|
| 124 | OnSampleLoaded(item, group, 1.0 / count);
|
---|
| 125 | }
|
---|
| 126 | } catch (Exception) {
|
---|
| 127 | } finally {
|
---|
| 128 | if (File.Exists(path)) {
|
---|
| 129 | File.Delete(path); // make sure we remove the temporary file
|
---|
| 130 | }
|
---|
| 131 | }
|
---|
| 132 | }
|
---|
| 133 |
|
---|
| 134 | private void FillGroupLookup() {
|
---|
| 135 | var standardProblems = new List<string> { "ES_Griewank", "GA_TSP", "GA_VRP", "GE_ArtificialAnt",
|
---|
| 136 | "IslandGA_TSP", "LS_Knapsack", "PSO_Schwefel", "RAPGA_JSSP",
|
---|
| 137 | "SA_Rastrigin", "SGP_SantaFe","GP_Multiplexer", "SS_VRP", "TS_TSP", "TS_VRP", "VNS_TSP"
|
---|
| 138 | };
|
---|
| 139 | groupLookup[standardProblemsGroup] = standardProblems;
|
---|
| 140 | var dataAnalysisProblems = new List<string> { "SGP_SymbClass", "SGP_SymbReg", "OSGP_TimeSeries", "GE_SymbReg", "GPR" };
|
---|
| 141 | groupLookup[dataAnalysisGroup] = dataAnalysisProblems;
|
---|
| 142 | var scripts = new List<string> { "GA_QAP_Script", "GUI_Automation_Script", "OSGA_Rastrigin_Script" };
|
---|
| 143 | groupLookup[scriptsGroup] = scripts;
|
---|
| 144 | }
|
---|
| 145 |
|
---|
| 146 | private void OnSampleLoaded(INamedItem sample, ListViewGroup group, double progress) {
|
---|
[3298] | 147 | if (InvokeRequired)
|
---|
[11205] | 148 | Invoke(new Action<INamedItem, ListViewGroup, double>(OnSampleLoaded), sample, group, progress);
|
---|
[3298] | 149 | else {
|
---|
[11205] | 150 | ListViewItem item = new ListViewItem(new string[] { sample.Name, sample.Description }, group);
|
---|
[3298] | 151 | item.ToolTipText = sample.ItemName + ": " + sample.ItemDescription;
|
---|
| 152 | samplesListView.SmallImageList.Images.Add(sample.ItemImage);
|
---|
| 153 | item.ImageIndex = samplesListView.SmallImageList.Images.Count - 1;
|
---|
| 154 | item.Tag = sample;
|
---|
| 155 | samplesListView.Items.Add(item);
|
---|
[11205] | 156 | this.progress.ProgressValue += progress;
|
---|
[3202] | 157 | }
|
---|
[3291] | 158 | }
|
---|
| 159 | private void OnAllSamplesLoaded() {
|
---|
| 160 | if (InvokeRequired)
|
---|
| 161 | Invoke(new Action(OnAllSamplesLoaded));
|
---|
| 162 | else {
|
---|
| 163 | samplesListView.Enabled = samplesListView.Items.Count > 0;
|
---|
| 164 | if (samplesListView.Items.Count > 0) {
|
---|
| 165 | for (int i = 0; i < samplesListView.Columns.Count; i++)
|
---|
| 166 | samplesListView.Columns[i].AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
|
---|
| 167 | }
|
---|
[3202] | 168 | }
|
---|
[3163] | 169 | }
|
---|
| 170 |
|
---|
[3202] | 171 | private void firstStepsRichTextBox_LinkClicked(object sender, LinkClickedEventArgs e) {
|
---|
| 172 | System.Diagnostics.Process.Start(e.LinkText);
|
---|
| 173 | }
|
---|
| 174 |
|
---|
| 175 | private void samplesListView_DoubleClick(object sender, EventArgs e) {
|
---|
[11205] | 176 | if (samplesListView.SelectedItems.Count == 1) {
|
---|
| 177 | var mainForm = MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>();
|
---|
| 178 | try {
|
---|
| 179 | mainForm.SetWaitCursor();
|
---|
| 180 | mainForm.ShowContent((IContent)((IItem)samplesListView.SelectedItems[0].Tag).Clone());
|
---|
| 181 | } finally {
|
---|
| 182 | mainForm.ResetWaitCursor();
|
---|
| 183 | }
|
---|
| 184 |
|
---|
| 185 | }
|
---|
[3202] | 186 | }
|
---|
[3298] | 187 | private void samplesListView_ItemDrag(object sender, ItemDragEventArgs e) {
|
---|
| 188 | ListViewItem listViewItem = (ListViewItem)e.Item;
|
---|
| 189 | IItem item = (IItem)listViewItem.Tag;
|
---|
| 190 | DataObject data = new DataObject();
|
---|
[5837] | 191 | data.SetData(HeuristicLab.Common.Constants.DragDropDataFormat, item);
|
---|
[3298] | 192 | DragDropEffects result = DoDragDrop(data, DragDropEffects.Copy);
|
---|
| 193 | }
|
---|
[3202] | 194 |
|
---|
[3163] | 195 | private void showStartPageCheckBox_CheckedChanged(object sender, EventArgs e) {
|
---|
| 196 | Properties.Settings.Default.ShowStartPage = showStartPageCheckBox.Checked;
|
---|
| 197 | Properties.Settings.Default.Save();
|
---|
| 198 | }
|
---|
[3202] | 199 |
|
---|
| 200 | #region Helpers
|
---|
| 201 | private void WriteStreamToTempFile(Stream stream, string path) {
|
---|
| 202 | using (FileStream output = new FileStream(path, FileMode.Create, FileAccess.Write)) {
|
---|
[11205] | 203 | stream.CopyTo(output);
|
---|
[3202] | 204 | }
|
---|
| 205 | }
|
---|
| 206 | #endregion
|
---|
[3163] | 207 | }
|
---|
| 208 | }
|
---|