Free cookie consent management tool by TermsFeed Policy Generator

source: branches/XmlTextWriterBranch/HeuristicLab.Core/PersistenceManager.cs @ 160

Last change on this file since 160 was 119, checked in by gkronber, 16 years ago

created a branch that uses XmlTextWriter instead of XMLDocument to save documents. Investigating ticket #103.

File size: 4.7 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.Text;
25using System.Xml;
26using System.IO;
27
28namespace HeuristicLab.Core {
29  public static class PersistenceManager {
30    //public static XmlDocument CreateXmlDocument() {
31    //  XmlDocument document = new XmlDocument();
32    //  document.AppendChild(document.CreateXmlDeclaration("1.0", null, null));
33    //  return document;
34    //}
35    public static void Persist(IStorable instance, XmlWriter writer, IDictionary<Guid, IStorable> persistedObjects) {
36      Persist(instance.GetType().Name, instance, writer, persistedObjects);
37    }
38    public static void Persist(string name, IStorable instance, XmlWriter writer, IDictionary<Guid, IStorable> persistedObjects) {
39      if (persistedObjects.ContainsKey(instance.Guid)) {
40        writer.WriteStartElement(name, null);
41        writer.WriteAttributeString("GUID", instance.Guid.ToString());
42        writer.WriteEndElement();
43
44        //XmlNode node = document.CreateNode(XmlNodeType.Element, name, null);
45        //XmlAttribute guidAttribute = document.CreateAttribute("GUID");
46        //guidAttribute.Value = instance.Guid.ToString();
47        //node.Attributes.Append(guidAttribute);
48        //return node;
49      } else {
50        persistedObjects.Add(instance.Guid, instance);
51        writer.WriteStartElement(name);
52        instance.Persist(name, writer, persistedObjects);
53        writer.WriteEndElement();
54        //XmlNode node = instance.GetXmlNode(name, document, persistedObjects);
55        //return node;
56      }
57    }
58
59    public static IStorable Restore(XmlNode node, IDictionary<Guid,IStorable> restoredObjects) {
60      Guid guid = new Guid(node.Attributes["GUID"].Value);
61      if (restoredObjects.ContainsKey(guid)) {
62        return restoredObjects[guid];
63      } else {
64        Type type = Type.GetType(node.Attributes["Type"].Value, true);
65        IStorable instance = (IStorable)Activator.CreateInstance(type);
66        restoredObjects.Add(guid, instance);
67        instance.Populate(node, restoredObjects);
68        return instance;
69      }
70    }
71    public static void Save(IStorable instance, string filename) {
72      FileStream stream = File.Create(filename);
73      Save(instance, stream);
74      stream.Close();
75    }
76    public static void Save(IStorable instance, Stream stream) {
77      XmlTextWriter writer = new XmlTextWriter(stream, null);
78      writer.Formatting = Formatting.Indented;
79      writer.WriteProcessingInstruction("xml", "version=\"1.0\"");
80      Persist(instance, writer, new Dictionary<Guid, IStorable>());     
81      writer.Flush();
82      writer.Close();
83    }
84    public static IStorable Load(string filename) {
85      FileStream stream = File.OpenRead(filename);
86      IStorable storable = Load(stream);
87      stream.Close();
88      return storable;
89    }
90    public static IStorable Load(Stream stream) {
91      XmlDocument doc = new XmlDocument();
92      doc.Load(stream);
93      return PersistenceManager.Restore(doc.ChildNodes[1], new Dictionary<Guid, IStorable>());
94    }
95
96    public static string BuildTypeString(Type type) {
97      string assembly = type.Assembly.FullName;
98      assembly = assembly.Split(new string[] { ", " }, StringSplitOptions.None)[0];
99
100      StringBuilder builder = new StringBuilder();
101      builder.Append(type.Namespace);
102      builder.Append(".");
103      builder.Append(type.Name);
104      Type[] args = type.GetGenericArguments();
105      if (args.Length > 0) {
106        builder.Append("[[");
107        builder.Append(BuildTypeString(args[0]));
108        builder.Append("]");
109        for (int i = 1; i < args.Length; i++) {
110          builder.Append(",[");
111          builder.Append(BuildTypeString(args[i]));
112          builder.Append("]");
113        }
114        builder.Append("]");
115      }
116      builder.Append(", ");
117      builder.Append(assembly);
118      return builder.ToString();
119    }
120  }
121}
Note: See TracBrowser for help on using the repository browser.