1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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 | * The LRU cache is based on an idea by Robert Rossney see
|
---|
21 | * <http://csharp-lru-cache.googlecode.com>.
|
---|
22 | */
|
---|
23 | #endregion
|
---|
24 |
|
---|
25 | using System;
|
---|
26 | using System.Collections.Generic;
|
---|
27 | using System.Globalization;
|
---|
28 | using System.IO;
|
---|
29 | using System.Linq;
|
---|
30 | using System.Text.RegularExpressions;
|
---|
31 | using System.Threading;
|
---|
32 | using Google.ProtocolBuffers;
|
---|
33 | using HeuristicLab.Common;
|
---|
34 | using HeuristicLab.Core;
|
---|
35 | using HeuristicLab.Data;
|
---|
36 | using HeuristicLab.Parameters;
|
---|
37 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
38 |
|
---|
39 | namespace HeuristicLab.Problems.ExternalEvaluation {
|
---|
40 |
|
---|
41 | [Item("EvaluationCache", "Cache for external evaluation values")]
|
---|
42 | [StorableClass]
|
---|
43 | public class EvaluationCache : ParameterizedNamedItem {
|
---|
44 |
|
---|
45 | #region Types
|
---|
46 | private sealed class CacheEntry {
|
---|
47 |
|
---|
48 | public readonly string Key;
|
---|
49 |
|
---|
50 | private QualityMessage message;
|
---|
51 | private byte[] rawMessage;
|
---|
52 |
|
---|
53 | private object lockObject = new object();
|
---|
54 |
|
---|
55 | public byte[] RawMessage
|
---|
56 | {
|
---|
57 | get { return rawMessage; }
|
---|
58 | set
|
---|
59 | {
|
---|
60 | lock (lockObject) {
|
---|
61 | rawMessage = value;
|
---|
62 | message = null;
|
---|
63 | }
|
---|
64 | }
|
---|
65 | }
|
---|
66 |
|
---|
67 | public CacheEntry(string key) {
|
---|
68 | Key = key;
|
---|
69 | }
|
---|
70 |
|
---|
71 | public QualityMessage GetMessage(ExtensionRegistry extensions) {
|
---|
72 | lock (lockObject) {
|
---|
73 | if (message == null && rawMessage != null)
|
---|
74 | message = QualityMessage.ParseFrom(ByteString.CopyFrom(rawMessage), extensions);
|
---|
75 | }
|
---|
76 | return message;
|
---|
77 | }
|
---|
78 | public void SetMessage(QualityMessage value) {
|
---|
79 | lock (lockObject) {
|
---|
80 | message = value;
|
---|
81 | rawMessage = value.ToByteArray();
|
---|
82 | }
|
---|
83 | }
|
---|
84 |
|
---|
85 | public override bool Equals(object obj) {
|
---|
86 | CacheEntry other = obj as CacheEntry;
|
---|
87 | if (other == null)
|
---|
88 | return false;
|
---|
89 | return Key.Equals(other.Key);
|
---|
90 | }
|
---|
91 |
|
---|
92 | public override int GetHashCode() {
|
---|
93 | return Key.GetHashCode();
|
---|
94 | }
|
---|
95 |
|
---|
96 | public string QualityString(IFormatProvider formatProvider = null) {
|
---|
97 | if (formatProvider == null) formatProvider = CultureInfo.CurrentCulture;
|
---|
98 | if (RawMessage == null) return "-";
|
---|
99 | var msg = message ?? CreateBasicQualityMessage();
|
---|
100 | switch (msg.Type) {
|
---|
101 | case QualityMessage.Types.Type.SingleObjectiveQualityMessage:
|
---|
102 | return msg.GetExtension(SingleObjectiveQualityMessage.QualityMessage_).Quality.ToString(formatProvider);
|
---|
103 | case QualityMessage.Types.Type.MultiObjectiveQualityMessage:
|
---|
104 | var qualities = msg.GetExtension(MultiObjectiveQualityMessage.QualityMessage_).QualitiesList;
|
---|
105 | return string.Format("[{0}]", string.Join(",", qualities.Select(q => q.ToString(formatProvider))));
|
---|
106 | default:
|
---|
107 | return "-";
|
---|
108 | }
|
---|
109 | }
|
---|
110 | private QualityMessage CreateBasicQualityMessage() {
|
---|
111 | var extensions = ExtensionRegistry.CreateInstance();
|
---|
112 | ExternalEvaluationMessages.RegisterAllExtensions(extensions);
|
---|
113 | return QualityMessage.ParseFrom(ByteString.CopyFrom(rawMessage), extensions);
|
---|
114 | }
|
---|
115 |
|
---|
116 | public override string ToString() {
|
---|
117 | return string.Format("{{{0} : {1}}}", Key, QualityString());
|
---|
118 | }
|
---|
119 | }
|
---|
120 |
|
---|
121 | public delegate QualityMessage Evaluator(SolutionMessage message);
|
---|
122 | #endregion
|
---|
123 |
|
---|
124 | #region Fields
|
---|
125 | private LinkedList<CacheEntry> list;
|
---|
126 | private Dictionary<CacheEntry, LinkedListNode<CacheEntry>> index;
|
---|
127 |
|
---|
128 | private HashSet<string> activeEvaluations = new HashSet<string>();
|
---|
129 | private object cacheLock = new object();
|
---|
130 | #endregion
|
---|
131 |
|
---|
132 | #region Properties
|
---|
133 |
|
---|
134 | public int Size { get { lock (cacheLock) return index.Count; } }
|
---|
135 | public int ActiveEvaluations { get { lock (cacheLock) return activeEvaluations.Count; } }
|
---|
136 |
|
---|
137 | [Storable]
|
---|
138 | public int Hits { get; private set; }
|
---|
139 | #endregion
|
---|
140 |
|
---|
141 | #region events
|
---|
142 | public event EventHandler Changed;
|
---|
143 |
|
---|
144 | protected virtual void OnChanged() {
|
---|
145 | EventHandler handler = Changed;
|
---|
146 | if (handler != null)
|
---|
147 | handler(this, EventArgs.Empty);
|
---|
148 | }
|
---|
149 | #endregion
|
---|
150 |
|
---|
151 | #region Parameters
|
---|
152 | public FixedValueParameter<IntValue> CapacityParameter
|
---|
153 | {
|
---|
154 | get { return (FixedValueParameter<IntValue>)Parameters["Capacity"]; }
|
---|
155 | }
|
---|
156 | public FixedValueParameter<BoolValue> PersistentCacheParameter
|
---|
157 | {
|
---|
158 | get { return (FixedValueParameter<BoolValue>)Parameters["PersistentCache"]; }
|
---|
159 | }
|
---|
160 | #endregion
|
---|
161 |
|
---|
162 | #region Parameter Values
|
---|
163 | public int Capacity
|
---|
164 | {
|
---|
165 | get { return CapacityParameter.Value.Value; }
|
---|
166 | set { CapacityParameter.Value.Value = value; }
|
---|
167 | }
|
---|
168 | public bool IsPersistent
|
---|
169 | {
|
---|
170 | get { return PersistentCacheParameter.Value.Value; }
|
---|
171 | }
|
---|
172 | #endregion
|
---|
173 |
|
---|
174 | #region Persistence
|
---|
175 | #region BackwardsCompatibility3.4
|
---|
176 | [Storable(Name = "Cache")]
|
---|
177 | private IEnumerable<KeyValuePair<string, double>> Cache_Persistence_backwardscompatability
|
---|
178 | {
|
---|
179 | get { return Enumerable.Empty<KeyValuePair<string, double>>(); }
|
---|
180 | set
|
---|
181 | {
|
---|
182 | var rawMessages = value.ToDictionary(kvp => kvp.Key,
|
---|
183 | kvp => QualityMessage.CreateBuilder()
|
---|
184 | .SetSolutionId(0)
|
---|
185 | .SetExtension(
|
---|
186 | SingleObjectiveQualityMessage.QualityMessage_,
|
---|
187 | SingleObjectiveQualityMessage.CreateBuilder().SetQuality(kvp.Value).Build())
|
---|
188 | .Build().ToByteArray());
|
---|
189 | SetCacheValues(rawMessages);
|
---|
190 | }
|
---|
191 | }
|
---|
192 | #endregion
|
---|
193 | [Storable(Name = "CacheNew")]
|
---|
194 | private IEnumerable<KeyValuePair<string, byte[]>> Cache_Persistence
|
---|
195 | {
|
---|
196 | get { return IsPersistent ? GetCacheValues() : Enumerable.Empty<KeyValuePair<string, byte[]>>(); }
|
---|
197 | set { SetCacheValues(value); }
|
---|
198 | }
|
---|
199 | [StorableHook(HookType.AfterDeserialization)]
|
---|
200 | private void AfterDeserialization() {
|
---|
201 | RegisterEvents();
|
---|
202 | }
|
---|
203 | #endregion
|
---|
204 |
|
---|
205 | #region Construction & Cloning
|
---|
206 | [StorableConstructor]
|
---|
207 | protected EvaluationCache(bool deserializing) : base(deserializing) { }
|
---|
208 | protected EvaluationCache(EvaluationCache original, Cloner cloner)
|
---|
209 | : base(original, cloner) {
|
---|
210 | SetCacheValues(original.GetCacheValues());
|
---|
211 | Hits = original.Hits;
|
---|
212 | RegisterEvents();
|
---|
213 | }
|
---|
214 | public EvaluationCache() {
|
---|
215 | list = new LinkedList<CacheEntry>();
|
---|
216 | index = new Dictionary<CacheEntry, LinkedListNode<CacheEntry>>();
|
---|
217 | Parameters.Add(new FixedValueParameter<IntValue>("Capacity", "Maximum number of cache entries.", new IntValue(10000)));
|
---|
218 | Parameters.Add(new FixedValueParameter<BoolValue>("PersistentCache", "Save cache when serializing object graph?", new BoolValue(false)));
|
---|
219 | RegisterEvents();
|
---|
220 | }
|
---|
221 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
222 | return new EvaluationCache(this, cloner);
|
---|
223 | }
|
---|
224 | #endregion
|
---|
225 |
|
---|
226 | #region Event Handling
|
---|
227 | private void RegisterEvents() {
|
---|
228 | CapacityParameter.Value.ValueChanged += new EventHandler(CapacityChanged);
|
---|
229 | }
|
---|
230 |
|
---|
231 | void CapacityChanged(object sender, EventArgs e) {
|
---|
232 | if (Capacity < 0)
|
---|
233 | throw new ArgumentOutOfRangeException("Cache capacity cannot be less than zero");
|
---|
234 | lock (cacheLock)
|
---|
235 | Trim();
|
---|
236 | OnChanged();
|
---|
237 | }
|
---|
238 | #endregion
|
---|
239 |
|
---|
240 | #region Methods
|
---|
241 | public void Reset() {
|
---|
242 | lock (cacheLock) {
|
---|
243 | list = new LinkedList<CacheEntry>();
|
---|
244 | index = new Dictionary<CacheEntry, LinkedListNode<CacheEntry>>();
|
---|
245 | Hits = 0;
|
---|
246 | }
|
---|
247 | OnChanged();
|
---|
248 | }
|
---|
249 |
|
---|
250 | public QualityMessage GetValue(SolutionMessage message, Evaluator evaluate, ExtensionRegistry extensions) {
|
---|
251 | var entry = new CacheEntry(message.ToString());
|
---|
252 | bool lockTaken = false;
|
---|
253 | bool waited = false;
|
---|
254 | try {
|
---|
255 | Monitor.Enter(cacheLock, ref lockTaken);
|
---|
256 | while (true) {
|
---|
257 | LinkedListNode<CacheEntry> node;
|
---|
258 | if (index.TryGetValue(entry, out node)) {
|
---|
259 | list.Remove(node);
|
---|
260 | list.AddLast(node);
|
---|
261 | Hits++;
|
---|
262 | lockTaken = false;
|
---|
263 | Monitor.Exit(cacheLock);
|
---|
264 | OnChanged();
|
---|
265 | return node.Value.GetMessage(extensions);
|
---|
266 | } else {
|
---|
267 | if (!waited && activeEvaluations.Contains(entry.Key)) {
|
---|
268 | while (activeEvaluations.Contains(entry.Key))
|
---|
269 | Monitor.Wait(cacheLock);
|
---|
270 | waited = true;
|
---|
271 | } else {
|
---|
272 | activeEvaluations.Add(entry.Key);
|
---|
273 | lockTaken = false;
|
---|
274 | Monitor.Exit(cacheLock);
|
---|
275 | OnChanged();
|
---|
276 | try {
|
---|
277 | entry.SetMessage(evaluate(message));
|
---|
278 | Monitor.Enter(cacheLock, ref lockTaken);
|
---|
279 | index[entry] = list.AddLast(entry);
|
---|
280 | Trim();
|
---|
281 | }
|
---|
282 | finally {
|
---|
283 | if (!lockTaken)
|
---|
284 | Monitor.Enter(cacheLock, ref lockTaken);
|
---|
285 | activeEvaluations.Remove(entry.Key);
|
---|
286 | Monitor.PulseAll(cacheLock);
|
---|
287 | lockTaken = false;
|
---|
288 | Monitor.Exit(cacheLock);
|
---|
289 | }
|
---|
290 | OnChanged();
|
---|
291 | return entry.GetMessage(extensions);
|
---|
292 | }
|
---|
293 | }
|
---|
294 | }
|
---|
295 | }
|
---|
296 | finally {
|
---|
297 | if (lockTaken)
|
---|
298 | Monitor.Exit(cacheLock);
|
---|
299 | }
|
---|
300 | }
|
---|
301 |
|
---|
302 | private void Trim() {
|
---|
303 | while (list.Count > Capacity) {
|
---|
304 | var item = list.First;
|
---|
305 | list.Remove(item);
|
---|
306 | index.Remove(item.Value);
|
---|
307 | }
|
---|
308 | }
|
---|
309 |
|
---|
310 | private IEnumerable<KeyValuePair<string, byte[]>> GetCacheValues() {
|
---|
311 | lock (cacheLock) {
|
---|
312 | return index.ToDictionary(kvp => kvp.Key.Key, kvp => kvp.Key.RawMessage);
|
---|
313 | }
|
---|
314 | }
|
---|
315 |
|
---|
316 | private void SetCacheValues(IEnumerable<KeyValuePair<string, byte[]>> value) {
|
---|
317 | lock (cacheLock) {
|
---|
318 | if (list == null) list = new LinkedList<CacheEntry>();
|
---|
319 | if (index == null) index = new Dictionary<CacheEntry, LinkedListNode<CacheEntry>>();
|
---|
320 | foreach (var kvp in value) {
|
---|
321 | var entry = new CacheEntry(kvp.Key) { RawMessage = kvp.Value };
|
---|
322 | index[entry] = list.AddLast(entry);
|
---|
323 | }
|
---|
324 | }
|
---|
325 | }
|
---|
326 |
|
---|
327 | public void Save(string filename) {
|
---|
328 | using (var writer = new StreamWriter(filename)) {
|
---|
329 | lock (cacheLock) {
|
---|
330 | foreach (var entry in list) {
|
---|
331 | writer.WriteLine(string.Format(CultureInfo.InvariantCulture,
|
---|
332 | "\"{0}\", {1}",
|
---|
333 | Regex.Replace(entry.Key, "\\s", "").Replace("\"", "\"\""),
|
---|
334 | entry.QualityString(CultureInfo.InvariantCulture)));
|
---|
335 | }
|
---|
336 | }
|
---|
337 | writer.Close();
|
---|
338 | }
|
---|
339 | }
|
---|
340 | #endregion
|
---|
341 | }
|
---|
342 | }
|
---|