[6983] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7270] | 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6983] | 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 |
|
---|
[7215] | 22 | using System.IO;
|
---|
[6983] | 23 | using System.Threading;
|
---|
| 24 | using System.Windows.Forms;
|
---|
[7215] | 25 | using HeuristicLab.Clients.Hive.SlaveCore.Properties;
|
---|
[6983] | 26 | using HeuristicLab.Clients.Hive.SlaveCore.Views;
|
---|
| 27 | using HeuristicLab.PluginInfrastructure;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.Clients.Hive.Slave.App {
|
---|
| 30 | [Application("Hive Slave", "Runs the Hive Slave as a HeuristicLab application")]
|
---|
| 31 | internal class HiveSlaveApplication : ApplicationBase {
|
---|
| 32 | private HeuristicLab.Clients.Hive.SlaveCore.Core core;
|
---|
| 33 | public override void Run() {
|
---|
[7215] | 34 | CheckWorkingDirectories();
|
---|
| 35 |
|
---|
[6983] | 36 | core = new HeuristicLab.Clients.Hive.SlaveCore.Core();
|
---|
| 37 | Thread coreThread = new Thread(core.Start);
|
---|
| 38 | coreThread.IsBackground = true;
|
---|
| 39 | coreThread.Start();
|
---|
| 40 |
|
---|
| 41 | MainWindow window = new MainWindow();
|
---|
| 42 | window.Content = new SlaveItem();
|
---|
| 43 | Application.ApplicationExit += new System.EventHandler(Application_ApplicationExit);
|
---|
| 44 | Application.Run(window);
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | void Application_ApplicationExit(object sender, System.EventArgs e) {
|
---|
| 48 | core.Shutdown();
|
---|
| 49 | }
|
---|
[7215] | 50 |
|
---|
| 51 | /// <summary>
|
---|
| 52 | /// Normally the configuration file just contains the folder names of the PluginCache and the AppDomain working directory.
|
---|
| 53 | /// This means that these folders are created in the current directory which is ok for the console client and the windows service.
|
---|
| 54 | /// For the HL client we can't do that because the plugin infrastructure gets confused when starting HeuristicLab.
|
---|
| 55 | /// Therefore if there is only a relative path in the config, we change that to the temp path.
|
---|
| 56 | /// </summary>
|
---|
| 57 | void CheckWorkingDirectories() {
|
---|
| 58 | if (!Path.IsPathRooted(Settings.Default.PluginCacheDir)) {
|
---|
| 59 | Settings.Default.PluginCacheDir = Path.Combine(Path.GetTempPath(), Settings.Default.PluginCacheDir);
|
---|
| 60 | Settings.Default.Save();
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | if (!Path.IsPathRooted(Settings.Default.PluginTempBaseDir)) {
|
---|
| 64 | Settings.Default.PluginTempBaseDir = Path.Combine(Path.GetTempPath(), Settings.Default.PluginTempBaseDir);
|
---|
| 65 | Settings.Default.Save();
|
---|
| 66 | }
|
---|
| 67 | }
|
---|
[6983] | 68 | }
|
---|
| 69 | }
|
---|