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
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using System.Drawing;
|
---|
24 | using System.Linq;
|
---|
25 | using HeuristicLab.Core.Views;
|
---|
26 | using HeuristicLab.MainForm;
|
---|
27 |
|
---|
28 | namespace HeuristicLab.Clients.Hive.Views {
|
---|
29 | [View("StateLogGanttChartList View")]
|
---|
30 | [Content(typeof(StateLogListList), true)]
|
---|
31 | public sealed partial class StateLogGanttChartListView : ItemView {
|
---|
32 | public new StateLogListList Content {
|
---|
33 | get { return (StateLogListList)base.Content; }
|
---|
34 | set { base.Content = value; }
|
---|
35 | }
|
---|
36 |
|
---|
37 | public StateLogGanttChartListView() {
|
---|
38 | InitializeComponent();
|
---|
39 | }
|
---|
40 |
|
---|
41 | protected override void DeregisterContentEvents() {
|
---|
42 | // Deregister your event handlers here
|
---|
43 | base.DeregisterContentEvents();
|
---|
44 | }
|
---|
45 |
|
---|
46 | protected override void RegisterContentEvents() {
|
---|
47 | base.RegisterContentEvents();
|
---|
48 | // Register your event handlers here
|
---|
49 | }
|
---|
50 |
|
---|
51 | #region Event Handlers (Content)
|
---|
52 | // Put event handlers of the content here
|
---|
53 | #endregion
|
---|
54 |
|
---|
55 | protected override void OnContentChanged() {
|
---|
56 | base.OnContentChanged();
|
---|
57 | if (Content == null) {
|
---|
58 | // Add code when content has been changed and is null
|
---|
59 | ganttChart.Reset();
|
---|
60 | } else {
|
---|
61 | // Add code when content has been changed and is not null
|
---|
62 | ganttChart.Reset();
|
---|
63 | SetupCategories(ganttChart);
|
---|
64 | if (Content.Count > 0) {
|
---|
65 | DateTime maxValue = Content.Max(x => x.Count > 0 ? x.Max(y => y.DateTime) : DateTime.MinValue);
|
---|
66 | DateTime upperLimit;
|
---|
67 | if (Content.All(x => x.Count > 0 ? (x.Last().State == JobState.Finished || x.Last().State == JobState.Failed || x.Last().State == JobState.Aborted) : true)) {
|
---|
68 | upperLimit = DateTime.FromOADate(Math.Min(DateTime.Now.AddSeconds(10).ToOADate(), maxValue.AddSeconds(10).ToOADate()));
|
---|
69 | } else {
|
---|
70 | upperLimit = DateTime.Now;
|
---|
71 | }
|
---|
72 |
|
---|
73 | for (int i = 0; i < Content.Count; i++) {
|
---|
74 | for (int j = 0; j < Content[i].Count - 1; j++) {
|
---|
75 | if (Content[i][j].State != JobState.Offline)
|
---|
76 | AddData(ganttChart, i.ToString(), Content[i][j], Content[i][j + 1], upperLimit);
|
---|
77 | }
|
---|
78 | if (Content[i].Count > 0) {
|
---|
79 | AddData(ganttChart, i.ToString(), Content[i][Content[i].Count - 1], null, upperLimit);
|
---|
80 | }
|
---|
81 | }
|
---|
82 | }
|
---|
83 | }
|
---|
84 | }
|
---|
85 |
|
---|
86 | public static void SetupCategories(GanttChart ganttChart) {
|
---|
87 | ganttChart.AddCategory(JobState.Offline.ToString(), Color.Gainsboro);
|
---|
88 | ganttChart.AddCategory(JobState.Waiting.ToString(), Color.NavajoWhite);
|
---|
89 | ganttChart.AddCategory(JobState.Paused.ToString(), Color.PaleVioletRed);
|
---|
90 | ganttChart.AddCategory(JobState.Transferring.ToString(), Color.CornflowerBlue);
|
---|
91 | ganttChart.AddCategory(JobState.Calculating.ToString(), Color.DarkGreen);
|
---|
92 | ganttChart.AddCategory(JobState.Finished.ToString(), Color.White);
|
---|
93 | ganttChart.AddCategory(JobState.Aborted.ToString(), Color.Orange);
|
---|
94 | ganttChart.AddCategory(JobState.Failed.ToString(), Color.Red);
|
---|
95 | }
|
---|
96 |
|
---|
97 | public static void AddData(GanttChart ganttChart, string name, StateLog from, StateLog to, DateTime upperLimit) {
|
---|
98 | DateTime until = to != null ? to.DateTime : upperLimit;
|
---|
99 | TimeSpan duration = until - from.DateTime;
|
---|
100 | string tooltip = string.Format("State: {0} " + Environment.NewLine + " Duration: {1} " + Environment.NewLine + " {2} - {3}", from.State, duration, from.DateTime, until);
|
---|
101 | if (!string.IsNullOrEmpty(from.Exception))
|
---|
102 | tooltip += Environment.NewLine + from.Exception;
|
---|
103 | ganttChart.AddData(name, from.State.ToString(), from.DateTime, until, tooltip, false);
|
---|
104 | }
|
---|
105 |
|
---|
106 | protected override void SetEnabledStateOfControls() {
|
---|
107 | base.SetEnabledStateOfControls();
|
---|
108 | // Enable or disable controls based on whether the content is null or the view is set readonly
|
---|
109 | }
|
---|
110 |
|
---|
111 | #region Event Handlers (child controls)
|
---|
112 | // Put event handlers of child controls here.
|
---|
113 | #endregion
|
---|
114 | }
|
---|
115 | }
|
---|