[2] | 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;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.ComponentModel;
|
---|
| 25 | using System.Data;
|
---|
| 26 | using System.Drawing;
|
---|
| 27 | using System.Linq;
|
---|
| 28 | using System.Text;
|
---|
| 29 | using System.Windows.Forms;
|
---|
| 30 | using System.ServiceModel;
|
---|
| 31 | using HeuristicLab.Core;
|
---|
| 32 | using System.Xml;
|
---|
| 33 | using System.Threading;
|
---|
| 34 | using System.IO;
|
---|
| 35 | using System.IO.Compression;
|
---|
[32] | 36 | using System.Net;
|
---|
[2] | 37 |
|
---|
| 38 | namespace HeuristicLab.Grid {
|
---|
[32] | 39 | [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple, UseSynchronizationContext = false)]
|
---|
| 40 | public partial class ClientForm : Form, IClient {
|
---|
[2] | 41 | private ChannelFactory<IEngineStore> factory;
|
---|
[32] | 42 | private ServiceHost clientHost;
|
---|
[2] | 43 | private System.Timers.Timer fetchOperationTimer;
|
---|
| 44 | private IEngineStore engineStore;
|
---|
[32] | 45 | private Guid currentGuid;
|
---|
| 46 | private ProcessingEngine currentEngine;
|
---|
| 47 | private string clientUrl;
|
---|
[35] | 48 | private object locker = new object();
|
---|
[2] | 49 |
|
---|
| 50 | public ClientForm() {
|
---|
| 51 | InitializeComponent();
|
---|
| 52 | fetchOperationTimer = new System.Timers.Timer();
|
---|
| 53 | fetchOperationTimer.Interval = 200;
|
---|
| 54 | fetchOperationTimer.Elapsed += new System.Timers.ElapsedEventHandler(fetchOperationTimer_Elapsed);
|
---|
| 55 | statusTextBox.Text = "Stopped";
|
---|
[32] | 56 | currentGuid = Guid.Empty;
|
---|
[2] | 57 | }
|
---|
| 58 |
|
---|
| 59 | private void startButton_Click(object sender, EventArgs e) {
|
---|
[32] | 60 | clientUrl = "net.tcp://" + Dns.GetHostAddresses(Dns.GetHostName())[0] + ":8002/Grid/Client";
|
---|
| 61 | clientHost = new ServiceHost(this, new Uri(clientUrl));
|
---|
[2] | 62 | try {
|
---|
| 63 | NetTcpBinding binding = new NetTcpBinding();
|
---|
| 64 | binding.MaxReceivedMessageSize = 100000000; // 100Mbytes
|
---|
| 65 | binding.ReaderQuotas.MaxStringContentLength = 100000000; // also 100M chars
|
---|
| 66 | binding.ReaderQuotas.MaxArrayLength = 100000000; // also 100M elements;
|
---|
[32] | 67 | binding.Security.Mode = SecurityMode.None;
|
---|
| 68 |
|
---|
| 69 | clientHost.AddServiceEndpoint(typeof(IClient), binding, clientUrl);
|
---|
| 70 | clientHost.Open();
|
---|
| 71 |
|
---|
[2] | 72 | factory = new ChannelFactory<IEngineStore>(binding);
|
---|
| 73 | engineStore = factory.CreateChannel(new EndpointAddress(addressTextBox.Text));
|
---|
| 74 |
|
---|
| 75 | fetchOperationTimer.Start();
|
---|
| 76 | startButton.Enabled = false;
|
---|
| 77 | stopButton.Enabled = true;
|
---|
| 78 | statusTextBox.Text = "Waiting for engine";
|
---|
| 79 |
|
---|
[32] | 80 | } catch (CommunicationException ex) {
|
---|
[2] | 81 | MessageBox.Show("Exception while connecting to the server: " + ex.Message);
|
---|
[32] | 82 | clientHost.Abort();
|
---|
[2] | 83 | startButton.Enabled = true;
|
---|
| 84 | stopButton.Enabled = false;
|
---|
| 85 | fetchOperationTimer.Stop();
|
---|
| 86 | }
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | private void stopButton_Click(object sender, EventArgs e) {
|
---|
| 90 | fetchOperationTimer.Stop();
|
---|
| 91 | factory.Abort();
|
---|
[32] | 92 | clientHost.Close();
|
---|
[2] | 93 | statusTextBox.Text = "Stopped";
|
---|
| 94 | stopButton.Enabled = false;
|
---|
| 95 | startButton.Enabled = true;
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | private void fetchOperationTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e) {
|
---|
[35] | 99 | lock(locker) {
|
---|
| 100 | byte[] engineXml;
|
---|
| 101 | fetchOperationTimer.Stop();
|
---|
| 102 | if(engineStore.TryTakeEngine(clientUrl, out currentGuid, out engineXml)) {
|
---|
| 103 | currentEngine = RestoreEngine(engineXml);
|
---|
| 104 | if(InvokeRequired) { Invoke((MethodInvoker)delegate() { statusTextBox.Text = "Executing engine"; }); } else statusTextBox.Text = "Executing engine";
|
---|
| 105 | currentEngine.Finished += delegate(object src, EventArgs args) {
|
---|
| 106 | byte[] resultXml = SaveEngine(currentEngine);
|
---|
| 107 | engineStore.StoreResult(currentGuid, resultXml);
|
---|
| 108 | currentGuid = Guid.Empty;
|
---|
| 109 | currentEngine = null;
|
---|
| 110 | fetchOperationTimer.Interval = 100;
|
---|
| 111 | fetchOperationTimer.Start();
|
---|
| 112 | };
|
---|
| 113 | currentEngine.Execute();
|
---|
| 114 | } else {
|
---|
| 115 | if(InvokeRequired) { Invoke((MethodInvoker)delegate() { statusTextBox.Text = "Waiting for engine"; }); } else statusTextBox.Text = "Waiting for engine";
|
---|
| 116 | fetchOperationTimer.Interval = 5000;
|
---|
[2] | 117 | fetchOperationTimer.Start();
|
---|
[35] | 118 | }
|
---|
[2] | 119 | }
|
---|
| 120 | }
|
---|
[32] | 121 | public void Abort(Guid guid) {
|
---|
[35] | 122 | lock(locker) {
|
---|
| 123 | if(!IsRunningEngine(guid)) return;
|
---|
| 124 | currentEngine.Abort();
|
---|
| 125 | }
|
---|
[32] | 126 | }
|
---|
| 127 | public bool IsRunningEngine(Guid guid) {
|
---|
| 128 | return currentGuid == guid;
|
---|
| 129 | }
|
---|
[2] | 130 | private ProcessingEngine RestoreEngine(byte[] engine) {
|
---|
| 131 | GZipStream stream = new GZipStream(new MemoryStream(engine), CompressionMode.Decompress);
|
---|
| 132 | return (ProcessingEngine)PersistenceManager.Load(stream);
|
---|
| 133 | }
|
---|
[34] | 134 | private byte[] SaveEngine(IEngine engine) {
|
---|
[2] | 135 | MemoryStream memStream = new MemoryStream();
|
---|
| 136 | GZipStream stream = new GZipStream(memStream, CompressionMode.Compress, true);
|
---|
[34] | 137 | PersistenceManager.Save(engine, stream);
|
---|
[2] | 138 | stream.Close();
|
---|
| 139 | return memStream.ToArray();
|
---|
| 140 | }
|
---|
| 141 | }
|
---|
| 142 | }
|
---|