1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2011 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.Threading;
|
---|
25 | using HeuristicLab.Common;
|
---|
26 |
|
---|
27 | namespace HeuristicLab.Clients.Hive {
|
---|
28 | public class JobResultPoller {
|
---|
29 | private bool stopRequested { get; set; }
|
---|
30 | private AutoResetEvent waitHandle;
|
---|
31 | private Thread thread;
|
---|
32 |
|
---|
33 | private Guid jobId;
|
---|
34 | public Guid JobId {
|
---|
35 | get { return jobId; }
|
---|
36 | set { jobId = value; }
|
---|
37 | }
|
---|
38 |
|
---|
39 | private TimeSpan interval;
|
---|
40 | public TimeSpan Interval {
|
---|
41 | get { return interval; }
|
---|
42 | set { interval = value; }
|
---|
43 | }
|
---|
44 |
|
---|
45 | private bool isPolling;
|
---|
46 | public bool IsPolling {
|
---|
47 | get { return isPolling; }
|
---|
48 | set {
|
---|
49 | if (isPolling != value) {
|
---|
50 | isPolling = value;
|
---|
51 | OnIsPollingChanged();
|
---|
52 | }
|
---|
53 | }
|
---|
54 | }
|
---|
55 |
|
---|
56 | private bool autoResumeOnException = false;
|
---|
57 | public bool AutoResumeOnException {
|
---|
58 | get { return autoResumeOnException; }
|
---|
59 | set { autoResumeOnException = value; }
|
---|
60 | }
|
---|
61 |
|
---|
62 |
|
---|
63 | public JobResultPoller(Guid jobId, TimeSpan interval) {
|
---|
64 | this.isPolling = false;
|
---|
65 | this.jobId = jobId;
|
---|
66 | this.interval = interval;
|
---|
67 | }
|
---|
68 |
|
---|
69 | public void Start() {
|
---|
70 | IsPolling = true;
|
---|
71 | stopRequested = false;
|
---|
72 | thread = new Thread(RunPolling);
|
---|
73 | thread.Start();
|
---|
74 | }
|
---|
75 |
|
---|
76 | public void Stop() {
|
---|
77 | stopRequested = true;
|
---|
78 | waitHandle.Set();
|
---|
79 | IsPolling = false;
|
---|
80 | thread = null;
|
---|
81 | }
|
---|
82 |
|
---|
83 | private void RunPolling() {
|
---|
84 | while (true) {
|
---|
85 | IsPolling = true;
|
---|
86 | try {
|
---|
87 | waitHandle = new AutoResetEvent(false);
|
---|
88 | while (!stopRequested) {
|
---|
89 | OnPollingStarted();
|
---|
90 | FetchJobResults();
|
---|
91 | OnPollingFinished();
|
---|
92 | waitHandle.WaitOne(Interval);
|
---|
93 | }
|
---|
94 | waitHandle.Close();
|
---|
95 | }
|
---|
96 | catch (Exception e) {
|
---|
97 | OnExceptionOccured(e);
|
---|
98 | }
|
---|
99 | finally {
|
---|
100 | IsPolling = false;
|
---|
101 | }
|
---|
102 | if (stopRequested) return;
|
---|
103 | if (!autoResumeOnException) return;
|
---|
104 | }
|
---|
105 | }
|
---|
106 |
|
---|
107 | public IEnumerable<LightweightTask> FetchJobResults() {
|
---|
108 | return ServiceLocator.Instance.CallHiveService(service => {
|
---|
109 | var responses = new List<LightweightTask>();
|
---|
110 | responses.AddRange(service.GetLightweightJobTasks(jobId));
|
---|
111 | OnJobResultsReceived(responses);
|
---|
112 | return responses;
|
---|
113 | });
|
---|
114 | }
|
---|
115 |
|
---|
116 | public event EventHandler<EventArgs<IEnumerable<LightweightTask>>> JobResultsReceived;
|
---|
117 | private void OnJobResultsReceived(IEnumerable<LightweightTask> lightweightJobs) {
|
---|
118 | var handler = JobResultsReceived;
|
---|
119 | if (handler != null) handler(this, new EventArgs<IEnumerable<LightweightTask>>(lightweightJobs));
|
---|
120 | }
|
---|
121 |
|
---|
122 | public event EventHandler<EventArgs<Exception>> ExceptionOccured;
|
---|
123 | private void OnExceptionOccured(Exception e) {
|
---|
124 | var handler = ExceptionOccured;
|
---|
125 | if (handler != null) handler(this, new EventArgs<Exception>(e));
|
---|
126 | }
|
---|
127 |
|
---|
128 | public event EventHandler IsPollingChanged;
|
---|
129 | private void OnIsPollingChanged() {
|
---|
130 | var handler = IsPollingChanged;
|
---|
131 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
132 | }
|
---|
133 | public event EventHandler PollingStarted;
|
---|
134 | private void OnPollingStarted() {
|
---|
135 | var handler = PollingStarted;
|
---|
136 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
137 | }
|
---|
138 | public event EventHandler PollingFinished;
|
---|
139 | private void OnPollingFinished() {
|
---|
140 | var handler = PollingFinished;
|
---|
141 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
142 | }
|
---|
143 | }
|
---|
144 | }
|
---|