Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveWindowsService/SlaveWindowsService.cs @ 5283

Last change on this file since 5283 was 5280, checked in by ascheibe, 13 years ago

#1233

  • added a new project: SlaveWindowsService: runs the Hive Slave as a Windows Service
  • some improvements when there is no server connection
  • some fixes for the communication between slave and gui
File size: 2.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
21using System.ServiceProcess;
22using System.Threading;
23using HeuristicLab.Clients.Hive.Salve;
24
25namespace HeuristicLab.Clients.Hive.Slave.SlaveWindowsService {
26  public partial class SlaveWindowsService : ServiceBase {
27    private Core core;
28    private Thread coreThread;
29
30    public SlaveWindowsService() {
31      InitializeComponent();
32      if (!System.Diagnostics.EventLog.SourceExists("HeuristicLab Hive Slave"))
33        System.Diagnostics.EventLog.CreateEventSource("HeuristicLab Hive Slave",
34                                                              "HeuristicLab Hive Slave");
35
36      eventLog.Source = "HeuristicLab Hive Slave";
37      eventLog.Log = "HeuristicLab Hive Slave";
38    }
39
40    protected override void OnStart(string[] args) {
41      core = new Core();
42      coreThread = new Thread(core.Start);
43      coreThread.Start();
44      eventLog.WriteEntry("HeuristicLab Hive Slave started!");
45    }
46
47    protected override void OnStop() {
48      eventLog.WriteEntry("Shutting down HeuristicLab Hive Slave...");
49      core.Shutdown();
50      eventLog.WriteEntry("HeuristicLab Hive Slave stopped!");
51    }
52  }
53}
Note: See TracBrowser for help on using the repository browser.