diff options
author | Adam Frisby | 2008-04-21 07:09:17 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-21 07:09:17 +0000 |
commit | fef3b3689492dea63693c964bcdbec9f5137eb5e (patch) | |
tree | 7791eef001d85d3e1de863a68f26ff9434d062ca /OpenSim/Data/NHibernate | |
parent | * Terrain Module code has been reformatted to comply with guidelines. (diff) | |
download | opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.zip opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.gz opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.bz2 opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.xz |
* Optimised using statements and namespace references across entire project (this took a while to run).
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/NHibernate/NHibernateAssetData.cs | 14 | ||||
-rw-r--r-- | OpenSim/Data/NHibernate/NHibernateInventoryData.cs | 18 | ||||
-rw-r--r-- | OpenSim/Data/NHibernate/NHibernateManager.cs | 9 | ||||
-rw-r--r-- | OpenSim/Data/NHibernate/NHibernateUserData.cs | 16 | ||||
-rw-r--r-- | OpenSim/Data/NHibernate/Types/LLUUIDUserType.cs | 6 |
5 files changed, 26 insertions, 37 deletions
diff --git a/OpenSim/Data/NHibernate/NHibernateAssetData.cs b/OpenSim/Data/NHibernate/NHibernateAssetData.cs index cc018dd..db90d09 100644 --- a/OpenSim/Data/NHibernate/NHibernateAssetData.cs +++ b/OpenSim/Data/NHibernate/NHibernateAssetData.cs | |||
@@ -26,17 +26,15 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Data; | 29 | using System.IO; |
30 | using System.Reflection; | 30 | using System.Reflection; |
31 | using libsecondlife; | 31 | using libsecondlife; |
32 | using log4net; | ||
32 | using NHibernate; | 33 | using NHibernate; |
33 | using NHibernate.Cfg; | 34 | using NHibernate.Cfg; |
34 | using NHibernate.Tool.hbm2ddl; | ||
35 | using NHibernate.Mapping.Attributes; | 35 | using NHibernate.Mapping.Attributes; |
36 | using OpenSim.Data; | ||
37 | using OpenSim.Framework; | 36 | using OpenSim.Framework; |
38 | using OpenSim.Framework.Console; | 37 | using Environment=NHibernate.Cfg.Environment; |
39 | using Environment = NHibernate.Cfg.Environment; | ||
40 | 38 | ||
41 | namespace OpenSim.Data.NHibernate | 39 | namespace OpenSim.Data.NHibernate |
42 | { | 40 | { |
@@ -45,7 +43,7 @@ namespace OpenSim.Data.NHibernate | |||
45 | /// </summary> | 43 | /// </summary> |
46 | public class NHibernateAssetData : AssetDataBase, IDisposable | 44 | public class NHibernateAssetData : AssetDataBase, IDisposable |
47 | { | 45 | { |
48 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 46 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
49 | 47 | ||
50 | private Configuration cfg; | 48 | private Configuration cfg; |
51 | private ISessionFactory factory; | 49 | private ISessionFactory factory; |
@@ -67,8 +65,8 @@ namespace OpenSim.Data.NHibernate | |||
67 | cfg.AddAssembly("OpenSim.Data.NHibernate"); | 65 | cfg.AddAssembly("OpenSim.Data.NHibernate"); |
68 | 66 | ||
69 | HbmSerializer.Default.Validate = true; | 67 | HbmSerializer.Default.Validate = true; |
70 | using ( System.IO.MemoryStream stream = | 68 | using ( MemoryStream stream = |
71 | HbmSerializer.Default.Serialize(System.Reflection.Assembly.GetExecutingAssembly())) | 69 | HbmSerializer.Default.Serialize(Assembly.GetExecutingAssembly())) |
72 | cfg.AddInputStream(stream); | 70 | cfg.AddInputStream(stream); |
73 | 71 | ||
74 | // new SchemaExport(cfg).Create(true, true); | 72 | // new SchemaExport(cfg).Create(true, true); |
diff --git a/OpenSim/Data/NHibernate/NHibernateInventoryData.cs b/OpenSim/Data/NHibernate/NHibernateInventoryData.cs index a004e29..1ac0f0c 100644 --- a/OpenSim/Data/NHibernate/NHibernateInventoryData.cs +++ b/OpenSim/Data/NHibernate/NHibernateInventoryData.cs | |||
@@ -26,25 +26,23 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Data; | ||
30 | using System.Reflection; | ||
31 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.IO; | ||
31 | using System.Reflection; | ||
32 | using libsecondlife; | 32 | using libsecondlife; |
33 | using log4net; | ||
33 | using NHibernate; | 34 | using NHibernate; |
34 | using NHibernate.Expression; | ||
35 | using NHibernate.Cfg; | 35 | using NHibernate.Cfg; |
36 | using NHibernate.Tool.hbm2ddl; | 36 | using NHibernate.Expression; |
37 | using NHibernate.Mapping.Attributes; | 37 | using NHibernate.Mapping.Attributes; |
38 | using OpenSim.Data; | ||
39 | using OpenSim.Framework; | 38 | using OpenSim.Framework; |
40 | using OpenSim.Framework.Console; | 39 | using Environment=NHibernate.Cfg.Environment; |
41 | using Environment = NHibernate.Cfg.Environment; | ||
42 | 40 | ||
43 | namespace OpenSim.Data.NHibernate | 41 | namespace OpenSim.Data.NHibernate |
44 | { | 42 | { |
45 | public class NHibernateInventoryData: IInventoryData | 43 | public class NHibernateInventoryData: IInventoryData |
46 | { | 44 | { |
47 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
48 | 46 | ||
49 | private Configuration cfg; | 47 | private Configuration cfg; |
50 | private ISessionFactory factory; | 48 | private ISessionFactory factory; |
@@ -74,8 +72,8 @@ namespace OpenSim.Data.NHibernate | |||
74 | cfg.AddAssembly("OpenSim.Data.NHibernate"); | 72 | cfg.AddAssembly("OpenSim.Data.NHibernate"); |
75 | 73 | ||
76 | HbmSerializer.Default.Validate = true; | 74 | HbmSerializer.Default.Validate = true; |
77 | using ( System.IO.MemoryStream stream = | 75 | using ( MemoryStream stream = |
78 | HbmSerializer.Default.Serialize(System.Reflection.Assembly.GetExecutingAssembly())) | 76 | HbmSerializer.Default.Serialize(Assembly.GetExecutingAssembly())) |
79 | cfg.AddInputStream(stream); | 77 | cfg.AddInputStream(stream); |
80 | 78 | ||
81 | // new SchemaExport(cfg).Create(true, true); | 79 | // new SchemaExport(cfg).Create(true, true); |
diff --git a/OpenSim/Data/NHibernate/NHibernateManager.cs b/OpenSim/Data/NHibernate/NHibernateManager.cs index edef8ad..6f13294 100644 --- a/OpenSim/Data/NHibernate/NHibernateManager.cs +++ b/OpenSim/Data/NHibernate/NHibernateManager.cs | |||
@@ -25,18 +25,15 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System.Reflection; |
29 | using System.Collections.Generic; | 29 | using log4net; |
30 | using System.Data; | ||
31 | using libsecondlife; | ||
32 | using NHibernate; | 30 | using NHibernate; |
33 | using NHibernate.Cfg; | ||
34 | 31 | ||
35 | namespace OpenSim.Data.NHibernate | 32 | namespace OpenSim.Data.NHibernate |
36 | { | 33 | { |
37 | internal class NHibernateManager | 34 | internal class NHibernateManager |
38 | { | 35 | { |
39 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 36 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
40 | 37 | ||
41 | private ISessionFactory factory; | 38 | private ISessionFactory factory; |
42 | private ISession session; | 39 | private ISession session; |
diff --git a/OpenSim/Data/NHibernate/NHibernateUserData.cs b/OpenSim/Data/NHibernate/NHibernateUserData.cs index 0bbebaa..c0fe26c 100644 --- a/OpenSim/Data/NHibernate/NHibernateUserData.cs +++ b/OpenSim/Data/NHibernate/NHibernateUserData.cs | |||
@@ -25,20 +25,16 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.Data; | ||
30 | using System.Reflection; | ||
31 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | using System.IO; | ||
30 | using System.Reflection; | ||
32 | using libsecondlife; | 31 | using libsecondlife; |
32 | using log4net; | ||
33 | using NHibernate; | 33 | using NHibernate; |
34 | using NHibernate.Cfg; | 34 | using NHibernate.Cfg; |
35 | using NHibernate.Expression; | 35 | using NHibernate.Expression; |
36 | using NHibernate.Tool.hbm2ddl; | ||
37 | using NHibernate.Mapping.Attributes; | 36 | using NHibernate.Mapping.Attributes; |
38 | using OpenSim.Data; | ||
39 | using OpenSim.Framework; | 37 | using OpenSim.Framework; |
40 | using OpenSim.Framework.Console; | ||
41 | using Environment = NHibernate.Cfg.Environment; | ||
42 | 38 | ||
43 | namespace OpenSim.Data.NHibernate | 39 | namespace OpenSim.Data.NHibernate |
44 | { | 40 | { |
@@ -47,7 +43,7 @@ namespace OpenSim.Data.NHibernate | |||
47 | /// </summary> | 43 | /// </summary> |
48 | public class NHibernateUserData : UserDataBase | 44 | public class NHibernateUserData : UserDataBase |
49 | { | 45 | { |
50 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 46 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
51 | 47 | ||
52 | private Configuration cfg; | 48 | private Configuration cfg; |
53 | private ISessionFactory factory; | 49 | private ISessionFactory factory; |
@@ -69,8 +65,8 @@ namespace OpenSim.Data.NHibernate | |||
69 | cfg.AddAssembly("OpenSim.Data.NHibernate"); | 65 | cfg.AddAssembly("OpenSim.Data.NHibernate"); |
70 | 66 | ||
71 | HbmSerializer.Default.Validate = true; | 67 | HbmSerializer.Default.Validate = true; |
72 | using ( System.IO.MemoryStream stream = | 68 | using ( MemoryStream stream = |
73 | HbmSerializer.Default.Serialize(System.Reflection.Assembly.GetExecutingAssembly())) | 69 | HbmSerializer.Default.Serialize(Assembly.GetExecutingAssembly())) |
74 | cfg.AddInputStream(stream); | 70 | cfg.AddInputStream(stream); |
75 | 71 | ||
76 | // new SchemaExport(cfg).Create(true, true); | 72 | // new SchemaExport(cfg).Create(true, true); |
diff --git a/OpenSim/Data/NHibernate/Types/LLUUIDUserType.cs b/OpenSim/Data/NHibernate/Types/LLUUIDUserType.cs index 2c1f7dd..e4f1dc2 100644 --- a/OpenSim/Data/NHibernate/Types/LLUUIDUserType.cs +++ b/OpenSim/Data/NHibernate/Types/LLUUIDUserType.cs | |||
@@ -27,10 +27,10 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Data; | 29 | using System.Data; |
30 | using libsecondlife; | ||
30 | using NHibernate; | 31 | using NHibernate; |
31 | using NHibernate.SqlTypes; | 32 | using NHibernate.SqlTypes; |
32 | using NHibernate.UserTypes; | 33 | using NHibernate.UserTypes; |
33 | using libsecondlife; | ||
34 | 34 | ||
35 | namespace OpenSim.Data.NHibernate | 35 | namespace OpenSim.Data.NHibernate |
36 | { | 36 | { |
@@ -67,7 +67,7 @@ namespace OpenSim.Data.NHibernate | |||
67 | get { return false; } | 67 | get { return false; } |
68 | } | 68 | } |
69 | 69 | ||
70 | public object NullSafeGet(System.Data.IDataReader rs, string[] names, object owner) | 70 | public object NullSafeGet(IDataReader rs, string[] names, object owner) |
71 | { | 71 | { |
72 | object uuid = null; | 72 | object uuid = null; |
73 | 73 | ||
@@ -81,7 +81,7 @@ namespace OpenSim.Data.NHibernate | |||
81 | return uuid; | 81 | return uuid; |
82 | } | 82 | } |
83 | 83 | ||
84 | public void NullSafeSet(System.Data.IDbCommand cmd, object obj, int index) | 84 | public void NullSafeSet(IDbCommand cmd, object obj, int index) |
85 | { | 85 | { |
86 | LLUUID uuid = (LLUUID)obj; | 86 | LLUUID uuid = (LLUUID)obj; |
87 | ((IDataParameter)cmd.Parameters[index]).Value = uuid.ToString(); | 87 | ((IDataParameter)cmd.Parameters[index]).Value = uuid.ToString(); |