Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 242 was 228, checked in by gkronber, 17 years ago

bug fixing in DistributedEngine and Grid-Infrastructure

File size: 5.3 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 System.Timers.Timer fetchOperationTimer;
43    private IEngineStore engineStore;
44    private Guid currentGuid;
45    private ProcessingEngine currentEngine;
46
47    public ClientForm() {
48      InitializeComponent();
49      fetchOperationTimer = new System.Timers.Timer();
50      fetchOperationTimer.Interval = 200;
51      fetchOperationTimer.Elapsed += new System.Timers.ElapsedEventHandler(fetchOperationTimer_Elapsed);
52      statusTextBox.Text = "Stopped";
53      currentGuid = Guid.Empty;
54    }
55
56    private void startButton_Click(object sender, EventArgs e) {
57      try {
58        ResetConnection();
59        fetchOperationTimer.Start();
60        startButton.Enabled = false;
61        stopButton.Enabled = true;
62        statusTextBox.Text = "Waiting for engine";
63
64      } catch(CommunicationException ex) {
65        MessageBox.Show("Exception while connecting to the server: " + ex.Message);
66        startButton.Enabled = true;
67        stopButton.Enabled = false;
68        fetchOperationTimer.Stop();
69      }
70    }
71
72    private void ResetConnection() {
73      NetTcpBinding binding = new NetTcpBinding();
74      binding.MaxReceivedMessageSize = 100000000; // 100Mbytes
75      binding.ReaderQuotas.MaxStringContentLength = 100000000; // also 100M chars
76      binding.ReaderQuotas.MaxArrayLength = 100000000; // also 100M elements;
77      binding.Security.Mode = SecurityMode.None;
78      factory = new ChannelFactory<IEngineStore>(binding);
79      engineStore = factory.CreateChannel(new EndpointAddress(addressTextBox.Text));
80    }
81
82    private void stopButton_Click(object sender, EventArgs e) {
83      fetchOperationTimer.Stop();
84      factory.Abort();
85      statusTextBox.Text = "Stopped";
86      stopButton.Enabled = false;
87      startButton.Enabled = true;
88    }
89
90    private void fetchOperationTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e) {
91      byte[] engineXml;
92      fetchOperationTimer.Stop();
93      try {
94        if(factory.State != CommunicationState.Opened) {
95          ResetConnection();
96        }
97        if(engineStore.TryTakeEngine(out currentGuid, out engineXml)) {
98          currentEngine = RestoreEngine(engineXml);
99          if(InvokeRequired) { Invoke((MethodInvoker)delegate() { statusTextBox.Text = "Executing engine"; }); } else statusTextBox.Text = "Executing engine";
100          currentEngine.Finished += delegate(object src, EventArgs args) {
101            byte[] resultXml = SaveEngine(currentEngine);
102            engineStore.StoreResult(currentGuid, resultXml);
103            currentGuid = Guid.Empty;
104            currentEngine = null;
105            fetchOperationTimer.Interval = 100;
106            fetchOperationTimer.Start();
107          };
108          currentEngine.Execute();
109        } else {
110          if(InvokeRequired) { Invoke((MethodInvoker)delegate() { statusTextBox.Text = "Waiting for engine"; }); } else statusTextBox.Text = "Waiting for engine";
111          fetchOperationTimer.Interval = 5000;
112          fetchOperationTimer.Start();
113        }
114      } catch(Exception ex) {
115        currentEngine = null;
116        currentGuid = Guid.Empty;
117        fetchOperationTimer.Interval = 5000;
118        fetchOperationTimer.Start();
119      }
120    }
121    public void Abort(Guid guid) {
122      throw new NotSupportedException();
123    }
124    public bool IsRunningEngine(Guid guid) {
125      throw new NotSupportedException();
126    }
127    private ProcessingEngine RestoreEngine(byte[] engine) {
128      GZipStream stream = new GZipStream(new MemoryStream(engine), CompressionMode.Decompress);
129      return (ProcessingEngine)PersistenceManager.Load(stream);
130    }
131    private byte[] SaveEngine(IEngine engine) {
132      MemoryStream memStream = new MemoryStream();
133      GZipStream stream = new GZipStream(memStream, CompressionMode.Compress, true);
134      PersistenceManager.Save(engine, stream);
135      stream.Close();
136      return memStream.ToArray();
137    }
138  }
139}
Note: See TracBrowser for help on using the repository browser.