diff options
author | Teravus Ovares (Dan Olivares) | 2009-12-12 01:24:25 -0500 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2009-12-12 01:24:25 -0500 |
commit | 35961caec6de48ec79e9af79fa1a2edf176b4389 (patch) | |
tree | 17872ae62dc84525420ff8a248f3eaf8aac6dbba /OpenSim/Framework/AssetConfig.cs | |
parent | * Commit some sit code that's commented out for now. (diff) | |
parent | Getting rid of SimpleRegionInfo and SerializableRegionInfo per Mel (diff) | |
download | opensim-SC_OLD-35961caec6de48ec79e9af79fa1a2edf176b4389.zip opensim-SC_OLD-35961caec6de48ec79e9af79fa1a2edf176b4389.tar.gz opensim-SC_OLD-35961caec6de48ec79e9af79fa1a2edf176b4389.tar.bz2 opensim-SC_OLD-35961caec6de48ec79e9af79fa1a2edf176b4389.tar.xz |
Merge branch 'master' of ssh://MyConnection/var/git/opensim
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/AssetConfig.cs | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/OpenSim/Framework/AssetConfig.cs b/OpenSim/Framework/AssetConfig.cs deleted file mode 100644 index 9ee41a1..0000000 --- a/OpenSim/Framework/AssetConfig.cs +++ /dev/null | |||
@@ -1,87 +0,0 @@ | |||
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 OpenSimulator 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; | ||
29 | using System.IO; | ||
30 | |||
31 | namespace OpenSim.Framework | ||
32 | { | ||
33 | /// <summary> | ||
34 | /// AssetConfig -- For Asset Server Configuration | ||
35 | /// </summary> | ||
36 | public class AssetConfig:ConfigBase | ||
37 | { | ||
38 | public string DatabaseConnect = String.Empty; | ||
39 | public string DatabaseProvider = String.Empty; | ||
40 | public uint HttpPort = ConfigSettings.DefaultAssetServerHttpPort; | ||
41 | public string AssetSetsLocation = string.Empty; | ||
42 | |||
43 | public AssetConfig(string description, string filename) | ||
44 | { | ||
45 | m_configMember = | ||
46 | new ConfigurationMember(filename, description, loadConfigurationOptions, handleIncomingConfiguration, true); | ||
47 | m_configMember.performConfigurationRetrieve(); | ||
48 | } | ||
49 | |||
50 | public void loadConfigurationOptions() | ||
51 | { | ||
52 | m_configMember.addConfigurationOption("database_provider", ConfigurationOption.ConfigurationTypes.TYPE_STRING, | ||
53 | "DLL for database provider", "OpenSim.Data.MySQL.dll", false); | ||
54 | |||
55 | m_configMember.addConfigurationOption("database_connect", ConfigurationOption.ConfigurationTypes.TYPE_STRING, | ||
56 | "Database connection string", "", false); | ||
57 | |||
58 | m_configMember.addConfigurationOption("http_port", ConfigurationOption.ConfigurationTypes.TYPE_UINT32, | ||
59 | "Http Listener port", ConfigSettings.DefaultAssetServerHttpPort.ToString(), false); | ||
60 | |||
61 | m_configMember.addConfigurationOption("assetset_location", ConfigurationOption.ConfigurationTypes.TYPE_STRING, | ||
62 | "Location of 'AssetSets.xml'", | ||
63 | string.Format(".{0}assets{0}AssetSets.xml", Path.DirectorySeparatorChar), false); | ||
64 | } | ||
65 | |||
66 | public bool handleIncomingConfiguration(string configuration_key, object configuration_result) | ||
67 | { | ||
68 | switch (configuration_key) | ||
69 | { | ||
70 | case "database_provider": | ||
71 | DatabaseProvider = (string) configuration_result; | ||
72 | break; | ||
73 | case "database_connect": | ||
74 | DatabaseConnect = (string) configuration_result; | ||
75 | break; | ||
76 | case "assetset_location": | ||
77 | AssetSetsLocation = (string) configuration_result; | ||
78 | break; | ||
79 | case "http_port": | ||
80 | HttpPort = (uint) configuration_result; | ||
81 | break; | ||
82 | } | ||
83 | |||
84 | return true; | ||
85 | } | ||
86 | } | ||
87 | } | ||