diff options
author | mingchen | 2007-07-23 19:30:33 +0000 |
---|---|---|
committer | mingchen | 2007-07-23 19:30:33 +0000 |
commit | 87bddd32dfdb6ab43ef21703053935d3cda69c51 (patch) | |
tree | 70d1beaf870770d9180756ae74bd77d3376ec9fb /OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs | |
parent | Applied makomk 's patch from issue #219. (diff) | |
download | opensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.zip opensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.tar.gz opensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.tar.bz2 opensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.tar.xz |
*Added configuration plugin (OpenSim.Framework.Configuration.HTTP.dll) that fetches a file from a remote server
*Right now, values are not saved back to the remote server, but that will be changed
*Removed some warnings from invalid references that were not used anyways
Diffstat (limited to 'OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs')
-rw-r--r-- | OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs b/OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs new file mode 100644 index 0000000..c7d2c9c --- /dev/null +++ b/OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs | |||
@@ -0,0 +1,89 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Net; | ||
4 | using System.IO; | ||
5 | using System.Text; | ||
6 | |||
7 | using OpenSim.Framework.Configuration.Interfaces; | ||
8 | |||
9 | namespace OpenSim.Framework.Configuration.HTTP | ||
10 | { | ||
11 | public class HTTPConfiguration : IGenericConfig | ||
12 | { | ||
13 | RemoteConfigSettings remoteConfigSettings; | ||
14 | |||
15 | XmlConfiguration xmlConfig; | ||
16 | |||
17 | private string configFileName = ""; | ||
18 | |||
19 | public HTTPConfiguration() | ||
20 | { | ||
21 | remoteConfigSettings = new RemoteConfigSettings("remoteconfig.xml"); | ||
22 | xmlConfig = new XmlConfiguration(); | ||
23 | } | ||
24 | |||
25 | public void SetFileName(string fileName) | ||
26 | { | ||
27 | configFileName = fileName; | ||
28 | } | ||
29 | |||
30 | public void LoadData() | ||
31 | { | ||
32 | try | ||
33 | { | ||
34 | StringBuilder sb = new StringBuilder(); | ||
35 | |||
36 | byte[] buf = new byte[8192]; | ||
37 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(this.remoteConfigSettings.baseConfigURL + this.configFileName); | ||
38 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); | ||
39 | |||
40 | Stream resStream = response.GetResponseStream(); | ||
41 | |||
42 | string tempString = null; | ||
43 | int count = 0; | ||
44 | |||
45 | do | ||
46 | { | ||
47 | count = resStream.Read(buf, 0, buf.Length); | ||
48 | if (count != 0) | ||
49 | { | ||
50 | tempString = Encoding.ASCII.GetString(buf, 0, count); | ||
51 | sb.Append(tempString); | ||
52 | } | ||
53 | } | ||
54 | while (count > 0); | ||
55 | LoadDataFromString(sb.ToString()); | ||
56 | } | ||
57 | catch (Exception e) | ||
58 | { | ||
59 | Console.MainLog.Instance.Warn("Unable to connect to remote configuration file (" + remoteConfigSettings.baseConfigURL + configFileName + "). Creating local file instead."); | ||
60 | xmlConfig.SetFileName(configFileName); | ||
61 | xmlConfig.LoadData(); | ||
62 | } | ||
63 | } | ||
64 | |||
65 | public void LoadDataFromString(string data) | ||
66 | { | ||
67 | xmlConfig.LoadDataFromString(data); | ||
68 | |||
69 | } | ||
70 | |||
71 | public string GetAttribute(string attributeName) | ||
72 | { | ||
73 | return xmlConfig.GetAttribute(attributeName); | ||
74 | } | ||
75 | |||
76 | public bool SetAttribute(string attributeName, string attributeValue) | ||
77 | { | ||
78 | return true; | ||
79 | } | ||
80 | |||
81 | public void Commit() | ||
82 | { | ||
83 | } | ||
84 | |||
85 | public void Close() | ||
86 | { | ||
87 | } | ||
88 | } | ||
89 | } | ||