Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Grid/ClientForm.cs @ 35

Last change on this file since 35 was 35, checked in by gkronber, 16 years ago

fixed some synchronization issues in DistributedEngine and grid infrastructure

(ticket ref #2)

File size: 5.5 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.ComponentModel;
25using System.Data;
26using System.Drawing;
27using System.Linq;
28using System.Text;
29using System.Windows.Forms;
30using System.ServiceModel;
31using HeuristicLab.Core;
32using System.Xml;
33using System.Threading;
34using System.IO;
35using System.IO.Compression;
36using System.Net;
37
38namespace HeuristicLab.Grid {
39  [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple, UseSynchronizationContext = false)]
40  public partial class ClientForm : Form, IClient {
41    private ChannelFactory<IEngineStore> factory;
42    private ServiceHost clientHost;
43    private System.Timers.Timer fetchOperationTimer;
44    private IEngineStore engineStore;
45    private Guid currentGuid;
46    private ProcessingEngine currentEngine;
47    private string clientUrl;
48    private object locker = new object();
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";
56      currentGuid = Guid.Empty;
57    }
58
59    private void startButton_Click(object sender, EventArgs e) {
60      clientUrl = "net.tcp://" + Dns.GetHostAddresses(Dns.GetHostName())[0] + ":8002/Grid/Client";
61      clientHost = new ServiceHost(this, new Uri(clientUrl));
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;
67        binding.Security.Mode = SecurityMode.None;
68
69        clientHost.AddServiceEndpoint(typeof(IClient), binding, clientUrl);
70        clientHost.Open();
71
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
80      } catch (CommunicationException ex) {
81        MessageBox.Show("Exception while connecting to the server: " + ex.Message);
82        clientHost.Abort();
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();
92      clientHost.Close();
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) {
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;
117          fetchOperationTimer.Start();
118        }
119      }
120    }
121    public void Abort(Guid guid) {
122      lock(locker) {
123        if(!IsRunningEngine(guid)) return;
124        currentEngine.Abort();
125      }
126    }
127    public bool IsRunningEngine(Guid guid) {
128      return currentGuid == guid;
129    }
130    private ProcessingEngine RestoreEngine(byte[] engine) {
131      GZipStream stream = new GZipStream(new MemoryStream(engine), CompressionMode.Decompress);
132      return (ProcessingEngine)PersistenceManager.Load(stream);
133    }
134    private byte[] SaveEngine(IEngine engine) {
135      MemoryStream memStream = new MemoryStream();
136      GZipStream stream = new GZipStream(memStream, CompressionMode.Compress, true);
137      PersistenceManager.Save(engine, stream);
138      stream.Close();
139      return memStream.ToArray();
140    }
141  }
142}
Note: See TracBrowser for help on using the repository browser.