aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/GenericConfig
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/GenericConfig')
-rw-r--r--OpenSim/Framework/GenericConfig/Xml/Properties/AssemblyInfo.cs33
-rw-r--r--OpenSim/Framework/GenericConfig/Xml/XmlConfig.cs122
2 files changed, 0 insertions, 155 deletions
diff --git a/OpenSim/Framework/GenericConfig/Xml/Properties/AssemblyInfo.cs b/OpenSim/Framework/GenericConfig/Xml/Properties/AssemblyInfo.cs
deleted file mode 100644
index 28779ee..0000000
--- a/OpenSim/Framework/GenericConfig/Xml/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,33 +0,0 @@
1using System.Reflection;
2using System.Runtime.InteropServices;
3// General Information about an assembly is controlled through the following
4// set of attributes. Change these attribute values to modify the information
5// associated with an assembly.
6[assembly: AssemblyTitle("OpenSim.GenericConfig")]
7[assembly: AssemblyDescription("")]
8[assembly: AssemblyConfiguration("")]
9[assembly: AssemblyCompany("")]
10[assembly: AssemblyProduct("OpenSim.GenericConfig")]
11[assembly: AssemblyCopyright("Copyright © 2007")]
12[assembly: AssemblyTrademark("")]
13[assembly: AssemblyCulture("")]
14
15// Setting ComVisible to false makes the types in this assembly not visible
16// to COM components. If you need to access a type in this assembly from
17// COM, set the ComVisible attribute to true on that type.
18[assembly: ComVisible(false)]
19
20// The following GUID is for the ID of the typelib if this project is exposed to COM
21[assembly: Guid("285a3047-f165-46c8-8767-b51428738a09")]
22
23// Version information for an assembly consists of the following four values:
24//
25// Major Version
26// Minor Version
27// Build Number
28// Revision
29//
30// You can specify all the values or you can default the Revision and Build Numbers
31// by using the '*' as shown below:
32[assembly: AssemblyVersion("1.0.0.0")]
33[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/OpenSim/Framework/GenericConfig/Xml/XmlConfig.cs b/OpenSim/Framework/GenericConfig/Xml/XmlConfig.cs
deleted file mode 100644
index 2ed8d28..0000000
--- a/OpenSim/Framework/GenericConfig/Xml/XmlConfig.cs
+++ /dev/null
@@ -1,122 +0,0 @@
1/*
2* Copyright (c) Contributors, http://www.openmetaverse.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*/
28using System;
29using System.IO;
30using System.Xml;
31using OpenSim.Framework.Interfaces;
32
33namespace OpenSim.GenericConfig
34{
35 public class XmlConfig : IGenericConfig
36 {
37 private XmlDocument doc;
38 private XmlNode rootNode;
39 private XmlNode configNode;
40 private string fileName;
41 private bool createdFile = false;
42
43 public XmlConfig(string filename)
44 {
45 fileName = filename;
46 }
47
48 public void LoadData()
49 {
50 doc = new XmlDocument();
51
52 if (File.Exists(fileName))
53 {
54 XmlTextReader reader = new XmlTextReader(fileName);
55 reader.WhitespaceHandling = WhitespaceHandling.None;
56 doc.Load(reader);
57 reader.Close();
58 }
59 else
60 {
61 createdFile = true;
62 rootNode = doc.CreateNode(XmlNodeType.Element, "Root", "");
63 doc.AppendChild(rootNode);
64 configNode = doc.CreateNode(XmlNodeType.Element, "Config", "");
65 rootNode.AppendChild(configNode);
66 }
67
68
69 rootNode = doc.FirstChild;
70 if (rootNode.Name != "Root")
71 throw new Exception("Error: Invalid .xml File. Missing <Root>");
72
73 configNode = rootNode.FirstChild;
74 if (configNode.Name != "Config")
75 throw new Exception("Error: Invalid .xml File. <Root> first child should be <Config>");
76
77 if (createdFile)
78 {
79 this.Commit();
80 }
81 }
82
83 public string GetAttribute(string attributeName)
84 {
85 string result = "";
86 if (configNode.Attributes[attributeName] != null)
87 {
88 result = ((XmlAttribute)configNode.Attributes.GetNamedItem(attributeName)).Value;
89 }
90 return result;
91 }
92
93 public bool SetAttribute(string attributeName, string attributeValue)
94 {
95 if (configNode.Attributes[attributeName] != null)
96 {
97 ((XmlAttribute)configNode.Attributes.GetNamedItem(attributeName)).Value = attributeValue;
98 }
99 else
100 {
101 XmlAttribute attri;
102 attri = doc.CreateAttribute(attributeName);
103 attri.Value = attributeValue;
104 configNode.Attributes.Append(attri);
105 }
106 return true;
107 }
108
109 public void Commit()
110 {
111 doc.Save(fileName);
112 }
113
114 public void Close()
115 {
116 configNode = null;
117 rootNode = null;
118 doc = null;
119 }
120
121 }
122}