Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Core/Core.cs @ 1219

Last change on this file since 1219 was 1219, checked in by kgrading, 15 years ago

implementation done (#493)

File size: 11.3 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Hive.Client.ExecutionEngine;
27using HeuristicLab.Hive.Client.Common;
28using System.Threading;
29using System.Reflection;
30using System.Diagnostics;
31using System.Security.Permissions;
32using System.Security.Policy;
33using System.Security;
34using HeuristicLab.Hive.Client.Communication;
35using HeuristicLab.Hive.Contracts.BusinessObjects;
36using HeuristicLab.Hive.Contracts;
37using System.Runtime.Remoting.Messaging;
38using HeuristicLab.PluginInfrastructure;
39using System.ServiceModel;
40using System.ServiceModel.Description;
41using HeuristicLab.Hive.Client.Core.ClientConsoleService;
42using HeuristicLab.Hive.Client.Core.ConfigurationManager;
43using HeuristicLab.Hive.Client.Communication.ServerService;
44using HeuristicLab.Hive.JobBase;
45using HeuristicLab.Hive.Client.Core.JobStorrage;
46
47
48namespace HeuristicLab.Hive.Client.Core {
49  /// <summary>
50  /// The core component of the Hive Client
51  /// </summary>
52  public class Core: MarshalByRefObject {
53    public delegate string GetASnapshotDelegate();
54
55    public static Object Locker { get; set; }
56
57    public static bool ShutdownFlag { get; set; }
58
59    Dictionary<long, Executor> engines = new Dictionary<long, Executor>();
60    Dictionary<long, AppDomain> appDomains = new Dictionary<long, AppDomain>();
61    Dictionary<long, Job> jobs = new Dictionary<long, Job>();
62
63    private WcfService wcfService;
64    private Heartbeat beat;
65   
66    /// <summary>
67    /// Main Method for the client
68    /// </summary>
69    public void Start() {
70      Core.Locker = new Object();
71      ShutdownFlag = false;
72
73      Logging.GetInstance().Info(this.ToString(), "Hive Client started");
74      ClientConsoleServer server = new ClientConsoleServer();
75      server.StartClientConsoleServer(new Uri("net.tcp://127.0.0.1:8000/ClientConsole/"));
76
77      ConfigManager manager = ConfigManager.Instance;
78      manager.Core = this;
79     
80      //Register all Wcf Service references
81      wcfService = WcfService.Instance;
82      wcfService.LoginCompleted += new EventHandler<LoginCompletedEventArgs>(wcfService_LoginCompleted);
83      wcfService.PullJobCompleted += new EventHandler<PullJobCompletedEventArgs>(wcfService_PullJobCompleted);
84      wcfService.SendJobResultCompleted += new EventHandler<SendJobResultCompletedEventArgs>(wcfService_SendJobResultCompleted);
85      wcfService.ConnectionRestored += new EventHandler(wcfService_ConnectionRestored);
86      wcfService.ServerChanged += new EventHandler(wcfService_ServerChanged);
87      wcfService.Connected += new EventHandler(wcfService_Connected);
88      //Recover Server IP and Port from the Settings Framework
89      ConnectionContainer cc = ConfigManager.Instance.GetServerIPAndPort();     
90      if (cc.IPAdress != String.Empty && cc.Port != 0) {
91        wcfService.Connect(cc.IPAdress, cc.Port);
92      }
93   
94      //Initialize the heartbeat
95      beat = new Heartbeat { Interval = 10000 };
96      beat.StartHeartbeat();     
97
98      MessageQueue queue = MessageQueue.GetInstance();
99     
100      //Main processing loop
101      while (!ShutdownFlag) {
102        MessageContainer container = queue.GetMessage();
103        Debug.WriteLine("Main loop received this message: " + container.Message.ToString());
104        Logging.GetInstance().Info(this.ToString(), container.Message.ToString());
105        DetermineAction(container);
106      }
107    }
108
109    /// <summary>
110    /// Reads and analyzes the Messages from the MessageQueue and starts corresponding actions
111    /// </summary>
112    /// <param name="container">The Container, containing the message</param>
113    private void DetermineAction(MessageContainer container) {
114      switch (container.Message) {
115        //Server requests to abort a job
116        case MessageContainer.MessageType.AbortJob:
117          engines[container.JobId].Abort();
118          break;
119        //Job has been successfully aborted
120        case MessageContainer.MessageType.JobAborted:
121          Debug.WriteLine("-- Job Aborted Message received");
122          break;
123        //Request a Snapshot from the Execution Engine
124        case MessageContainer.MessageType.RequestSnapshot:
125          engines[container.JobId].RequestSnapshot();
126          break;
127        //Snapshot is ready and can be sent back to the Server
128        case MessageContainer.MessageType.SnapshotReady:
129          Thread ssr = new Thread(new ParameterizedThreadStart(GetSnapshot));
130          ssr.Start(container.JobId);         
131          break;
132        //Pull a Job from the Server
133        case MessageContainer.MessageType.FetchJob:
134          wcfService.PullJobAsync(ConfigManager.Instance.GetClientInfo().ClientId);
135          break;         
136        //A Job has finished and can be sent back to the server
137        case MessageContainer.MessageType.FinishedJob:
138          Thread finThread = new Thread(new ParameterizedThreadStart(GetFinishedJob));
139          finThread.Start(container.JobId);         
140          break;     
141        //Hard shutdown of the client
142        case MessageContainer.MessageType.Shutdown:
143          ShutdownFlag = true;
144          beat.StopHeartBeat();
145          break;
146      }
147    }
148
149    //Asynchronous Threads for interaction with the Execution Engine
150    #region Async Threads for the EE
151   
152    private void GetFinishedJob(object jobId) {
153      long jId = (long)jobId;
154      byte[] sJob = engines[jId].GetFinishedJob();
155
156      if (WcfService.Instance.ConnState == NetworkEnum.WcfConnState.Connected) {
157        wcfService.SendJobResultAsync(ConfigManager.Instance.GetClientInfo().ClientId,
158          jId,
159          sJob,
160          1,
161          null,
162          true);
163      } else {
164        JobStorrageManager.PersistObjectToDisc(wcfService.ServerIP, wcfService.ServerPort, jId, sJob);
165        AppDomain.Unload(appDomains[jId]);
166        appDomains.Remove(jId);
167        engines.Remove(jId);
168        jobs.Remove(jId);
169      }
170    }
171
172    private void GetSnapshot(object jobId) {
173      long jId = (long)jobId;
174      byte[] obj = engines[jId].GetSnapshot();
175      wcfService.SendJobResultAsync(ConfigManager.Instance.GetClientInfo().ClientId,
176        jId,
177        obj,
178        engines[jId].Progress,
179        null,
180        false);
181    }
182
183    #endregion
184
185    //Eventhandlers for the communication with the wcf Layer
186    #region wcfService Events
187
188    void wcfService_LoginCompleted(object sender, LoginCompletedEventArgs e) {
189      if (e.Result.Success) {
190        Logging.GetInstance().Info(this.ToString(), "Login completed to Hive Server @ " + DateTime.Now);       
191      } else
192        Logging.GetInstance().Error(this.ToString(), e.Result.StatusMessage);
193    }   
194
195    void wcfService_PullJobCompleted(object sender, PullJobCompletedEventArgs e) {
196      if (e.Result.StatusMessage != ApplicationConstants.RESPONSE_COMMUNICATOR_NO_JOBS_LEFT) {
197        bool sandboxed = true;
198
199        PluginManager.Manager.Initialize();
200        AppDomain appDomain = PluginManager.Manager.CreateAndInitAppDomainWithSandbox(e.Result.Job.Id.ToString(), sandboxed, typeof(TestJob));
201        appDomain.UnhandledException += new UnhandledExceptionEventHandler(appDomain_UnhandledException);
202        lock (Locker) {                   
203          if (!jobs.ContainsKey(e.Result.Job.Id)) {
204            jobs.Add(e.Result.Job.Id, e.Result.Job);
205            appDomains.Add(e.Result.Job.Id, appDomain);
206
207            Executor engine = (Executor)appDomain.CreateInstanceAndUnwrap(typeof(Executor).Assembly.GetName().Name, typeof(Executor).FullName);
208            engine.JobId = e.Result.Job.Id;
209            engine.Queue = MessageQueue.GetInstance();
210            engine.Start(e.Result.Job.SerializedJob);
211            engines.Add(e.Result.Job.Id, engine);
212
213            ClientStatusInfo.JobsFetched++;
214
215            Debug.WriteLine("Increment FetchedJobs to:" + ClientStatusInfo.JobsFetched);
216          }
217        }
218      }
219    }
220
221    void wcfService_SendJobResultCompleted(object sender, SendJobResultCompletedEventArgs e) {
222      if (e.Result.Success) {       
223        lock (Locker) {
224          //if the engine is running again -> we sent an snapshot. Otherwise the job was finished
225          //this method has a risk concerning race conditions.
226          //better expand the sendjobresultcompltedeventargs with a boolean "snapshot?" flag
227          if (e.Result.finished == false) {
228            Logging.GetInstance().Info(this.ToString(), "Snapshot for Job " + e.Result.JobId + " transmitted");
229          } else {
230            AppDomain.Unload(appDomains[e.Result.JobId]);
231            appDomains.Remove(e.Result.JobId);
232            engines.Remove(e.Result.JobId);
233            jobs.Remove(e.Result.JobId);
234            ClientStatusInfo.JobsProcessed++;
235            Debug.WriteLine("ProcessedJobs to:" + ClientStatusInfo.JobsProcessed);
236          }
237        }       
238      } else {
239        Logging.GetInstance().Error(this.ToString(), "Sending of job " + e.Result.JobId + " failed");
240      }
241    }
242
243    void wcfService_ServerChanged(object sender, EventArgs e) {
244      Logging.GetInstance().Info(this.ToString(), "ServerChanged has been called");
245      lock (Locker) {
246        foreach (KeyValuePair<long, AppDomain> entries in appDomains)
247          AppDomain.Unload(appDomains[entries.Key]);
248        appDomains = new Dictionary<long, AppDomain>();
249        engines = new Dictionary<long, Executor>();
250      }
251    }
252
253    void wcfService_Connected(object sender, EventArgs e) {
254      wcfService.LoginSync(ConfigManager.Instance.GetClientInfo());
255    }
256
257    //this is a little bit tricky -
258    void wcfService_ConnectionRestored(object sender, EventArgs e) {
259      Logging.GetInstance().Info(this.ToString(), "Reconnected to old server - checking currently running appdomains");                 
260
261      foreach (KeyValuePair<long, Executor> execKVP in engines) {
262        if (!execKVP.Value.Running && execKVP.Value.CurrentMessage == MessageContainer.MessageType.NoMessage) {
263          Logging.GetInstance().Info(this.ToString(), "Checking for JobId: " + execKVP.Value.JobId);
264          Thread finThread = new Thread(new ParameterizedThreadStart(GetFinishedJob));
265          finThread.Start(execKVP.Value.JobId);
266        }
267      }
268    }
269
270    #endregion
271
272    public Dictionary<long, Executor> GetExecutionEngines() {
273      return engines;
274    }
275
276    void appDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) {
277      Logging.GetInstance().Error(this.ToString(), " Exception: " + e.ExceptionObject.ToString());
278    }
279  }
280}
Note: See TracBrowser for help on using the repository browser.