#region License Information
/* HeuristicLab
* Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Net;
using System.ServiceModel;
using System.Windows.Forms;
using Calendar;
using HeuristicLab.Hive.Client.Console.ClientService;
using ZedGraph;
using HeuristicLab.Hive.Contracts;
namespace HeuristicLab.Hive.Client.Console
{
#region Delegates
public delegate void UpdateTextDelegate(EventLogEntry ev);
public delegate void OnDialogClosedDelegate(RecurrentEvent e);
#endregion
public partial class HiveClientConsole : Form
{
#region Declarations
private const string ENDPOINTADRESS = "net.tcp://127.0.0.1:8000/ClientConsole/ClientConsoleCommunicator";
private const string EVENTLOGNAME = "Hive Client";
//private EventLog HiveClientEventLog;
private ClientConsoleCommunicatorClient cccc;
private System.Windows.Forms.Timer refreshTimer;
private ListViewColumnSorterDate lvwColumnSorter;
private List onlineTimes = new List();
public OnDialogClosedDelegate dialogClosedDelegate;
#endregion
#region Constructor
public HiveClientConsole()
{
InitializeComponent();
lvwColumnSorter = new ListViewColumnSorterDate();
lvLog.ListViewItemSorter = lvwColumnSorter;
lvwColumnSorter.SortColumn = 3;
lvwColumnSorter.Order = SortOrder.Descending;
InitTimer();
ConnectToClient();
RefreshGui();
//GetEventLog();
InitCalender();
}
#endregion
#region Methods
private void InitTimer()
{
refreshTimer = new System.Windows.Forms.Timer();
refreshTimer.Interval = 1000;
refreshTimer.Tick += new EventHandler(refreshTimer_Tick);
refreshTimer.Start();
}
private void RefreshGui()
{
try
{
cccc.GetStatusInfosAsync();
}
catch (Exception ex)
{
refreshTimer.Stop();
DialogResult res = MessageBox.Show("Connection Error, check if Hive Client is running!", "Connection Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
if (res == DialogResult.OK)
this.Close();
}
}
private void ConnectToClient()
{
try
{
//changed by MB, 16.04.09
//cccc = new ClientConsoleCommunicatorClient(new NetTcpBinding(), new EndpointAddress(ENDPOINTADRESS));
cccc = new ClientConsoleCommunicatorClient(WcfSettings.GetBinding(), new EndpointAddress(ENDPOINTADRESS));
cccc.GetStatusInfosCompleted += new EventHandler(cccc_GetStatusInfosCompleted);
cccc.GetCurrentConnectionCompleted += new EventHandler(cccc_GetCurrentConnectionCompleted);
}
catch (Exception)
{
refreshTimer.Stop();
DialogResult res = MessageBox.Show("Connection Error, check if Hive Client is running!", "Connection Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
if (res == DialogResult.OK)
this.Close();
}
}
//private void GetEventLog()
//{
// HiveClientEventLog = new EventLog(EVENTLOGNAME);
// HiveClientEventLog.Source = EVENTLOGNAME;
// HiveClientEventLog.EntryWritten += new EntryWrittenEventHandler(OnEntryWritten);
// HiveClientEventLog.EnableRaisingEvents = true;
// ListViewItem curEventLogEntry;
// //databinding on listview?
// if (HiveClientEventLog != null && HiveClientEventLog.Entries != null)
// {
// foreach (EventLogEntry ele in HiveClientEventLog.Entries)
// {
// curEventLogEntry = GenerateEventEntry(ele);
// lvLog.Items.Add(curEventLogEntry);
// }
// lvJobDetail.Sort();
// }
//}
private ListViewItem GenerateEventEntry(EventLogEntry ele)
{
ListViewItem curEventLogEntry;
curEventLogEntry = new ListViewItem("", 0);
if (ele.EntryType == EventLogEntryType.Error)
curEventLogEntry = new ListViewItem("", 1);
curEventLogEntry.SubItems.Add(ele.InstanceId.ToString());
curEventLogEntry.SubItems.Add(ele.Message);
curEventLogEntry.SubItems.Add(ele.TimeGenerated.ToString());
return curEventLogEntry;
}
private void UpdateGraph(JobStatus[] jobs)
{
ZedGraphControl zgc = new ZedGraphControl();
GraphPane myPane = zgc.GraphPane;
myPane.GraphObjList.Clear();
myPane.Title.IsVisible = false; // no title
myPane.Border.IsVisible = false; // no border
myPane.Chart.Border.IsVisible = false; // no border around the chart
myPane.XAxis.IsVisible = false; // no x-axis
myPane.YAxis.IsVisible = false; // no y-axis
myPane.Legend.IsVisible = false; // no legend
myPane.Fill.Color = this.BackColor;
myPane.Chart.Fill.Type = FillType.None;
myPane.Fill.Type = FillType.Solid;
double allProgress = 0;
double done = 0;
if (jobs.Length == 0)
{
myPane.AddPieSlice(100, Color.Green, 0.1, "");
}
else
{
for (int i = 0; i < jobs.Length; i++)
{
allProgress += jobs[i].Progress;
}
done = allProgress / jobs.Length;
myPane.AddPieSlice(done, Color.Green, 0, "");
myPane.AddPieSlice(1 - done, Color.Red, 0, "");
}
//Hides the slice labels
PieItem.Default.LabelType = PieLabelType.None;
myPane.AxisChange();
pbGraph.Image = zgc.GetImage();
}
private void InitCalender()
{
dvOnline.StartDate = DateTime.Now;
dvOnline.OnNewAppointment += new EventHandler(DvOnline_OnNewAppointment);
dvOnline.OnResolveAppointments += new EventHandler(DvOnline_OnResolveAppointments);
}
private Appointment CreateAppointment(DateTime startDate, DateTime endDate, bool allDay)
{
Appointment App = new Appointment();
App.StartDate = startDate;
App.EndDate = endDate;
App.AllDayEvent = allDay;
App.BorderColor = Color.Red;
App.Locked = true;
App.Subject = "Online";
App.Recurring = false;
return App;
}
private Appointment CreateAppointment(DateTime startDate, DateTime endDate, bool allDay, bool recurring, Guid recurringId)
{
Appointment App = new Appointment();
App.StartDate = startDate;
App.EndDate = endDate;
App.AllDayEvent = allDay;
App.BorderColor = Color.Red;
App.Locked = true;
App.Subject = "Online";
App.Recurring = recurring;
App.RecurringId = recurringId;
return App;
}
private void DeleteAppointment()
{
onlineTimes.Remove(dvOnline.SelectedAppointment);
}
private void DeleteRecurringAppointment(Guid recurringId)
{
onlineTimes.RemoveAll(a => a.RecurringId.ToString() == dvOnline.SelectedAppointment.RecurringId.ToString());
}
#endregion
#region Events
private void refreshTimer_Tick(object sender, EventArgs e)
{
RefreshGui();
}
private void cccc_GetCurrentConnectionCompleted(object sender, GetCurrentConnectionCompletedEventArgs e)
{
if (e.Error == null)
{
ConnectionContainer curConnection = e.Result;
tbIPAdress.Text = curConnection.IPAdress;
tbPort.Text = curConnection.Port.ToString();
}
else
{
refreshTimer.Stop();
DialogResult res = MessageBox.Show("Connection Error, check if Hive Client is running! - " + e.Error.Message, "Connection Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
if (res == DialogResult.OK)
this.Close();
}
}
private void cccc_GetStatusInfosCompleted(object sender, GetStatusInfosCompletedEventArgs e)
{
if (e.Error == null)
{
StatusCommons sc = e.Result;
lbGuid.Text = sc.ClientGuid.ToString();
lbConnectionStatus.Text = sc.Status.ToString();
lbJobdone.Text = sc.JobsDone.ToString();
lbJobsAborted.Text = sc.JobsAborted.ToString();
lbJobsFetched.Text = sc.JobsFetched.ToString();
this.Text = "Client Console (" + sc.Status.ToString() + ")";
ListViewItem curJobStatusItem;
if (sc.Jobs != null)
{
lvJobDetail.Items.Clear();
double progress;
foreach (JobStatus curJob in sc.Jobs)
{
curJobStatusItem = new ListViewItem(curJob.JobId.ToString());
curJobStatusItem.SubItems.Add(curJob.Since.ToString());
progress = curJob.Progress * 100;
curJobStatusItem.SubItems.Add(progress.ToString());
lvJobDetail.Items.Add(curJobStatusItem);
}
lvJobDetail.Sort();
}
UpdateGraph(sc.Jobs);
if (sc.Status == NetworkEnumWcfConnState.Connected || sc.Status == NetworkEnumWcfConnState.Loggedin)
{
btConnect.Enabled = false;
btnDisconnect.Enabled = true;
lbCs.Text = sc.ConnectedSince.ToString();
cccc.GetCurrentConnectionAsync();
}
else if (sc.Status == NetworkEnumWcfConnState.Disconnected)
{
btConnect.Enabled = true;
btnDisconnect.Enabled = false;
lbCs.Text = String.Empty;
}
else if (sc.Status == NetworkEnumWcfConnState.Failed)
{
btConnect.Enabled = true;
btnDisconnect.Enabled = false;
lbCs.Text = String.Empty;
}
cccc.GetCurrentConnection();
}
else
{
refreshTimer.Stop();
DialogResult res = MessageBox.Show("Connection Error, check if Hive Client is running! - " + e.Error.Message, "Connection Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
if (res == DialogResult.OK)
this.Close();
}
}
private void HiveClientConsole_Load(object sender, EventArgs e)
{
//nothing to do
}
private void UpdateText(EventLogEntry ev)
{
if (this.lvLog.InvokeRequired)
{
this.lvLog.Invoke(new
UpdateTextDelegate(UpdateText), new object[] { ev });
}
else
{
ListViewItem curEventLogEntry = GenerateEventEntry(ev);
lvLog.Items.Add(curEventLogEntry);
lvJobDetail.Sort();
}
}
public void OnEntryWritten(object source, EntryWrittenEventArgs e)
{
UpdateText(e.Entry);
}
private void lvLog_DoubleClick(object sender, EventArgs e)
{
ListViewItem lvi = lvLog.SelectedItems[0];
HiveEventEntry hee = new HiveEventEntry(lvi.SubItems[2].Text, lvi.SubItems[3].Text, lvi.SubItems[1].Text);
Form EventlogDetails = new EventLogEntryForm(hee);
EventlogDetails.Show();
}
private void btConnect_Click(object sender, EventArgs e)
{
IPAddress ipAdress;
int port;
ConnectionContainer cc = new ConnectionContainer();
if (IPAddress.TryParse(tbIPAdress.Text, out ipAdress) && int.TryParse(tbPort.Text, out port))
{
cc.IPAdress = tbIPAdress.Text;
cc.Port = port;
cccc.SetConnectionAsync(cc);
}
else
{
MessageBox.Show("IP Adress and/or Port Error", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void btnDisconnect_Click(object sender, EventArgs e)
{
cccc.DisconnectAsync();
}
private void lvLog_ColumnClick(object sender, ColumnClickEventArgs e)
{
// Determine if clicked column is already the column that is being sorted.
if (e.Column == lvwColumnSorter.SortColumn)
{
// Reverse the current sort direction for this column.
if (lvwColumnSorter.Order == SortOrder.Ascending)
{
lvwColumnSorter.Order = SortOrder.Descending;
}
else
{
lvwColumnSorter.Order = SortOrder.Ascending;
}
}
else
{
// Set the column number that is to be sorted; default to ascending.
lvwColumnSorter.SortColumn = e.Column;
lvwColumnSorter.Order = SortOrder.Ascending;
}
// Perform the sort with these new sort options.
lvLog.Sort();
}
private void btn_clientShutdown_Click(object sender, EventArgs e)
{
DialogResult res = MessageBox.Show("Do you really want to shutdown the Hive Client?", "Hive Client Console", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (res == DialogResult.Yes)
{
cccc.ShutdownClient();
this.Close();
}
}
private void btbDelete_Click(object sender, EventArgs e)
{
Appointment selectedAppointment = dvOnline.SelectedAppointment;
if (dvOnline.SelectedAppointment != null)
{
if (!selectedAppointment.Recurring)
DeleteAppointment();
else
{
DialogResult res = MessageBox.Show("Delete all events in this series?", "Delete recurrences", MessageBoxButtons.YesNo);
if (res != DialogResult.Yes)
DeleteAppointment();
else
DeleteRecurringAppointment(selectedAppointment.RecurringId);
}
}
dvOnline.Invalidate();
}
private void chbade_CheckedChanged(object sender, EventArgs e)
{
txttimeFrom.Visible = !chbade.Checked;
txttimeTo.Visible = !chbade.Checked;
}
private void dvOnline_OnSelectionChanged(object sender, EventArgs e)
{
if (dvOnline.Selection == SelectionType.DateRange)
{
dtpFrom.Text = dvOnline.SelectionStart.ToShortDateString();
dtpTo.Text = dvOnline.SelectionEnd.Date.ToShortDateString();
txttimeFrom.Text = dvOnline.SelectionStart.ToShortTimeString();
txttimeTo.Text = dvOnline.SelectionEnd.ToShortTimeString();
btCreate.Text = "Save";
}
if (dvOnline.Selection == SelectionType.Appointment)
{
dtpFrom.Text = dvOnline.SelectedAppointment.StartDate.ToShortDateString();
dtpTo.Text = dvOnline.SelectedAppointment.EndDate.ToShortDateString();
txttimeFrom.Text = dvOnline.SelectedAppointment.StartDate.ToShortTimeString();
txttimeTo.Text = dvOnline.SelectedAppointment.EndDate.ToShortTimeString();
//also change the caption of the save button
btCreate.Text = "Save changes";
}
if (dvOnline.Selection == SelectionType.None)
{
//also change the caption of the save button
btCreate.Text = "Save";
}
}
private void Connection_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Return)
btConnect_Click(null, null);
}
private void mcOnline_DateChanged(object sender, DateRangeEventArgs e)
{
dvOnline.StartDate = mcOnline.SelectionStart;
}
private bool CreateAppointment()
{
DateTime from, to;
if (!string.IsNullOrEmpty(dtpFrom.Text) && !string.IsNullOrEmpty(dtpTo.Text))
{
if (chbade.Checked)
{
//whole day appointment, only dates are visible
if (DateTime.TryParse(dtpFrom.Text + " " + txttimeFrom.Text, out from) && DateTime.TryParse(dtpTo.Text + " " + txttimeTo.Text, out to) && from < to)
onlineTimes.Add(CreateAppointment(from, to.AddDays(1), true));
else
MessageBox.Show("Incorrect date format", "Schedule Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else if (!string.IsNullOrEmpty(txttimeFrom.Text) && !string.IsNullOrEmpty(txttimeTo.Text))
{
//Timeframe appointment
if (DateTime.TryParse(dtpFrom.Text + " " + txttimeFrom.Text, out from) && DateTime.TryParse(dtpTo.Text + " " + txttimeTo.Text, out to) && from < to)
{
if (from.Date == to.Date)
onlineTimes.Add(CreateAppointment(from, to, false));
else
{
//more than 1 day selected
while (from.Date != to.Date)
{
onlineTimes.Add(CreateAppointment(from, new DateTime(from.Year, from.Month, from.Day, to.Hour, to.Minute, 0, 0), false));
from = from.AddDays(1);
}
onlineTimes.Add(CreateAppointment(from, new DateTime(from.Year, from.Month, from.Day, to.Hour, to.Minute, 0, 0), false));
}
}
else
MessageBox.Show("Incorrect date format", "Schedule Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
dvOnline.Invalidate();
return true;
}
else
{
MessageBox.Show("Error in create appointment, please fill out all textboxes!", "Schedule Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
return false;
}
}
private void btCreate_Click(object sender, EventArgs e)
{
if (dvOnline.Selection != SelectionType.Appointment)
{
CreateAppointment();
}
else
{
//now we want to change an existing appointment
if (!dvOnline.SelectedAppointment.Recurring)
{
if (CreateAppointment())
DeleteAppointment();
}
else
{
//change recurring appointment
//check, if only selected appointment has to change or whole recurrence
DialogResult res = MessageBox.Show("Change all events in this series?", "Change recurrences", MessageBoxButtons.YesNo);
if (res != DialogResult.Yes)
{
if (CreateAppointment())
DeleteAppointment();
}
else
ChangeRecurrenceAppointment(dvOnline.SelectedAppointment.RecurringId);
}
}
}
private void ChangeRecurrenceAppointment(Guid recurringId)
{
List recurringAppointments = onlineTimes.Where(appointment => appointment.RecurringId == recurringId).ToList();
recurringAppointments.ForEach(appointment => appointment.StartDate = DateTime.Parse(appointment.StartDate.Date + " " + txttimeFrom.Text));
recurringAppointments.ForEach(appointment => appointment.EndDate = DateTime.Parse(appointment.EndDate.Date + " " + txttimeTo.Text));
DeleteRecurringAppointment(recurringId);
onlineTimes.AddRange(recurringAppointments);
}
private void DvOnline_OnResolveAppointments(object sender, ResolveAppointmentsEventArgs e)
{
List Apps = new List();
foreach (Appointment m_App in onlineTimes)
if ((m_App.StartDate >= e.StartDate) &&
(m_App.StartDate <= e.EndDate))
Apps.Add(m_App);
e.Appointments = Apps;
}
private void DvOnline_OnNewAppointment(object sender, NewAppointmentEventArgs e)
{
Appointment Appointment = new Appointment();
Appointment.StartDate = e.StartDate;
Appointment.EndDate = e.EndDate;
onlineTimes.Add(Appointment);
}
private void btnRecurrence_Click(object sender, EventArgs e)
{
Recurrence recurrence = new Recurrence();
recurrence.dialogClosedDelegate = new OnDialogClosedDelegate(this.DialogClosed);
recurrence.Show();
}
public void DialogClosed(RecurrentEvent e)
{
CreateDailyRecurrenceAppointments(e.DateFrom, e.DateTo, e.AllDay, e.IncWeeks, e.WeekDays);
}
#endregion
private void CreateDailyRecurrenceAppointments(DateTime dateFrom, DateTime dateTo, bool allDay, int incWeek, HashSet daysOfWeek)
{
DateTime incDate = dateFrom;
Guid guid = Guid.NewGuid();
while (incDate.Date <= dateTo.Date)
{
if (daysOfWeek.Contains(incDate.Date.DayOfWeek))
onlineTimes.Add(CreateAppointment(incDate, new DateTime(incDate.Year, incDate.Month, incDate.Day, dateTo.Hour, dateTo.Minute, 0), allDay, true, guid));
incDate = incDate.AddDays(1);
}
dvOnline.Invalidate();
}
}
}