[3742] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3742] | 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 |
|
---|
[1454] | 22 | using System;
|
---|
| 23 | using System.Collections;
|
---|
[4068] | 24 | using System.Collections.Generic;
|
---|
[1454] | 25 | using System.IO;
|
---|
[4068] | 26 | using System.IO.Compression;
|
---|
| 27 | using System.Xml;
|
---|
[1454] | 28 | using HeuristicLab.Persistence.Core;
|
---|
[4068] | 29 | using HeuristicLab.Persistence.Core.Tokens;
|
---|
[1454] | 30 | using HeuristicLab.Persistence.Interfaces;
|
---|
| 31 |
|
---|
| 32 | namespace HeuristicLab.Persistence.Default.Xml {
|
---|
| 33 |
|
---|
[3028] | 34 | /// <summary>
|
---|
| 35 | /// Main entry point of persistence loading from XML. Use the static
|
---|
| 36 | /// methods to load from a file or stream.
|
---|
| 37 | /// </summary>
|
---|
[1454] | 38 | public class XmlParser : IEnumerable<ISerializationToken> {
|
---|
| 39 |
|
---|
[3293] | 40 | private readonly XmlTextReader reader;
|
---|
[1454] | 41 | private delegate IEnumerator<ISerializationToken> Handler();
|
---|
| 42 | private readonly Dictionary<string, Handler> handlers;
|
---|
| 43 |
|
---|
[3028] | 44 | /// <summary>
|
---|
| 45 | /// Initializes a new instance of the <see cref="XmlParser"/> class.
|
---|
| 46 | /// </summary>
|
---|
| 47 | /// <param name="input">The input.</param>
|
---|
[1454] | 48 | public XmlParser(TextReader input) {
|
---|
[3293] | 49 | reader = new XmlTextReader(input);
|
---|
| 50 | reader.WhitespaceHandling = WhitespaceHandling.All;
|
---|
| 51 | reader.Normalization = false;
|
---|
[1454] | 52 | handlers = new Dictionary<string, Handler> {
|
---|
[1612] | 53 | {XmlStringConstants.PRIMITIVE, ParsePrimitive},
|
---|
| 54 | {XmlStringConstants.COMPOSITE, ParseComposite},
|
---|
| 55 | {XmlStringConstants.REFERENCE, ParseReference},
|
---|
| 56 | {XmlStringConstants.NULL, ParseNull},
|
---|
| 57 | {XmlStringConstants.METAINFO, ParseMetaInfo},
|
---|
[3005] | 58 | {XmlStringConstants.TYPE, ParseTypeInfo},
|
---|
[1454] | 59 | };
|
---|
| 60 | }
|
---|
| 61 |
|
---|
[3028] | 62 | /// <summary>
|
---|
| 63 | /// Returns an enumerator that iterates through the serialization tokens.
|
---|
| 64 | /// </summary>
|
---|
| 65 | /// <returns>
|
---|
| 66 | /// An that can be used to iterate through the collection of serialization tokens.
|
---|
| 67 | /// </returns>
|
---|
[1454] | 68 | public IEnumerator<ISerializationToken> GetEnumerator() {
|
---|
| 69 | while (reader.Read()) {
|
---|
| 70 | if (!reader.IsStartElement()) {
|
---|
| 71 | break;
|
---|
| 72 | }
|
---|
| 73 | IEnumerator<ISerializationToken> iterator;
|
---|
| 74 | try {
|
---|
| 75 | iterator = handlers[reader.Name].Invoke();
|
---|
[4068] | 76 | }
|
---|
| 77 | catch (KeyNotFoundException) {
|
---|
[1625] | 78 | throw new PersistenceException(String.Format(
|
---|
| 79 | "Invalid XML tag \"{0}\" in persistence file.",
|
---|
[1454] | 80 | reader.Name));
|
---|
| 81 | }
|
---|
| 82 | while (iterator.MoveNext()) {
|
---|
| 83 | yield return iterator.Current;
|
---|
| 84 | }
|
---|
| 85 | }
|
---|
| 86 | }
|
---|
| 87 |
|
---|
[3028] | 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 |
|
---|
[1454] | 98 | private IEnumerator<ISerializationToken> ParsePrimitive() {
|
---|
| 99 | int? id = null;
|
---|
| 100 | string idString = reader.GetAttribute("id");
|
---|
| 101 | if (idString != null)
|
---|
| 102 | id = int.Parse(idString);
|
---|
[1616] | 103 | string name = reader.GetAttribute("name");
|
---|
| 104 | int typeId = int.Parse(reader.GetAttribute("typeId"));
|
---|
[3005] | 105 | string typeName = reader.GetAttribute("typeName");
|
---|
| 106 | string serializer = reader.GetAttribute("serializer");
|
---|
| 107 | if (typeName != null)
|
---|
| 108 | yield return new TypeToken(typeId, typeName, serializer);
|
---|
[1616] | 109 | XmlReader inner = reader.ReadSubtree();
|
---|
| 110 | inner.Read();
|
---|
| 111 | string xml = inner.ReadInnerXml();
|
---|
[1703] | 112 | inner.Close();
|
---|
[1616] | 113 | yield return new PrimitiveToken(name, typeId, id, new XmlString(xml));
|
---|
[1454] | 114 | }
|
---|
| 115 |
|
---|
| 116 | private IEnumerator<ISerializationToken> ParseComposite() {
|
---|
[1566] | 117 | string name = reader.GetAttribute("name");
|
---|
[1454] | 118 | string idString = reader.GetAttribute("id");
|
---|
| 119 | int? id = null;
|
---|
| 120 | if (idString != null)
|
---|
| 121 | id = int.Parse(idString);
|
---|
[1564] | 122 | int typeId = int.Parse(reader.GetAttribute("typeId"));
|
---|
[3005] | 123 | string typeName = reader.GetAttribute("typeName");
|
---|
| 124 | string serializer = reader.GetAttribute("serializer");
|
---|
| 125 | if (typeName != null)
|
---|
| 126 | yield return new TypeToken(typeId, typeName, serializer);
|
---|
[1454] | 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 |
|
---|
[1553] | 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 |
|
---|
[3005] | 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 |
|
---|
[3028] | 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>
|
---|
[1454] | 164 | public static List<TypeMapping> ParseTypeCache(TextReader reader) {
|
---|
[1625] | 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 | }
|
---|
[1454] | 175 | }
|
---|
[1625] | 176 | return typeCache;
|
---|
[4068] | 177 | }
|
---|
| 178 | catch (PersistenceException) {
|
---|
[1625] | 179 | throw;
|
---|
[4068] | 180 | }
|
---|
| 181 | catch (Exception e) {
|
---|
[1625] | 182 | throw new PersistenceException("Unexpected exception during type cache parsing.", e);
|
---|
[1454] | 183 | }
|
---|
| 184 | }
|
---|
| 185 |
|
---|
[3028] | 186 | /// <summary>
|
---|
| 187 | /// Deserializes an object from the specified filename.
|
---|
| 188 | /// </summary>
|
---|
| 189 | /// <param name="filename">The filename.</param>
|
---|
| 190 | /// <returns>A fresh object instance</returns>
|
---|
[1734] | 191 | public static object Deserialize(string filename) {
|
---|
[3913] | 192 | TimeSpan start = System.Diagnostics.Process.GetCurrentProcess().TotalProcessorTime;
|
---|
| 193 | try {
|
---|
[11650] | 194 | using (FileStream fs = new FileStream(filename, FileMode.Open, FileAccess.Read)) {
|
---|
| 195 | using (ZipArchive zip = new ZipArchive(fs)) {
|
---|
| 196 | return Deserialize(zip);
|
---|
| 197 | }
|
---|
[3913] | 198 | }
|
---|
[4068] | 199 | }
|
---|
| 200 | finally {
|
---|
[3913] | 201 | TimeSpan end = System.Diagnostics.Process.GetCurrentProcess().TotalProcessorTime;
|
---|
| 202 | Tracing.Logger.Info(string.Format(
|
---|
| 203 | "deserialization of {0} took {1} seconds",
|
---|
| 204 | filename, (end - start).TotalSeconds));
|
---|
[2874] | 205 | }
|
---|
[1734] | 206 | }
|
---|
| 207 |
|
---|
[3028] | 208 | /// <summary>
|
---|
| 209 | /// Deserializes the specified filename.
|
---|
| 210 | /// </summary>
|
---|
| 211 | /// <typeparam name="T">object type expected from the serialized file</typeparam>
|
---|
| 212 | /// <param name="filename">The filename.</param>
|
---|
| 213 | /// <returns>A fresh object of type T</returns>
|
---|
| 214 | public static T Deserialize<T>(string filename) {
|
---|
| 215 | return (T)Deserialize(filename);
|
---|
| 216 | }
|
---|
| 217 |
|
---|
| 218 |
|
---|
| 219 | /// <summary>
|
---|
| 220 | /// Deserializes an object from the specified stream.
|
---|
| 221 | /// </summary>
|
---|
| 222 | /// <param name="stream">The stream.</param>
|
---|
| 223 | /// <returns>A fresh object instance.</returns>
|
---|
[1734] | 224 | public static object Deserialize(Stream stream) {
|
---|
[3005] | 225 | try {
|
---|
| 226 | using (StreamReader reader = new StreamReader(new GZipStream(stream, CompressionMode.Decompress))) {
|
---|
| 227 | XmlParser parser = new XmlParser(reader);
|
---|
| 228 | Deserializer deserializer = new Deserializer(new TypeMapping[] { });
|
---|
| 229 | return deserializer.Deserialize(parser);
|
---|
| 230 | }
|
---|
[4068] | 231 | }
|
---|
| 232 | catch (PersistenceException) {
|
---|
[3005] | 233 | throw;
|
---|
[4068] | 234 | }
|
---|
| 235 | catch (Exception x) {
|
---|
[3005] | 236 | throw new PersistenceException("Unexpected exception during deserialization", x);
|
---|
[2874] | 237 | }
|
---|
[1734] | 238 | }
|
---|
| 239 |
|
---|
[3028] | 240 | /// <summary>
|
---|
| 241 | /// Deserializes an object from the specified stream.
|
---|
| 242 | /// </summary>
|
---|
| 243 | /// <typeparam name="T">object type expected from the serialized stream</typeparam>
|
---|
| 244 | /// <param name="stream">The stream.</param>
|
---|
| 245 | /// <returns>A fresh object instance.</returns>
|
---|
| 246 | public static T Deserialize<T>(Stream stream) {
|
---|
| 247 | return (T)Deserialize(stream);
|
---|
| 248 | }
|
---|
| 249 |
|
---|
[11650] | 250 | private static object Deserialize(ZipArchive zipFile) {
|
---|
[1779] | 251 | try {
|
---|
[11650] | 252 | ZipArchiveEntry typecache = zipFile.GetEntry("typecache.xml");
|
---|
| 253 | if (typecache == null) throw new PersistenceException("file does not contain typecache.xml");
|
---|
| 254 | Deserializer deSerializer;
|
---|
| 255 | using (StreamReader sr = new StreamReader(typecache.Open())) {
|
---|
| 256 | deSerializer = new Deserializer(ParseTypeCache(sr));
|
---|
| 257 | }
|
---|
| 258 |
|
---|
| 259 | ZipArchiveEntry data = zipFile.GetEntry("data.xml");
|
---|
| 260 | if (data == null) throw new PersistenceException("file does not contain data.xml");
|
---|
| 261 | object result;
|
---|
| 262 | using (StreamReader sr = new StreamReader(data.Open())) {
|
---|
| 263 | XmlParser parser = new XmlParser(sr);
|
---|
| 264 | result = deSerializer.Deserialize(parser);
|
---|
| 265 | }
|
---|
| 266 |
|
---|
[1625] | 267 | return result;
|
---|
[4068] | 268 | }
|
---|
| 269 | catch (PersistenceException) {
|
---|
[1625] | 270 | throw;
|
---|
[4068] | 271 | }
|
---|
| 272 | catch (Exception e) {
|
---|
[1625] | 273 | throw new PersistenceException("Unexpected exception during deserialization", e);
|
---|
| 274 | }
|
---|
[1454] | 275 | }
|
---|
[1566] | 276 | }
|
---|
[1564] | 277 | } |
---|