Free cookie consent management tool by TermsFeed Policy Generator

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

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

work for ticket #467

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