2007-06-01 23:53:02 +00:00
/ *
2007-06-05 20:22:10 +00:00
* Copyright ( c ) OpenSim project , http : //www.openmetaverse.org/
2007-06-01 23:53:02 +00:00
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions are met :
* * Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
* * Redistributions in binary form must reproduce the above copyright
* notice , this list of conditions and the following disclaimer in the
* documentation and / or other materials provided with the distribution .
* * Neither the name of the < organization > nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission .
*
* THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ` ` AS IS ' ' AND ANY
* EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED . IN NO EVENT SHALL < copyright holder > BE LIABLE FOR ANY
* DIRECT , INDIRECT , INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES
* ( INCLUDING , BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ;
* LOSS OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
* ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*
* /
2007-05-05 23:39:42 +00:00
using System ;
using System.Collections.Generic ;
using System.Text ;
using System.Data ;
using System.Data.SqlClient ;
using OpenGrid.Framework.Data ;
namespace OpenGrid.Framework.Data.MSSQL
{
2007-06-02 00:37:31 +00:00
/// <summary>
/// A management class for the MS SQL Storage Engine
/// </summary>
2007-05-05 23:39:42 +00:00
class MSSqlManager
{
2007-06-02 00:37:31 +00:00
/// <summary>
/// The database connection object
/// </summary>
2007-05-05 23:39:42 +00:00
IDbConnection dbcon ;
/// <summary>
/// Initialises and creates a new Sql connection and maintains it.
/// </summary>
/// <param name="hostname">The Sql server being connected to</param>
/// <param name="database">The name of the Sql database being used</param>
/// <param name="username">The username logging into the database</param>
/// <param name="password">The password for the user logging in</param>
/// <param name="cpooling">Whether to use connection pooling or not, can be one of the following: 'yes', 'true', 'no' or 'false', if unsure use 'false'.</param>
public MSSqlManager ( string hostname , string database , string username , string password , string cpooling )
{
try
{
string connectionString = "Server=" + hostname + ";Database=" + database + ";User ID=" + username + ";Password=" + password + ";Pooling=" + cpooling + ";" ;
dbcon = new SqlConnection ( connectionString ) ;
dbcon . Open ( ) ;
}
catch ( Exception e )
{
throw new Exception ( "Error initialising Sql Database: " + e . ToString ( ) ) ;
}
}
/// <summary>
/// Shuts down the database connection
/// </summary>
public void Close ( )
{
dbcon . Close ( ) ;
dbcon = null ;
}
/// <summary>
/// Runs a query with protection against SQL Injection by using parameterised input.
/// </summary>
/// <param name="sql">The SQL string - replace any variables such as WHERE x = "y" with WHERE x = @y</param>
/// <param name="parameters">The parameters - index so that @y is indexed as 'y'</param>
/// <returns>A Sql DB Command</returns>
public IDbCommand Query ( string sql , Dictionary < string , string > parameters )
{
SqlCommand dbcommand = ( SqlCommand ) dbcon . CreateCommand ( ) ;
dbcommand . CommandText = sql ;
foreach ( KeyValuePair < string , string > param in parameters )
{
2007-05-20 14:38:25 +00:00
dbcommand . Parameters . AddWithValue ( param . Key , param . Value ) ;
2007-05-05 23:39:42 +00:00
}
return ( IDbCommand ) dbcommand ;
}
2007-06-01 23:53:02 +00:00
/// <summary>
/// Runs a database reader object and returns a region row
/// </summary>
/// <param name="reader">An active database reader</param>
/// <returns>A region row</returns>
2007-05-05 23:39:42 +00:00
public SimProfileData getRow ( IDataReader reader )
{
2007-06-01 23:53:02 +00:00
SimProfileData regionprofile = new SimProfileData ( ) ;
2007-05-05 23:39:42 +00:00
if ( reader . Read ( ) )
{
// Region Main
2007-06-01 23:53:02 +00:00
regionprofile . regionHandle = ( ulong ) reader [ "regionHandle" ] ;
regionprofile . regionName = ( string ) reader [ "regionName" ] ;
regionprofile . UUID = new libsecondlife . LLUUID ( ( string ) reader [ "uuid" ] ) ;
2007-05-05 23:39:42 +00:00
// Secrets
2007-06-01 23:53:02 +00:00
regionprofile . regionRecvKey = ( string ) reader [ "regionRecvKey" ] ;
regionprofile . regionSecret = ( string ) reader [ "regionSecret" ] ;
regionprofile . regionSendKey = ( string ) reader [ "regionSendKey" ] ;
2007-05-05 23:39:42 +00:00
// Region Server
2007-06-01 23:53:02 +00:00
regionprofile . regionDataURI = ( string ) reader [ "regionDataURI" ] ;
regionprofile . regionOnline = false ; // Needs to be pinged before this can be set.
regionprofile . serverIP = ( string ) reader [ "serverIP" ] ;
regionprofile . serverPort = ( uint ) reader [ "serverPort" ] ;
regionprofile . serverURI = ( string ) reader [ "serverURI" ] ;
2007-05-05 23:39:42 +00:00
// Location
2007-06-01 23:53:02 +00:00
regionprofile . regionLocX = ( uint ) ( ( int ) reader [ "locX" ] ) ;
regionprofile . regionLocY = ( uint ) ( ( int ) reader [ "locY" ] ) ;
regionprofile . regionLocZ = ( uint ) ( ( int ) reader [ "locZ" ] ) ;
2007-05-05 23:39:42 +00:00
// Neighbours - 0 = No Override
2007-06-01 23:53:02 +00:00
regionprofile . regionEastOverrideHandle = ( ulong ) reader [ "eastOverrideHandle" ] ;
regionprofile . regionWestOverrideHandle = ( ulong ) reader [ "westOverrideHandle" ] ;
regionprofile . regionSouthOverrideHandle = ( ulong ) reader [ "southOverrideHandle" ] ;
regionprofile . regionNorthOverrideHandle = ( ulong ) reader [ "northOverrideHandle" ] ;
2007-05-05 23:39:42 +00:00
// Assets
2007-06-01 23:53:02 +00:00
regionprofile . regionAssetURI = ( string ) reader [ "regionAssetURI" ] ;
regionprofile . regionAssetRecvKey = ( string ) reader [ "regionAssetRecvKey" ] ;
regionprofile . regionAssetSendKey = ( string ) reader [ "regionAssetSendKey" ] ;
2007-05-05 23:39:42 +00:00
// Userserver
2007-06-01 23:53:02 +00:00
regionprofile . regionUserURI = ( string ) reader [ "regionUserURI" ] ;
regionprofile . regionUserRecvKey = ( string ) reader [ "regionUserRecvKey" ] ;
regionprofile . regionUserSendKey = ( string ) reader [ "regionUserSendKey" ] ;
2007-05-05 23:39:42 +00:00
}
else
{
throw new Exception ( "No rows to return" ) ;
}
2007-06-01 23:53:02 +00:00
return regionprofile ;
2007-05-05 23:39:42 +00:00
}
2007-06-01 23:53:02 +00:00
/// <summary>
/// Creates a new region in the database
/// </summary>
/// <param name="profile">The region profile to insert</param>
/// <returns>Successful?</returns>
2007-05-05 23:39:42 +00:00
public bool insertRow ( SimProfileData profile )
{
string sql = "REPLACE INTO regions VALUES (regionHandle, regionName, uuid, regionRecvKey, regionSecret, regionSendKey, regionDataURI, " ;
sql + = "serverIP, serverPort, serverURI, locX, locY, locZ, eastOverrideHandle, westOverrideHandle, southOverrideHandle, northOverrideHandle, regionAssetURI, regionAssetRecvKey, " ;
sql + = "regionAssetSendKey, regionUserURI, regionUserRecvKey, regionUserSendKey) VALUES " ;
sql + = "(@regionHandle, @regionName, @uuid, @regionRecvKey, @regionSecret, @regionSendKey, @regionDataURI, " ;
sql + = "@serverIP, @serverPort, @serverURI, @locX, @locY, @locZ, @eastOverrideHandle, @westOverrideHandle, @southOverrideHandle, @northOverrideHandle, @regionAssetURI, @regionAssetRecvKey, " ;
sql + = "@regionAssetSendKey, @regionUserURI, @regionUserRecvKey, @regionUserSendKey);" ;
Dictionary < string , string > parameters = new Dictionary < string , string > ( ) ;
parameters [ "regionHandle" ] = profile . regionHandle . ToString ( ) ;
parameters [ "regionName" ] = profile . regionName ;
parameters [ "uuid" ] = profile . UUID . ToString ( ) ;
parameters [ "regionRecvKey" ] = profile . regionRecvKey ;
parameters [ "regionSendKey" ] = profile . regionSendKey ;
parameters [ "regionDataURI" ] = profile . regionDataURI ;
parameters [ "serverIP" ] = profile . serverIP ;
parameters [ "serverPort" ] = profile . serverPort . ToString ( ) ;
parameters [ "serverURI" ] = profile . serverURI ;
parameters [ "locX" ] = profile . regionLocX . ToString ( ) ;
parameters [ "locY" ] = profile . regionLocY . ToString ( ) ;
parameters [ "locZ" ] = profile . regionLocZ . ToString ( ) ;
parameters [ "eastOverrideHandle" ] = profile . regionEastOverrideHandle . ToString ( ) ;
parameters [ "westOverrideHandle" ] = profile . regionWestOverrideHandle . ToString ( ) ;
parameters [ "northOverrideHandle" ] = profile . regionNorthOverrideHandle . ToString ( ) ;
parameters [ "southOverrideHandle" ] = profile . regionSouthOverrideHandle . ToString ( ) ;
parameters [ "regionAssetURI" ] = profile . regionAssetURI ;
parameters [ "regionAssetRecvKey" ] = profile . regionAssetRecvKey ;
parameters [ "regionAssetSendKey" ] = profile . regionAssetSendKey ;
parameters [ "regionUserURI" ] = profile . regionUserURI ;
parameters [ "regionUserRecvKey" ] = profile . regionUserRecvKey ;
parameters [ "regionUserSendKey" ] = profile . regionUserSendKey ;
bool returnval = false ;
try
{
IDbCommand result = Query ( sql , parameters ) ;
if ( result . ExecuteNonQuery ( ) = = 1 )
returnval = true ;
result . Dispose ( ) ;
}
catch ( Exception e )
{
return false ;
}
return returnval ;
}
}
}