#region License Information
/* HeuristicLab
* Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using HeuristicLab.Hive.Client.ExecutionEngine;
using HeuristicLab.Hive.Client.Common;
using System.Threading;
using System.Reflection;
using System.Diagnostics;
using System.Security.Permissions;
using System.Security.Policy;
using System.Security;
using HeuristicLab.Hive.Client.Communication;
using HeuristicLab.Hive.Contracts.BusinessObjects;
using HeuristicLab.Hive.Contracts;
using System.Runtime.Remoting.Messaging;
using HeuristicLab.PluginInfrastructure;
using System.ServiceModel;
using HeuristicLab.Hive.Client.Communication.Interfaces;
using System.ServiceModel.Description;
namespace HeuristicLab.Hive.Client.Core {
public class Core {
public delegate string GetASnapshotDelegate();
Dictionary engines = new Dictionary();
Dictionary appDomains = new Dictionary();
private ClientCommunicatorClient clientCommunicator;
public void Start() {
/*DiscoveryService discService =
new DiscoveryService();
IClientConsoleCommunicator[] clientCommunicatorInstances =
discService.GetInstances();
if (clientCommunicatorInstances.Length > 0) {
ServiceHost serviceHost =
new ServiceHost(clientCommunicatorInstances[0].GetType(),
new Uri("http://localhost:9000/ClientConsole"));
System.ServiceModel.Channels.Binding binding =
new NetNamedPipeBinding();
serviceHost.AddServiceEndpoint(
typeof(IClientConsoleCommunicator),
binding,
"ClientConsoleCommunicator");
ServiceMetadataBehavior behavior =
new ServiceMetadataBehavior();
serviceHost.Description.Behaviors.Add(behavior);
serviceHost.AddServiceEndpoint(
typeof(IMetadataExchange),
MetadataExchangeBindings.CreateMexNamedPipeBinding(),
"mex");
serviceHost.Open();
}*/
clientCommunicator = ServiceLocator.GetClientCommunicator();
clientCommunicator.LoginCompleted += new EventHandler(ClientCommunicator_LoginCompleted);
clientCommunicator.PullJobCompleted += new EventHandler(ClientCommunicator_PullJobCompleted);
clientCommunicator.SendJobResultCompleted += new EventHandler(ClientCommunicator_SendJobResultCompleted);
//clientCommunicator.LoginAsync(ConfigurationManager.GetInstance().GetClientInfo());
Heartbeat beat = new Heartbeat { Interval = 30000 };
beat.StartHeartbeat();
MessageQueue queue = MessageQueue.GetInstance();
while (true) {
MessageContainer container = queue.GetMessage();
Debug.WriteLine("Main loop received this message: " + container.Message.ToString());
Logging.GetInstance().Info(this.ToString(), container.Message.ToString());
DetermineAction(container);
}
}
void ClientCommunicator_LoginCompleted(object sender, LoginCompletedEventArgs e) {
if (e.Result.Success) {
Logging.GetInstance().Info(this.ToString(), "Login completed to Hive Server @ " + DateTime.Now);
ConfigurationManager.GetInstance().Loggedin();
Status.LoginTime = DateTime.Now;
Status.LoggedIn = true;
} else
Logging.GetInstance().Error(this.ToString(), e.Result.StatusMessage);
}
private void DetermineAction(MessageContainer container) {
switch (container.Message) {
case MessageContainer.MessageType.AbortJob:
engines[container.JobId].Abort();
break;
case MessageContainer.MessageType.JobAborted:
Debug.WriteLine("-- Job Aborted Message received");
break;
case MessageContainer.MessageType.RequestSnapshot:
engines[container.JobId].RequestSnapshot();
break;
case MessageContainer.MessageType.SnapshotReady:
Thread ssr = new Thread(new ParameterizedThreadStart(GetSnapshot));
ssr.Start(container.JobId);
break;
case MessageContainer.MessageType.FetchJob:
clientCommunicator.PullJobAsync(Guid.NewGuid());
break;
case MessageContainer.MessageType.FinishedJob:
Thread finThread = new Thread(new ParameterizedThreadStart(GetFinishedJob));
finThread.Start(container.JobId);
break;
}
}
private void GetFinishedJob(object jobId) {
long jId = (long)jobId;
byte[] sJob = engines[jId].GetFinishedJob();
JobResult jobResult = new JobResult { JobId = jId, Result = sJob, Client = ConfigurationManager.GetInstance().GetClientInfo() };
clientCommunicator.SendJobResultAsync(jobResult, true);
}
private void GetSnapshot(object jobId) {
long jId = (long)jobId;
byte[] obj = engines[jId].GetSnapshot();
}
void ClientCommunicator_PullJobCompleted(object sender, PullJobCompletedEventArgs e) {
bool sandboxed = false;
PluginManager.Manager.Initialize();
AppDomain appDomain = PluginManager.Manager.CreateAndInitAppDomainWithSandbox(e.Result.JobId.ToString(), sandboxed, typeof(TestJob));
appDomains.Add(e.Result.JobId, appDomain);
Executor engine = (Executor)appDomain.CreateInstanceAndUnwrap(typeof(Executor).Assembly.GetName().Name, typeof(Executor).FullName);
engine.JobId = e.Result.JobId;
engine.Queue = MessageQueue.GetInstance();
engine.Start(e.Result.SerializedJob);
engines.Add(e.Result.JobId, engine);
Status.CurrentJobs++;
Debug.WriteLine("Increment CurrentJobs to:"+Status.CurrentJobs.ToString());
}
void ClientCommunicator_SendJobResultCompleted(object sender, SendJobResultCompletedEventArgs e) {
if (e.Result.Success) {
AppDomain.Unload(appDomains[e.Result.JobId]);
appDomains.Remove(e.Result.JobId);
engines.Remove(e.Result.JobId);
Status.CurrentJobs--;
Debug.WriteLine("Decrement CurrentJobs to:" + Status.CurrentJobs.ToString());
} else {
Debug.WriteLine("Job sending FAILED!");
}
}
}
}