forked from jameschch/LeanOptimization
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathAppDomainManager.cs
115 lines (91 loc) · 3.39 KB
/
AppDomainManager.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace Optimization
{
public class AppDomainManager
{
static AppDomainSetup _ads;
static string _exeAssembly;
static Dictionary<string, Dictionary<string, string>> _results;
static object _resultsLocker;
static IOptimizerConfiguration _config;
public static void Initialize(IOptimizerConfiguration config)
{
_config = config;
_results = new Dictionary<string, Dictionary<string, string>>();
_ads = SetupAppDomain();
_resultsLocker = new object();
}
static AppDomainSetup SetupAppDomain()
{
// Get and display the full name of the EXE assembly.
_exeAssembly = Assembly.GetEntryAssembly().FullName;
// Construct and initialize settings for a second AppDomain.
AppDomainSetup ads = new AppDomainSetup();
ads.ApplicationBase = AppDomain.CurrentDomain.BaseDirectory;
ads.DisallowBindingRedirects = false;
ads.DisallowCodeDownload = true;
ads.ConfigurationFile = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile;
return ads;
}
static Runner CreateRunClassInAppDomain(ref AppDomain ad)
{
// Create the second AppDomain.
var name = Guid.NewGuid().ToString("x");
ad = AppDomain.CreateDomain(name, null, _ads);
// Create an instance of MarshalbyRefType in the second AppDomain.
// A proxy to the object is returned.
Runner rc = (Runner)ad.CreateInstanceAndUnwrap(_exeAssembly, typeof(Runner).FullName);
SetResults(ad, _results);
SetConfig(ad, _config);
return rc;
}
public static Dictionary<string, string> RunAlgorithm(Dictionary<string, object> list)
{
AppDomain ad = null;
Runner rc = CreateRunClassInAppDomain(ref ad);
var result = (Dictionary<string, string>)rc.Run(list);
lock (_resultsLocker)
{
foreach (var item in GetResults(ad))
{
if (!_results.ContainsKey(item.Key))
{
_results.Add(item.Key, item.Value);
}
}
}
AppDomain.Unload(ad);
return result;
}
public static Dictionary<string, Dictionary<string, string>> GetResults(AppDomain ad)
{
return GetData<Dictionary<string, Dictionary<string, string>>>(ad, "Results");
}
public static IOptimizerConfiguration GetConfig(AppDomain ad)
{
return GetData<IOptimizerConfiguration>(ad, "Config");
}
public static T GetData<T>(AppDomain ad, string key)
{
return (T)ad.GetData(key);
}
public static void SetResults(AppDomain ad, object item)
{
SetData(ad, "Results", item);
}
public static void SetConfig(AppDomain ad, object item)
{
SetData(ad, "Config", item);
}
public static void SetData(AppDomain ad, string key, object item)
{
ad.SetData(key, item);
}
}
}