2007-10-19 20:28:18 +00:00
|
|
|
/*
|
2008-03-18 05:16:43 +00:00
|
|
|
* Copyright (c) Contributors, http://opensimulator.org/
|
|
|
|
* See CONTRIBUTORS.TXT for a full list of copyright holders.
|
|
|
|
*
|
|
|
|
* 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.
|
2009-06-01 06:37:14 +00:00
|
|
|
* * Neither the name of the OpenSimulator Project nor the
|
2008-03-18 05:16:43 +00:00
|
|
|
* 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 THE CONTRIBUTORS 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-10-19 20:28:18 +00:00
|
|
|
|
|
|
|
using System;
|
2007-10-30 09:05:31 +00:00
|
|
|
using System.Data;
|
2008-04-21 07:09:17 +00:00
|
|
|
using System.Reflection;
|
2009-03-09 07:29:34 +00:00
|
|
|
using System.Collections.Generic;
|
2008-04-21 07:09:17 +00:00
|
|
|
using log4net;
|
2007-10-30 09:05:31 +00:00
|
|
|
using MySql.Data.MySqlClient;
|
2009-02-12 09:53:12 +00:00
|
|
|
using OpenMetaverse;
|
2008-04-02 16:00:40 +00:00
|
|
|
using OpenSim.Framework;
|
2007-10-19 20:28:18 +00:00
|
|
|
|
2008-04-02 15:36:01 +00:00
|
|
|
namespace OpenSim.Data.MySQL
|
2007-10-19 20:28:18 +00:00
|
|
|
{
|
2008-06-26 12:38:03 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A MySQL Interface for the Asset Server
|
|
|
|
/// </summary>
|
2008-09-24 20:43:32 +00:00
|
|
|
public class MySQLAssetData : AssetDataBase
|
2007-10-19 20:28:18 +00:00
|
|
|
{
|
2008-04-21 07:09:17 +00:00
|
|
|
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
2008-02-05 19:44:27 +00:00
|
|
|
|
2007-10-30 09:05:31 +00:00
|
|
|
private MySQLManager _dbConnection;
|
2009-01-28 01:55:45 +00:00
|
|
|
private long TicksToEpoch;
|
2007-10-30 09:05:31 +00:00
|
|
|
|
2008-06-12 15:47:33 +00:00
|
|
|
#region IPlugin Members
|
|
|
|
|
2008-06-26 01:12:28 +00:00
|
|
|
/// <summary>
|
2008-06-26 12:38:03 +00:00
|
|
|
/// <para>Initialises Asset interface</para>
|
|
|
|
/// <para>
|
|
|
|
/// <list type="bullet">
|
|
|
|
/// <item>Loads and initialises the MySQL storage plugin.</item>
|
|
|
|
/// <item>Warns and uses the obsolete mysql_connection.ini if connect string is empty.</item>
|
|
|
|
/// <item>Check for migration</item>
|
|
|
|
/// </list>
|
|
|
|
/// </para>
|
2008-06-26 01:12:28 +00:00
|
|
|
/// </summary>
|
2008-06-26 12:38:03 +00:00
|
|
|
/// <param name="connect">connect string</param>
|
2008-06-12 15:47:33 +00:00
|
|
|
override public void Initialise(string connect)
|
|
|
|
{
|
2009-02-12 09:53:12 +00:00
|
|
|
TicksToEpoch = new DateTime(1970,1,1).Ticks;
|
2008-11-06 21:21:46 +00:00
|
|
|
|
2008-06-12 15:47:33 +00:00
|
|
|
// TODO: This will let you pass in the connect string in
|
|
|
|
// the config, though someone will need to write that.
|
|
|
|
if (connect == String.Empty)
|
|
|
|
{
|
|
|
|
// This is old seperate config file
|
|
|
|
m_log.Warn("no connect string, using old mysql_connection.ini instead");
|
|
|
|
Initialise();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_dbConnection = new MySQLManager(connect);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This actually does the roll forward assembly stuff
|
|
|
|
Assembly assem = GetType().Assembly;
|
|
|
|
Migration m = new Migration(_dbConnection.Connection, assem, "AssetStore");
|
|
|
|
|
|
|
|
m.Update();
|
|
|
|
}
|
|
|
|
|
2008-06-26 01:12:28 +00:00
|
|
|
/// <summary>
|
2008-06-26 12:38:03 +00:00
|
|
|
/// <para>Initialises Asset interface</para>
|
|
|
|
/// <para>
|
|
|
|
/// <list type="bullet">
|
|
|
|
/// <item>Loads and initialises the MySQL storage plugin</item>
|
|
|
|
/// <item>uses the obsolete mysql_connection.ini</item>
|
|
|
|
/// </list>
|
|
|
|
/// </para>
|
2008-06-26 01:12:28 +00:00
|
|
|
/// </summary>
|
2009-01-28 01:55:45 +00:00
|
|
|
/// <remarks>DEPRECATED and shouldn't be used</remarks>
|
|
|
|
public override void Initialise()
|
2008-06-12 15:47:33 +00:00
|
|
|
{
|
|
|
|
IniFile GridDataMySqlFile = new IniFile("mysql_connection.ini");
|
|
|
|
string hostname = GridDataMySqlFile.ParseFileReadValue("hostname");
|
|
|
|
string database = GridDataMySqlFile.ParseFileReadValue("database");
|
|
|
|
string username = GridDataMySqlFile.ParseFileReadValue("username");
|
|
|
|
string password = GridDataMySqlFile.ParseFileReadValue("password");
|
|
|
|
string pooling = GridDataMySqlFile.ParseFileReadValue("pooling");
|
|
|
|
string port = GridDataMySqlFile.ParseFileReadValue("port");
|
|
|
|
|
|
|
|
_dbConnection = new MySQLManager(hostname, database, username, password, pooling, port);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-01-28 01:55:45 +00:00
|
|
|
public override void Dispose() { }
|
2008-06-27 02:15:57 +00:00
|
|
|
|
2009-04-13 20:04:18 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Database provider version
|
|
|
|
/// </summary>
|
|
|
|
override public string Version
|
|
|
|
{
|
|
|
|
get { return _dbConnection.getVersion(); }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The name of this DB provider
|
|
|
|
/// </summary>
|
|
|
|
override public string Name
|
|
|
|
{
|
|
|
|
get { return "MySQL Asset storage engine"; }
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2009-02-03 05:20:03 +00:00
|
|
|
#region IAssetDataPlugin Members
|
2007-10-19 20:28:18 +00:00
|
|
|
|
2008-06-26 01:12:28 +00:00
|
|
|
/// <summary>
|
2008-06-26 12:38:03 +00:00
|
|
|
/// Fetch Asset <paramref name="assetID"/> from database
|
2008-06-26 01:12:28 +00:00
|
|
|
/// </summary>
|
2008-06-26 12:38:03 +00:00
|
|
|
/// <param name="assetID">Asset UUID to fetch</param>
|
|
|
|
/// <returns>Return the asset</returns>
|
|
|
|
/// <remarks>On failure : throw an exception and attempt to reconnect to database</remarks>
|
2009-08-16 23:54:20 +00:00
|
|
|
override public AssetBase GetAsset(UUID assetID)
|
2007-10-19 20:28:18 +00:00
|
|
|
{
|
|
|
|
AssetBase asset = null;
|
2007-10-26 11:46:27 +00:00
|
|
|
lock (_dbConnection)
|
2007-10-19 20:28:18 +00:00
|
|
|
{
|
2008-07-03 22:30:16 +00:00
|
|
|
_dbConnection.CheckConnection();
|
|
|
|
|
2007-10-30 09:05:31 +00:00
|
|
|
MySqlCommand cmd =
|
|
|
|
new MySqlCommand(
|
2008-07-02 16:20:54 +00:00
|
|
|
"SELECT name, description, assetType, local, temporary, data FROM assets WHERE id=?id",
|
2007-10-30 09:05:31 +00:00
|
|
|
_dbConnection.Connection);
|
2008-06-16 14:10:51 +00:00
|
|
|
cmd.Parameters.AddWithValue("?id", assetID.ToString());
|
2008-05-16 01:22:11 +00:00
|
|
|
|
2007-11-26 16:39:00 +00:00
|
|
|
try
|
2007-10-19 20:28:18 +00:00
|
|
|
{
|
2007-11-26 16:39:00 +00:00
|
|
|
using (MySqlDataReader dbReader = cmd.ExecuteReader(CommandBehavior.SingleRow))
|
2007-10-26 11:46:27 +00:00
|
|
|
{
|
2007-11-26 16:39:00 +00:00
|
|
|
if (dbReader.Read())
|
|
|
|
{
|
|
|
|
asset = new AssetBase();
|
2007-12-27 21:41:48 +00:00
|
|
|
asset.Data = (byte[]) dbReader["data"];
|
2009-02-17 01:36:44 +00:00
|
|
|
asset.Description = (string) dbReader["description"];
|
|
|
|
asset.FullID = assetID;
|
2009-01-18 23:31:13 +00:00
|
|
|
try
|
|
|
|
{
|
2009-02-17 01:36:44 +00:00
|
|
|
asset.Local = (bool)dbReader["local"];
|
2009-01-18 23:31:13 +00:00
|
|
|
}
|
2009-02-12 09:53:12 +00:00
|
|
|
catch (InvalidCastException)
|
2009-01-18 23:31:13 +00:00
|
|
|
{
|
2009-02-17 01:36:44 +00:00
|
|
|
asset.Local = false;
|
2009-01-18 23:31:13 +00:00
|
|
|
}
|
2009-02-17 01:36:44 +00:00
|
|
|
asset.Name = (string) dbReader["name"];
|
|
|
|
asset.Type = (sbyte) dbReader["assetType"];
|
2009-08-21 20:48:45 +00:00
|
|
|
asset.Temporary = Convert.ToBoolean(dbReader["temporary"]);
|
2007-11-26 16:39:00 +00:00
|
|
|
}
|
2007-12-08 23:47:41 +00:00
|
|
|
dbReader.Close();
|
|
|
|
cmd.Dispose();
|
2007-10-26 11:46:27 +00:00
|
|
|
}
|
2008-11-06 21:21:46 +00:00
|
|
|
if (asset != null)
|
|
|
|
UpdateAccessTime(asset);
|
2007-10-19 20:28:18 +00:00
|
|
|
}
|
2008-01-30 17:39:40 +00:00
|
|
|
catch (Exception e)
|
2007-11-26 16:39:00 +00:00
|
|
|
{
|
2008-02-10 01:57:59 +00:00
|
|
|
m_log.ErrorFormat(
|
2008-05-01 13:27:40 +00:00
|
|
|
"[ASSETS DB]: MySql failure fetching asset {0}" + Environment.NewLine + e.ToString()
|
2008-06-29 18:10:38 +00:00
|
|
|
+ Environment.NewLine + "Reconnecting", assetID);
|
2008-01-30 17:39:40 +00:00
|
|
|
_dbConnection.Reconnect();
|
2007-12-27 21:41:48 +00:00
|
|
|
}
|
2007-10-19 20:28:18 +00:00
|
|
|
}
|
|
|
|
return asset;
|
|
|
|
}
|
|
|
|
|
2008-06-26 01:12:28 +00:00
|
|
|
/// <summary>
|
2008-06-26 12:38:03 +00:00
|
|
|
/// Create an asset in database, or update it if existing.
|
2008-06-26 01:12:28 +00:00
|
|
|
/// </summary>
|
2008-06-26 12:38:03 +00:00
|
|
|
/// <param name="asset">Asset UUID to create</param>
|
|
|
|
/// <remarks>On failure : Throw an exception and attempt to reconnect to database</remarks>
|
2009-08-16 23:54:20 +00:00
|
|
|
override public void StoreAsset(AssetBase asset)
|
2008-05-16 01:22:11 +00:00
|
|
|
{
|
2008-02-04 17:30:53 +00:00
|
|
|
lock (_dbConnection)
|
|
|
|
{
|
2008-07-03 22:30:16 +00:00
|
|
|
_dbConnection.CheckConnection();
|
|
|
|
|
2008-02-04 17:30:53 +00:00
|
|
|
MySqlCommand cmd =
|
|
|
|
new MySqlCommand(
|
2009-08-15 15:54:48 +00:00
|
|
|
"replace INTO assets(id, name, description, assetType, local, temporary, create_time, access_time, data)" +
|
2008-11-06 21:21:46 +00:00
|
|
|
"VALUES(?id, ?name, ?description, ?assetType, ?local, ?temporary, ?create_time, ?access_time, ?data)",
|
2008-02-04 17:30:53 +00:00
|
|
|
_dbConnection.Connection);
|
2008-05-16 01:22:11 +00:00
|
|
|
|
2009-09-30 16:00:09 +00:00
|
|
|
string assetName = asset.Name;
|
2009-07-24 20:01:17 +00:00
|
|
|
if (asset.Name.Length > 64)
|
|
|
|
{
|
|
|
|
assetName = asset.Name.Substring(0, 64);
|
|
|
|
m_log.Warn("[ASSET DB]: Name field truncated from " + asset.Name.Length + " to " + assetName.Length + " characters on add");
|
|
|
|
}
|
|
|
|
|
|
|
|
string assetDescription = asset.Description;
|
|
|
|
if (asset.Description.Length > 64)
|
|
|
|
{
|
|
|
|
assetDescription = asset.Description.Substring(0, 64);
|
|
|
|
m_log.Warn("[ASSET DB]: Description field truncated from " + asset.Description.Length + " to " + assetDescription.Length + " characters on add");
|
|
|
|
}
|
|
|
|
|
2008-02-04 17:30:53 +00:00
|
|
|
// need to ensure we dispose
|
|
|
|
try
|
2008-05-16 01:22:11 +00:00
|
|
|
{
|
2008-02-04 17:30:53 +00:00
|
|
|
using (cmd)
|
|
|
|
{
|
2008-11-06 21:21:46 +00:00
|
|
|
// create unix epoch time
|
2009-02-12 09:53:12 +00:00
|
|
|
int now = (int)((DateTime.Now.Ticks - TicksToEpoch) / 10000000);
|
2009-02-17 01:36:44 +00:00
|
|
|
cmd.Parameters.AddWithValue("?id", asset.ID);
|
2009-07-24 20:01:17 +00:00
|
|
|
cmd.Parameters.AddWithValue("?name", assetName);
|
|
|
|
cmd.Parameters.AddWithValue("?description", assetDescription);
|
2009-02-17 01:36:44 +00:00
|
|
|
cmd.Parameters.AddWithValue("?assetType", asset.Type);
|
|
|
|
cmd.Parameters.AddWithValue("?local", asset.Local);
|
|
|
|
cmd.Parameters.AddWithValue("?temporary", asset.Temporary);
|
2008-11-06 21:21:46 +00:00
|
|
|
cmd.Parameters.AddWithValue("?create_time", now);
|
|
|
|
cmd.Parameters.AddWithValue("?access_time", now);
|
2008-02-04 17:30:53 +00:00
|
|
|
cmd.Parameters.AddWithValue("?data", asset.Data);
|
|
|
|
cmd.ExecuteNonQuery();
|
|
|
|
cmd.Dispose();
|
|
|
|
}
|
2008-01-30 17:39:40 +00:00
|
|
|
}
|
2008-02-04 17:30:53 +00:00
|
|
|
catch (Exception e)
|
|
|
|
{
|
2008-02-10 01:57:59 +00:00
|
|
|
m_log.ErrorFormat(
|
2008-05-01 13:27:40 +00:00
|
|
|
"[ASSETS DB]: " +
|
2008-02-10 01:57:59 +00:00
|
|
|
"MySql failure creating asset {0} with name {1}" + Environment.NewLine + e.ToString()
|
2009-02-17 01:36:44 +00:00
|
|
|
+ Environment.NewLine + "Attempting reconnection", asset.FullID, asset.Name);
|
2008-02-04 17:30:53 +00:00
|
|
|
_dbConnection.Reconnect();
|
2008-05-16 01:22:11 +00:00
|
|
|
}
|
2007-11-01 21:36:47 +00:00
|
|
|
}
|
2007-10-19 20:28:18 +00:00
|
|
|
}
|
|
|
|
|
2008-11-06 21:21:46 +00:00
|
|
|
private void UpdateAccessTime(AssetBase asset)
|
|
|
|
{
|
|
|
|
lock (_dbConnection)
|
|
|
|
{
|
|
|
|
_dbConnection.CheckConnection();
|
|
|
|
|
|
|
|
MySqlCommand cmd =
|
|
|
|
new MySqlCommand("update assets set access_time=?access_time where id=?id",
|
|
|
|
_dbConnection.Connection);
|
|
|
|
|
|
|
|
// need to ensure we dispose
|
|
|
|
try
|
|
|
|
{
|
|
|
|
using (cmd)
|
|
|
|
{
|
|
|
|
// create unix epoch time
|
2009-02-12 09:53:12 +00:00
|
|
|
int now = (int)((DateTime.Now.Ticks - TicksToEpoch) / 10000000);
|
2009-02-17 01:36:44 +00:00
|
|
|
cmd.Parameters.AddWithValue("?id", asset.ID);
|
2008-11-06 21:21:46 +00:00
|
|
|
cmd.Parameters.AddWithValue("?access_time", now);
|
|
|
|
cmd.ExecuteNonQuery();
|
|
|
|
cmd.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
m_log.ErrorFormat(
|
|
|
|
"[ASSETS DB]: " +
|
|
|
|
"MySql failure updating access_time for asset {0} with name {1}" + Environment.NewLine + e.ToString()
|
2009-02-17 01:36:44 +00:00
|
|
|
+ Environment.NewLine + "Attempting reconnection", asset.FullID, asset.Name);
|
2008-11-06 21:21:46 +00:00
|
|
|
_dbConnection.Reconnect();
|
|
|
|
}
|
|
|
|
}
|
2009-01-28 01:55:45 +00:00
|
|
|
|
2008-11-06 21:21:46 +00:00
|
|
|
}
|
|
|
|
|
2008-06-26 01:12:28 +00:00
|
|
|
/// <summary>
|
2008-06-26 12:38:03 +00:00
|
|
|
/// check if the asset UUID exist in database
|
2008-06-26 01:12:28 +00:00
|
|
|
/// </summary>
|
2008-06-26 12:38:03 +00:00
|
|
|
/// <param name="uuid">The asset UUID</param>
|
|
|
|
/// <returns>true if exist.</returns>
|
2008-09-06 07:52:41 +00:00
|
|
|
override public bool ExistsAsset(UUID uuid)
|
2007-10-19 20:28:18 +00:00
|
|
|
{
|
2008-05-31 21:44:57 +00:00
|
|
|
bool assetExists = false;
|
2008-06-04 09:59:27 +00:00
|
|
|
|
2008-05-31 21:44:57 +00:00
|
|
|
lock (_dbConnection)
|
|
|
|
{
|
2008-07-03 22:30:16 +00:00
|
|
|
_dbConnection.CheckConnection();
|
2008-08-18 00:39:10 +00:00
|
|
|
|
2008-05-31 21:44:57 +00:00
|
|
|
MySqlCommand cmd =
|
|
|
|
new MySqlCommand(
|
|
|
|
"SELECT id FROM assets WHERE id=?id",
|
|
|
|
_dbConnection.Connection);
|
2008-08-18 00:39:10 +00:00
|
|
|
|
2008-06-16 14:10:51 +00:00
|
|
|
cmd.Parameters.AddWithValue("?id", uuid.ToString());
|
2008-05-31 21:44:57 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
using (MySqlDataReader dbReader = cmd.ExecuteReader(CommandBehavior.SingleRow))
|
|
|
|
{
|
|
|
|
if (dbReader.Read())
|
|
|
|
{
|
|
|
|
assetExists = true;
|
|
|
|
}
|
2008-06-04 09:59:27 +00:00
|
|
|
|
2008-05-31 21:44:57 +00:00
|
|
|
dbReader.Close();
|
|
|
|
cmd.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
m_log.ErrorFormat(
|
|
|
|
"[ASSETS DB]: MySql failure fetching asset {0}" + Environment.NewLine + e.ToString()
|
|
|
|
+ Environment.NewLine + "Attempting reconnection", uuid);
|
|
|
|
_dbConnection.Reconnect();
|
|
|
|
}
|
|
|
|
}
|
2008-06-04 09:59:27 +00:00
|
|
|
|
|
|
|
return assetExists;
|
2007-10-19 20:28:18 +00:00
|
|
|
}
|
|
|
|
|
2009-03-09 07:29:34 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Returns a list of AssetMetadata objects. The list is a subset of
|
|
|
|
/// the entire data set offset by <paramref name="start" /> containing
|
|
|
|
/// <paramref name="count" /> elements.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="start">The number of results to discard from the total data set.</param>
|
|
|
|
/// <param name="count">The number of rows the returned list should contain.</param>
|
|
|
|
/// <returns>A list of AssetMetadata objects.</returns>
|
|
|
|
public override List<AssetMetadata> FetchAssetMetadataSet(int start, int count)
|
|
|
|
{
|
|
|
|
List<AssetMetadata> retList = new List<AssetMetadata>(count);
|
|
|
|
|
|
|
|
lock (_dbConnection)
|
|
|
|
{
|
|
|
|
_dbConnection.CheckConnection();
|
|
|
|
|
|
|
|
MySqlCommand cmd = new MySqlCommand("SELECT name,description,assetType,temporary,id FROM assets LIMIT ?start, ?count", _dbConnection.Connection);
|
|
|
|
cmd.Parameters.AddWithValue("?start", start);
|
|
|
|
cmd.Parameters.AddWithValue("?count", count);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
using (MySqlDataReader dbReader = cmd.ExecuteReader())
|
|
|
|
{
|
|
|
|
while (dbReader.Read())
|
|
|
|
{
|
|
|
|
AssetMetadata metadata = new AssetMetadata();
|
|
|
|
metadata.Name = (string) dbReader["name"];
|
|
|
|
metadata.Description = (string) dbReader["description"];
|
|
|
|
metadata.Type = (sbyte) dbReader["assetType"];
|
2009-08-21 20:48:45 +00:00
|
|
|
metadata.Temporary = Convert.ToBoolean(dbReader["temporary"]); // Not sure if this is correct.
|
2009-03-09 07:29:34 +00:00
|
|
|
metadata.FullID = new UUID((string) dbReader["id"]);
|
|
|
|
|
|
|
|
// Current SHA1s are not stored/computed.
|
|
|
|
metadata.SHA1 = new byte[] {};
|
|
|
|
|
|
|
|
retList.Add(metadata);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
m_log.Error("[ASSETS DB]: MySql failure fetching asset set" + Environment.NewLine + e.ToString() + Environment.NewLine + "Attempting reconnection");
|
|
|
|
_dbConnection.Reconnect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retList;
|
|
|
|
}
|
|
|
|
|
2007-10-19 20:28:18 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2008-01-30 17:39:40 +00:00
|
|
|
}
|