[717] | 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;
|
---|
[752] | 30 | using System.Diagnostics;
|
---|
| 31 | using System.Threading;
|
---|
[906] | 32 | using ZedGraph;
|
---|
[973] | 33 | using HeuristicLab.Hive.Client.Console.ClientService;
|
---|
[953] | 34 | using System.ServiceModel;
|
---|
[973] | 35 | using System.Net;
|
---|
[717] | 36 |
|
---|
| 37 | namespace HeuristicLab.Hive.Client.Console {
|
---|
[752] | 38 |
|
---|
[911] | 39 | delegate void UpdateTextDelegate(EventLogEntry ev);
|
---|
[752] | 40 |
|
---|
[717] | 41 | public partial class HiveClientConsole : Form {
|
---|
[752] | 42 |
|
---|
[906] | 43 | EventLog HiveClientEventLog;
|
---|
[973] | 44 | ClientConsoleCommunicatorClient cccc;
|
---|
| 45 | System.Windows.Forms.Timer refreshTimer;
|
---|
[752] | 46 |
|
---|
[717] | 47 | public HiveClientConsole() {
|
---|
| 48 | InitializeComponent();
|
---|
[973] | 49 | InitTimer();
|
---|
| 50 | ConnectToClient();
|
---|
| 51 | RefreshGui();
|
---|
[906] | 52 | GetEventLog();
|
---|
[973] | 53 | }
|
---|
[911] | 54 |
|
---|
[973] | 55 | private void InitTimer() {
|
---|
| 56 | refreshTimer = new System.Windows.Forms.Timer();
|
---|
| 57 | refreshTimer.Interval = 1000;
|
---|
| 58 | refreshTimer.Tick += new EventHandler(refreshTimer_Tick);
|
---|
| 59 | refreshTimer.Start();
|
---|
[906] | 60 | }
|
---|
| 61 |
|
---|
[973] | 62 | void refreshTimer_Tick(object sender, EventArgs e) {
|
---|
| 63 | RefreshGui();
|
---|
| 64 | }
|
---|
| 65 |
|
---|
| 66 | private void RefreshGui() {
|
---|
| 67 | StatusCommons sc = new StatusCommons();
|
---|
| 68 |
|
---|
| 69 | try {
|
---|
| 70 | sc = cccc.GetStatusInfos();
|
---|
| 71 | }
|
---|
| 72 | catch (Exception ex) {
|
---|
| 73 | refreshTimer.Stop();
|
---|
| 74 | DialogResult res = MessageBox.Show("Connection Error, check if Hive Client is running!", "Connection Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
---|
| 75 | if (res == DialogResult.OK)
|
---|
| 76 | this.Close();
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | lbGuid.Text = sc.ClientGuid.ToString();
|
---|
| 80 | lbCs.Text = sc.ConnectedSince.ToString();
|
---|
| 81 | lbConnectionStatus.Text = sc.Status.ToString();
|
---|
| 82 | lbJobdone.Text = sc.JobsDone.ToString();
|
---|
| 83 | lbJobsAborted.Text = sc.JobsAborted.ToString();
|
---|
| 84 | lbJobsFetched.Text = sc.JobsFetched.ToString();
|
---|
| 85 |
|
---|
| 86 | this.Text = "Client Console (" + sc.Status.ToString() + ")";
|
---|
| 87 | lbStatus.Text = sc.Status.ToString();
|
---|
| 88 |
|
---|
| 89 | ListViewItem curJobStatusItem;
|
---|
| 90 |
|
---|
| 91 | if (sc.Jobs != null) {
|
---|
| 92 | lvJobDetail.Items.Clear();
|
---|
| 93 | double progress;
|
---|
| 94 | foreach (JobStatus curJob in sc.Jobs) {
|
---|
| 95 | curJobStatusItem = new ListViewItem(curJob.JobId.ToString());
|
---|
| 96 | curJobStatusItem.SubItems.Add(curJob.Since.ToString());
|
---|
| 97 | progress = curJob.Progress * 100;
|
---|
| 98 | curJobStatusItem.SubItems.Add(progress.ToString());
|
---|
| 99 | lvJobDetail.Items.Add(curJobStatusItem);
|
---|
| 100 | }
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | UpdateGraph(zGJobs, sc.JobsDone, sc.JobsAborted);
|
---|
| 104 |
|
---|
| 105 | if (sc.Status == NetworkEnumWcfConnState.Connected) {
|
---|
| 106 | btConnect.Enabled = false;
|
---|
| 107 | btnDisconnect.Enabled = true;
|
---|
| 108 | ConnectionContainer curConnection = cccc.GetCurrentConnection();
|
---|
| 109 | tbIPAdress.Text = curConnection.IPAdress;
|
---|
| 110 | tbPort.Text = curConnection.Port.ToString();
|
---|
| 111 | } else if (sc.Status == NetworkEnumWcfConnState.Disconnected) {
|
---|
| 112 | btConnect.Enabled = true;
|
---|
| 113 | btnDisconnect.Enabled = false;
|
---|
| 114 | } else if (sc.Status == NetworkEnumWcfConnState.Failed) {
|
---|
| 115 | btConnect.Enabled = true;
|
---|
| 116 | btnDisconnect.Enabled = false;
|
---|
| 117 | }
|
---|
| 118 | }
|
---|
| 119 |
|
---|
| 120 | private void ConnectToClient() {
|
---|
| 121 | try {
|
---|
| 122 | cccc = new ClientConsoleCommunicatorClient();
|
---|
| 123 | }
|
---|
| 124 | catch (Exception) {
|
---|
| 125 | refreshTimer.Stop();
|
---|
| 126 | DialogResult res = MessageBox.Show("Connection Error, check if Hive Client is running!", "Connection Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
---|
| 127 | if (res == DialogResult.OK)
|
---|
| 128 | this.Close();
|
---|
| 129 | }
|
---|
| 130 | }
|
---|
| 131 |
|
---|
[906] | 132 | private void GetEventLog() {
|
---|
| 133 | HiveClientEventLog = new EventLog("Hive Client");
|
---|
| 134 | HiveClientEventLog.Source = "Hive Client";
|
---|
| 135 | HiveClientEventLog.EntryWritten += new EntryWrittenEventHandler(OnEntryWritten);
|
---|
| 136 | HiveClientEventLog.EnableRaisingEvents = true;
|
---|
| 137 |
|
---|
| 138 | ListViewItem curEventLogEntry;
|
---|
| 139 | foreach (EventLogEntry eve in HiveClientEventLog.Entries) {
|
---|
| 140 | curEventLogEntry = new ListViewItem("", 0);
|
---|
| 141 | if(eve.EntryType == EventLogEntryType.Error)
|
---|
| 142 | curEventLogEntry = new ListViewItem("", 1);
|
---|
[911] | 143 | curEventLogEntry.SubItems.Add(eve.InstanceId.ToString());
|
---|
[906] | 144 | curEventLogEntry.SubItems.Add(eve.Message);
|
---|
| 145 | curEventLogEntry.SubItems.Add(eve.TimeGenerated.Date.ToString());
|
---|
| 146 | curEventLogEntry.SubItems.Add(eve.TimeGenerated.TimeOfDay.ToString());
|
---|
| 147 | lvLog.Items.Add(curEventLogEntry);
|
---|
[752] | 148 | }
|
---|
[717] | 149 | }
|
---|
| 150 |
|
---|
[906] | 151 | private void HiveClientConsole_Load(object sender, EventArgs e) {
|
---|
| 152 | //SetSize();
|
---|
| 153 | }
|
---|
| 154 |
|
---|
[911] | 155 | private void UpdateText(EventLogEntry ev) {
|
---|
[906] | 156 | if (this.lvLog.InvokeRequired) {
|
---|
| 157 | this.lvLog.Invoke(new
|
---|
[752] | 158 | UpdateTextDelegate(UpdateText), new object[] { ev });
|
---|
| 159 | } else {
|
---|
[911] | 160 | ListViewItem curEventLogEntry;
|
---|
| 161 | curEventLogEntry = new ListViewItem("", 0);
|
---|
| 162 | if (ev.EntryType == EventLogEntryType.Error)
|
---|
| 163 | curEventLogEntry = new ListViewItem("", 1);
|
---|
| 164 | curEventLogEntry.SubItems.Add(ev.EventID.ToString());
|
---|
| 165 | curEventLogEntry.SubItems.Add(ev.Message);
|
---|
| 166 | curEventLogEntry.SubItems.Add(ev.TimeGenerated.Date.ToString());
|
---|
| 167 | curEventLogEntry.SubItems.Add(ev.TimeGenerated.TimeOfDay.ToString());
|
---|
[973] | 168 | lvLog.Items.Add(curEventLogEntry);
|
---|
[752] | 169 | }
|
---|
| 170 | }
|
---|
| 171 |
|
---|
[906] | 172 | public void OnEntryWritten(object source, EntryWrittenEventArgs e) {
|
---|
[911] | 173 | UpdateText(e.Entry);
|
---|
[717] | 174 | }
|
---|
| 175 |
|
---|
[973] | 176 | private void UpdateGraph(ZedGraphControl zgc, int jobsDone, int jobsAborted) {
|
---|
| 177 | zgc.GraphPane.GraphObjList.Clear();
|
---|
[906] | 178 | GraphPane myPane = zgc.GraphPane;
|
---|
| 179 |
|
---|
| 180 | // Set the titles and axis labels
|
---|
| 181 | myPane.Legend.IsVisible = false;
|
---|
| 182 | myPane.Title.IsVisible = false;
|
---|
[933] | 183 | myPane.Fill.Type = FillType.None;
|
---|
[906] | 184 |
|
---|
[973] | 185 | double sum = jobsDone + jobsAborted;
|
---|
| 186 | double perDone = jobsDone / sum * 100;
|
---|
| 187 | double perAborted = jobsAborted / sum * 100;
|
---|
[906] | 188 |
|
---|
[973] | 189 | myPane.AddPieSlice(perAborted, Color.Red, 0, "Jobs aborted");
|
---|
| 190 | myPane.AddPieSlice(perDone, Color.Green, 0.1, "Jobs done");
|
---|
[906] | 191 | myPane.AxisChange();
|
---|
[717] | 192 | }
|
---|
[752] | 193 |
|
---|
[906] | 194 | private void HiveClientConsole_Resize(object sender, EventArgs e) {
|
---|
| 195 | //SetSize();
|
---|
[752] | 196 | }
|
---|
[906] | 197 |
|
---|
| 198 | private void lvLog_DoubleClick(object sender, EventArgs e) {
|
---|
| 199 | ListViewItem lvi = lvLog.SelectedItems[0];
|
---|
| 200 | HiveEventEntry hee = new HiveEventEntry(lvi.SubItems[2].Text, lvi.SubItems[3].Text, lvi.SubItems[4].Text, lvi.SubItems[1].Text);
|
---|
| 201 |
|
---|
| 202 | Form EventlogDetails = new EventLogEntryForm(hee);
|
---|
| 203 | EventlogDetails.Show();
|
---|
| 204 | }
|
---|
[973] | 205 |
|
---|
| 206 | private void btConnect_Click(object sender, EventArgs e) {
|
---|
| 207 | IPAddress ipAdress;
|
---|
| 208 | int port;
|
---|
| 209 | ConnectionContainer cc = new ConnectionContainer();
|
---|
| 210 | //IPAddress.TryParse(tbIPAdress.Text.ToString(), ipAdress);
|
---|
| 211 | if (IPAddress.TryParse(tbIPAdress.Text, out ipAdress) && int.TryParse(tbPort.Text, out port)) {
|
---|
| 212 | cc.IPAdress = tbIPAdress.Text;
|
---|
| 213 | cc.Port = port;
|
---|
| 214 | cccc.SetConnection(cc);
|
---|
| 215 | } else {
|
---|
| 216 | MessageBox.Show("IP Adress and/or Port Error", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
---|
| 217 | }
|
---|
| 218 |
|
---|
| 219 | }
|
---|
| 220 |
|
---|
| 221 | private void btnDisconnect_Click(object sender, EventArgs e) {
|
---|
| 222 | cccc.Disconnect();
|
---|
| 223 | }
|
---|
[717] | 224 | }
|
---|
[752] | 225 | } |
---|