[735] | 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 |
|
---|
| 22 | using System;
|
---|
[714] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Text;
|
---|
[768] | 26 | using HeuristicLab.Hive.Client.ExecutionEngine;
|
---|
[735] | 27 | using HeuristicLab.Hive.Client.Common;
|
---|
[768] | 28 | using System.Threading;
|
---|
[770] | 29 | using System.Reflection;
|
---|
| 30 | using System.Diagnostics;
|
---|
| 31 | using System.Security.Permissions;
|
---|
| 32 | using System.Security.Policy;
|
---|
| 33 | using System.Security;
|
---|
[790] | 34 | using HeuristicLab.Hive.Client.Communication;
|
---|
[793] | 35 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
| 36 | using HeuristicLab.Hive.Contracts;
|
---|
[714] | 37 |
|
---|
[768] | 38 |
|
---|
[714] | 39 | namespace HeuristicLab.Hive.Client.Core {
|
---|
| 40 | public class Core {
|
---|
[768] | 41 |
|
---|
| 42 | Dictionary<long, Executor> engines = new Dictionary<long, Executor>();
|
---|
[770] | 43 | Dictionary<long, AppDomain> appDomains = new Dictionary<long, AppDomain>();
|
---|
| 44 |
|
---|
| 45 | public static StrongName CreateStrongName(Assembly assembly) {
|
---|
| 46 | if (assembly == null)
|
---|
| 47 | throw new ArgumentNullException("assembly");
|
---|
| 48 |
|
---|
| 49 | AssemblyName assemblyName = assembly.GetName();
|
---|
| 50 | Debug.Assert(assemblyName != null, "Could not get assembly name");
|
---|
| 51 |
|
---|
| 52 | // get the public key blob
|
---|
| 53 | byte[] publicKey = assemblyName.GetPublicKey();
|
---|
| 54 | if (publicKey == null || publicKey.Length == 0)
|
---|
| 55 | throw new InvalidOperationException("Assembly is not strongly named");
|
---|
| 56 |
|
---|
| 57 | StrongNamePublicKeyBlob keyBlob = new StrongNamePublicKeyBlob(publicKey);
|
---|
| 58 |
|
---|
| 59 | // and create the StrongName
|
---|
| 60 | return new StrongName(keyBlob, assemblyName.Name, assemblyName.Version);
|
---|
| 61 | }
|
---|
| 62 |
|
---|
[798] | 63 | private ClientCommunicatorClient clientCommunicator;
|
---|
| 64 |
|
---|
[790] | 65 | public void Start() {
|
---|
| 66 | Heartbeat beat = new Heartbeat { Interval = 5000 };
|
---|
| 67 | beat.StartHeartbeat();
|
---|
[768] | 68 |
|
---|
[793] | 69 | ClientInfo clientInfo = new ClientInfo { ClientId = Guid.NewGuid() };
|
---|
[790] | 70 |
|
---|
[798] | 71 | clientCommunicator = ServiceLocator.GetClientCommunicator();
|
---|
[790] | 72 | clientCommunicator.LoginCompleted += new EventHandler<LoginCompletedEventArgs>(ClientCommunicator_LoginCompleted);
|
---|
| 73 | clientCommunicator.LoginAsync(clientInfo);
|
---|
| 74 |
|
---|
[735] | 75 | MessageQueue queue = MessageQueue.GetInstance();
|
---|
| 76 | while (true) {
|
---|
| 77 | MessageContainer container = queue.GetMessage();
|
---|
[779] | 78 | Debug.WriteLine("Main loop received this message: " + container.Message.ToString());
|
---|
[790] | 79 | Logging.GetInstance().Info(this.ToString(), container.Message.ToString());
|
---|
[768] | 80 | DetermineAction(container);
|
---|
[735] | 81 | }
|
---|
| 82 | }
|
---|
[768] | 83 |
|
---|
[798] | 84 | void ClientCommunicator_LoginCompleted(object sender, LoginCompletedEventArgs e) {
|
---|
[790] | 85 | if (e.Result.Success) {
|
---|
| 86 | Logging.GetInstance().Info(this.ToString(), "Login completed to Hive Server @ " + DateTime.Now);
|
---|
| 87 | Status.LoginTime = DateTime.Now;
|
---|
| 88 | Status.LoggedIn = true;
|
---|
| 89 | } else
|
---|
| 90 | Logging.GetInstance().Error(this.ToString(), e.Result.StatusMessage);
|
---|
| 91 | }
|
---|
| 92 |
|
---|
[770] | 93 | private AppDomain CreateNewAppDomain(bool sandboxed) {
|
---|
| 94 | PermissionSet pset;
|
---|
| 95 | if (sandboxed) {
|
---|
| 96 | pset = new PermissionSet(PermissionState.None);
|
---|
[790] | 97 | pset.AddPermission(new SecurityPermission(SecurityPermissionFlag.Execution));
|
---|
[770] | 98 | } else {
|
---|
| 99 | pset = new PermissionSet(PermissionState.Unrestricted);
|
---|
| 100 | }
|
---|
| 101 | AppDomainSetup setup = new AppDomainSetup();
|
---|
| 102 | setup.ApplicationBase = AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
|
---|
| 103 | //Temp Fix!
|
---|
| 104 | setup.PrivateBinPath = "plugins";
|
---|
[790] | 105 | return System.AppDomain.CreateDomain("appD", AppDomain.CurrentDomain.Evidence, setup, pset, CreateStrongName(Assembly.GetExecutingAssembly()));
|
---|
[770] | 106 |
|
---|
| 107 | }
|
---|
| 108 |
|
---|
[768] | 109 | private void DetermineAction(MessageContainer container) {
|
---|
[779] | 110 | switch (container.Message) {
|
---|
| 111 | case MessageContainer.MessageType.AbortJob:
|
---|
| 112 | engines[container.JobId].Abort();
|
---|
| 113 | break;
|
---|
| 114 | case MessageContainer.MessageType.JobAborted:
|
---|
| 115 | Debug.WriteLine("-- Job Aborted Message received");
|
---|
| 116 | break;
|
---|
[790] | 117 |
|
---|
[779] | 118 | case MessageContainer.MessageType.RequestSnapshot:
|
---|
| 119 | engines[container.JobId].RequestSnapshot();
|
---|
| 120 | break;
|
---|
| 121 | case MessageContainer.MessageType.SnapshotReady:
|
---|
| 122 | engines[container.JobId].GetSnapshot();
|
---|
| 123 | break;
|
---|
[790] | 124 |
|
---|
| 125 |
|
---|
[779] | 126 | case MessageContainer.MessageType.FetchJob:
|
---|
[798] | 127 | clientCommunicator.PullJobCompleted += new EventHandler<PullJobCompletedEventArgs>(ClientCommunicator_PullJobCompleted);
|
---|
| 128 | clientCommunicator.PullJobAsync(Guid.NewGuid());
|
---|
[779] | 129 | break;
|
---|
| 130 |
|
---|
| 131 | case MessageContainer.MessageType.FinishedJob:
|
---|
| 132 | engines[container.JobId].GetFinishedJob();
|
---|
| 133 | AppDomain.Unload(appDomains[container.JobId]);
|
---|
| 134 | appDomains.Remove(container.JobId);
|
---|
| 135 | engines.Remove(container.JobId);
|
---|
[798] | 136 | Status.CurrentJobs--;
|
---|
| 137 | Debug.WriteLine("Decrement CurrentJobs to:"+Status.CurrentJobs.ToString());
|
---|
[779] | 138 | break;
|
---|
| 139 | }
|
---|
| 140 | }
|
---|
[790] | 141 |
|
---|
[798] | 142 | void ClientCommunicator_PullJobCompleted(object sender, PullJobCompletedEventArgs e) {
|
---|
| 143 | bool sandboxed = false;
|
---|
| 144 |
|
---|
| 145 | IJob job = new TestJob { JobId = e.Result.JobId };
|
---|
| 146 |
|
---|
| 147 | AppDomain appDomain = CreateNewAppDomain(sandboxed);
|
---|
| 148 | appDomains.Add(job.JobId, appDomain);
|
---|
| 149 |
|
---|
| 150 | Executor engine = (Executor)appDomain.CreateInstanceAndUnwrap(typeof(Executor).Assembly.GetName().Name, typeof(Executor).FullName);
|
---|
| 151 | engine.Job = job;
|
---|
| 152 | engine.JobId = job.JobId;
|
---|
| 153 | engine.Queue = MessageQueue.GetInstance();
|
---|
| 154 | engine.Start();
|
---|
| 155 | engines.Add(engine.JobId, engine);
|
---|
| 156 |
|
---|
| 157 | Status.CurrentJobs++;
|
---|
| 158 |
|
---|
| 159 | Debug.WriteLine("Increment CurrentJobs to:"+Status.CurrentJobs.ToString());
|
---|
| 160 | }
|
---|
| 161 |
|
---|
[779] | 162 | /// <summary>
|
---|
| 163 | /// Simulator Class for new Jobs. will be replaced with fetching Jobs from the Interface
|
---|
| 164 | /// </summary>
|
---|
| 165 | /// <returns></returns>
|
---|
| 166 | private IJob CreateNewJob() {
|
---|
| 167 | Random random = new Random();
|
---|
| 168 | IJob job = new TestJob();
|
---|
| 169 | job.JobId = random.Next();
|
---|
| 170 | return job;
|
---|
| 171 | }
|
---|
[714] | 172 | }
|
---|
| 173 | }
|
---|