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 |
|
---|
22 | using System;
|
---|
23 | using HeuristicLab.Persistence.Core;
|
---|
24 | using HeuristicLab.Persistence.Interfaces;
|
---|
25 | using System.Text;
|
---|
26 | using System.Text.RegularExpressions;
|
---|
27 | using System.Globalization;
|
---|
28 |
|
---|
29 |
|
---|
30 | namespace HeuristicLab.Persistence.Default.Xml.Primitive {
|
---|
31 |
|
---|
32 | /// <summary>
|
---|
33 | /// Serializes a string to XML by embedding into a CDATA block.
|
---|
34 | /// </summary>
|
---|
35 | public sealed class String2XmlSerializer : PrimitiveXmlSerializerBase<string> {
|
---|
36 |
|
---|
37 | /// <summary>
|
---|
38 | /// Formats the specified string.
|
---|
39 | /// </summary>
|
---|
40 | /// <param name="s">The string.</param>
|
---|
41 | /// <returns>An XmlString that embeds the string s in a CDATA section.</returns>
|
---|
42 | public override XmlString Format(string s) {
|
---|
43 | StringBuilder sb = new StringBuilder();
|
---|
44 | sb.Append("<![CDATA[");
|
---|
45 | sb.Append(s.Replace("]]>", "]]]]><![CDATA[>"));
|
---|
46 | sb.Append("]]>");
|
---|
47 | return new XmlString(sb.ToString());
|
---|
48 | }
|
---|
49 |
|
---|
50 | private static Regex re = new Regex(@"<!\[CDATA\[((?:[^]]|\](?!\]>))*)\]\]>", RegexOptions.Singleline);
|
---|
51 |
|
---|
52 | /// <summary>
|
---|
53 | /// Parses the specified XmlString into a string.
|
---|
54 | /// </summary>
|
---|
55 | /// <param name="x">The XMLString.</param>
|
---|
56 | /// <returns>The plain string contained in the XML CDATA section.</returns>
|
---|
57 | public override string Parse(XmlString x) {
|
---|
58 | StringBuilder sb = new StringBuilder();
|
---|
59 | foreach (Match m in re.Matches(x.Data)) {
|
---|
60 | sb.Append(m.Groups[1]);
|
---|
61 | }
|
---|
62 | string result = sb.ToString();
|
---|
63 | if (result.Length == 0 && x.Data.Length > 0 && !x.Data.Equals("<![CDATA[]]>"))
|
---|
64 | throw new PersistenceException("Invalid CDATA section during string parsing.");
|
---|
65 | return result;
|
---|
66 | }
|
---|
67 | }
|
---|
68 | } |
---|