Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.Persistence/4.0/Core/StaticCache.cs @ 15020

Last change on this file since 15020 was 15020, checked in by gkronber, 7 years ago

#2520: fixed unit tests checking for exceptions

File size: 14.2 KB
Line 
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#endregion
21
22using System;
23using System.Collections;
24using System.Collections.Generic;
25using System.Drawing;
26using System.Linq;
27using Google.ProtocolBuffers;
28using HeuristicLab.PluginInfrastructure;
29
30namespace HeuristicLab.Persistence {
31  public sealed class StaticCache {
32    private static object locker = new object();
33
34    private Dictionary<Guid, ITransformer> guid2Transformer;
35    private Dictionary<ITransformer, Guid> transformer2Guid;
36    private Dictionary<Guid, Type> guid2Type;
37    private Dictionary<Type, Guid> type2Guid;
38    private Dictionary<Type, TypeInfo> typeInfos;
39    private ExtensionRegistry extensionRegistry;
40
41    internal StaticCache() {
42      guid2Transformer = new Dictionary<Guid, ITransformer>();
43      transformer2Guid = new Dictionary<ITransformer, Guid>();
44      guid2Type = new Dictionary<Guid, Type>();
45      type2Guid = new Dictionary<Type, Guid>();
46      typeInfos = new Dictionary<Type, TypeInfo>();
47      extensionRegistry = ExtensionRegistry.CreateInstance();
48
49      foreach (var transformer in ApplicationManager.Manager.GetInstances<ITransformer>())
50        RegisterTransformer(transformer);
51
52      RegisterType(new Guid("ECAEA154-6BFF-419F-8BE6-2565E9314825"), typeof(object));
53      RegisterType(new Guid("94AD8522-3F55-4580-A6F8-2D2AAEDD4B8C"), typeof(bool));
54      RegisterType(new Guid("4A1C0FD5-423D-4F96-AB22-A496578C25AC"), typeof(byte));
55      RegisterType(new Guid("C4B00F0B-FED7-439F-B1B2-8A0048B64882"), typeof(sbyte));
56      RegisterType(new Guid("9F451811-3DE1-43AB-8B74-D7E03851857B"), typeof(short));
57      RegisterType(new Guid("46244D54-0145-49F7-9CF3-9CDB7FB5F240"), typeof(ushort));
58      RegisterType(new Guid("1FDDE40C-09E3-491F-8FBB-32BB3C885E9E"), typeof(char));
59      RegisterType(new Guid("EE3E0F9C-A5C2-4461-AF36-28BD8F26E6FB"), typeof(int));
60      RegisterType(new Guid("69476D18-D285-43E9-BC7C-6CC9E9F2321E"), typeof(uint));
61      RegisterType(new Guid("7C7BC5EC-F001-4BA0-9F85-50DCBAA9AE81"), typeof(long));
62      RegisterType(new Guid("AC808D5A-63BB-457C-9B92-C9B83DA2B139"), typeof(ulong));
63      RegisterType(new Guid("BF22653A-026C-4367-BBBA-2125AECF6C08"), typeof(float));
64      RegisterType(new Guid("8B49821A-3ADC-4715-9DB1-08E2F3CFDF15"), typeof(double));
65      RegisterType(new Guid("5C6CB86C-81DA-4334-9196-6571C6706240"), typeof(decimal));
66
67      RegisterType(new Guid("7BB386BF-6FD4-443D-A6C1-387096798C67"), typeof(DateTime));
68      RegisterType(new Guid("724A2D49-7E7B-455B-BBA9-4214C64E8A21"), typeof(TimeSpan));
69      RegisterType(new Guid("ECC12A57-DA8D-43D9-9EC7-FCAC878A4D69"), typeof(Font));
70      RegisterType(new Guid("E8348C94-9817-4164-9C98-377689F83F30"), typeof(Bitmap));
71      RegisterType(new Guid("05551382-E894-4218-B860-FEE1D92CA07D"), typeof(Nullable<>));
72      RegisterType(new Guid("4CC0D44E-65B2-4DF1-A333-30F058CB78CA"), typeof(Tuple<>));
73      RegisterType(new Guid("5D451A64-EBD9-411F-A07E-232250B33784"), typeof(Tuple<,>));
74      RegisterType(new Guid("EEBD2D26-56CC-45EA-900A-DD29B9F598CE"), typeof(Tuple<,,>));
75      RegisterType(new Guid("B8EEEFA7-8576-42DD-937C-AFBB66297B56"), typeof(Tuple<,,,>));
76      RegisterType(new Guid("4C3C8E0A-7DCF-4814-B798-AECB86E1E4E3"), typeof(Tuple<,,,,>));
77      RegisterType(new Guid("EAA4FF91-B90C-47CB-AC0F-66AB66D41186"), typeof(Tuple<,,,,,>));
78      RegisterType(new Guid("EB51B342-826F-4004-B2C6-F2A03A8C35C9"), typeof(Tuple<,,,,,,>));
79      RegisterType(new Guid("14138614-45DB-4A0D-9E59-AE9373241D6B"), typeof(Tuple<,,,,,,,>));
80      RegisterType(new Guid("4DB2ED2B-D9F2-4695-B555-A2CF42740740"), typeof(Color));
81      RegisterType(new Guid("9BC74087-D5C0-4C39-99B4-D7465F478492"), typeof(Point));
82      RegisterType(new Guid("E84C326A-7E14-4F28-AEFF-BC16CC671655"), typeof(KeyValuePair<,>));
83      RegisterType(new Guid("F0280B55-25E8-4981-B309-D675D081402A"), typeof(string));
84      //
85      RegisterType(new Guid("9CF55419-439B-4A90-B2ED-8C7F7768EB61"), typeof(Array));
86      // RegisterType(new Guid("D15AD28B-203A-460E-815C-F7230C4B1F75"), typeof(bool[]));
87      // RegisterType(new Guid("EE318DC4-580D-4DB1-9AAD-988B0E50A3DB"), typeof(byte[]));
88      // RegisterType(new Guid("326B9484-361F-46F8-B8A6-46C781A8C51F"), typeof(sbyte[]));
89      // RegisterType(new Guid("C854783D-4C91-43C8-A19A-F96012494F8A"), typeof(short[]));
90      // RegisterType(new Guid("C47FB329-2A1D-4EB7-AFB1-1CF72AB30E98"), typeof(ushort[]));
91      // RegisterType(new Guid("9681D044-B50C-4907-B23E-BDFEBC6C3FFC"), typeof(char[]));
92      // RegisterType(new Guid("0FC62D91-D63F-4507-8696-885D4C07285A"), typeof(int[]));
93      // RegisterType(new Guid("C43A25A0-9B99-4DA4-9279-7495FE10428E"), typeof(uint[]));
94      // RegisterType(new Guid("7AC4DDAC-0E13-428E-BF49-7BE7B76746CB"), typeof(long[]));
95      // RegisterType(new Guid("8D9283A7-FE49-4AEA-A09F-D53CF3BE520A"), typeof(ulong[]));
96      // RegisterType(new Guid("BB9CFA0B-DD29-4C44-85C6-3A6289C55448"), typeof(float[]));
97      // RegisterType(new Guid("3B3AA69E-1641-4202-AE1D-7EEFF60FA355"), typeof(double[]));
98      // RegisterType(new Guid("7DF325A6-2553-4915-B7C6-D98191107CB7"), typeof(string[]));
99
100      RegisterType(new Guid("E451A99B-0CFD-48E6-9BEF-0AE9D1E73628"), typeof(IList));
101      RegisterType(new Guid("B7313EE2-045F-41C9-AEC9-7B1A8CDBF90F"), typeof(IEnumerable));
102      RegisterType(new Guid("D5265599-7380-4A28-AB0D-9F336EF290C5"), typeof(IEnumerable<>));
103      RegisterType(new Guid("DB2A785C-5803-42C7-A01F-E1FD845A83A1"), typeof(List<>));
104      RegisterType(new Guid("EB98A564-BEDC-458A-9E9B-4BF3CDAFB9BE"), typeof(Stack<>));
105      RegisterType(new Guid("D5E3118B-957A-43B5-A740-1BBAA0EAB666"), typeof(Stack));
106      RegisterType(new Guid("8CBC5F9F-5671-4805-A690-DD034AEB7932"), typeof(ArrayList));
107      RegisterType(new Guid("80CAB5BF-06C2-4DB2-9CF0-EE6E93D40B30"), typeof(Queue));
108      RegisterType(new Guid("C528E123-F3DD-4711-83E2-A26E2A9A85E9"), typeof(Queue<>));
109      RegisterType(new Guid("7E2F3277-7216-4295-A498-9ACA43527D5B"), typeof(HashSet<>));
110      RegisterType(new Guid("E92C35AD-32B1-4F37-B8D2-BE2F5FEB465B"), typeof(Dictionary<,>));
111      RegisterType(new Guid("18504ADF-2332-4497-8CA0-B2F00CA2EBA2"), typeof(Type));
112
113      var allTypes = new Dictionary<string, Type>(5000);
114      foreach (var asm in AppDomain.CurrentDomain.GetAssemblies()) {
115        if (asm.FullName == "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089") {
116          foreach (var t in asm.GetTypes()) {
117            if (typeof(IEqualityComparer).IsAssignableFrom(t))
118              allTypes.Add(t.FullName, t);
119
120            else if (typeof(IEqualityComparer<>).IsAssignableFrom(t))
121              allTypes.Add(t.FullName, t);
122          }
123        } else {
124          foreach (var t in asm.GetTypes()) {
125            if (StorableTypeAttribute.IsStorableType(t)) {
126              RegisterType(StorableTypeAttribute.GetStorableTypeAttribute(t).Guid, t);
127            }
128          }
129        }
130      }
131      RegisterType(new Guid("67C35B3B-DC23-4929-9BA9-0A0CD5FE17F5"), allTypes["System.StringComparer"]);
132      RegisterType(new Guid("C7FDE8F0-EF3F-4A4D-8D87-5559C32A8B90"), allTypes["System.CultureAwareComparer"]);
133      RegisterType(new Guid("4AF3A1F6-49CD-4172-8394-FE464889250E"), allTypes["System.CultureAwareRandomizedComparer"]);
134      RegisterType(new Guid("6A80741F-066D-460B-B333-4F766A4D4AEF"), allTypes["System.OrdinalComparer"]);
135      RegisterType(new Guid("4C7F657C-B69E-4D1A-8812-3254D6219FD2"), allTypes["System.OrdinalRandomizedComparer"]);
136      RegisterType(new Guid("0549A3DF-1FD4-487A-B06B-8C572DFFFBEB"), allTypes["System.Security.PermissionTokenKeyComparer"]);
137      RegisterType(new Guid("94BB9853-8D25-4DD8-A915-FEF2EFF538BC"), allTypes["System.Resources.FastResourceComparer"]);
138      RegisterType(new Guid("65D2DE74-8BDF-4C74-9005-81A2C3991DC5"), allTypes["System.Collections.CompatibleComparer"]);
139      RegisterType(new Guid("075827F4-07D9-4E50-9D00-C9FF3E7DCF9A"), allTypes["System.Collections.IEqualityComparer"]);
140      RegisterType(new Guid("3DA30D50-2337-4487-AECD-F2DB3ECED834"), allTypes["System.Collections.StructuralEqualityComparer"]);
141      RegisterType(new Guid("C8BF5C03-1614-46AC-8730-2F231CAD4232"), allTypes["System.Collections.Generic.EqualityComparer`1"]);
142      RegisterType(new Guid("FB247FE0-9203-4196-B4D3-71AB18CD12C5"), allTypes["System.Collections.Generic.GenericEqualityComparer`1"]);
143      RegisterType(new Guid("06443E04-FB1D-41E1-BAE2-1AB3728BDCC9"), allTypes["System.Collections.Generic.NullableEqualityComparer`1"]);
144      RegisterType(new Guid("D9029E74-C511-4D28-B8C5-D0E299EC45A5"), allTypes["System.Collections.Generic.ObjectEqualityComparer`1"]);
145      RegisterType(new Guid("C6D867E2-3CD2-4C59-8BA6-F18F00DDB997"), allTypes["System.Collections.Generic.ByteEqualityComparer"]);
146      RegisterType(new Guid("02F8D180-BABE-4073-82E0-7FE77814F53D"), allTypes["System.Collections.Generic.EnumEqualityComparer`1"]);
147      RegisterType(new Guid("8A19DA46-FE80-4776-9DB4-B17E6182D104"), allTypes["System.Collections.Generic.SByteEnumEqualityComparer`1"]);
148      RegisterType(new Guid("F6F6EFB9-B631-4ACC-9326-F492A6A63011"), allTypes["System.Collections.Generic.ShortEnumEqualityComparer`1"]);
149      RegisterType(new Guid("D3D279FE-169E-46B6-93AE-589BB4F24A4D"), allTypes["System.Collections.Generic.LongEnumEqualityComparer`1"]);
150      RegisterType(new Guid("BA0AB604-C052-4E08-8F9E-A5D8098F16A6"), allTypes["System.Collections.Generic.RandomizedStringEqualityComparer"]);
151      RegisterType(new Guid("00C8C940-63D9-43FF-99BA-9C69301BF043"), allTypes["System.Collections.Generic.RandomizedObjectEqualityComparer"]);
152      RegisterType(new Guid("DAF22757-7FCC-49AC-B148-F3DD7E9E0A3B"), allTypes["System.Collections.Generic.IEqualityComparer`1"]);
153
154      //var registeredTypes = type2Guid.Keys.ToArray();
155      //foreach (var t in registeredTypes) {
156      //  AddBaseTypesRec(t);
157      //}
158
159      RegisterExtension(BoolBox.Bool);
160      RegisterExtension(IntBox.Int);
161      RegisterExtension(LongBox.Long);
162      RegisterExtension(UnsignedIntBox.UnsignedInt);
163      RegisterExtension(UnsignedLongBox.UnsignedLong);
164      RegisterExtension(FloatBox.Float);
165      RegisterExtension(DoubleBox.Double);
166      RegisterExtension(StringBox.String);
167      RegisterExtension(BytesBox.Bytes);
168      RegisterExtension(BoolArrayBox.BoolArray);
169      RegisterExtension(ByteArrayBox.ByteArray);
170      RegisterExtension(IntArrayBox.IntArray);
171      RegisterExtension(LongArrayBox.LongArray);
172      RegisterExtension(UnsignedIntArrayBox.UnsignedIntArray);
173      RegisterExtension(UnsignedLongArrayBox.UnsignedLongArray);
174      RegisterExtension(FloatArrayBox.FloatArray);
175      RegisterExtension(DoubleArrayBox.DoubleArray);
176      RegisterExtension(StringArrayBox.StringArray);
177      RegisterExtension(MatrixBox.Matrix);
178      RegisterExtension(BoolMatrixBox.BoolMatrix);
179      RegisterExtension(IntMatrixBox.IntMatrix);
180      RegisterExtension(DictionaryBox.Dictionary);
181      RegisterExtension(StorableClassBox.StorableClass);
182      RegisterExtension(TypeBox.Type);
183    }
184
185    //private void AddBaseTypesRec(MemberSelection t) {
186    //  foreach (var interfaceType in t.GetInterfaces()) {
187    //    RegisterTypeAndFullName(interfaceType);
188    //    AddBaseTypesRec(interfaceType);
189    //  }
190    //  if (t.BaseType != null) {
191    //    RegisterTypeAndFullName(t.BaseType);
192    //    AddBaseTypesRec(t.BaseType);
193    //  }
194    //}
195
196    public void RegisterTransformer(ITransformer transformer) {
197      lock (locker) {
198        guid2Transformer.Add(transformer.Guid, transformer);
199        transformer2Guid.Add(transformer, transformer.Guid);
200      }
201    }
202    public void RegisterType(Guid guid, Type type) {
203      lock (locker) {
204        guid2Type.Add(guid, type);
205        type2Guid.Add(type, guid);
206      }
207    }
208    // mainly for testing
209    public void DeregisterType(Guid guid) {
210      lock (locker) {
211        type2Guid.Remove(guid2Type[guid]);
212        guid2Type.Remove(guid);
213      }
214    }
215    //public void RegisterTypeAndFullName(MemberSelection type) {
216    //  lock (locker) {
217    //    var key = type.AssemblyQualifiedName ?? type.Name;
218    //    if (!guid2Type.ContainsKey(key)) {
219    //      guid2Type.Add(key, type);
220    //      type2Guid.Add(type, key);
221    //    }
222    //  }
223    //}
224    public void RegisterExtension<TExtension>(GeneratedExtensionBase<TExtension> extension) {
225      lock (locker) {
226        extensionRegistry.Add(extension);
227      }
228    }
229
230    public ITransformer GetTransformer(Guid guid) {
231      return guid2Transformer[guid];
232    }
233    public Guid GetGuid(ITransformer transformer) {
234      return transformer2Guid[transformer];
235    }
236    public Type GetType(Guid guid) {
237      return guid2Type[guid];
238    }
239    public Guid GetGuid(Type type) {
240      return type2Guid[type];
241    }
242    public TypeInfo GetTypeInfo(Type type) {
243      lock (locker) {
244        TypeInfo typeInfo;
245        if (!typeInfos.TryGetValue(type, out typeInfo)) {
246          var transformer = guid2Transformer.Values.OrderBy(x => x.Priority).FirstOrDefault(x => x.CanTransformType(type));
247          if(transformer == null) throw new PersistenceException("No transformer found for type " + type.AssemblyQualifiedName);
248          typeInfo = new TypeInfo(type, transformer);
249          typeInfos.Add(type, typeInfo);
250        }
251        return typeInfo;
252      }
253    }
254    public ExtensionRegistry GetExtensionRegistry() {
255      return extensionRegistry;
256    }
257  }
258}
Note: See TracBrowser for help on using the repository browser.