1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.ComponentModel;
|
---|
25 | using System.Data;
|
---|
26 | using System.Drawing;
|
---|
27 | using System.Linq;
|
---|
28 | using System.Text;
|
---|
29 | using System.Windows.Forms;
|
---|
30 | using System.ServiceModel;
|
---|
31 | using HeuristicLab.Core;
|
---|
32 | using System.Xml;
|
---|
33 | using System.Threading;
|
---|
34 | using System.IO;
|
---|
35 | using System.Net;
|
---|
36 | using System.Diagnostics;
|
---|
37 |
|
---|
38 | namespace HeuristicLab.Grid {
|
---|
39 | public partial class ClientForm : Form {
|
---|
40 | private GridClient client;
|
---|
41 | public ClientForm() {
|
---|
42 | Trace.Listeners.Clear();
|
---|
43 | Trace.Listeners.Add(new EventLogTraceListener("HeuristicLab.Grid"));
|
---|
44 |
|
---|
45 | InitializeComponent();
|
---|
46 |
|
---|
47 | client = new GridClient();
|
---|
48 | UpdateControl();
|
---|
49 | }
|
---|
50 |
|
---|
51 | private void startButton_Click(object sender, EventArgs e) {
|
---|
52 | client.Start(addressTextBox.Text);
|
---|
53 | UpdateControl();
|
---|
54 | }
|
---|
55 |
|
---|
56 | private void stopButton_Click(object sender, EventArgs e) {
|
---|
57 | client.Stop();
|
---|
58 | UpdateControl();
|
---|
59 | }
|
---|
60 |
|
---|
61 | private void UpdateControl() {
|
---|
62 | if(client.Waiting) {
|
---|
63 | startButton.Enabled = false;
|
---|
64 | stopButton.Enabled = true;
|
---|
65 | statusTextBox.Text = "Waiting for engine";
|
---|
66 | } else if(client.Executing) {
|
---|
67 | startButton.Enabled = false;
|
---|
68 | stopButton.Enabled = true;
|
---|
69 | statusTextBox.Text = "Executing engine";
|
---|
70 | } else if(client.Stopped) {
|
---|
71 | startButton.Enabled = true;
|
---|
72 | stopButton.Enabled = false;
|
---|
73 | statusTextBox.Text = "Stopped";
|
---|
74 | }
|
---|
75 | statusStrip.Text = client.StatusMessage;
|
---|
76 | }
|
---|
77 |
|
---|
78 | private void timer_Tick(object sender, EventArgs e) {
|
---|
79 | UpdateControl();
|
---|
80 | }
|
---|
81 | }
|
---|
82 | }
|
---|