diff options
author | Justin Clarke Casey | 2009-03-26 17:25:12 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-03-26 17:25:12 +0000 |
commit | 93b26f89336d83f2eab43ced0081d60b1acf2d7f (patch) | |
tree | c729d6730fc639d0df44f3613bc477f2d99da00c /OpenSim/Framework/Serialization/External | |
parent | Small refactoring in Caps, no functional changes. (diff) | |
download | opensim-SC_OLD-93b26f89336d83f2eab43ced0081d60b1acf2d7f.zip opensim-SC_OLD-93b26f89336d83f2eab43ced0081d60b1acf2d7f.tar.gz opensim-SC_OLD-93b26f89336d83f2eab43ced0081d60b1acf2d7f.tar.bz2 opensim-SC_OLD-93b26f89336d83f2eab43ced0081d60b1acf2d7f.tar.xz |
* iars: Serialize information about item creators to archive
Diffstat (limited to 'OpenSim/Framework/Serialization/External')
-rw-r--r-- | OpenSim/Framework/Serialization/External/UserProfileSerializer.cs | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/OpenSim/Framework/Serialization/External/UserProfileSerializer.cs b/OpenSim/Framework/Serialization/External/UserProfileSerializer.cs new file mode 100644 index 0000000..fc76fb6 --- /dev/null +++ b/OpenSim/Framework/Serialization/External/UserProfileSerializer.cs | |||
@@ -0,0 +1,71 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System.IO; | ||
29 | using System.Xml; | ||
30 | using OpenSim.Framework; | ||
31 | |||
32 | namespace OpenSim.Framework.Serialization.External | ||
33 | { | ||
34 | /// <summary> | ||
35 | /// Serialize and deserialize region settings for an archive file format. | ||
36 | /// </summary> | ||
37 | /// We didn't use automatic .NET serialization since this is really | ||
38 | /// a file format rather than an object serialization. | ||
39 | public class UserProfileSerializer | ||
40 | { | ||
41 | public const int MAJOR_VERSION = 0; | ||
42 | public const int MINOR_VERSION = 1; | ||
43 | |||
44 | public static string Serialize(UserProfileData profile) | ||
45 | { | ||
46 | StringWriter sw = new StringWriter(); | ||
47 | XmlTextWriter xtw = new XmlTextWriter(sw); | ||
48 | xtw.Formatting = Formatting.Indented; | ||
49 | xtw.WriteStartDocument(); | ||
50 | |||
51 | xtw.WriteStartElement("user_profile"); | ||
52 | xtw.WriteAttributeString("major_version", MAJOR_VERSION.ToString()); | ||
53 | xtw.WriteAttributeString("minor_version", MINOR_VERSION.ToString()); | ||
54 | |||
55 | xtw.WriteElementString("name", profile.Name); | ||
56 | xtw.WriteElementString("id", profile.ID); | ||
57 | xtw.WriteElementString("about", profile.AboutText); | ||
58 | |||
59 | // Not sure if we're storing this yet, need to take a look | ||
60 | // xtw.WriteElementString("Url", profile.Url); | ||
61 | // or, indeed, interests | ||
62 | |||
63 | xtw.WriteEndElement(); | ||
64 | |||
65 | xtw.Close(); | ||
66 | sw.Close(); | ||
67 | |||
68 | return sw.ToString(); | ||
69 | } | ||
70 | } | ||
71 | } \ No newline at end of file | ||