#region License Information
/* HeuristicLab
* Copyright (C) 2002-2014 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 HeuristicLab.Clients.Common;
using HeuristicLab.Common;
using HeuristicLab.Core;
namespace HeuristicLab.Clients.OKB.RunCreation {
[Item("RunCreationClient", "OKB run creation client.")]
public sealed class RunCreationClient : IContent {
private static RunCreationClient instance;
public static RunCreationClient Instance {
get {
if (instance == null) instance = new RunCreationClient();
return instance;
}
}
#region Properties
private List algorithms;
public IEnumerable Algorithms {
get { return algorithms; }
}
private List problems;
public IEnumerable Problems {
get { return problems; }
}
#endregion
private RunCreationClient() {
algorithms = new List();
problems = new List();
}
#region Refresh
public void Refresh() {
OnRefreshing();
algorithms = new List();
problems = new List();
try {
algorithms.AddRange(CallRunCreationService>(s => s.GetAlgorithms("HeuristicLab 3.3")));
problems.AddRange(CallRunCreationService>(s => s.GetProblems("HeuristicLab 3.3")));
}
finally {
OnRefreshed();
}
}
public void RefreshAsync(Action exceptionCallback) {
var call = new Func(delegate() {
try {
Refresh();
}
catch (Exception ex) {
return ex;
}
return null;
});
call.BeginInvoke(delegate(IAsyncResult result) {
Exception ex = call.EndInvoke(result);
if (ex != null) exceptionCallback(ex);
}, null);
}
#endregion
#region Algorithm Methods
public static byte[] GetAlgorithmData(long algorithmId) {
return CallRunCreationService(s => s.GetAlgorithmData(algorithmId));
}
#endregion
#region Problem Methods
public static byte[] GetProblemData(long problemId) {
return CallRunCreationService(s => s.GetProblemData(problemId));
}
#endregion
#region Run Methods
public void AddRun(Run run) {
CallRunCreationService(s => s.AddRun(run));
}
#endregion
#region Events
public event EventHandler Refreshing;
private void OnRefreshing() {
EventHandler handler = Refreshing;
if (handler != null) handler(this, EventArgs.Empty);
}
public event EventHandler Refreshed;
private void OnRefreshed() {
EventHandler handler = Refreshed;
if (handler != null) handler(this, EventArgs.Empty);
}
#endregion
#region Helpers
private static void CallRunCreationService(Action call) {
RunCreationServiceClient client = ClientFactory.CreateClient();
try {
call(client);
}
finally {
try {
client.Close();
}
catch (Exception) {
client.Abort();
}
}
}
private static T CallRunCreationService(Func call) {
RunCreationServiceClient client = ClientFactory.CreateClient();
try {
return call(client);
}
finally {
try {
client.Close();
}
catch (Exception) {
client.Abort();
}
}
}
#endregion
}
}