diff options
author | Mike Mazur | 2009-02-03 05:20:44 +0000 |
---|---|---|
committer | Mike Mazur | 2009-02-03 05:20:44 +0000 |
commit | d259238c748aafe366fd1d04e0248ef23116fd28 (patch) | |
tree | ec85d8863cffedda47d396d007459b5499bd8162 /OpenSim/Grid/AssetServer | |
parent | - move OpenSim/Framework/IUserData.cs to OpenSim/Data/IUserData.cs (diff) | |
download | opensim-SC_OLD-d259238c748aafe366fd1d04e0248ef23116fd28.zip opensim-SC_OLD-d259238c748aafe366fd1d04e0248ef23116fd28.tar.gz opensim-SC_OLD-d259238c748aafe366fd1d04e0248ef23116fd28.tar.bz2 opensim-SC_OLD-d259238c748aafe366fd1d04e0248ef23116fd28.tar.xz |
- moved data plugin loading code from various places to
OpenSim/Data/DataPluginFactory.cs
- removed dependencies on a few executable assemblies in
bin/OpenSim.Data.addin.xml
- trim trailing whitespace
Diffstat (limited to 'OpenSim/Grid/AssetServer')
-rw-r--r-- | OpenSim/Grid/AssetServer/Main.cs | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/OpenSim/Grid/AssetServer/Main.cs b/OpenSim/Grid/AssetServer/Main.cs index 07fe0a4..060c473 100644 --- a/OpenSim/Grid/AssetServer/Main.cs +++ b/OpenSim/Grid/AssetServer/Main.cs | |||
@@ -112,24 +112,11 @@ namespace OpenSim.Grid.AssetServer | |||
112 | return null; | 112 | return null; |
113 | } | 113 | } |
114 | 114 | ||
115 | public IAssetDataPlugin LoadDatabasePlugin(string provider, string connect) | ||
116 | { | ||
117 | PluginLoader<IAssetDataPlugin> loader = | ||
118 | new PluginLoader<IAssetDataPlugin> (new AssetDataInitialiser (connect)); | ||
119 | |||
120 | // loader will try to load all providers (MySQL, MSSQL, etc) | ||
121 | // unless it is constrainted to the correct "Provider" entry in the addin.xml | ||
122 | loader.Add ("/OpenSim/AssetData", new PluginProviderFilter (provider)); | ||
123 | loader.Load(); | ||
124 | |||
125 | return loader.Plugin; | ||
126 | } | ||
127 | |||
128 | public void setupDB(AssetConfig config) | 115 | public void setupDB(AssetConfig config) |
129 | { | 116 | { |
130 | try | 117 | try |
131 | { | 118 | { |
132 | m_assetProvider = LoadDatabasePlugin(config.DatabaseProvider, config.DatabaseConnect); | 119 | m_assetProvider = DataPluginFactory.LoadAssetDataPlugin(config.DatabaseProvider, config.DatabaseConnect); |
133 | if (m_assetProvider == null) | 120 | if (m_assetProvider == null) |
134 | { | 121 | { |
135 | m_log.Error("[ASSET]: Failed to load a database plugin, server halting"); | 122 | m_log.Error("[ASSET]: Failed to load a database plugin, server halting"); |