Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.0/HeuristicLab.Persistence/3.3/Default/Xml/XmlParser.cs @ 12352

Last change on this file since 12352 was 3742, checked in by gkronber, 14 years ago

Fixed GPL license headers and deleted files which are not referenced by projects. #893

File size: 9.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Xml;
23using System.Collections.Generic;
24using System;
25using System.Collections;
26using System.IO;
27using HeuristicLab.Persistence.Core;
28using HeuristicLab.Persistence.Interfaces;
29using ICSharpCode.SharpZipLib.Zip;
30using HeuristicLab.Persistence.Core.Tokens;
31using System.IO.Compression;
32
33namespace HeuristicLab.Persistence.Default.Xml {
34
35  /// <summary>
36  /// Main entry point of persistence loading from XML. Use the static
37  /// methods to load from a file or stream.
38  /// </summary>
39  public class XmlParser : IEnumerable<ISerializationToken> {
40
41    private readonly XmlTextReader reader;
42    private delegate IEnumerator<ISerializationToken> Handler();
43    private readonly Dictionary<string, Handler> handlers;
44
45    /// <summary>
46    /// Initializes a new instance of the <see cref="XmlParser"/> class.
47    /// </summary>
48    /// <param name="input">The input.</param>
49    public XmlParser(TextReader input) {
50      reader = new XmlTextReader(input);
51      reader.WhitespaceHandling = WhitespaceHandling.All;
52      reader.Normalization = false;
53      handlers = new Dictionary<string, Handler> {
54                     {XmlStringConstants.PRIMITIVE, ParsePrimitive},
55                     {XmlStringConstants.COMPOSITE, ParseComposite},
56                     {XmlStringConstants.REFERENCE, ParseReference},
57                     {XmlStringConstants.NULL, ParseNull},
58                     {XmlStringConstants.METAINFO, ParseMetaInfo},
59                     {XmlStringConstants.TYPE, ParseTypeInfo},
60                   };
61    }
62
63    /// <summary>
64    /// Returns an enumerator that iterates through the serialization tokens.
65    /// </summary>
66    /// <returns>
67    /// An that can be used to iterate through the collection of serialization tokens.
68    /// </returns>
69    public IEnumerator<ISerializationToken> GetEnumerator() {
70      while (reader.Read()) {
71        if (!reader.IsStartElement()) {
72          break;
73        }
74        IEnumerator<ISerializationToken> iterator;
75        try {
76          iterator = handlers[reader.Name].Invoke();
77        } catch (KeyNotFoundException) {
78          throw new PersistenceException(String.Format(
79            "Invalid XML tag \"{0}\" in persistence file.",
80            reader.Name));
81        }
82        while (iterator.MoveNext()) {
83          yield return iterator.Current;
84        }
85      }
86    }
87
88    /// <summary>
89    /// Returns an enumerator that iterates through the serialization tokens.
90    /// </summary>
91    /// <returns>
92    /// An that can be used to iterate through the collection of serialization tokens.
93    /// </returns>
94    IEnumerator IEnumerable.GetEnumerator() {
95      return GetEnumerator();
96    }
97
98    private IEnumerator<ISerializationToken> ParsePrimitive() {
99      int? id = null;
100      string idString = reader.GetAttribute("id");
101      if (idString != null)
102        id = int.Parse(idString);
103      string name = reader.GetAttribute("name");
104      int typeId = int.Parse(reader.GetAttribute("typeId"));
105      string typeName = reader.GetAttribute("typeName");
106      string serializer = reader.GetAttribute("serializer");
107      if (typeName != null)
108        yield return new TypeToken(typeId, typeName, serializer);
109      XmlReader inner = reader.ReadSubtree();
110      inner.Read();
111      string xml = inner.ReadInnerXml();
112      inner.Close();
113      yield return new PrimitiveToken(name, typeId, id, new XmlString(xml));
114    }
115
116    private IEnumerator<ISerializationToken> ParseComposite() {
117      string name = reader.GetAttribute("name");
118      string idString = reader.GetAttribute("id");
119      int? id = null;
120      if (idString != null)
121        id = int.Parse(idString);
122      int typeId = int.Parse(reader.GetAttribute("typeId"));
123      string typeName = reader.GetAttribute("typeName");
124      string serializer = reader.GetAttribute("serializer");
125      if (typeName != null)
126        yield return new TypeToken(typeId, typeName, serializer);
127      yield return new BeginToken(name, typeId, id);
128      IEnumerator<ISerializationToken> iterator = GetEnumerator();
129      while (iterator.MoveNext())
130        yield return iterator.Current;
131      yield return new EndToken(name, typeId, id);
132    }
133
134    private IEnumerator<ISerializationToken> ParseReference() {
135      yield return new ReferenceToken(
136        reader.GetAttribute("name"),
137        int.Parse(reader.GetAttribute("ref")));
138    }
139
140    private IEnumerator<ISerializationToken> ParseNull() {
141      yield return new NullReferenceToken(reader.GetAttribute("name"));
142    }
143
144    private IEnumerator<ISerializationToken> ParseMetaInfo() {
145      yield return new MetaInfoBeginToken();
146      IEnumerator<ISerializationToken> iterator = GetEnumerator();
147      while (iterator.MoveNext())
148        yield return iterator.Current;
149      yield return new MetaInfoEndToken();
150    }
151
152    private IEnumerator<ISerializationToken> ParseTypeInfo() {
153      yield return new TypeToken(
154        int.Parse(reader.GetAttribute("id")),
155        reader.GetAttribute("typeName"),
156        reader.GetAttribute("serializer"));
157    }
158
159    /// <summary>
160    /// Parses the type cache.
161    /// </summary>
162    /// <param name="reader">The reader.</param>
163    /// <returns>A list of type mapping entries.</returns>
164    public static List<TypeMapping> ParseTypeCache(TextReader reader) {
165      try {
166        var typeCache = new List<TypeMapping>();
167        XmlReader xmlReader = XmlReader.Create(reader);
168        while (xmlReader.Read()) {
169          if (xmlReader.Name == XmlStringConstants.TYPE) {
170            typeCache.Add(new TypeMapping(
171              int.Parse(xmlReader.GetAttribute("id")),
172              xmlReader.GetAttribute("typeName"),
173              xmlReader.GetAttribute("serializer")));
174          }
175        }
176        return typeCache;
177      } catch (PersistenceException) {
178        throw;
179      } catch (Exception e) {
180        throw new PersistenceException("Unexpected exception during type cache parsing.", e);
181      }
182    }
183
184    /// <summary>
185    /// Deserializes an object from the specified filename.
186    /// </summary>
187    /// <param name="filename">The filename.</param>
188    /// <returns>A fresh object instance</returns>
189    public static object Deserialize(string filename) {
190      using (ZipFile file = new ZipFile(filename)) {
191        return Deserialize(file);
192      }
193    }
194
195    /// <summary>
196    /// Deserializes the specified filename.
197    /// </summary>
198    /// <typeparam name="T">object type expected from the serialized file</typeparam>
199    /// <param name="filename">The filename.</param>
200    /// <returns>A fresh object of type T</returns>
201    public static T Deserialize<T>(string filename) {
202      return (T)Deserialize(filename);
203    }
204
205
206    /// <summary>
207    /// Deserializes an object from the specified stream.
208    /// </summary>
209    /// <param name="stream">The stream.</param>
210    /// <returns>A fresh object instance.</returns>
211    public static object Deserialize(Stream stream) {
212      try {
213        using (StreamReader reader = new StreamReader(new GZipStream(stream, CompressionMode.Decompress))) {
214          XmlParser parser = new XmlParser(reader);
215          Deserializer deserializer = new Deserializer(new TypeMapping[] { });
216          return deserializer.Deserialize(parser);
217        }
218      } catch (PersistenceException) {
219        throw;
220      } catch (Exception x) {
221        throw new PersistenceException("Unexpected exception during deserialization", x);
222      }
223    }
224
225    /// <summary>
226    /// Deserializes an object from the specified stream.
227    /// </summary>
228    /// <typeparam name="T">object type expected from the serialized stream</typeparam>
229    /// <param name="stream">The stream.</param>
230    /// <returns>A fresh object instance.</returns>
231    public static T Deserialize<T>(Stream stream) {
232      return (T)Deserialize(stream);
233    }
234
235    private static object Deserialize(ZipFile zipFile) {
236      try {
237        ZipEntry typecache = zipFile.GetEntry("typecache.xml");
238        if (typecache == null)
239          throw new PersistenceException("file does not contain typecache.xml");
240        Deserializer deSerializer = new Deserializer(ParseTypeCache(new StreamReader(zipFile.GetInputStream(typecache))));
241        ZipEntry data = zipFile.GetEntry("data.xml");
242        if (data == null)
243          throw new PersistenceException("file does not contain data.xml");
244        XmlParser parser = new XmlParser(
245          new StreamReader(zipFile.GetInputStream(data)));
246        object result = deSerializer.Deserialize(parser);
247        zipFile.Close();
248        return result;
249      } catch (PersistenceException) {
250        throw;
251      } catch (Exception e) {
252        throw new PersistenceException("Unexpected exception during deserialization", e);
253      }
254    }
255  }
256}
Note: See TracBrowser for help on using the repository browser.