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.IO;
|
---|
24 | using System.Threading;
|
---|
25 | using HeuristicLab.Clients.Hive.SlaveCore.Properties;
|
---|
26 | using HeuristicLab.Common;
|
---|
27 | using HeuristicLab.Core;
|
---|
28 | using HeuristicLab.PluginInfrastructure.Sandboxing;
|
---|
29 |
|
---|
30 | namespace HeuristicLab.Clients.Hive.SlaveCore {
|
---|
31 |
|
---|
32 | /// <summary>
|
---|
33 | /// Manages a single task and it's appdomain.
|
---|
34 | /// </summary>
|
---|
35 | public class SlaveTask : MarshalByRefObject {
|
---|
36 | private Executor executor;
|
---|
37 | private AppDomain appDomain;
|
---|
38 | private Semaphore waitForStartBeforeKillSem;
|
---|
39 | private bool executorMonitoringRun;
|
---|
40 | private Thread executorMonitoringThread;
|
---|
41 | private PluginManager pluginManager;
|
---|
42 | private ILog log;
|
---|
43 | public Guid TaskId { get; private set; }
|
---|
44 | public bool IsPrepared { get; private set; }
|
---|
45 |
|
---|
46 | private int coresNeeded;
|
---|
47 | public int CoresNeeded {
|
---|
48 | get { return coresNeeded; }
|
---|
49 | set { this.coresNeeded = value; }
|
---|
50 | }
|
---|
51 |
|
---|
52 | public TimeSpan ExecutionTime {
|
---|
53 | get { return executor != null ? executor.ExecutionTime : TimeSpan.Zero; }
|
---|
54 | }
|
---|
55 |
|
---|
56 | public SlaveTask(PluginManager pluginManager, int coresNeeded, ILog log) {
|
---|
57 | this.pluginManager = pluginManager;
|
---|
58 | this.coresNeeded = coresNeeded;
|
---|
59 | this.log = log;
|
---|
60 | waitForStartBeforeKillSem = new Semaphore(0, 1);
|
---|
61 | executorMonitoringRun = true;
|
---|
62 | IsPrepared = false;
|
---|
63 | }
|
---|
64 |
|
---|
65 | public void StartJobAsync(Task task, TaskData taskData) {
|
---|
66 | try {
|
---|
67 | this.TaskId = task.Id;
|
---|
68 | Prepare(task);
|
---|
69 | StartTaskInAppDomain(taskData);
|
---|
70 | }
|
---|
71 | catch (Exception) {
|
---|
72 | // make sure to clean up if something went wrong
|
---|
73 | DisposeAppDomain();
|
---|
74 | throw;
|
---|
75 | }
|
---|
76 | }
|
---|
77 |
|
---|
78 | public void PauseTask() {
|
---|
79 | if (!IsPrepared) throw new AppDomainNotCreatedException();
|
---|
80 | if (!executor.IsPausing && !executor.IsStopping) executor.Pause();
|
---|
81 | }
|
---|
82 |
|
---|
83 | public void StopTask() {
|
---|
84 | if (!IsPrepared) throw new AppDomainNotCreatedException();
|
---|
85 | if (!executor.IsPausing && !executor.IsStopping) executor.Stop();
|
---|
86 | }
|
---|
87 |
|
---|
88 | private void Prepare(Task task) {
|
---|
89 | string pluginDir = Path.Combine(pluginManager.PluginTempBaseDir, task.Id.ToString());
|
---|
90 | string configFileName;
|
---|
91 | pluginManager.PreparePlugins(task, out configFileName);
|
---|
92 | appDomain = CreateAppDomain(task, pluginDir, configFileName);
|
---|
93 | IsPrepared = true;
|
---|
94 | }
|
---|
95 |
|
---|
96 | private AppDomain CreateAppDomain(Task task, String pluginDir, string configFileName) {
|
---|
97 | if (task.IsPrivileged) {
|
---|
98 | appDomain = SandboxManager.CreateAndInitPrivilegedSandbox(task.Id.ToString(), pluginDir, Path.Combine(pluginDir, configFileName));
|
---|
99 | } else {
|
---|
100 | appDomain = SandboxManager.CreateAndInitSandbox(task.Id.ToString(), pluginDir, Path.Combine(pluginDir, configFileName));
|
---|
101 | }
|
---|
102 | appDomain.UnhandledException += new UnhandledExceptionEventHandler(AppDomain_UnhandledException);
|
---|
103 |
|
---|
104 | log.LogMessage("Creating AppDomain");
|
---|
105 | executor = (Executor)appDomain.CreateInstanceAndUnwrap(typeof(Executor).Assembly.GetName().Name, typeof(Executor).FullName);
|
---|
106 |
|
---|
107 | executor.TaskId = task.Id;
|
---|
108 | executor.CoresNeeded = task.CoresNeeded;
|
---|
109 | executor.MemoryNeeded = task.MemoryNeeded;
|
---|
110 | return appDomain;
|
---|
111 | }
|
---|
112 |
|
---|
113 | private void StartTaskInAppDomain(TaskData taskData) {
|
---|
114 | executor.Start(taskData.Data);
|
---|
115 | waitForStartBeforeKillSem.Release();
|
---|
116 | StartExecutorMonitoringThread();
|
---|
117 | }
|
---|
118 |
|
---|
119 | public void DisposeAppDomain() {
|
---|
120 | log.LogMessage(string.Format("Shutting down Appdomain for Task {0}", TaskId));
|
---|
121 | StopExecutorMonitoringThread();
|
---|
122 |
|
---|
123 | if (executor != null) {
|
---|
124 | executor.Dispose();
|
---|
125 | }
|
---|
126 |
|
---|
127 | if (appDomain != null) {
|
---|
128 | appDomain.UnhandledException -= new UnhandledExceptionEventHandler(AppDomain_UnhandledException);
|
---|
129 | int repeat = Settings.Default.PluginDeletionRetries;
|
---|
130 | while (repeat > 0) {
|
---|
131 | try {
|
---|
132 | waitForStartBeforeKillSem.WaitOne();
|
---|
133 | AppDomain.Unload(appDomain);
|
---|
134 | waitForStartBeforeKillSem.Dispose();
|
---|
135 | repeat = 0;
|
---|
136 | }
|
---|
137 | catch (CannotUnloadAppDomainException) {
|
---|
138 | log.LogMessage("Could not unload AppDomain, will try again in 1 sec.");
|
---|
139 | Thread.Sleep(Settings.Default.PluginDeletionTimeout);
|
---|
140 | repeat--;
|
---|
141 | if (repeat == 0) {
|
---|
142 | throw; // rethrow and let app crash
|
---|
143 | }
|
---|
144 | }
|
---|
145 | }
|
---|
146 | }
|
---|
147 | pluginManager.DeletePluginsForJob(TaskId);
|
---|
148 | GC.Collect();
|
---|
149 | }
|
---|
150 |
|
---|
151 | private void AppDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) {
|
---|
152 | DisposeAppDomain();
|
---|
153 | OnExceptionOccured(new Exception("Unhandled exception: " + e.ExceptionObject.ToString()));
|
---|
154 | }
|
---|
155 |
|
---|
156 | public TaskData GetTaskData() {
|
---|
157 | return executor.GetTaskData();
|
---|
158 | }
|
---|
159 |
|
---|
160 | #region ExecutorMonitorThread
|
---|
161 | private void StartExecutorMonitoringThread() {
|
---|
162 | executorMonitoringThread = new Thread(MonitorExecutor);
|
---|
163 | executorMonitoringThread.Start();
|
---|
164 | }
|
---|
165 |
|
---|
166 | private void StopExecutorMonitoringThread() {
|
---|
167 | if (executorMonitoringThread != null) {
|
---|
168 | if (executorMonitoringRun) {
|
---|
169 | executorMonitoringRun = false;
|
---|
170 | executor.ExecutorCommandQueue.AddMessage(ExecutorMessageType.StopExecutorMonitoringThread);
|
---|
171 | }
|
---|
172 | }
|
---|
173 | }
|
---|
174 |
|
---|
175 | /// <summary>
|
---|
176 | /// Because the executor is in an appdomain and is not able to call back
|
---|
177 | /// (because of security -> lease time for marshall-by-ref object is 5 min),
|
---|
178 | /// we have to poll the executor for events we have to react to (e.g. task finished...)
|
---|
179 | /// </summary>
|
---|
180 | private void MonitorExecutor() {
|
---|
181 | while (executorMonitoringRun) {
|
---|
182 | //this blocks through the appdomain border, that's why the lease gets renewed
|
---|
183 | ExecutorMessage message = executor.ExecutorCommandQueue.GetMessage();
|
---|
184 |
|
---|
185 | switch (message.MessageType) {
|
---|
186 | case ExecutorMessageType.TaskStarted:
|
---|
187 | OnTaskStarted();
|
---|
188 | break;
|
---|
189 |
|
---|
190 | case ExecutorMessageType.TaskPaused:
|
---|
191 | executorMonitoringRun = false;
|
---|
192 | OnTaskPaused();
|
---|
193 | DisposeAppDomain();
|
---|
194 | break;
|
---|
195 |
|
---|
196 | case ExecutorMessageType.TaskStopped:
|
---|
197 | executorMonitoringRun = false;
|
---|
198 | OnTaskStopped();
|
---|
199 | DisposeAppDomain();
|
---|
200 | break;
|
---|
201 |
|
---|
202 | case ExecutorMessageType.TaskFailed:
|
---|
203 | executorMonitoringRun = false;
|
---|
204 | OnTaskFailed(new TaskFailedException(executor.CurrentExceptionStr));
|
---|
205 | DisposeAppDomain();
|
---|
206 | break;
|
---|
207 |
|
---|
208 | case ExecutorMessageType.StopExecutorMonitoringThread:
|
---|
209 | executorMonitoringRun = false;
|
---|
210 | break;
|
---|
211 |
|
---|
212 | case ExecutorMessageType.ExceptionOccured:
|
---|
213 | executorMonitoringRun = false;
|
---|
214 | DisposeAppDomain();
|
---|
215 | if (executor.CurrentException != null) {
|
---|
216 | OnExceptionOccured(executor.CurrentException);
|
---|
217 | } else {
|
---|
218 | OnExceptionOccured(new Exception(string.Format("Unknow exception occured in Executor for task {0}", TaskId)));
|
---|
219 | }
|
---|
220 | break;
|
---|
221 | }
|
---|
222 | }
|
---|
223 | }
|
---|
224 | #endregion
|
---|
225 |
|
---|
226 | public event EventHandler<EventArgs<Guid>> TaskStarted;
|
---|
227 | private void OnTaskStarted() {
|
---|
228 | var handler = TaskStarted;
|
---|
229 | if (handler != null) handler(this, new EventArgs<Guid>(this.TaskId));
|
---|
230 | }
|
---|
231 |
|
---|
232 | public event EventHandler<EventArgs<Guid>> TaskStopped;
|
---|
233 | private void OnTaskStopped() {
|
---|
234 | var handler = TaskStopped;
|
---|
235 | if (handler != null) handler(this, new EventArgs<Guid>(this.TaskId));
|
---|
236 | }
|
---|
237 |
|
---|
238 | public event EventHandler<EventArgs<Guid>> TaskPaused;
|
---|
239 | private void OnTaskPaused() {
|
---|
240 | var handler = TaskPaused;
|
---|
241 | if (handler != null) handler(this, new EventArgs<Guid>(this.TaskId));
|
---|
242 | }
|
---|
243 |
|
---|
244 | public event EventHandler<EventArgs<Guid>> TaskAborted;
|
---|
245 | private void OnTaskAborted() {
|
---|
246 | var handler = TaskAborted;
|
---|
247 | if (handler != null) handler(this, new EventArgs<Guid>(this.TaskId));
|
---|
248 | }
|
---|
249 |
|
---|
250 | public event EventHandler<EventArgs<Guid, Exception>> TaskFailed;
|
---|
251 | private void OnTaskFailed(Exception exception) {
|
---|
252 | var handler = TaskFailed;
|
---|
253 | if (handler != null) handler(this, new EventArgs<Guid, Exception>(this.TaskId, exception));
|
---|
254 | }
|
---|
255 |
|
---|
256 | public event EventHandler<EventArgs<Guid, Exception>> ExceptionOccured;
|
---|
257 | private void OnExceptionOccured(Exception exception) {
|
---|
258 | var handler = ExceptionOccured;
|
---|
259 | if (handler != null) handler(this, new EventArgs<Guid, Exception>(this.TaskId, exception));
|
---|
260 | }
|
---|
261 | }
|
---|
262 | }
|
---|